/* ═══════════════════════════════════════════════════════════════════════════
   AURA FIN LTD — Premium FinTech Corporate Stylesheet
   Design: Stripe / Revolut / Wise inspired — Minimalist, Corporate, Premium
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Reset & Variables ─────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand colors */
    --primary:       #0D254B;
    --primary-light: #1A3A6B;
    --primary-dark:  #081A35;
    --secondary:     #DCB962;
    --secondary-light: #E8CC80;
    --secondary-dark:  #B8942E;

    /* Neutral */
    --bg:         #FFFFFF;
    --bg-alt:     #F8FAFC;
    --bg-dark:    #0F172A;
    --text:       #111827;
    --text-light: #6B7280;
    --text-lighter: #9CA3AF;
    --border:     #E5E7EB;
    --border-light: #F1F5F9;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
    --shadow-glow: 0 8px 32px rgba(220,185,98,0.2);

    /* Radius */
    --radius-sm: 6px;
    --radius:    10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Layout */
    --max-width: 1200px;
    --nav-height: 80px;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0D254B 0%, #1A3A6B 100%);
    --gradient-accent:  linear-gradient(135deg, #DCB962 0%, #B8942E 100%);
    --gradient-hero:    linear-gradient(135deg, #0A1F40 0%, #162D55 40%, #1A3A6B 100%);
}

/* ─── Base Typography & Elements ────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--primary);
}

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

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

ul { list-style: none; }

/* ─── Container ──────────────────────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(13, 37, 75, 0.25);
}
.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(13, 37, 75, 0.35);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.8);
    color: #fff;
}

.btn-lg { padding: 18px 40px; font-size: 16px; border-radius: 12px; }

/* ─── Section Common ─────────────────────────────────────────────────────── */
.section {
    padding: 100px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--secondary);
    margin-bottom: 16px;
    position: relative;
}

.section-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.section-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER — Fixed, glass morphism, shadow on scroll
   ═══════════════════════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.header.scrolled {
    box-shadow: 0 1px 0 0 var(--border), 0 4px 24px rgba(0,0,0,0.06);
    border-bottom-color: var(--border);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.header-logo:hover { opacity: 0.85; }
.header-logo-img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    padding: 8px 18px;
    border-radius: var(--radius);
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--bg-alt);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
    background: rgba(220, 185, 98, 0.08);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ─── Language Switcher ──────────────────────────────────────────────────── */
.lang-switcher {
    display: flex;
    gap: 2px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 3px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.25s ease;
    cursor: pointer;
}

.lang-option:hover {
    color: var(--primary);
    background: rgba(255,255,255,0.7);
}

.lang-option.active {
    background: var(--bg);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.lang-flag { font-size: 14px; line-height: 1; }
.lang-label { font-size: 12px; font-weight: 600; }

/* ─── Mobile Toggle ──────────────────────────────────────────────────────── */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-toggle:hover { background: var(--bg-alt); }

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — Premium gradient, particles, scroll indicator
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(220,185,98,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(220,185,98,0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(220,185,98,0.08);
    animation: particleFloat 20s ease-in-out infinite;
}

.particle-1 { width: 400px; height: 400px; top: -100px; right: -80px; animation-delay: 0s; }
.particle-2 { width: 300px; height: 300px; bottom: -60px; left: -60px; animation-delay: -5s; }
.particle-3 { width: 200px; height: 200px; top: 40%; left: 10%; animation-delay: -10s; background: rgba(255,255,255,0.03); }
.particle-4 { width: 150px; height: 150px; top: 20%; right: 25%; animation-delay: -15s; background: rgba(220,185,98,0.05); }
.particle-5 { width: 250px; height: 250px; bottom: 30%; right: 5%; animation-delay: -7s; background: rgba(255,255,255,0.02); }
.particle-6 { width: 180px; height: 180px; top: 60%; left: 30%; animation-delay: -12s; background: rgba(220,185,98,0.04); }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 1.5s forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 3px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMPANY OVERVIEW
   ═══════════════════════════════════════════════════════════════════════════ */
.section-overview {
    background: var(--bg);
    padding: 120px 0;
}

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

.overview-content {
    min-width: 0;
}

.overview-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.overview-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}
.overview-list li strong {
    font-weight: 600;
    color: var(--primary);
}
.list-desc {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.5;
}

.overview-list li svg {
    flex-shrink: 0;
}

/* Overview visual card */
.overview-visual {
    display: flex;
    justify-content: center;
}

.overview-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 56px 44px;
    color: #fff;
    max-width: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(13,37,75,0.2);
}

.overview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(220,185,98,0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.overview-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(220,185,98,0.15);
    color: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.overview-card-title {
    font-size: 24px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.overview-card-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.overview-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════════════════════ */
.section-stats {
    background: var(--bg-alt);
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    margin-bottom: 6px;
}

.stat-suffix {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHY CHOOSE — Features Grid
   ═══════════════════════════════════════════════════════════════════════════ */
.section-features {
    padding: 120px 0;
}

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

.feature-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 40px 28px 36px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(220,185,98,0.08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-3deg);
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(13,37,75,0.15);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.section-cta {
    background: var(--gradient-hero);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(220,185,98,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-btn {
    background: #fff !important;
    color: var(--primary) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important;
}

.cta-btn:hover {
    color: var(--secondary) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.2) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HERO (About & Contact)
   ═══════════════════════════════════════════════════════════════════════════ */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(220,185,98,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.page-hero-title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.page-hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT — History
   ═══════════════════════════════════════════════════════════════════════════ */
.section-history {
    padding: 120px 0;
}

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

.history-text {
    min-width: 0;
}

.history-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.history-meta-item {
    background: var(--bg-alt);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.history-meta-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-lighter);
    margin-bottom: 4px;
}

.history-meta-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

/* History visual card */
.history-visual {
    display: flex;
    justify-content: center;
}

.history-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    color: #fff;
    max-width: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(13,37,75,0.15);
}

.history-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(220,185,98,0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.history-card-year {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: rgba(220,185,98,0.2);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -3px;
}

.history-card-content {
    position: relative;
    z-index: 1;
}

.history-card-content h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
}

.history-card-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT — Vision & Mission
   ═══════════════════════════════════════════════════════════════════════════ */
.section-vm {
    padding: 100px 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.vm-card {
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.vm-card--vision {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 16px 48px rgba(13,37,75,0.15);
}

.vm-card--mission {
    background: var(--gradient-accent);
    color: var(--primary);
    box-shadow: 0 16px 48px rgba(220,185,98,0.15);
}

.vm-card:hover { transform: translateY(-6px); }

.vm-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vm-card--mission .vm-icon {
    background: rgba(13,37,75,0.08);
    color: var(--primary);
}

.vm-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.vm-card--vision .vm-title { color: #fff; }
.vm-card--mission .vm-title { color: var(--primary); }

.vm-text {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT — Values
   ═══════════════════════════════════════════════════════════════════════════ */
.section-values {
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(220,185,98,0.08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.08);
}

.value-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.section-contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    min-width: 0;
}

.contact-form-wrapper {
    min-width: 0;
}

/* Contact info card */
.contact-info-card {
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-info-card:hover { box-shadow: var(--shadow-lg); }

.contact-info-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--primary);
    padding-bottom: 12px;
    position: relative;
}

.contact-info-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

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

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(220,185,98,0.06);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.08);
    background: rgba(220,185,98,0.12);
}

.contact-info-label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-info-value {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info-link {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.2s;
}

.contact-info-link:hover { color: var(--primary); }

/* Contact form card */
.contact-form-card {
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: 48px 44px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-form-card:hover { box-shadow: var(--shadow-lg); }

.contact-form-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--primary);
    padding-bottom: 12px;
    position: relative;
}

.contact-form-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Form elements */
.form-group {
    margin-bottom: 22px;
}

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

.required {
    color: #EF4444;
}

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

.form-group input:hover,
.form-group textarea:hover {
    border-color: #D1D5DB;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(220,185,98,0.08);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
}

/* Alerts */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

.alert svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.alert ul { margin: 0; list-style: disc; padding-left: 16px; }

.alert-success {
    background: #F0FDF4;
    color: #166534;
    border-left: 4px solid #22C55E;
}

.alert-error {
    background: #FEF2F2;
    color: #991B1B;
    border-left: 4px solid #EF4444;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER — Premium dark navy
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
    background: var(--primary);
    color: #fff;
    padding: 72px 0 32px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-block;
    transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 0.85; }

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-col {
    min-width: 0;
}

.footer-brand-col {
    min-width: 0;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    max-width: 360px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(220,185,98,0.15);
    color: var(--secondary-light);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Inter', sans-serif;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: var(--secondary-light);
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-contact-list li svg {
    flex-shrink: 0;
    opacity: 0.5;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.5);
}

.footer-contact-list a:hover {
    color: var(--secondary-light);
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom-left,
.footer-bottom-right {
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(13,37,75,0.2);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(220,185,98,0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS (Intersection Observer)
   ═══════════════════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Utility animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Selection ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9CA3AF; }

::selection {
    background: rgba(220, 185, 98, 0.2);
    color: var(--text);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-title { font-size: 44px; }
    .hero-subtitle { font-size: 17px; }
    .section-heading { font-size: 32px; }
    .overview-grid { gap: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; max-width: 640px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .header-container { padding: 0 20px; }
    .header-logo-img { height: 32px; }

    .mobile-toggle { display: flex; }

    .header-nav {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 16px 20px 24px;
        gap: 4px;
        box-shadow: 0 16px 48px rgba(0,0,0,0.12);
        border-top: 1px solid var(--border);
        display: none;
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
    }

    .header-nav.active { display: flex; }
    .nav-link { width: 100%; padding: 12px 16px; font-size: 15px; border-radius: 10px; }
    .nav-link.active::after { display: none; }
    .nav-link.active { background: rgba(220,185,98,0.08); }

    .hero { min-height: auto; padding: 120px 20px 60px; }
    .hero-title { font-size: 34px; letter-spacing: -1.5px; }
    .hero-subtitle { font-size: 16px; }
    .hero-badge { font-size: 12px; padding: 8px 16px; }
    .hero-scroll-indicator { display: none; }

    .section { padding: 72px 0; }
    .section-header { margin-bottom: 40px; }
    .section-heading { font-size: 28px; }
    .section-subtitle { font-size: 15px; }

    .overview-grid { grid-template-columns: 1fr; gap: 32px; }
    .overview-list { grid-template-columns: 1fr; }
    .overview-card { padding: 40px 28px; }

    .stats-grid { grid-template-columns: 1fr; gap: 16px; }
    .stat-card { padding: 28px 20px; }
    .stat-number { font-size: 36px; }

    .features-grid { grid-template-columns: 1fr; }

    .page-hero { padding: 120px 0 60px; }
    .page-hero-title { font-size: 30px; }
    .page-hero-subtitle { font-size: 15px; }

    .history-grid { grid-template-columns: 1fr; gap: 32px; }
    .history-meta { grid-template-columns: 1fr; }
    .history-card-year { font-size: 48px; }

    .vm-grid { grid-template-columns: 1fr; }

    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .contact-grid { gap: 32px; }
    .contact-info-card,
    .contact-form-card { padding: 36px 24px; }

    .section-cta { padding: 80px 0; }
    .cta-title { font-size: 30px; }

    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

    .btn-lg { padding: 16px 32px; font-size: 15px; }
    .hero-actions .btn { width: 100%; max-width: 320px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤ 480px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { max-width: 100%; }

    .section-heading { font-size: 24px; }
    .section-label { font-size: 11px; }

    .stat-number { font-size: 30px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .value-card { padding: 24px 16px; }

    .page-hero-title { font-size: 24px; }
    .cta-title { font-size: 24px; }

    .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY — Reduced motion
   ═══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
