/* =========================================
   ILMORA PERSONAL DEVELOPMENT CENTER
   Premium CSS - Aura of Knowledge
   ========================================= */

:root {
    --primary: #3d1e59;
    --gold: #c37f1a;
    --pink: #452065;
    --white: #ffffff;
    --light-bg: #fdf9fc;
    --dark: #1a0a17;
    --text: #4a2a44;
    --muted: #7a6a76;
    --gradient-1: linear-gradient(135deg, #800d6a 0%, #452065 100%);
    --gradient-2: linear-gradient(135deg, #c37f1a 0%, #f4c430 100%);
    --gradient-3: linear-gradient(135deg, #800d6a 0%, #c37f1a 100%);
    --soft-purple: #f3e6f1;
    --soft-pink: #fde7f3;
    --soft-gold: #fdf3df;
    --shadow-sm: 0 4px 12px rgba(128, 13, 106, 0.08);
    --shadow-md: 0 10px 30px rgba(128, 13, 106, 0.12);
    --shadow-lg: 0 20px 50px rgba(128, 13, 106, 0.18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
}


.logo-img {
    height: 100px;   /* size control (increase/decrease as needed) */
    width: auto;
    display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--dark);
    line-height: 1.3;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(128, 13, 106, 0.06);
    padding: 14px 0;
    transition: all 0.3s ease;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 22px;
    color: var(--primary);
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    font-size: 22px;
    box-shadow: 0 6px 20px rgba(128, 13, 106, 0.35);
    font-family: 'Playfair Display', serif;
}

.logo-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--primary);
    line-height: 1.1;
}

.logo-text small {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 15px;
    color: var(--dark);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-right: 50px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
    background: var(--soft-purple);
}

.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▾';
    margin-left: 6px;
    font-size: 11px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--gold);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background: var(--soft-purple);
    color: var(--primary);
    padding-left: 22px;
}

.nav-cta {
    background: var(--gradient-1);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    box-shadow: 0 6px 18px rgba(128, 13, 106, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(128, 13, 106, 0.4);
    background: var(--primary) !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary);
    margin: 6px auto;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 7px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--soft-purple) 0%, var(--soft-pink) 50%, var(--soft-gold) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(195, 127, 26, 0.15), transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202, 20, 131, 0.12), transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 2px solid var(--soft-pink);
    animation: fadeUp 0.8s ease;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--dark);
    animation: fadeUp 0.9s ease;
}

.hero h1 .gold {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero .tagline {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    animation: fadeUp 1s ease;
}

.hero p.lead {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 540px;
    animation: fadeUp 1.1s ease;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 1.2s ease;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    animation: fadeUp 1.3s ease;
}

.stat-item h3 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 4px;
    font-weight: 800;
}

.stat-item p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.hero-image {
    position: relative;
    animation: fadeUp 1.2s ease;
}

.hero-image .img-main {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-image .img-float {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    border: 6px solid var(--white);
    z-index: 3;
}

.hero-image .img-float.top {
    top: 30px;
    right: -30px;
    transform: rotate(8deg);
    animation: bounce 4s ease-in-out infinite;
}

.hero-image .img-float.bottom {
    bottom: 30px;
    left: -30px;
    transform: rotate(-8deg);
    animation: bounce 4s ease-in-out infinite 2s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(8deg); }
    50% { transform: translateY(-15px) rotate(8deg); }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(128, 13, 106, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-2);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(195, 127, 26, 0.4);
}

.btn-gold {
    background: var(--gradient-2);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(195, 127, 26, 0.35);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(195, 127, 26, 0.5);
}

.btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============ SECTIONS ============ */
section {
    padding: 90px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    color: var(--dark);
}

.section-title h2 .gold {
    color: var(--gold);
    font-style: italic;
}

.section-title p {
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
}

/* ============ CARDS ============ */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(128, 13, 106, 0.06);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--soft-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.card:hover .card-icon {
    background: var(--gradient-1);
    color: var(--white);
    transform: rotate(-8deg) scale(1.1);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--dark);
}

.card p {
    color: var(--muted);
    font-size: 15px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 18px;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 14px;
    color: var(--gold);
}

/* ============ PAGE HEADER ============ */
.page-header {
    background: linear-gradient(135deg, var(--soft-purple) 0%, var(--soft-pink) 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(195, 127, 26, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(202, 20, 131, 0.08) 0%, transparent 50%);
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.page-header p {
    color: var(--text);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--muted);
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--gold);
}

/* ============ STAGES SECTION ============ */
.stages {
    background: linear-gradient(135deg, var(--primary) 0%, var(--pink) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stages .section-title h2,
.stages .section-title p,
.stages .section-title .subtitle {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.stages .section-title .subtitle {
    color: var(--gold);
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stage-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.stage-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.stage-num {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 10px 30px rgba(195, 127, 26, 0.5);
}

.stage-card h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 14px;
    font-style: italic;
}

.stage-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

/* ============ ABOUT PREVIEW ============ */
.about-preview {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image .experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.experience-badge h3 {
    color: var(--white);
    font-size: 42px;
    line-height: 1;
    margin-bottom: 4px;
}

.experience-badge p {
    font-size: 13px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.about-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--dark);
}

.about-content h2 .gold {
    color: var(--gold);
    font-style: italic;
}

.about-content p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 16px;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text);
    font-weight: 500;
}

.feature-list li::before {
    content: '✓';
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* ============ SERVICES GRID ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.card:hover .service-img {
    transform: scale(1.05);
}

/* ============ WHY CHOOSE ============ */
.why-choose {
    background: var(--light-bg);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

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

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--soft-purple), var(--soft-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.why-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.why-card p {
    color: var(--muted);
    font-size: 14px;
}

/* ============ COUNTERS ============ */
.counters {
    background: linear-gradient(135deg, var(--primary) 0%, var(--pink) 50%, var(--gold) 100%);
    color: var(--white);
    padding: 70px 0;
    position: relative;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-item h3 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 800;
}

.counter-item p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    background: var(--white);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.test-card {
    background: linear-gradient(135deg, var(--soft-purple), var(--soft-pink));
    border-radius: var(--radius-md);
    padding: 36px 30px;
    position: relative;
    transition: all 0.4s ease;
}

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

.test-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 24px;
    font-size: 100px;
    color: var(--primary);
    opacity: 0.15;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stars {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 18px;
}

.test-card p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 15px;
    position: relative;
    z-index: 2;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.test-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
}

.test-author h4 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.test-author span {
    font-size: 13px;
    color: var(--muted);
}

/* ============ GALLERY ============ */
.gallery {
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(128, 13, 106, 0.3), rgba(195, 127, 26, 0.3));
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:nth-child(1) { grid-row: span 2; }

/* ============ FAQ ============ */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.faq-q {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
}

.faq-q::after {
    content: '+';
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-q::after {
    transform: rotate(45deg);
    color: var(--gold);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--muted);
    padding: 0 28px;
}

.faq-item.active .faq-a {
    max-height: 300px;
    padding: 0 28px 22px 28px;
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: var(--gradient-3);
    color: var(--white);
    text-align: center;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--primary);
}

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(135deg, #2a0a25 0%, #4a0a3d 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.footer .logo {
    margin-bottom: 20px;
}

.footer .logo-text strong {
    color: var(--white);
}

.footer .logo-text small {
    color: var(--gold);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer ul li a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact .icon {
    color: var(--gold);
    font-size: 16px;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
    font-size: 16px;
}

.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: var(--gold);
}

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: var(--gradient-1);
    color: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-info h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 14px;
    position: relative;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
}

.contact-info ul {
    list-style: none;
    position: relative;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-info .icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
}

.contact-info h5 {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.contact-info p {
    color: var(--white);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.contact-info a {
    color: var(--white);
}

.contact-info a:hover {
    color: var(--gold);
}

.form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-wrap h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.form-wrap > p {
    color: var(--muted);
    margin-bottom: 26px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #f0e6f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    transition: all 0.3s;
    background: var(--light-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(128, 13, 106, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.map-section {
    background: var(--light-bg);
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============ SERVICE DETAIL ============ */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.service-detail-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-detail-img:hover img {
    transform: scale(1.05);
}

.service-detail-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 18px;
    color: var(--dark);
}

.service-detail-content h2 .gold {
    color: var(--gold);
    font-style: italic;
}

.service-detail-content > p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 16px;
}

.service-detail-content .feature-list {
    margin: 24px 0 0 0;
}

.service-detail-content .feature-list li {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 12px;
}

.service-block {
    margin-bottom: 70px;
}

/* ============ ANIMATIONS ============ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ WAVE ============ */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* ============ PROGRAMS LIST ============ */
.programs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.program-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.program-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary);
}

.program-item h4 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.program-item p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

/* ============ EVENTS TIMELINE ============ */
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.event-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card:hover img {
    transform: scale(1.1);
}

.event-card-body {
    padding: 26px;
}

.event-date {
    display: inline-block;
    background: var(--soft-purple);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.event-card-body h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.event-card-body p {
    color: var(--muted);
    font-size: 14px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-wrap,
    .about-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image .img-main {
        height: 420px;
    }

    .why-grid,
    .counters-grid,
    .test-grid,
    .stages-grid,
    .event-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px 24px;
        gap: 8px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        align-items: stretch;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu > li > a {
        padding: 12px 16px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--gold);
        margin-left: 16px;
        margin-top: 8px;
        display: none;
        background: var(--light-bg);
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-image .img-main {
        height: 360px;
    }

    .hero-image .img-float {
        width: 120px;
        height: 120px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    section {
        padding: 60px 0;
    }

    .why-grid,
    .counters-grid,
    .test-grid,
    .stages-grid,
    .event-grid,
    .programs-list,
    .footer-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-rows: repeat(5, 200px);
    }

    .gallery-item:nth-child(1) { grid-row: span 1; }

    .form-row {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        right: 20px;
        bottom: 20px;
        padding: 18px;
    }

    .experience-badge h3 {
        font-size: 32px;
    }

    .contact-info,
    .form-wrap {
        padding: 30px 24px;
    }

    .counter-item h3 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-wrap {
        padding: 0 16px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .logo-text strong {
        font-size: 16px;
    }

    .logo-text small {
        font-size: 9px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}
