/* ===== CSS Variables ===== */
:root {
    /* Gold colors */
    --gold-primary: #C9A24D;
    --gold-light: #E6C45C;
    --gold-warm: #D4AF37;
    --gold-dark: #9F7C2F;
    
    /* Purple colors */
    --purple-deep: #2E203D;
    --purple-main: #3B2A4D;
    --purple-graphite: #4A355F;
    
    /* Neutral colors */
    --text-primary: #2B2B2B;
    --text-secondary: #8C7C94;
    --line-color: #E5DED4;
    
    /* Background colors */
    --bg-white: #FFFFFF;
    --bg-ivory: #FAF7F2;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    --purple-gradient: linear-gradient(135deg, var(--purple-main) 0%, var(--purple-deep) 100%);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #E6C45C 0%, #C9A24D 25%, #D4AF37 50%, #C9A24D 75%, #9F7C2F 100%);
    background-size: 200% 200%;
    color: var(--bg-white);
    border-color: var(--gold-primary);
    position: relative;
    overflow: hidden;
    animation: goldShimmer 3s ease-in-out infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F0D060 0%, #E6C45C 25%, #D4AF37 50%, #C9A24D 75%, #B8922E 100%);
    background-size: 200% 200%;
    box-shadow: 0 10px 35px rgba(201, 162, 77, 0.5), 0 0 20px rgba(230, 196, 92, 0.3);
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-outline {
    background: linear-gradient(135deg, #E6C45C 0%, #C9A24D 25%, #D4AF37 50%, #C9A24D 75%, #9F7C2F 100%);
    background-size: 200% 200%;
    color: var(--bg-white);
    border-color: var(--gold-primary);
    position: relative;
    overflow: hidden;
    animation: goldShimmer 3s ease-in-out infinite;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #F0D060 0%, #E6C45C 25%, #D4AF37 50%, #C9A24D 75%, #B8922E 100%);
    background-size: 200% 200%;
    box-shadow: 0 10px 35px rgba(201, 162, 77, 0.5), 0 0 20px rgba(230, 196, 92, 0.3);
    color: var(--bg-white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 16px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(201, 162, 77, 0.3);
}

.logo-icon {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--purple-deep);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--gold-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--purple-deep);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-ivory) 0%, var(--bg-white) 50%, rgba(59, 42, 77, 0.05) 100%);
    z-index: -1;
}

.stars {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.8;
}

.stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 50% 20%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 60% 50%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 80% 40%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90% 60%, rgba(255, 255, 255, 0.6), transparent);
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero .container {
    width: 100%;
    padding: 0 20px;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.hero-content {
    display: block;
    position: relative;
    z-index: 2;
    max-width: 420px;
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
}

.hero-text h1 {
    font-size: 64px;
    color: var(--purple-deep);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
    animation: fadeInRight 1.2s ease-out forwards;
    opacity: 0;
}

.hero-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, var(--bg-ivory) 0%, rgba(250, 247, 242, 0.8) 30%, transparent 100%);
    z-index: 2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-photo {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    animation: fadeInRight 1.2s ease-out forwards;
    opacity: 0;
}

.hero-photo::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 60%, rgba(201, 162, 77, 0.2) 100%);
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 30px 80px rgba(46, 32, 61, 0.4);
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.bull-icon {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--purple-graphite) 0%, var(--purple-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(46, 32, 61, 0.4);
    position: relative;
}

.bull-icon::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 60%, rgba(201, 162, 77, 0.1) 100%);
}

.bull-svg {
    width: 200px;
    height: 200px;
}

/* ===== Features Section ===== */
.features {
    padding: 80px 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-ivory);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 32px;
    color: var(--bg-white);
}

.feature-card h3 {
    font-size: 20px;
    color: var(--purple-deep);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--purple-deep);
}

/* ===== Section Title ===== */
.section-title {
    font-size: 42px;
    color: var(--purple-deep);
    text-align: center;
    margin-bottom: 60px;
}

/* ===== About Section ===== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--bg-ivory);
    position: relative;
    overflow: hidden;
}

.about-section .about-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
}

.about-section .about-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, var(--bg-ivory) 0%, rgba(250, 247, 242, 0.8) 30%, transparent 100%);
    z-index: 2;
}

.about-section .about-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 550px;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 48px;
    color: var(--purple-deep);
    margin-bottom: 24px;
}

.about-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .about-section {
        background: var(--purple-deep);
        background-image: url('../images/IMG_8502.PNG');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(46, 32, 61, 0.85);
        z-index: 0;
    }
    .about-content h2 {
        color: var(--gold-primary);
    }
    .about-content p {
        color: #fff;
    }
}
@media (max-width: 768px) {
    .about-content p {
        color: rgba(255,255,255,0.92);
    }
}

.about-visual {
    height: 400px;
    background: var(--gold-gradient);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.about-visual::before {
    display: none;
}

/* ===== Services Section ===== */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 250px;
    background: var(--gold-gradient);
    position: relative;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-image.savings::after {
    display: none;
}

.service-image.support::after {
    display: none;
}

.service-content {
    padding: 30px;
    background: var(--bg-ivory);
}

.service-content h3 {
    font-size: 22px;
    color: var(--purple-deep);
    margin-bottom: 12px;
}

.service-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== Advantages Section ===== */
.advantages {
    padding: var(--section-padding) 0;
    background: var(--bg-ivory);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.advantage-item {
    text-align: center;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.advantage-icon i {
    font-size: 32px;
    color: var(--bg-white);
    transition: var(--transition);
}

.advantage-item h4 {
    font-size: 18px;
    color: var(--purple-deep);
    margin-bottom: 10px;
}

.advantage-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== Partners Section ===== */
.partners {
    padding: 60px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.partners-track {
    display: flex;
    gap: 30px;
    animation: scrollPartners 40s linear infinite;
    width: max-content;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-item {
    padding: 20px 40px;
    background: var(--bg-ivory);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    color: var(--purple-graphite);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.partner-item:hover {
    background: var(--gold-gradient);
    color: var(--bg-white);
}

/* ===== CTA Section ===== */
.cta {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 48px;
    color: var(--purple-deep);
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Footer ===== */
.footer {
    background: var(--purple-deep);
    background-image: url('../images/IMG_8502.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bg-white);
    padding: 60px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 32, 61, 0.85);
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand .logo-text {
    color: var(--bg-white);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-image {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 200px;
}

.footer-about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-about-img:hover {
    opacity: 1;
}

.footer h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.footer-links ul li,
.footer-contacts ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contacts a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contacts a:hover {
    color: var(--gold-primary);
}

.footer-contacts i {
    margin-right: 8px;
    color: var(--gold-primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold-primary);
}

.social-link i {
    font-size: 20px;
    color: var(--bg-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--gold-primary);
}

/* ===== Page Header ===== */
.page-header {
    padding: 150px 0 80px;
    background: var(--purple-deep);
    background-image: url('../images/IMG_8502.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 32, 61, 0.75);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 52px;
    color: var(--bg-white);
    text-align: center;
}

.page-header .breadcrumb {
    text-align: center;
    margin-top: 15px;
}

.page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.page-header .breadcrumb span {
    color: var(--gold-primary);
    font-size: 14px;
}

/* ===== Content Sections ===== */
.content-section {
    padding: var(--section-padding) 0;
}

.content-section.alt {
    background: var(--bg-ivory);
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 36px;
    color: var(--purple-deep);
    margin-bottom: 24px;
}

.content-block h3 {
    font-size: 24px;
    color: var(--purple-deep);
    margin: 32px 0 16px;
}

.content-block p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-block ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-block ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.content-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
}

/* ===== Programs Grid ===== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.program-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.program-header {
    padding: 30px;
    background: var(--purple-deep);
    background-image: url('../images/IMG_8502.PNG');
    background-size: cover;
    background-position: center;
    position: relative;
}

.program-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 32, 61, 0.85);
    z-index: 0;
}

.program-header h3,
.program-header p {
    position: relative;
    z-index: 1;
}

.program-header h3 {
    font-size: 24px;
    color: var(--bg-white);
    margin-bottom: 8px;
}

.program-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.program-body {
    padding: 30px;
}

.program-body p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.program-contact {
    font-size: 14px;
    color: var(--gold-primary);
}

.program-contact a {
    color: var(--gold-primary);
    text-decoration: underline;
}

/* ===== Documents List ===== */
.documents-list {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    flex-wrap: wrap;
    max-width: 100%;
    overflow: hidden;
}

.document-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.document-icon i {
    font-size: 24px;
    color: var(--bg-white);
}

.document-info h4 {
    font-size: 18px;
    color: var(--purple-deep);
    margin-bottom: 5px;
}

.document-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

.document-link {
    margin-left: auto;
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.document-link:hover {
    color: var(--gold-dark);
}

/* Documents mobile styles */
@media (max-width: 768px) {
    .document-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
    }
    
    .document-info {
        width: 100%;
    }
    
    .document-info h4 {
        font-size: 16px;
    }
    
    .document-link {
        margin-left: 0;
        align-self: flex-start;
    }
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 60px 0 100px;
    background: var(--bg-ivory);
}

.faq-section .section-title {
    margin-bottom: 50px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(46, 32, 61, 0.08);
    border: 1px solid rgba(201, 162, 77, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(46, 32, 61, 0.12);
    border-color: rgba(201, 162, 77, 0.3);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-body);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.05) 0%, rgba(250, 247, 242, 0.5) 100%);
}

.faq-question span {
    font-size: 17px;
    font-weight: 500;
    color: var(--purple-deep);
    line-height: 1.4;
    flex: 1;
}

.faq-question i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.08) 0%, rgba(250, 247, 242, 0.8) 100%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 30px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.9;
    border-top: 1px solid rgba(201, 162, 77, 0.15);
    padding-top: 20px;
    margin: 0 20px;
}

.faq-answer a {
    color: var(--gold-primary);
    text-decoration: underline;
    transition: var(--transition);
}

.faq-answer a:hover {
    color: var(--gold-dark);
}

/* ===== Contacts Section ===== */
.contacts-section {
    padding: 60px 0 80px;
    background: var(--bg-ivory);
}

.contacts-section .section-title {
    margin-bottom: 50px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(46, 32, 61, 0.08);
    border: 1px solid rgba(201, 162, 77, 0.1);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(46, 32, 61, 0.12);
    border-color: rgba(201, 162, 77, 0.3);
}

.contact-card .contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card .contact-icon i {
    font-size: 28px;
    color: var(--bg-white);
}

.contact-card .contact-icon.small {
    width: 50px;
    height: 50px;
}

.contact-card .contact-icon.small i {
    font-size: 20px;
}

.contact-card h3 {
    font-size: 22px;
    color: var(--purple-deep);
    margin-bottom: 10px;
}

.contact-card h4 {
    font-size: 18px;
    color: var(--purple-deep);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-card .contact-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-primary);
    position: relative;
    transition: var(--transition);
}

.contact-card .contact-link:hover {
    color: var(--gold-dark);
}

.contact-card .contact-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition);
}

.contact-card .contact-link:hover::after {
    width: 100%;
}

.contact-card.compact {
    padding: 30px 25px;
}

.contact-card.compact h4 {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    background: var(--purple-gradient);
    border-radius: 16px;
    padding: 50px;
    color: var(--bg-white);
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--bg-white);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--bg-white);
}

.contact-item-content a,
.contact-item-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item-content a:hover {
    color: var(--gold-primary);
}

.contact-social {
    margin-top: 40px;
}

.contact-social h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    color: var(--purple-deep);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--line-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== Stats Section ===== */
.stats {
    padding: 80px 0;
    background: var(--bg-ivory);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero .container {
        width: 100%;
        padding: 0 20px;
        max-width: var(--container-width);
        margin: 0 auto;
        display: flex;
        justify-content: flex-start;
    }
    
    .hero-content {
        text-align: left;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .hero-text {
        max-width: 500px;
        margin: 0;
        padding: 0;
    }
    
    .hero-text h1 {
        font-size: 48px;
    }
    
    .hero-subtitle {
        margin: 0 0 40px 0;
    }
    
    .bull-icon {
        width: 280px;
        height: 280px;
    }
    
    .hero-photo {
        width: 350px;
        height: 350px;
    }
    
    .hero-bg-image {
        width: 100%;
        opacity: 0.3;
    }
    
    .hero-bg-image::before {
        display: none;
    }
    
    .features-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section .about-bg-image {
        width: 100%;
        opacity: 0.3;
    }
    
    .about-section .about-bg-image::before {
        display: none;
    }
    
    .about-content {
        max-width: 100%;
        text-align: center;
    }
    
    .about-visual {
        height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-image {
        margin: 20px auto 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 20px;
        order: 1;
        margin: 0 auto;
    }
    
    .hero-content {
        text-align: center;
        padding: 40px 20px 0 20px;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box;
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        padding: 0;
    }
    
    .hero-text h1 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 16px;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero-subtitle {
        font-size: 15px;
        text-align: center;
        margin: 0 auto 30px auto;
        max-width: 320px;
        padding: 0;
    }
    
    .hero-text .btn {
        margin: 0 auto;
        display: block;
    }
    
    .hero-bg {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 60vh;
        order: 2;
        margin-top: 20px;
    }
    
    .hero-bg-image {
        position: relative;
        width: 100%;
        height: 60vh;
        opacity: 1;
        animation: fadeInUp 1s ease-out forwards;
    }
    
    .hero-bg-image::before {
        display: block;
        width: 100%;
        height: 120px;
        top: 0;
        left: 0;
        background: linear-gradient(to bottom, var(--bg-ivory) 0%, rgba(250, 247, 242, 0.8) 30%, transparent 100%);
        z-index: 2;
    }
    
    .hero-bg-img {
        object-fit: cover;
        object-position: center top;
        width: 100%;
        height: 100%;
    }
    
    .hero-photo {
        width: 280px;
        height: 280px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid,
    .services-grid,
    .advantages-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        height: 250px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    .footer-image {
        margin: 20px auto 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    /* Исправление толщины бургер-меню */
    .mobile-menu-btn span,
    .mobile-menu-btn span:nth-child(1),
    .mobile-menu-btn span:nth-child(2),
    .mobile-menu-btn span:nth-child(3) {
        height: 2px !important;
        width: 25px;
        background: var(--purple-deep);
        display: block;
        border-radius: 1px;
    }
}

/* ===== Mobile Menu ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        padding: 30px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu a {
        font-family: var(--font-body);
        font-size: 18px;
        font-weight: 500;
        color: var(--text-primary);
        padding: 15px 0;
        transition: color 0.3s ease;
    }
    
    .nav-menu a:hover {
        color: var(--gold-primary);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .mobile-menu-btn {
        z-index: 1001;
    }
    
    .mobile-menu-btn.active span {
        background: var(--purple-deep);
    }
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-ivory);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ===== News Fullwidth Section ===== */
.news-fullwidth {
    padding: 60px 0;
}

.news-article-full {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    margin-bottom: 0;
}

.news-article-full:nth-child(even) {
    background: var(--bg-ivory);
}

.news-article-full.reverse {
    flex-direction: row-reverse;
}

.news-article-image {
    flex: 1;
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.news-article-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(46, 32, 61, 0.7), transparent);
    pointer-events: none;
}

.news-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-article-full:hover .news-article-image img {
    transform: scale(1.05);
}

.news-article-content {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.news-meta span {
    font-size: 14px;
    color: var(--text-secondary);
}

.news-meta i {
    margin-right: 8px;
    color: var(--gold-primary);
}

.news-category-tag {
    font-size: 14px;
    color: var(--text-secondary);
}

.news-article-content h2 {
    font-size: 2.2rem;
    color: var(--purple-deep);
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ===== Single News Article ===== */
.news-single-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.news-single-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-single-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 0;
    background: linear-gradient(transparent, rgba(46, 32, 61, 0.9));
    color: var(--bg-white);
}

.news-single-hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    max-width: 900px;
}

.news-single-hero-overlay .news-meta span {
    color: rgba(255, 255, 255, 0.8);
}

.news-single-hero-overlay .news-meta i {
    color: var(--gold-light);
}

.news-lead {
    font-size: 1.3rem;
    max-width: 800px;
    line-height: 1.6;
    opacity: 0.9;
}

.news-single-content {
    padding: 80px 0;
}

.news-body {
    max-width: 800px;
    margin: 0 auto;
}

.news-body p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.news-body h2 {
    font-size: 1.8rem;
    color: var(--purple-deep);
    margin: 50px 0 25px;
    padding-top: 20px;
    border-top: 1px solid var(--line-color);
}

.news-body h2:first-of-type {
    border-top: none;
    margin-top: 30px;
}

.news-location {
    font-size: 1.15rem;
}

.news-author {
    font-size: 0.95rem;
    color: var(--gold-primary);
    font-weight: 500;
}

.news-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 40px !important;
}

.news-back {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--line-color);
}

.news-back .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ===== Responsive News ===== */
@media (max-width: 992px) {
    .news-article-full,
    .news-article-full.reverse {
        flex-direction: column;
    }
    
    .news-article-image {
        min-height: 350px;
    }
    
    .news-article-content {
        padding: 40px 30px;
    }
    
    .news-article-content h2 {
        font-size: 1.8rem;
    }
    
    .news-single-hero {
        height: 50vh;
    }
    
    .news-single-hero-overlay h1 {
        font-size: 2rem;
    }
    
    .news-lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .news-article-image {
        min-height: 250px;
    }
    
    .news-article-content {
        padding: 30px 20px;
    }
    
    .news-article-content h2 {
        font-size: 1.5rem;
    }
    
    .news-single-hero-overlay {
        padding: 40px 0;
    }
    
    .news-single-hero-overlay h1 {
        font-size: 1.6rem;
    }
    
    .news-body h2 {
        font-size: 1.4rem;
    }
}
