@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0b4f99;
    --primary-dark: #072b58;
    --accent: #f7941d;
    --accent-dark: #db7d0f;
    --text: #162033;
    --muted: #6a7486;
    --white: #ffffff;
    --light: #f6f7fb;
    --border: #e4eaf3;
    --dark-bg: #141414;
    --shadow: 0 18px 42px rgba(11, 30, 60, 0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
}

.brand-logo {
    width: 88px;
    height: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 18px;
    font-weight: 800;
}

.brand-tag {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav-links {
    display: flex;
    gap: 26px;
}

.nav-links a {
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 18px;
    font-weight: 700;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #f7941d, #ffb347);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(247, 148, 29, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(247, 148, 29, 0.45);
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--white);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-dark {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--white);
}

.btn-dark:hover,
.btn-outline-light:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--white);
    background: transparent;
}

.full-width {
    width: 100%;
}

.hero {
    position: relative;
    background:
        linear-gradient(120deg, rgba(5,20,45,0.95), rgba(10,40,80,0.85)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 92px 0 115px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.eyebrow,
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.section-label.light {
    color: #ffd089;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: -1px;
    font-weight: 800;
    margin-bottom: 22px;
    max-width: 700px;
}

.hero p {
    max-width: 670px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.badge-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 14px 18px;
    font-weight: 600;
}

.hero-panel {
    display: flex;
    justify-content: flex-end;
}

.info-card {
    width: 100%;
    max-width: 460px;
    border-radius: 28px;
    padding: 32px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
    color: var(--text);
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-item + .info-item {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.info-item span {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
}

.info-item strong {
    font-size: 20px;
}

.trust-strip {
    margin-top: -38px;
    position: relative;
    z-index: 4;
}

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

.trust-card {
    background: var(--white);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.trust-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.trust-card p {
    color: var(--muted);
    font-size: 15px;
}

.section {
    padding: 95px 0;
}

.split-grid,
.why-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.section h2,
.cta-box h2 {
    font-size: 42px;
    line-height: 1.12;
    margin-bottom: 16px;
}

.lead,
.section-head p,
.cta-box p {
    font-size: 18px;
    color: var(--muted);
}

.feature-list,
.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.feature-box,
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 8px 22px rgba(20, 35, 70, 0.05);
}

.why-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.why-card p {
    color: var(--muted);
    font-size: 15px;
}

.image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.image-card {
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.image-card.tall {
    height: 420px;
    background-image: linear-gradient(rgba(20,20,20,0.1), rgba(20,20,20,0.1)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1200&q=80');
}

.image-card.short {
    height: 360px;
    margin-top: 60px;
    background-image: linear-gradient(rgba(20,20,20,0.12), rgba(20,20,20,0.12)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=80');
}

.services-section {
    background: var(--light);
}

.section-head {
    margin-bottom: 34px;
}

.section-head.center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 38px;
}

.services-grid {
    display: grid;
    gap: 24px;
}

.services-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(20, 35, 70, 0.13);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-image-1 {
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80');
}

.service-image-2 {
    background-image: url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80');
}

.service-image-3 {
    background-image: url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?auto=format&fit=crop&w=1200&q=80');
}

.service-body {
    padding: 24px;
}

.service-body h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-body p {
    color: var(--muted);
    font-size: 15px;
}

.stats-section {
    background: linear-gradient(135deg, #1b1b1b, #2c2c2c 55%, #0b4f99);
    color: var(--white);
    padding: 54px 0;
}

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

.stat-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    padding: 26px 20px;
}

.stat-box strong {
    display: block;
    font-size: 34px;
    color: #ffbf67;
    margin-bottom: 8px;
}

.stat-box span {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.why-visual {
    min-height: 520px;
    border-radius: 32px;
    background:
        linear-gradient(rgba(8, 24, 48, 0.20), rgba(8, 24, 48, 0.20)),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    box-shadow: var(--shadow);
}

.cta-section {
    padding-bottom: 95px;
}

.cta-box {
    background: linear-gradient(135deg, #1b1b1b, #2d2d2d 45%, #0b4f99 100%);
    color: var(--white);
    border-radius: 32px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.78);
}

.cta-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-section {
    background: var(--light);
}

.contact-info {
    margin-top: 26px;
    display: grid;
    gap: 12px;
    font-size: 16px;
}

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

.form-card {
    background: var(--white);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 79, 153, 0.10);
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 999;
}

.site-footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 36px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.site-footer ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 18px 20px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .trust-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid,
    .split-grid,
    .why-grid,
    .contact-grid,
    .cta-box,
    .services-grid-three {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 50px;
    }

    .cta-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 860px) {
    .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links,
    .nav-cta {
        flex-wrap: wrap;
    }

    .feature-list,
    .why-cards,
    .trust-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .image-stack {
        grid-template-columns: 1fr;
    }

    .image-card.short {
        margin-top: 0;
    }

    .hero {
        padding: 78px 0 90px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .section h2,
    .cta-box h2 {
        font-size: 32px;
    }
}
