/* ===========================
   M-MDRT — Premium Website
   Alternating Navy & White + BG Images
   =========================== */

:root {
    --navy:       #0a1628;
    --navy-light: #11243d;
    --navy-mid:   #162d50;
    --gold:       #c9a84c;
    --gold-light: #e0c76a;
    --gold-dark:  #a8882e;
    --white:      #ffffff;
    --off-white:  #f8f9fc;
    --gray-100:   #e8eaef;
    --gray-200:   #d0d4de;
    --gray-300:   #a0a6b5;
    --gray-400:   #6b7280;
    --gray-500:   #4b5563;
    --text-dark:  #1e293b;
    --text-body:  #475569;
    --text-light: #cbd5e1;
    --text-muted: #8a90a0;
    --radius:     12px;
    --radius-lg:  20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --brand-blue: #6587A2;
    --brand-gold: #987F54;
    --brand-gold-light: #DED198;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Prompt', sans-serif;
    background: var(--navy);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.text-left { text-align: left; }

/* ===========================
   LOADING SCREEN
   =========================== */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), visibility 0.8s;
}
.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
}
.loader { text-align: center; }
.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 16px;
    animation: logoBreath 2s ease-in-out infinite;
}
@keyframes logoBreath {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); }
}
.loader-count {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 600;
}
.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(201,168,76,0.15);
    border-radius: 10px;
    overflow: hidden;
}
.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gold);
    border-radius: 10px;
    animation: loadProgress 1.5s ease forwards;
}
@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ===========================
   SCROLL PROGRESS BAR
   =========================== */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 1001;
    width: 0%;
    transition: width 0.1s linear;
}

/* ===========================
   FLOATING ACTIONS
   =========================== */
.floating-actions {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
}

.fab-btn, .back-to-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    text-decoration: none;
    color: var(--white);
}
.fab-btn svg { width: 24px; height: 24px; }

.fab-phone { background: #007BFF; }
.fab-line { background: #06C755; }
.fab-facebook { background: #1877F2; }

.fab-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    color: var(--white);
}

.back-to-top {
    background: var(--gold);
    color: var(--navy);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-4px) scale(1);
    color: var(--navy);
}
.back-to-top svg { width: 22px; height: 22px; stroke-width: 2.5; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { 
    display: flex; 
    align-items: center; 
    gap: 12px;
    font-family: 'Prompt', sans-serif; /* Changed to Prompt for better subtitle alignment */
    text-decoration: none;
}
.logo-img {
    width: 74px;
    height: 74px;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}
.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: baseline;
}
.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-top: 2px;
}
.color-blue {
    color: var(--brand-blue);
}
.color-gold {
    background: linear-gradient(to right, var(--brand-gold), var(--brand-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-m { color: var(--gold); }
.logo-dash { color: var(--gray-300); margin: 0 2px; }
.logo-mdrt { color: var(--white); }
.nav-links { display: flex; gap: 36px; }
.nav-link {
    font-size: 0.9rem; font-weight: 400; color: var(--gray-300);
    position: relative; padding: 4px 0; transition: var(--transition);
}
.nav-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--gold); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
    background: var(--gold); color: var(--navy); padding: 10px 28px;
    border-radius: 50px; font-weight: 600; font-size: 0.85rem; transition: var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block; padding: 14px 36px; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem; transition: var(--transition);
    cursor: pointer; border: none; font-family: 'Prompt', sans-serif;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover {
    background: var(--gold-light); transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}
.btn-outline { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; }

/* ================================================
   HERO — with background image & particles
   ================================================ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 120px 24px 80px; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.80) 50%, rgba(10,22,40,0.95) 100%);
}
.hero-particles {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.08);
    animation: float 20s infinite ease-in-out; z-index: 1;
}
.hero::after {
    content: ''; position: absolute; bottom: -30%; left: -10%;
    width: 400px; height: 400px; border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.05);
    animation: float 15s infinite ease-in-out reverse; z-index: 1;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(5deg); }
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-tag {
    font-size: 0.8rem; font-weight: 500; letter-spacing: 4px;
    color: var(--gold); margin-bottom: 24px; text-transform: uppercase;
}
.hero-title {
    font-family: 'Prompt', sans-serif; font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.6); max-width: 600px;
    margin: 0 auto 40px; font-weight: 300; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%); display: flex; flex-direction: column;
    align-items: center; gap: 8px; z-index: 2;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ================================================
   STATS BAR — WHITE
   ================================================ */
.stats-bar { background: var(--white); padding: 52px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.04); }
.stats-grid { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold-dark); }
.stat-suffix { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--gold-dark); }
.stat-label { display: block; font-size: 0.85rem; color: var(--gray-400); margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: var(--gray-100); }

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { font-size: 0.75rem; font-weight: 500; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: 'Prompt', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.section-desc { font-size: 1rem; max-width: 600px; margin: 0 auto; font-weight: 300; color: var(--text-muted); }

/* Fix overlap for subpages with fixed navbar */
body > section:first-of-type:not(.hero) {
    padding-top: 160px !important;
}

/* ================================================
   WHY SECTION — LIGHT with subtle pattern
   ================================================ */
.why-section { padding: 100px 0; background: var(--white); position: relative; overflow: hidden; }
.why-section .section-title { color: var(--navy); }
.why-section .section-desc { color: var(--text-body); }
.why-bg-pattern {
    position: absolute; inset: 0; opacity: 0.05;
    background-image:
        radial-gradient(circle at 25% 25%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--gold) 1px, transparent 1px);
    background-size: 60px 60px;
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
    background: var(--navy); border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg); padding: 40px 28px; text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    opacity: 0; transform: translateY(30px);
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.08); /* slight shadow for depth against white */
}
.why-card.visible { opacity: 1; transform: translateY(0); }
.why-card:hover {
    border-color: rgba(201, 168, 76, 0.4); transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.15);
}
.why-icon { width: 56px; height: 56px; margin: 0 auto 20px; color: var(--gold); }
.why-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: 0.9rem; color: var(--gray-300); font-weight: 300; line-height: 1.7; }

/* ================================================
   SERVICES — LIGHT SECTION
   ================================================ */
.services-section { padding: 100px 0; background: var(--white); position: relative; }
.services-section .section-title { color: var(--navy); }
.services-section .section-desc { color: var(--text-body); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
    background: rgba(17, 36, 61, 0.8); border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg); padding: 40px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    opacity: 0; transform: translateY(30px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.08); /* shadow for depth */
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover {
    border-color: rgba(201, 168, 76, 0.4); transform: translateY(-4px) !important;
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.15);
}
.service-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; line-height: 1; margin-bottom: 16px; color: rgba(201, 168, 76, 0.3); }
.service-card h3 { font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 12px; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
.service-card p { font-size: 0.95rem; color: var(--white); font-weight: 400; margin-bottom: 20px; line-height: 1.7; text-shadow: 0 1px 4px rgba(0,0,0,0.8); }
.service-list { display: flex; flex-direction: column; gap: 12px; }
.service-list li { font-size: 0.92rem; color: var(--white); font-weight: 400; padding-left: 20px; position: relative; text-shadow: 0 1px 4px rgba(0,0,0,0.8); }
.service-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* ================================================
   PROCESS — DARK with bg image
   ================================================ */
.process-section { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.process-section .section-title { color: var(--white); }
.process-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1920&q=80') center/cover no-repeat;
    opacity: 0.06;
}
.process-horizontal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-card {
    position: relative; background: rgba(17, 36, 61, 0.7);
    border: 1px solid rgba(201, 168, 76, 0.1); border-radius: var(--radius-lg);
    padding: 36px 28px 32px; text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    opacity: 0; transform: translateY(30px);
    backdrop-filter: blur(10px);
}
.process-card.visible { opacity: 1; transform: translateY(0); }
.process-card:hover {
    border-color: rgba(201, 168, 76, 0.35); transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 168, 76, 0.06);
}
.process-card-top { display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; }
.process-icon-wrap {
    position: relative; width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy));
    border: 2px solid var(--gold); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; z-index: 2;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.12), 0 0 40px rgba(201, 168, 76, 0.05);
    transition: var(--transition);
}
.process-card:hover .process-icon-wrap {
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.25), 0 0 60px rgba(201, 168, 76, 0.1);
    border-color: var(--gold-light);
}
.process-icon-wrap svg { width: 28px; height: 28px; color: var(--gold); transition: var(--transition); }
.process-card:hover .process-icon-wrap svg { color: var(--gold-light); transform: scale(1.1); }
.process-num {
    position: absolute; top: -8px; right: -8px; width: 26px; height: 26px;
    border-radius: 50%; background: var(--gold); color: var(--navy);
    font-family: 'Playfair Display', serif; font-size: 0.7rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}
.process-connector {
    position: absolute; top: 50%; left: calc(50% + 44px); right: -24px;
    height: 2px; transform: translateY(-50%); z-index: 1; overflow: hidden;
}
.process-connector span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, 0.15)); }
.process-card:last-child .process-connector { display: none; }
.process-card h4 { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.process-card p { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; }

/* ================================================
   ABOUT — DARK (UPDATED)
   ================================================ */
.about-section { padding: 100px 0; background: #0A1628; border-top: 1px solid rgba(255,255,255,0.05); position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; padding-right: 40px; opacity: 0; transform: translateX(-30px); }
.about-image.visible { opacity: 1; transform: translateX(0); }
.about-img-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); }
.about-badge {
    position: absolute; bottom: -30px; right: 0;
    background: var(--gold); color: var(--navy); padding: 24px 32px;
    border-radius: var(--radius-lg); text-align: center;
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.3);
    z-index: 2;
}
.badge-number { display: block; font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.badge-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.about-section .section-title { color: var(--white); }
.about-content { opacity: 0; transform: translateX(30px); }
.about-content.visible { opacity: 1; transform: translateX(0); }
.about-text { font-size: 1.05rem; color: var(--gray-300); line-height: 1.8; margin-bottom: 24px; font-weight: 300; }
.about-text strong { color: var(--gold-light); font-weight: 600; }
.about-values { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.value-item { display: flex; gap: 20px; align-items: flex-start; }
.value-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(201, 168, 76, 0.1); color: var(--gold);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.value-item h4 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.value-item p { font-size: 0.9rem; color: var(--gray-400); font-weight: 300; }

/* ================================================
   TESTIMONIALS — DARK with bg image
   ================================================ */
.testimonials-section { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.testimonials-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&q=80') center/cover no-repeat;
    opacity: 0.07;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: rgba(17, 36, 61, 0.7); border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-lg); padding: 36px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    opacity: 0; transform: translateY(30px); backdrop-filter: blur(10px);
    display: flex; flex-direction: column;
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.25); transform: translateY(-6px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.testimonial-quote { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--gold); line-height: 1; margin-bottom: -12px; opacity: 0.4; }
.testimonial-card > p { font-size: 0.9rem; color: var(--text-light); font-weight: 300; line-height: 1.8; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--gold);
    color: var(--navy); display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ================================================
   CONTACT — WHITE
   ================================================ */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-section .section-tag { color: var(--gold); }
.contact-section .section-title { color: var(--text-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { opacity: 0; transform: translateX(-30px); }
.contact-info.visible { opacity: 1; transform: translateX(0); }
.contact-desc { font-size: 1rem; color: var(--text-body); font-weight: 300; margin-bottom: 36px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 24px; background-color: #0A1628; padding: 32px; border-radius: var(--radius-lg); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.contact-item { display: flex; gap: 16px; align-items: center; }
.contact-icon {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
    background: rgba(201, 168, 76, 0.1); display: flex; align-items: center;
    justify-content: center; color: var(--gold-dark);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item strong { display: block; font-size: 0.9rem; color: var(--white); font-weight: 600; margin-bottom: 4px; }
.contact-item p { font-size: 0.85rem; color: var(--gray-400); }
.contact-form-wrapper { opacity: 0; transform: translateX(30px); }
.contact-form-wrapper.visible { opacity: 1; transform: translateX(0); }
.contact-form {
    background: var(--navy); border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-lg); padding: 40px;
}
.contact-form h3 { font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 14px 18px; background: rgba(17, 36, 61, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.12); border-radius: var(--radius);
    color: var(--white); font-family: 'Prompt', sans-serif; font-size: 0.9rem;
    transition: var(--transition); outline: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form select {
    color: var(--text-muted); appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a90a0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
}
.contact-form select option { background: var(--navy); color: var(--white); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.contact-form textarea { resize: vertical; min-height: 100px; }

/* ================================================
   CTA — with bg image
   ================================================ */
.cta-section { padding: 120px 0; position: relative; overflow: hidden; }
.page-contact .cta-section { display: none !important; }
.cta-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1920&q=80') center/cover no-repeat;
}
.cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.85) 100%);
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-content p { font-size: 1rem; color: rgba(255,255,255,0.5); font-weight: 300; margin-bottom: 32px; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--navy-light); border-top: 1px solid rgba(201, 168, 76, 0.08); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); margin-top: 12px; font-weight: 300; }
.footer-links h4 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-links a { display: block; font-size: 0.85rem; color: var(--text-muted); padding: 4px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ===========================
   TILT EFFECT (3D)
   =========================== */
[data-tilt] { transform-style: preserve-3d; }

/* ===========================
   ANIMATIONS — Enhanced
   =========================== */
[data-aos] {
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

/* Gold underline animation on section tags */
.section-tag {
    position: relative;
    display: inline-block;
}
.section-tag::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.8s ease, left 0.8s ease;
}
.section-header:hover .section-tag::after {
    width: 100%; left: 0;
}

/* Icon hover spin */
.why-icon svg, .value-icon svg, .contact-icon svg {
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.why-card:hover .why-icon svg { transform: rotateY(180deg); }
.value-item:hover .value-icon svg { transform: scale(1.15) rotate(5deg); }
.contact-item:hover .contact-icon svg { transform: scale(1.1); }

/* Button ripple on click */
.btn { position: relative; overflow: hidden; }
.btn::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0); opacity: 0;
    transition: transform 0.5s, opacity 0.3s;
    border-radius: inherit;
}
.btn:active::after {
    transform: scale(2.5); opacity: 1;
    transition: transform 0s, opacity 0s;
}

/* Smooth about badge float */
.about-badge {
    animation: badgeFloat 3s ease-in-out infinite;
}
@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Gold line pulse in process connector */
.process-connector span {
    animation: connectorPulse 2s ease-in-out infinite;
}
@keyframes connectorPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Testimonial card subtle float */
.testimonial-card:nth-child(2) { animation: cardFloat 4s ease-in-out infinite 0.5s; }
.testimonial-card:nth-child(1) { animation: cardFloat 4s ease-in-out infinite; }
.testimonial-card:nth-child(3) { animation: cardFloat 4s ease-in-out infinite 1s; }
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.testimonial-card:hover { animation-play-state: paused; }

/* Stat divider pulse */
.stat-divider {
    animation: dividerPulse 3s ease-in-out infinite;
}
@keyframes dividerPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 0.7; height: 55px; }
}

/* Form input focus glow */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1), 0 0 20px rgba(201,168,76,0.05);
}

/* Footer link slide */
.footer-links a {
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease, color 0.3s ease;
}
.footer-links a::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}
.footer-links a:hover {
    padding-left: 14px;
}
.footer-links a:hover::before {
    width: 8px;
}

/* Hover glow on interactive */
.btn:hover, .nav-cta:hover {
    box-shadow: 0 0 25px rgba(201,168,76,0.25), 0 8px 30px rgba(201,168,76,0.15);
}

/* Gold border shimmer on dark cards */
@keyframes borderShimmer {
    0% { border-color: rgba(201,168,76,0.1); }
    50% { border-color: rgba(201,168,76,0.3); }
    100% { border-color: rgba(201,168,76,0.1); }
}
.why-card:hover, .process-card:hover, .testimonial-card:hover {
    animation: borderShimmer 2s ease-in-out infinite;
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.faq-section .section-title {
    color: var(--navy);
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}
.faq-item {
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-color: rgba(201, 168, 76, 0.3);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--navy);
    transition: var(--transition);
}
.faq-question span {
    padding-right: 16px;
    line-height: 1.5;
}
.faq-question:hover {
    color: var(--gold);
}
.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.faq-answer-inner {
    padding: 0 24px 24px;
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.8;
}
.faq-item.active .faq-question {
    color: var(--gold);
}
.faq-item.active .faq-answer {
    opacity: 1;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .process-horizontal { grid-template-columns: repeat(2, 1fr); }
    .process-card:nth-child(2) .process-connector { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* --- Global mobile spacing --- */
    .container { padding: 0 20px; }
    .section-title { font-size: 2rem; }
    .faq-section { padding: 60px 0; }
    .faq-question { padding: 16px; font-size: 1rem; }
    .faq-answer-inner { padding: 0 16px 16px; line-height: 1.6; }
    section { overflow-x: hidden; }

    /* --- Navbar mobile --- */
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0; background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px); padding: 32px 24px; gap: 8px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
        animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-12px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .nav-links.open .nav-link {
        font-size: 1.05rem;
        padding: 12px 16px;
        border-radius: var(--radius);
        transition: background 0.3s ease, color 0.3s ease;
    }
    .nav-links.open .nav-link:hover,
    .nav-links.open .nav-link.active {
        background: rgba(201, 168, 76, 0.08);
        color: var(--gold);
    }
    /* Show CTA button in mobile menu */
    .nav-links.open::after {
        content: 'เริ่มต้นเลย';
        display: block;
        text-align: center;
        background: var(--gold);
        color: var(--navy);
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        margin-top: 12px;
        cursor: pointer;
    }
    .hamburger span {
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.25s ease;
    }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* --- Hero mobile --- */
    .hero {
        min-height: 100svh;
        padding: 110px 20px 80px;
    }
    .hero-title { font-size: 2rem; line-height: 1.35; }
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 32px;
        padding: 0 8px;
    }
    .hero-tag {
        font-size: 0.7rem;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 1rem;
    }
    .hero-scroll { bottom: 24px; }
    .hero::before, .hero::after { display: none; }

    /* --- Stats Bar mobile --- */
    .stats-bar { padding: 40px 0; }
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px 16px;
        justify-items: center;
    }
    .stat-divider { display: none; }
    .stat-number { font-size: 2rem; }
    .stat-suffix { font-size: 1.2rem; }
    .stat-label { font-size: 0.78rem; }

    /* --- Section headers mobile --- */
    .section-header { margin-bottom: 40px; }
    .section-title { font-size: 1.6rem; margin-bottom: 12px; }
    .section-desc { font-size: 0.9rem; padding: 0 8px; }

    /* --- Why section mobile --- */
    .why-section { padding: 72px 0; }
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-card {
        padding: 32px 24px;
        border-radius: 16px;
    }
    .why-icon { width: 48px; height: 48px; margin-bottom: 16px; }
    .why-card h3 { font-size: 1.05rem; }
    .why-card p { font-size: 0.88rem; }

    /* --- Services mobile --- */
    .services-section { padding: 72px 0; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card {
        padding: 28px 24px;
        border-radius: 16px;
    }
    .service-number { font-size: 2.5rem; margin-bottom: 10px; }
    .service-card h3 { font-size: 1.15rem; }

    /* --- Process mobile --- */
    .process-section { padding: 72px 0; }
    .process-horizontal { grid-template-columns: 1fr; gap: 16px; }
    .process-connector { display: none !important; }
    .process-card {
        padding: 28px 24px;
        border-radius: 16px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
    }
    .process-card-top {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .process-icon-wrap {
        width: 56px;
        height: 56px;
    }
    .process-icon-wrap svg { width: 22px; height: 22px; }
    .process-num {
        width: 22px; height: 22px;
        font-size: 0.6rem;
        top: -6px; right: -6px;
    }
    .process-card h4 { font-size: 1rem; margin-bottom: 6px; }
    .process-card p { font-size: 0.83rem; }

    /* --- About mobile --- */
    .about-section { padding: 72px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { padding-right: 0; text-align: center; }
    .about-img-wrapper { aspect-ratio: auto; margin: 0 auto; }
    .about-badge {
        right: 12px; bottom: -16px;
        padding: 14px 20px;
        border-radius: 14px;
    }
    .badge-number { font-size: 1.6rem; }
    .badge-text { font-size: 0.7rem; }
    .about-text { font-size: 0.9rem; }
    .about-values { gap: 16px; }
    .value-icon { width: 36px; height: 36px; }

    /* --- Testimonials mobile --- */
    .testimonials-section { padding: 72px 0; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonial-card {
        padding: 28px 24px;
        border-radius: 16px;
    }
    .testimonial-quote { font-size: 3rem; margin-bottom: -8px; }
    .testimonial-card > p { font-size: 0.88rem; margin-bottom: 20px; }
    /* Disable float animation on mobile for smoother scroll */
    .testimonial-card:nth-child(1),
    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(3) {
        animation: none;
    }

    /* --- Contact mobile --- */
    .contact-section { padding: 72px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-desc { font-size: 0.9rem; margin-bottom: 28px; }
    .contact-details { gap: 18px; }
    .contact-icon { width: 44px; height: 44px; }
    .contact-form {
        padding: 28px 22px;
        border-radius: 16px;
    }
    .contact-form h3 { font-size: 1.15rem; margin-bottom: 22px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 15px 16px;
        font-size: 16px; /* Prevents iOS zoom on focus */
        border-radius: 10px;
    }
    .contact-form .btn {
        padding: 16px;
        font-size: 1rem;
    }

    /* --- CTA mobile --- */
    .cta-section { padding: 80px 0; }
    .cta-content h2 { font-size: 1.5rem; line-height: 1.4; }
    .cta-content p { font-size: 0.9rem; margin-bottom: 24px; }
    .cta-content .btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }

    /* --- Footer mobile --- */
    .footer { padding: 48px 0 28px; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .footer-brand { order: -1; }
    .footer-brand .logo { justify-content: center; display: inline-flex; align-items: center; text-align: left; }
    .footer-links h4 { margin-bottom: 10px; }
    .footer-links a { padding: 5px 0; font-size: 0.88rem; }
    .footer-links a:hover { padding-left: 0; }
    .footer-links a:hover::before { display: none; }
    .footer-bottom { padding-top: 20px; margin-top: 8px; }

    /* --- Back to top mobile --- */
    .back-to-top {
        bottom: 20px; right: 20px;
        width: 44px; height: 44px;
    }

    /* --- Smoother mobile animations --- */
    [data-aos] {
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    /* Disable tilt on touch devices */
    [data-tilt] { transform: none !important; }
    /* Reduce parallax intensity on mobile */
    .hero-bg, .cta-bg, .process-bg, .testimonials-bg {
        transform: none !important;
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero { padding: 100px 16px 60px; }
    .hero-title { font-size: 1.55rem; }
    .hero-subtitle { font-size: 0.88rem; }
    .hero-buttons { padding: 0 8px; }
    .container { padding: 0 16px; }

    /* 2-column stats on very small screens */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 12px;
    }
    .stat-number { font-size: 1.8rem; }

    .section-title { font-size: 1.4rem; }
    .section-header { margin-bottom: 32px; }

    .why-card { padding: 24px 20px; }
    .service-card { padding: 24px 20px; }
    .process-card { padding: 22px 18px; gap: 16px; }
    .process-icon-wrap { width: 48px; height: 48px; }
    .process-icon-wrap svg { width: 20px; height: 20px; }

    .testimonial-card { padding: 24px 20px; }
    .contact-form { padding: 24px 18px; }

    .cta-content h2 { font-size: 1.35rem; }

    .about-badge {
        position: relative;
        right: auto; bottom: auto;
        display: inline-block;
        margin-top: 16px;
    }
    .about-image { text-align: center; }
}

/* --- Touch device optimizations --- */
@media (hover: none) and (pointer: coarse) {
    /* Bigger touch targets */
    .nav-link { padding: 12px 8px; }
    .btn { min-height: 48px; }
    .contact-icon { width: 48px; height: 48px; }
    .back-to-top { width: 48px; height: 48px; }

    /* Disable hover-dependent animations on touch */
    .why-card:hover { transform: none !important; }
    .service-card:hover { transform: none !important; }
    .testimonial-card:hover { transform: none !important; }
    .process-card:hover { transform: none !important; }
    .why-card:hover, .process-card:hover, .testimonial-card:hover {
        animation: none;
    }

    /* Active state for touch feedback instead */
    .btn:active { transform: scale(0.97); }
    .why-card:active, .service-card:active,
    .testimonial-card:active, .process-card:active {
        transform: scale(0.98) !important;
        transition: transform 0.15s ease;
    }
}

/* ===========================
   JOIN US SECTION
   =========================== */
.join-section {
    padding: 120px 0;
    background: #0A1628; /* --navy background as requested */
    position: relative;
    overflow: hidden;
}
/* Subtle background accent */
.join-section::after {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    z-index: 1;
}
.join-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.join-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.join-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.join-image:hover img {
    transform: scale(1.08);
}
.join-section .section-title {
    color: var(--white);
}
.join-desc {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 24px;
}
.join-text {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .join-section { padding: 80px 0; }
    .join-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .join-image { order: 2; }
    .join-content { order: 1; }
}

/* ================================================
   AWARDS SECTION — LIGHT SECTION
   ================================================ */
.awards-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.awards-section .section-title { color: var(--navy); }
.awards-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 0 70px;
}
.awards-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.awards-slider::-webkit-scrollbar { display: none; }
.award-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
}
.award-img-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(10, 22, 40, 0.05);
    background: var(--navy);
    aspect-ratio: 16/9;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.08);
}
.award-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}
.award-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.award-overlay svg {
    width: 40px;
    height: 40px;
    color: var(--gold);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}
.award-img-container:hover .award-overlay { opacity: 1; }
.award-img-container:hover .award-overlay svg { transform: scale(1); }
.award-img-container:hover img { transform: scale(1.05); }

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--navy);
    border: 1px solid rgba(10, 22, 40, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}
.slider-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}
.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

/* Lightbox Modal */
.lightbox-trigger { cursor: pointer; }
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
}
.lightbox-content {
    flex-shrink: 0;
    display: block;
    width: 85%;
    max-width: 1140px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: zoom 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}
@keyframes zoom {
    from {transform:scale(0.85); opacity: 0;}
    to {transform:scale(1); opacity: 1;}
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.lightbox-close:hover {
    color: var(--gold);
}
#lightboxCaption {
    margin: 20px auto 0;
    display: block;
    width: 80%;
    max-width: 1000px;
    text-align: center;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 500;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 22, 40, 0.5);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 30px;
    font-weight: bold;
    padding: 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}
.lightbox-prev {
    left: 20px;
}
.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .awards-slider-wrapper { padding: 0 50px; }
    .slider-btn { width: 40px; height: 40px; }
    .lightbox-content { width: 95%; }
}

/* ===========================
   GALLERY SECTION (INFINITE MARQUEE)
   =========================== */
.gallery-section {
    padding: 80px 0 100px;
    background: #0A1628;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.gallery-section .section-title {
    color: var(--white);
}
.gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    padding: 20px 0;
}

/* Fading edges for the gallery */
.gallery-wrapper::before,
.gallery-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.gallery-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0A1628 0%, transparent 100%);
}
.gallery-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #0A1628 0%, transparent 100%);
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
}
.gallery-item {
    width: 320px;
    height: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), filter 0.3s ease;
    cursor: pointer;
    filter: brightness(0.9);
}
.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Animations */
.track-left {
    animation: marqueeLeft 45s linear infinite;
}
.track-right {
    animation: marqueeRight 45s linear infinite;
}

/* Pause on Hover */
.gallery-wrapper:hover .track-left,
.gallery-wrapper:hover .track-right {
    animation-play-state: paused;
}

@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@media (max-width: 768px) {
    .gallery-item { width: 240px; height: 160px; }
    .gallery-wrapper::before, .gallery-wrapper::after { width: 10vw; }
}
