/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a2744;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --navy: #1a2744;
    --navy-light: #243352;
    --navy-dark: #111b30;
    --gold: #d4a017;
    --gold-light: #f0c040;
    --gold-pale: #fdf3d7;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --gray-100: #f1f0ed;
    --gray-200: #e2e0db;
    --gray-400: #9e9b93;
    --gray-600: #6b6860;
    --shadow-sm: 0 1px 3px rgba(26,39,68,0.08);
    --shadow-md: 0 4px 20px rgba(26,39,68,0.10);
    --shadow-lg: 0 12px 40px rgba(26,39,68,0.14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(26,39,68,0.07);
    transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
    display: flex; align-items: center;
    height: 72px; gap: 32px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem; letter-spacing: 0.04em;
    color: var(--navy); flex-shrink: 0;
}
.logo-mark {
    width: 36px; height: 36px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.logo-mark::after {
    content: '';
    width: 14px; height: 14px;
    background: var(--gold);
    border-radius: 50%;
    display: block;
}
.logo-text { line-height: 1; }
.nav { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav a {
    padding: 8px 16px;
    font-size: 0.9rem; font-weight: 500;
    color: var(--navy);
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
}
.nav a:hover { background: var(--gray-100); }
.nav-phone {
    display: flex; align-items: center; gap: 6px;
    background: var(--navy) !important;
    color: var(--white) !important;
    font-weight: 600;
}
.nav-phone:hover { background: var(--navy-light) !important; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    padding: 8px; margin-left: auto;
}
.nav-toggle .bar {
    width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex; align-items: center;
    background: var(--navy);
    overflow: hidden;
    padding-top: 72px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.geo {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}
.geo-1 {
    width: 700px; height: 700px;
    background: var(--gold);
    top: -200px; right: -100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 12s ease-in-out infinite;
}
.geo-2 {
    width: 400px; height: 400px;
    background: var(--gold-light);
    bottom: -80px; left: 10%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 10s ease-in-out infinite reverse;
}
.geo-3 {
    width: 200px; height: 200px;
    background: var(--white);
    top: 30%; left: 5%;
    opacity: 0.03;
}
.geo-4 {
    width: 120px; height: 120px;
    background: var(--gold);
    bottom: 25%; right: 20%;
    opacity: 0.08;
    border-radius: var(--radius-md);
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite;
}
.geo-5 {
    width: 60px; height: 60px;
    background: var(--gold-light);
    top: 20%; right: 35%;
    opacity: 0.1;
    border-radius: 50%;
    animation: float 4s ease-in-out infinite reverse;
}
@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(50deg); }
}
.hero-inner {
    position: relative; z-index: 2;
    max-width: 780px;
    padding: 60px 0;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,160,23,0.12);
    border: 1px solid rgba(212,160,23,0.25);
    color: var(--gold-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem; font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--gold);
    color: var(--navy);
}
.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 24px rgba(212,160,23,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    box-shadow: var(--shadow-md);
}
.btn-outline-light {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--white);
}
.btn-outline-light:hover {
    background: transparent;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO WAVE ===== */
.hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-label::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.section-label-light { color: var(--gold-light); }
.section-label-light::before { background: var(--gold-light); }
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.05;
    color: var(--navy);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}
.section-title-light { color: var(--white); }
.section-sub {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 560px;
    line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--white);
}
.services .section-label,
.services .section-title,
.services .section-sub { margin-bottom: 18px; }
.services > .container > :first-child {
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    margin-bottom: 60px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.svc-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.svc-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
    width: 56px; height: 56px;
    background: var(--navy);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}
.svc-card h3 {
    font-size: 1.2rem; font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.svc-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 20px;
}
.svc-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(26,39,68,0.07);
    color: var(--navy);
    font-size: 0.78rem; font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.06em;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--off-white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
    width: 100%; height: 450px;
    object-fit: cover;
}
.about-img-accent {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--gold);
    border-radius: var(--radius-md);
    z-index: -1;
}
.about-stat-card {
    position: absolute;
    bottom: -30px; left: 30px;
    background: var(--navy);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column; gap: 2px;
}
.about-stat-card .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; color: var(--gold);
    line-height: 1;
}
.about-stat-card .stat-label {
    font-size: 0.82rem; color: rgba(255,255,255,0.7);
    text-transform: uppercase; letter-spacing: 0.08em;
}
.about-content .section-sub { margin-bottom: 28px; }
.about-body {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-checks {
    margin-top: 28px;
    display: flex; flex-direction: column; gap: 14px;
}
.about-checks li {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.95rem; font-weight: 500;
    color: var(--navy);
}
.about-checks svg { color: var(--gold); flex-shrink: 0; }

/* ===== WHY US ===== */
.why {
    position: relative;
    padding: 100px 0;
    background: var(--navy);
    overflow: hidden;
}
.why-bg { position: absolute; inset: 0; overflow: hidden; }
.geo-w1 {
    width: 500px; height: 500px;
    background: var(--gold);
    opacity: 0.04;
    border-radius: 50%;
    top: -150px; right: -100px;
}
.geo-w2 {
    width: 300px; height: 300px;
    background: var(--gold-light);
    opacity: 0.05;
    border-radius: var(--radius-lg);
    bottom: -80px; left: -60px;
    transform: rotate(30deg);
}
.why .container { position: relative; z-index: 2; }
.why .section-label,
.why .section-title { margin-bottom: 52px; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.why-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(212,160,23,0.3);
    transform: translateY(-3px);
}
.why-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.5;
}
.why-card h3 {
    font-size: 1.25rem; font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.why-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 100px 0;
    background: var(--gold);
    overflow: hidden;
}
.cta-geos { position: absolute; inset: 0; overflow: hidden; }
.cta-geo {
    position: absolute;
    border-radius: 50%;
    background: var(--navy);
    opacity: 0.06;
}
.cga-1 { width: 400px; height: 400px; top: -100px; left: -80px; }
.cga-2 { width: 250px; height: 250px; bottom: -60px; right: 10%; }
.cga-3 { width: 100px; height: 100px; top: 20%; right: 25%; border-radius: var(--radius-md); transform: rotate(30deg); }
.cta-inner {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.cta-content { max-width: 580px; }
.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    line-height: 1.05;
    margin-bottom: 16px;
}
.cta-sub {
    font-size: 1.1rem;
    color: rgba(26,39,68,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover {
    background: var(--navy-light);
    box-shadow: 0 8px 24px rgba(26,39,68,0.35);
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info .section-sub { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.cd-item {
    display: flex; align-items: flex-start; gap: 16px;
}
.cd-icon {
    width: 52px; height: 52px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.cd-item strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 4px;
}
.cd-item a, .cd-item span {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 500;
}
.cd-item a:hover { color: var(--gold); }

/* ===== FORM ===== */
.contact-form-wrap {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex; align-items: center; gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(212,160,23,0.1);
    border: 1px solid rgba(212,160,23,0.25);
    border-radius: var(--radius-sm);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
}
.form-success svg { color: var(--gold); flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.6);
}
.footer-inner {
    padding: 64px 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}
.footer-brand p {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact {
    display: flex; flex-direction: column; gap: 10px;
}
.footer-contact a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact span { font-size: 0.92rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 24px 0;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { max-width: 500px; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }
    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav a { width: 100%; padding: 12px 16px; }
    .nav-phone { justify-content: center; }
    .hero { min-height: 85vh; }
    .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-inner { padding: 40px 0; }
    .contact-form-wrap { padding: 24px; }
    .about-stat-card { left: 10px; bottom: -20px; }
}
