/* =========================
   Root Variables
========================= */
:root {
    --primary: #2D1B69;
    --primary-2: #4C2FA8;
    --primary-light: #F5F2FF;
    --gold: #D4AF37;
    --gold-light: #F4E5A8;
    --text: #1A1533;
    --text-light: #6B6685;
    --white: #ffffff;
    --border: #EDEAF5;
    --bg-soft: #FAF8FF;
    --shadow-sm: 0 4px 16px rgba(45, 27, 105, .06);
    --shadow-md: 0 12px 32px rgba(45, 27, 105, .10);
    --shadow-lg: 0 24px 60px rgba(45, 27, 105, .16);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: .3s cubic-bezier(.2, .8, .2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazirmatn', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    background: var(--white);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
}

.section { padding: 100px 0; }

/* =========================
   Gradient Text
========================= */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================
   Buttons
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    padding: 0 28px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #B8912B 100%);
    color: #fff;
    box-shadow: 0 12px 30px rgba(212, 175, 55, .35);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, .45);
}

.btn-ghost {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

/* =========================
   Header
========================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, .95);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: var(--gold);
    border-radius: 14px;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(45, 27, 105, .25);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.4; }

.brand-text strong {
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.brand-text span {
    color: var(--text-light);
    font-size: 11px;
    font-weight: 500;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: auto;
}

.nav a {
    position: relative;
    color: var(--text);
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 10px;
    transition: var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
    background: var(--primary-light);
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; }

.phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 46px;
    padding: 0 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(45, 27, 105, .25);
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(45, 27, 105, .35);
}

.phone-btn i { font-size: 16px; color: var(--gold); }

/* Menu Toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    font-size: 22px;
    align-items: center;
    justify-content: center;
}

/* =========================
   Hero
========================= */
.hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(160deg, #1A0F45 0%, #2D1B69 50%, #4C2FA8 100%);
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, .15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(76, 47, 168, .4), transparent 50%);
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, .18);
    top: -100px;
    right: -100px;
    animation: float 12s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(76, 47, 168, .5);
    bottom: -80px;
    left: -80px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(212, 175, 55, .1);
    top: 40%;
    left: 40%;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, .15);
    border: 1px solid rgba(212, 175, 55, .35);
    color: var(--gold-light);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-tag i { color: var(--gold); font-size: 16px; }

.hero-title {
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -.5px;
}

.hero-title .gradient-text {
    display: block;
    background: linear-gradient(135deg, #F4E5A8 0%, var(--gold) 50%, #B8912B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: rgba(255, 255, 255, .78);
    font-size: 15.5px;
    line-height: 2.1;
    max-width: 580px;
    margin-bottom: 34px;
}

.hero-desc strong {
    color: var(--gold);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    font-weight: 500;
}

.trust-item i { color: var(--gold); font-size: 16px; }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 32px;
    overflow: visible;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-card-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-2) 100%);
    border-radius: 40px;
    filter: blur(40px);
    opacity: .5;
    z-index: -1;
}

.hero-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .4);
}

.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    padding: 12px 16px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
    animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-1 { top: 40px; right: -30px; animation-delay: 0s; }
.float-2 { bottom: 40px; left: -30px; animation-delay: 1.5s; }

.float-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.float-icon.gold {
    background: linear-gradient(135deg, var(--gold) 0%, #B8912B 100%);
    color: #fff;
}

.float-icon.purple {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: var(--gold);
}

.hero-float div { display: flex; flex-direction: column; line-height: 1.3; }
.hero-float strong { color: var(--primary); font-size: 13px; font-weight: 800; }
.hero-float small { color: var(--text-light); font-size: 10px; }

/* Stats Bar */
.stats-bar {
    position: relative;
    z-index: 2;
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    padding: 30px 24px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 10px;
    border-radius: 16px;
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(255, 255, 255, .06);
}

.stat-box i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 6px;
}

.stat-box strong {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.stat-box span {
    color: rgba(255, 255, 255, .65);
    font-size: 12.5px;
    font-weight: 500;
}

/* =========================
   Section Head
========================= */
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.section-tag i { color: var(--gold); font-size: 15px; }

.section-head h2 {
    color: var(--primary);
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 14px;
    letter-spacing: -.3px;
}

.section-head p {
    color: var(--text-light);
    font-size: 15px;
}

/* =========================
   Services
========================= */
.services { background: var(--bg-soft); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 30px 30px;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary-2));
    transition: width .4s ease;
}

.service-card:hover::before { width: 100%; }

.service-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 30px 60px rgba(45, 27, 105, .3);
}

.service-card.featured .service-icon {
    background: rgba(212, 175, 55, .2);
    color: var(--gold);
}

.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255, 255, 255, .75); }
.service-card.featured ul li { color: rgba(255, 255, 255, .85); }
.service-card.featured ul li i { color: var(--gold); }
.service-card.featured .service-link { color: var(--gold); }

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
}

.service-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 18px;
    font-size: 32px;
    margin-bottom: 22px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.08);
}

.service-card h3 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 2;
    margin-bottom: 22px;
}

.service-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.service-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
}

.service-card ul li i {
    color: var(--gold);
    font-size: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.service-link:hover { gap: 14px; color: var(--primary-2); }

/* =========================
   About
========================= */
.about { background: #fff; }

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 60%, rgba(45, 27, 105, .3));
    z-index: 1;
}

.about-img-wrap img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8912B 100%);
    color: #fff;
    padding: 24px 28px;
    border-radius: 22px;
    box-shadow: 0 25px 50px rgba(212, 175, 55, .4);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.about-experience strong {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.about-experience span {
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
    white-space: nowrap;
}

/* Glass Content */
.glass {
    background: rgba(245, 242, 255, .6);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 28px;
    padding: 44px 40px;
    box-shadow:
        0 20px 50px rgba(45, 27, 105, .08),
        inset 0 1px 0 rgba(255, 255, 255, .9);
}

.about-content h2 {
    color: var(--primary);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 18px;
}

.about-content > p {
    color: var(--text);
    font-size: 15px;
    line-height: 2.1;
    margin-bottom: 16px;
}

.about-content > p strong {
    color: var(--primary);
    font-weight: 800;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 14px;
    transition: var(--transition);
}

.about-feature:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.about-feature i {
    font-size: 26px;
    color: var(--gold);
    flex-shrink: 0;
}

.about-feature div { display: flex; flex-direction: column; line-height: 1.4; }
.about-feature strong {
    color: var(--primary);
    font-size: 13.5px;
    font-weight: 800;
}
.about-feature span {
    color: var(--text-light);
    font-size: 11.5px;
}

/* =========================
   Instructors
========================= */
.instructors { background: var(--bg-soft); }

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.instructor-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.instructor-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.instructor-img {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
    height: 280px;
}

.instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.instructor-card:hover .instructor-img img {
    transform: scale(1.08);
}

.instructor-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 27, 105, .85), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.instructor-card:hover .instructor-overlay { opacity: 1; }

.instructor-overlay a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .95);
    color: var(--primary);
    border-radius: 10px;
    font-size: 16px;
    transition: var(--transition);
    transform: translateY(15px);
}

.instructor-card:hover .instructor-overlay a {
    transform: translateY(0);
}

.instructor-overlay a:hover {
    background: var(--gold);
    color: #fff;
}

.instructor-card h3 {
    color: var(--primary);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 4px;
}

.instructor-card > span {
    color: var(--gold);
    font-size: 12.5px;
    font-weight: 600;
}

/* =========================
   Gallery Scroll
========================= */
.gallery {
    background: #fff;
    overflow: hidden;
}

.gallery-scroll-wrapper {
    overflow: hidden;
    padding: 10px 0 30px;
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 40px 25px;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

.gallery-scroll.dragging { cursor: grabbing; }

.gallery-scroll::-webkit-scrollbar { height: 8px; }

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--primary-light);
    border-radius: 10px;
    margin: 0 40px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    border-radius: 10px;
}

.gallery-item {
    position: relative;
    flex: 0 0 340px;
    height: 320px;
    border-radius: 22px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 22px;
    background: linear-gradient(to top, rgba(26, 15, 69, .95), transparent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.gallery-caption i { color: var(--gold); font-size: 18px; }

/* =========================
   Testimonials Scroll
========================= */
.testimonials {
    background: var(--bg-soft);
    overflow: hidden;
}

.testimonials-scroll-wrapper {
    overflow: hidden;
    padding: 10px 0 30px;
}

.testimonials-scroll {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 40px 25px;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

.testimonials-scroll.dragging { cursor: grabbing; }

.testimonials-scroll::-webkit-scrollbar { height: 8px; }

.testimonials-scroll::-webkit-scrollbar-track {
    background: #E5E0F5;
    border-radius: 10px;
    margin: 0 40px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    border-radius: 10px;
}

.testimonial-card {
    position: relative;
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 34px 28px 26px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    position: absolute;
    top: 22px;
    left: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    font-size: 22px;
}

.stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-card > p {
    color: var(--text);
    font-size: 14px;
    line-height: 2.1;
    margin-bottom: 22px;
    min-height: 90px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    flex-shrink: 0;
}

.testimonial-author div { display: flex; flex-direction: column; gap: 2px; }
.testimonial-author strong { color: var(--primary); font-size: 14px; font-weight: 800; }
.testimonial-author small { color: var(--text-light); font-size: 12px; }

/* =========================
   FAQ
========================= */
.faq { background: #fff; }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: right;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question:hover { color: var(--primary-2); }

.faq-question i {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    font-size: 18px;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff;
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 2.1;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

/* =========================
   CTA
========================= */
.cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #1A0F45 0%, var(--primary) 50%, var(--primary-2) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, .25), transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}

.cta::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(76, 47, 168, .5), transparent 70%);
    bottom: -180px;
    left: -100px;
    border-radius: 50%;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content h2 {
    color: #fff;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.4;
}

.cta-content p {
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   Contact
========================= */
.contact { background: var(--bg-soft); }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 34px 24px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: var(--gold);
    border-radius: 18px;
    font-size: 28px;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 15px 30px rgba(45, 27, 105, .3);
}

.contact-card h3 {
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 13.5px;
    line-height: 1.9;
}

/* =========================
   Footer
========================= */
.footer {
    background: #0F0830;
    color: rgba(255, 255, 255, .7);
    padding-top: 70px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-col .brand { margin-bottom: 20px; }
.footer-col .brand-icon {
    background: linear-gradient(135deg, var(--gold) 0%, #B8912B 100%);
    color: var(--primary);
}
.footer-col .brand-text strong { color: #fff; }
.footer-col .brand-text span { color: rgba(255, 255, 255, .5); }

.footer-col > p {
    font-size: 14px;
    line-height: 2;
    max-width: 340px;
    margin-bottom: 22px;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    transition: var(--transition);
}

.socials a:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #B8912B 100%);
    color: var(--primary);
    transform: translateY(-4px);
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 22px;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-col ul li a { transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-right: 5px; }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact li i {
    color: var(--gold);
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p { font-size: 13px; }

/* =========================
   Scroll Top
========================= */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: var(--gold);
    border-radius: 14px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(45, 27, 105, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(45, 27, 105, .45);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1200px) {
    .nav { gap: 2px; }
    .nav a { padding: 8px 10px; font-size: 13px; }
    .instructors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .nav, .header-cta { display: none; }
    .menu-toggle { display: flex; }

    .nav.open {
        display: flex;
        position: fixed;
        top: 80px;
        right: 20px;
        left: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        background: #fff;
        padding: 16px;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .nav.open a {
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 12px;
    }

    .hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }

    .stats-bar { grid-template-columns: repeat(2, 1fr); }

    .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

    .about-inner { grid-template-columns: 1fr; gap: 60px; }
    .about-experience { bottom: -20px; left: 20px; }

    .gallery-item { flex: 0 0 300px; height: 280px; }
    .gallery-scroll { padding: 10px 20px 25px; }
    .gallery-scroll::-webkit-scrollbar-track { margin: 0 20px; }

    .testimonial-card { flex: 0 0 340px; }
    .testimonials-scroll { padding: 10px 20px 25px; }
    .testimonials-scroll::-webkit-scrollbar-track { margin: 0 20px; }

    .faq-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    .container { width: calc(100% - 30px); }
    .section { padding: 70px 0; }

    .header { height: 70px; }
    .brand-icon { width: 42px; height: 42px; font-size: 22px; }
    .brand-text strong { font-size: 13.5px; }
    .brand-text span { font-size: 10.5px; }

    .nav.open { top: 70px; }

    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 32px; }
    .hero-desc { font-size: 14px; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }

    .hero-card img { height: 380px; border-radius: 24px; }
    .float-1 { top: 20px; right: -10px; padding: 10px 12px; }
    .float-2 { bottom: 20px; left: -10px; padding: 10px 12px; }
    .float-icon { width: 34px; height: 34px; font-size: 16px; }
    .hero-float strong { font-size: 11px; }
    .hero-float small { font-size: 9px; }

    .hero-trust { gap: 14px; flex-direction: column; align-items: center; }
    .trust-item { font-size: 12px; }

    .stats-bar {
        margin-top: 50px;
        padding: 20px 14px;
        gap: 12px;
        border-radius: 20px;
    }

    .stat-box strong { font-size: 24px; }
    .stat-box span { font-size: 11px; }
    .stat-box i { font-size: 22px; }

    .section-head { margin-bottom: 40px; }
    .section-tag { font-size: 12px; padding: 6px 14px; }

    .service-card { padding: 32px 24px 24px; }
    .service-icon { width: 58px; height: 58px; font-size: 26px; }

    .about-img-wrap img { height: 380px; }
    .about-experience { padding: 16px 20px; bottom: -15px; left: 15px; }
    .about-experience strong { font-size: 28px; }
    .about-experience span { font-size: 10.5px; }

    .glass { padding: 28px 22px; border-radius: 22px; }
    .about-features { grid-template-columns: 1fr; }

    .instructors-grid { grid-template-columns: 1fr; }
    .instructor-img { height: 320px; }

    .gallery-item { flex: 0 0 80vw; height: 260px; }
    .gallery-item .gallery-caption { font-size: 13px; padding: 16px 18px; }

    .testimonial-card { flex: 0 0 85vw; padding: 28px 22px; }
    .testimonial-card > p { min-height: auto; }

    .faq-question { padding: 18px 20px; font-size: 14px; }
    .faq-question i { width: 30px; height: 30px; font-size: 16px; }
    .faq-item.active .faq-answer { padding: 0 20px 20px; }

    .cta { padding: 55px 0; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-buttons { width: 100%; flex-direction: column; }
    .cta-buttons .btn { width: 100%; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-card { padding: 28px 20px; }

    .footer-inner { grid-template-columns: 1fr; gap: 35px; padding-bottom: 35px; }
    .footer { padding-top: 50px; }

    .scroll-top { bottom: 20px; left: 20px; width: 44px; height: 44px; font-size: 18px; }
}