/* CMS Global Styles - Modern & Premium */
:root {
    --primary-color: #0056b3;
    --primary-gradient: linear-gradient(135deg, #0056b3 0%, #0088ff 100%);
    --accent-color: #ff9800;
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Header & Nav */
.navbar-white {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 10px 0;
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 800;
    font-size: 24px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav > li > a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 15px 20px;
    transition: var(--transition);
}

.nav > li > a:hover {
    color: var(--primary-color);
    background: none;
}

/* Hero Section */
.hero-slider {
    height: 600px;
    border-radius: 24px;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 0 100px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), transparent);
}

/* Cards */
.premium-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 30px;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn-premium {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,86,179,0.3);
}

.btn-premium:hover {
    transform: scale(1.05);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0,86,179,0.4);
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsiveness */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    .hero-slide {
        padding: 0 30px;
    }
    .hero-slide h1 {
        font-size: 32px !important;
    }
    .navbar-brand {
        font-size: 20px;
    }
}

/* Pagination Style */
.pagination > .active > a, .pagination > .active > span {
    background: var(--primary-gradient);
    border-color: transparent;
}
.pagination > li > a {
    color: var(--primary-color);
    border-radius: 10px !important;
    margin: 0 3px;
}
