:root {
    --navy: #0f1b2d;
    --navy-light: #1a2d47;
    --gold: #c9a84c;
    --gold-dark: #a8893d;
    --gold-light: #e8d9a0;
    --text: #2d2d2d;
    --text-light: #6b7280;
    --gray-mid: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f8f9fb;
    --white: #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold); }

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
}

.link-arrow {
    display: inline-block;
    margin-top: 16px;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.link-arrow:hover { color: var(--gold); }

.label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}
.label-light { color: var(--gold-light); }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy);
    transition: box-shadow 0.3s;
}
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}
.logo-img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}
.main-nav { display: flex; gap: 36px; }
.main-nav a {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--white); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('/assets/img/hero.jpg') center/cover no-repeat;
    margin-top: 72px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,27,45,0.92) 0%, rgba(26,45,71,0.85) 100%);
}
.hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 0;
}
.hero-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Page Hero */
.page-hero {
    background: var(--navy);
    padding: 140px 0 60px;
    margin-top: 72px;
}
.page-hero h1 {
    font-size: 2.8rem;
    color: var(--white);
    font-weight: 700;
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); color: var(--white); }
.section-heading {
    font-size: 2rem;
    margin-bottom: 48px;
}
.section-heading.light { color: var(--white); }

/* ===== INTRO GRID ===== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--navy);
    line-height: 1.3;
}
.section-dark .intro-text h2 { color: var(--white); }
.intro-text p {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.8;
}
.intro-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ===== CLIENTS GRID ===== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.client-card {
    background: var(--navy-light);
    padding: 36px 28px;
    border-top: 3px solid var(--gold);
}
.client-icon {
    width: 40px; height: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}
.client-icon svg { width: 100%; height: 100%; }
.client-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--white);
}
.client-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ===== STATS ===== */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
}
.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.service-card {
    padding: 40px 36px;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.service-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--navy);
}
.service-card ul {
    list-style: none;
}
.service-card li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}
.service-card li::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 8px; height: 2px;
    background: var(--gold);
}

/* ===== PARTNERS ===== */
.partners-list {
    max-width: 700px;
}
.partner-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}
.partner-bullet {
    flex-shrink: 0;
    width: 10px; height: 10px;
    background: var(--gold);
    margin-top: 7px;
}
.partner-item p {
    color: var(--text);
    font-size: 1rem;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 20px; }
.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.contact-info {
    padding: 40px 36px;
    background: var(--navy);
    color: var(--white);
}
.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-info p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}
.info-label {
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.alert { padding: 16px 20px; margin-bottom: 24px; border-left: 4px solid #ef4444; background: #fef2f2; }
.alert p { margin-bottom: 4px; color: #991b1b; font-size: 0.9rem; }

/* ===== THANKYOU ===== */
.thankyou-icon {
    width: 72px; height: 72px;
    background: var(--gold);
    color: var(--navy);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: var(--gold);
    padding: 60px 0;
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-band h2 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.cta-band p {
    color: rgba(15,27,45,0.7);
    font-size: 0.95rem;
}
.cta-band .btn-gold {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
    flex-shrink: 0;
}
.cta-band .btn-gold:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo {
    height: 100px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.footer-col p { margin-bottom: 6px; font-size: 0.9rem; }
.footer-col .small { font-size: 0.8rem; opacity: 0.5; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stats-bar { gap: 40px; }
    .intro-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 20px 24px;
        gap: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .main-nav.open { display: flex; }
    .main-nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .hero { min-height: 70vh; }
    .hero h1 { font-size: 2.2rem; }
    .hero-desc { font-size: 1rem; }

    .intro-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .stats-bar { flex-direction: column; gap: 32px; }

    .cta-band-inner { flex-direction: column; text-align: center; }

    .page-hero { padding: 110px 0 40px; }
    .page-hero h1 { font-size: 2rem; }
    .section { padding: 60px 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .btn { padding: 12px 28px; font-size: 0.85rem; }
    .hero-btns { flex-direction: column; }
    .section-heading { font-size: 1.5rem; }
}
