@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --navy: #0b1e3d;
    --navy-light: #122952;
    --gold: #c9a84c;
    --gold-light: #e8c96e;
    --white: #ffffff;
    --off-white: #f5f7fa;
    --text: #333d4b;
    --text-light: #6b7a90;
    --border: rgba(201, 168, 76, 0.25);
    --surface: rgba(255, 255, 255, 0.94);
    --shadow: 0 20px 50px rgba(11, 30, 61, 0.1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

#loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--navy);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; color: var(--gold);
    letter-spacing: 3px;
    animation: pulse 1.5s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
}

.loader-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}
.loader-bar {
    width: 160px; height: 3px; background: rgba(255,255,255,0.1);
    border-radius: 2px; margin-top: 20px; overflow: hidden;
}
.loader-bar-inner {
    width: 0; height: 100%; background: var(--gold);
    border-radius: 2px;
    animation: load 1.8s ease forwards;
}
@keyframes load { to { width: 100%; } }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

#progress-bar {
    position: fixed; top: 0; left: 0; z-index: 2000;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(201,168,76,0.6);
}
@keyframes shimmer { 0%{background-position:0% 0} 100%{background-position:200% 0} }

.navbar {
    position: fixed; top: 3px; width: 100%; z-index: 1000;
    padding: 0 4%;
    background: rgba(7,18,38,0.9);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    box-shadow: 0 1px 0 rgba(201,168,76,0.12), 0 8px 32px rgba(0,0,0,0.28);
    border-bottom: 1px solid rgba(201,168,76,0.08);
    transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
    display: flex; align-items: center; justify-content: space-between;
    height: 84px;
}

.navbar.scrolled {
    background: rgba(7,18,38,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(201,168,76,0.15), 0 8px 40px rgba(0,0,0,0.4);
    height: 68px;
}

.navbar-brand {
    display: flex; align-items: center; gap: 14px; text-decoration: none;
    flex-shrink: 0;
}

.brand-mark {
    position: relative;
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; color: var(--navy); font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s;
    overflow: hidden;
}

.brand-mark img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}

.brand-mark::before {
    content: '';
    position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(201,168,76,0.8), transparent, rgba(201,168,76,0.8)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: spin 6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.navbar-brand:hover .brand-mark { transform: scale(1.08); }

.brand-text { display: flex; flex-direction: column; gap: 2px; }

.brand-title {
    font-family: 'Playfair Display', serif; font-size: 0.95rem;
    color: var(--white); font-weight: 700; line-height: 1.15; letter-spacing: 0.2px;
}

.brand-subtitle {
    font-size: 0.58rem; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; opacity: 0.85;
}

.navbar-nav {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0;
    list-style: none;
    margin-left: auto;
    margin-bottom: 0;
}

.nav-link {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.9); text-decoration: none;
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.6px;
    padding: 8px 14px; border-radius: 6px;
    transition: color 0.25s, background 0.25s;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: var(--gold); border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover { color: var(--gold-light); background: rgba(201,168,76,0.1); }
.nav-link:hover::after { width: calc(100% - 28px); }
.nav-link.active { color: var(--gold-light); }
.nav-link.active::after { width: calc(100% - 28px); }

.btn.nav-link {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--navy) !important; font-weight: 700 !important;
    padding: 9px 22px !important; border-radius: 6px !important;
    font-size: 0.82rem !important; letter-spacing: 0.5px;
    margin-left: 8px;
    box-shadow: 0 4px 16px rgba(201,168,76,0.35);
    transition: all 0.3s ease !important;
    white-space: nowrap;
}

.btn.nav-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(201,168,76,0.5) !important;
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
}

.btn.nav-link { display: flex !important; }

/* NAV DOT DIVIDER */
.nav-dot {
    width: 3px; height: 3px; border-radius: 50%;
    background: rgba(255,255,255,0.15); margin: 0 4px; flex-shrink: 0;
    display: none;
}

/* HAMBURGER MENU */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; z-index: 1100; padding: 8px;
    border-radius: 8px; transition: background 0.3s;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.hamburger:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.2); }

.hamburger span {
    width: 22px; height: 2px; background: var(--white);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1); border-radius: 2px; display: block;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* MOBILE OVERLAY */
.nav-overlay {
    display: none; position: fixed; inset: 0; z-index: 1050;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
}

.nav-overlay.open { display: block; }

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .nav-dot { display: none !important; }
    
    .btn.nav-link { 
        display: flex !important; 
        margin-left: 0 !important; 
        margin-top: 16px;
        justify-content: center; 
        text-align: center;
        padding: 13px 22px !important;
        width: 100%;
    }

    .navbar-nav {
        position: fixed; top: 0; right: -100%; bottom: 0;
        width: min(320px, 85vw);
        flex-direction: column; align-items: stretch; justify-content: flex-start;
        background: rgba(5,14,31,0.98);
        backdrop-filter: blur(24px);
        padding: 90px 24px 40px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
        border-left: 1px solid rgba(201,168,76,0.12);
        box-shadow: -20px 0 60px rgba(0,0,0,0.5);
        overflow-y: auto;
    }

    .navbar-nav.open { right: 0; }

    .navbar-nav li { border: none; }

    .nav-link {
        font-size: 0.95rem; 
        padding: 13px 16px; 
        border-radius: 8px;
        border: 1px solid transparent;
        justify-content: flex-start;
    }

    .nav-link:hover, .nav-link.active {
        background: rgba(201,168,76,0.08);
        border-color: rgba(201,168,76,0.15);
    }

    .nav-link::after { display: none; }
    .nav-link i { font-size: 0.85rem; opacity: 0.7; }

    .hamburger { display: flex; }
}

@media (min-width: 901px) {
    .nav-dot { display: block; }
    .navbar-nav > li { display: flex; align-items: center; flex: 0 0 auto; }
    .navbar-nav > li:last-child { margin-left: 8px; }
    .navbar-nav > li .nav-link.btn { margin-left: 8px; }
}

#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #061226 0%, #0b1e3d 50%, #172f5c 100%);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 0 5%;
    margin-top: 84px;
}

.hero-particles {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}

.particle {
    position: absolute; border-radius: 50%;
    background: var(--gold); opacity: 0.08;
    animation: float linear infinite;
}

@keyframes float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.08; }
    90% { opacity: 0.08; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-grid-lines {
    position: absolute; inset: 0; pointer-events: none;
    background-image: 
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content { position: relative; z-index: 2; max-width: 700px; padding-top: 100px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 16px; border-radius: 20px; margin-bottom: 28px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.7s ease 0.3s forwards;
}

.hero-badge span { font-size: 0.78rem; color: var(--gold); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.hero-badge i { color: var(--gold); font-size: 0.8rem; }

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white); line-height: 1.15; font-weight: 700;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title .highlight { color: var(--gold); }
.hero-title .highlight::after {
    content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 3px;
    background: var(--gold); opacity: 0.4; border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.08rem; color: rgba(255,255,255,0.65); line-height: 1.75;
    margin-top: 20px; max-width: 540px;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-stats {
    display: flex; gap: 40px; margin-top: 40px;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-stat { text-align: center; }
.hero-stat strong { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); font-weight: 700; line-height: 1; display: block; }
.hero-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.5px; text-transform: uppercase; }

.hero-btns {
    display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 0.8s ease 1.1s forwards;
}

.btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 14px 32px; border-radius: 4px;
    font-weight: 700; font-size: 0.92rem; text-decoration: none;
    letter-spacing: 0.5px; transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    display: inline-flex; align-items: center; gap: 8px;
    border: none; cursor: pointer;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }

.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.3); color: var(--white);
    padding: 14px 32px; border-radius: 4px;
    font-weight: 500; font-size: 0.92rem; text-decoration: none;
    transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeIn 1s ease 1.8s forwards;
}

.hero-scroll span { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; }

.scroll-dot {
    width: 20px; height: 30px; border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 10px; position: relative;
}

.scroll-dot::after {
    content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
    width: 3px; height: 6px; background: var(--gold); border-radius: 2px;
    animation: scrollAnim 1.8s ease infinite;
}

@keyframes scrollAnim { 0%,100%{top:5px;opacity:1} 50%{top:16px;opacity:0.3} }

.ticker-wrap {
    background: var(--gold);
    overflow: hidden; padding: 12px 0; position: relative;
}

.ticker-inner {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.82rem; font-weight: 600; color: var(--navy);
    letter-spacing: 0.8px; text-transform: uppercase; padding: 0 30px;
}

.ticker-item i { color: var(--navy); opacity: 0.7; }

@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

section { padding: 90px 5%; }

.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 12px;
}

.section-label span {
    font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
}

.section-label::before, .section-label::after {
    content: ''; width: 30px; height: 1.5px; background: var(--gold); opacity: 0.5;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--navy); font-weight: 700; line-height: 1.2;
}

.section-title.white { color: var(--white); }

.section-sub {
    font-size: 1rem; color: var(--text-light); line-height: 1.75; margin-top: 14px; max-width: 580px;
}

.section-sub.white { color: rgba(255,255,255,0.65); }

.divider {
    width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0 40px;
}

#services { background: var(--off-white); }

.services-header { text-align: center; margin-bottom: 56px; }
.services-header .divider { margin: 16px auto 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px;
    padding: 36px 28px;
    position: relative; overflow: hidden;
    transition: all 0.4s ease;
    cursor: default;
    opacity: 0; transform: translateY(40px);
}

.service-card.visible { animation: fadeUp 0.6s ease forwards; }

.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 0; height: 3px; background: var(--gold);
    transition: width 0.4s ease;
}

.service-card:hover::before { width: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(11,30,61,0.1); }

.service-icon {
    width: 56px; height: 56px; border-radius: 8px;
    background: rgba(11,30,61,0.06);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; transition: all 0.3s;
}

.service-icon i { font-size: 1.5rem; color: var(--navy); transition: all 0.3s; }
.service-card:hover .service-icon { background: var(--navy); }
.service-card:hover .service-icon i { color: var(--gold); }

.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px; font-size: 0.82rem; color: var(--gold); font-weight: 600;
    text-decoration: none; transition: gap 0.3s;
}

.service-card:hover .service-link { gap: 10px; }

#about { background: var(--white); }

.about-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: center;
}

.about-img-wrap {
    position: relative; opacity: 0; transform: translateX(-40px);
    transition: all 0.8s ease;
}

.about-img-wrap.visible { opacity: 1; transform: translateX(0); }

.about-img-frame {
    position: relative; border-radius: 10px; overflow: hidden;
    box-shadow: 0 30px 70px rgba(11,30,61,0.15);
}

.about-img-frame img {
    width: 100%; height: 480px; object-fit: cover; object-position: top center;
    display: block; filter: brightness(0.97);
}

.about-img-placeholder {
    width: 100%; height: 480px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
    border-radius: 10px;
}

.about-img-placeholder i { font-size: 5rem; color: rgba(201,168,76,0.4); }
.about-img-placeholder span { font-size: 0.85rem; color: rgba(255,255,255,0.4); letter-spacing: 1px; }

.about-img-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--gold); color: var(--navy);
    padding: 18px 24px; border-radius: 8px;
    text-align: center; box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}

.about-img-badge strong { display: block; font-size: 2rem; font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1; }
.about-img-badge span { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }

.about-deco {
    position: absolute; top: -20px; left: -20px; width: 100px; height: 100px;
    border: 3px solid var(--gold); border-radius: 6px; opacity: 0.25;
    animation: rotateSlow 12s linear infinite;
}

@keyframes rotateSlow { to { transform: rotate(360deg); } }

.about-content { opacity: 0; transform: translateX(40px); transition: all 0.8s ease 0.2s; }
.about-content.visible { opacity: 1; transform: translateX(0); }

.about-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; color: var(--navy); font-weight: 700; margin-bottom: 4px;
}

.about-title-tag {
    font-size: 0.85rem; color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}

.about-desc { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }

.about-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.about-info-item { display: flex; align-items: flex-start; gap: 10px; }
.about-info-item i { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }

.about-info-label { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 2px; }
.about-info-val { font-size: 0.88rem; color: var(--navy); font-weight: 600; }

.about-registrations {
    background: var(--off-white); border-radius: 8px; padding: 18px 20px;
    border-left: 3px solid var(--gold); margin-top: 10px;
}

.about-registrations p { font-size: 0.82rem; color: var(--text); margin-bottom: 4px; }
.about-registrations p:last-child { margin-bottom: 0; }
.about-registrations p span { font-weight: 600; color: var(--navy); }

#why {
    background: linear-gradient(135deg, #08172e 0%, #12315f 55%, #0b2142 100%);
    position: relative; overflow: hidden;
}

#why::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.why-header {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.why-header .divider {
    margin: 16px auto 0;
}

.why-header .section-label span,
.why-header .section-title,
.why-header .section-sub {
    position: relative;
    z-index: 1;
}

.why-header .section-sub {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    position: relative;
    z-index: 1;
}

.why-list { list-style: none; margin-top: 32px; }

.why-list li {
    display: flex; gap: 16px; margin-bottom: 24px;
    opacity: 0; transform: translateX(-20px); transition: all 0.5s ease;
}

.why-list li.visible { opacity: 1; transform: translateX(0); }

.why-icon {
    width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.why-icon i { color: var(--gold); font-size: 1rem; }
.why-list h4 { font-size: 0.95rem; color: var(--white); font-weight: 600; margin-bottom: 4px; }
.why-list p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

.why-visual {
    position: relative; opacity: 0; transform: scale(0.9);
    transition: all 0.8s ease 0.3s;
}

.why-visual.visible { opacity: 1; transform: scale(1); }

.why-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(232,201,110,0.18);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(3, 10, 24, 0.18);
}

.why-card i {
    color: var(--gold-light);
    font-size: 1.4rem;
    margin-bottom: 18px;
    display: inline-block;
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    line-height: 1.7;
}

.why-big-num {
    font-family: 'Playfair Display', serif;
    font-size: 5rem; color: var(--gold); font-weight: 700; line-height: 1;
    text-shadow: 0 0 40px rgba(201,168,76,0.4);
}

.why-big-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }

.why-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }

.why-mini {
    background: rgba(255,255,255,0.04); border-radius: 8px; padding: 20px;
    text-align: center; border: 1px solid rgba(201,168,76,0.1);
}

.why-mini strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); }
.why-mini span { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; }

#process { background: var(--off-white); }

.process-header {
    text-align: center;
    margin-bottom: 32px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.process-header .divider { margin: 16px auto 0; }

.process-shell {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 24px;
    padding: 36px 28px 30px;
    box-shadow: 0 24px 60px rgba(11,30,61,0.08);
}

.process-timeline {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; position: relative;
    max-width: 900px; margin: 0 auto;
}

.process-timeline::before {
    content: ''; position: absolute;
    top: 32px; left: 12.5%; right: 12.5%;
    height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 0;
}

.process-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }

.process-num {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--navy); border: 3px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.3rem;
    color: var(--gold); font-weight: 700; margin: 0 auto 20px;
    box-shadow: 0 0 0 6px rgba(201,168,76,0.12);
    transition: all 0.3s;
}

.process-step:hover .process-num {
    background: var(--gold); color: var(--navy);
    transform: scale(1.1);
}

.process-step h4 { font-size: 0.95rem; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; }

.process-num {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--navy); border: 3px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.3rem;
    color: var(--gold); font-weight: 700; margin: 0 auto 20px;
    box-shadow: 0 0 0 6px rgba(201,168,76,0.12);
    transition: all 0.3s;
}

.process-step:hover .process-num {
    background: var(--gold); color: var(--navy);
    transform: scale(1.1);
}

#testimonials { background: var(--white); }

.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .divider { margin: 16px auto 0; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

.testimonial-card {
    background: var(--off-white); border-radius: 10px; padding: 32px 28px;
    border: 1px solid rgba(0,0,0,0.05); position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0; transform: translateY(30px);
}

.testimonial-card.visible { animation: fadeUp 0.6s ease forwards; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(11,30,61,0.09); }

.quote-icon {
    font-size: 3rem; color: var(--gold); opacity: 0.25;
    font-family: Georgia, serif; line-height: 1; margin-bottom: 12px;
}

.testimonial-text { font-size: 0.9rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 20px; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--navy); display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); font-weight: 700;
}

.author-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.author-tag { font-size: 0.75rem; color: var(--text-light); }

.stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 12px; }

#contact {
    background: linear-gradient(135deg, #061226 0%, #0b1e3d 100%);
    position: relative; overflow: hidden;
}

#contact::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 70% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
}

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }

.contact-info { position: relative; z-index: 1; }

.contact-items { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.12); border-radius: 8px;
    transition: all 0.3s;
}

.contact-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.3); }

.contact-item-icon {
    width: 44px; height: 44px; border-radius: 8px;
    background: rgba(201,168,76,0.12);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.contact-item-icon i { color: var(--gold); font-size: 1rem; }

.contact-item-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item-val { font-size: 0.92rem; color: var(--white); font-weight: 500; }
.contact-item-val a { color: var(--gold); text-decoration: none; }
.contact-item-val a:hover { text-decoration: underline; }

.contact-form-wrap {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.15);
    border-radius: 12px; padding: 40px; position: relative; z-index: 1;
}

.contact-form-wrap h3 {
    font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }

.form-group label { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 6px; display: block; }

.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px; color: var(--white); font-size: 0.9rem; font-family: 'Inter', sans-serif;
    outline: none; transition: all 0.3s;
}

.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold); background: rgba(255,255,255,0.07);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
    width: 100%; padding: 14px; border: none; border-radius: 6px;
    background: var(--gold); color: var(--navy);
    font-size: 0.95rem; font-weight: 700; cursor: pointer;
    font-family: 'Inter', sans-serif; letter-spacing: 0.5px;
    transition: all 0.3s; box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

#back-top {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gold); color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem; border: none;
    box-shadow: 0 4px 20px rgba(201,168,76,0.5);
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
}

#back-top.visible { opacity: 1; visibility: visible; }
#back-top:hover { transform: translateY(-4px); }

/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, #061226 0%, #0b1e3d 45%, #09172f 100%);
    color: var(--white);
    border-top: 1px solid rgba(201,168,76,0.12);
}

.footer-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.28);
    overflow: hidden;
}

.footer-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-badge {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.22);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.footer-grid { margin-bottom: 22px; }

.footer-card {
    height: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 24px;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-about p,
.footer-cta p {
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 16px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
}

.footer-contact-list i {
    color: var(--gold);
    width: 18px;
    margin-right: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
    border-color: rgba(201,168,76,0.18);
    background: rgba(201,168,76,0.08);
    transform: translateX(4px);
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-actions .btn {
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .footer-panel { padding: 20px; }
    .footer-brand-row { align-items: flex-start; }
    .footer-bottom-row { flex-direction: column; align-items: flex-start; }
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

@media (max-width: 900px) {
    .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-timeline { grid-template-columns: 1fr 1fr; }
    .process-timeline::before { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .about-img-badge { right: 0; bottom: -10px; }
    .why-visual { order: -1; }
}

@media (max-width: 560px) {
    section { padding: 60px 5%; }
    .process-timeline { grid-template-columns: 1fr; }
    .about-info-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; }
}

/* DASHBOARD HERO SECTIONS */
.dashboard-hero {
    background: linear-gradient(135deg, rgba(11,30,61,0.5), rgba(23,47,92,0.5));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 12px;
    padding: 40px;
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-hero-admin { border-left: 4px solid #e8c96e; }
.dashboard-hero-customer { border-left: 4px solid #4caf50; }

.dashboard-hero .eyebrow {
    font-size: 0.72rem;
    color: rgba(201,168,76,1);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.dashboard-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}

.dashboard-hero p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    margin-bottom: 0;
}

.dashboard-hero .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .dashboard-hero {
        padding: 24px;
        margin-top: 100px;
    }
    
    .dashboard-hero h1 {
        font-size: 1.5rem;
    }
}

/* METRIC CARDS FOR DASHBOARDS */
.metric-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.metric-card:hover {
    background: rgba(201,168,76,0.1);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
}

.metric-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.metric-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--gold);
    font-weight: 700;
}
