:root {
    --navy-900: #0b1424;
    --navy-800: #14233c;
    --navy-700: #1c3154;
    --navy-500: #264d7a;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --bg: #f8fafc;
    --text: #0f172a;
    --muted: #64748b;
    --white: #ffffff;
    --radius: 18px;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-mark {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 18px;
}

.brand-name {
    font-size: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
    margin-left: auto;
}

.nav-links a {
    font-weight: 600;
    color: var(--navy-700);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    font-weight: 600;
    color: var(--navy-700);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy-700);
}

main {
    padding-top: 24px;
}

.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(11, 20, 36, 0.92), rgba(20, 35, 60, 0.78));
}

.hero-inner {
    position: relative;
    padding: 80px 0;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin: 16px 0 16px;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 12px 0 16px;
    line-height: 1.2;
}

.highlight {
    color: var(--orange-500);
}

.hero-desc {
    max-width: 720px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.2);
    color: var(--white);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin: 28px 0 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--orange-500);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
    background: var(--navy-500);
    color: var(--white);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-stats,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px;
    border-radius: 16px;
    text-align: center;
}

.stats-grid .stat-card {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow);
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
}

.section {
    padding: 80px 0;
}

.section-cta {
    background: var(--white);
}

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

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--orange-500);
}

.section-label.light {
    color: rgba(255, 255, 255, 0.75);
}

.section-subtitle {
    color: var(--muted);
    max-width: 720px;
}

.section-dark {
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    color: var(--white);
}

.section-dark .section-subtitle,
.section-dark .light {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark h1,
.section-dark h3 {
    color: var(--white);
}

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

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 32px;
}

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

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.15);
    margin-bottom: 16px;
    display: grid;
    place-items: center;
}

.service-icon i {
    color: var(--orange-600);
    font-size: 1.2rem;
}

.stats-grid {
    margin-top: 40px;
}

.split {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.split-visual {
    position: relative;
}

.image-hero {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: block;
}

.stat-floating {
    position: absolute;
    bottom: -24px;
    right: 24px;
    background: var(--white);
    color: var(--navy-700);
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

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

.image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.image-caption {
    padding: 14px 16px;
    font-weight: 700;
    color: var(--navy-700);
}

.image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
}

.about-grid {
    display: grid;
    gap: 48px;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    background: linear-gradient(140deg, rgba(38, 77, 122, 0.9), rgba(249, 115, 22, 0.85));
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: 24px;
    background: var(--navy-700);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
}

.about-badge-value {
    font-size: 1.4rem;
    font-weight: 800;
}

.bullet-grid {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.bullet-grid li {
    background: rgba(38, 77, 122, 0.08);
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
}

.reasons-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 32px;
}

.reason-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reason-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
    display: grid;
    place-items: center;
}

.reason-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.why-cta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px;
}

.process-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 32px;
}

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

.process-number {
    font-weight: 800;
    color: var(--orange-500);
    margin-bottom: 12px;
}

.callout {
    margin-top: 40px;
    background: var(--navy-700);
    color: var(--white);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 32px;
}

.contact-quick {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: start;
}

.contact-mini-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.contact-mini-card {
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form {
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    font-family: inherit;
}

.field {
    margin-bottom: 16px;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.contact-info {
    display: grid;
    gap: 16px;
}

.contact-top-image {
    margin-bottom: 16px;
}

.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: var(--shadow);
}

.contact-card-title {
    font-weight: 700;
    color: var(--navy-700);
}

.contact-card-sub {
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-mini-card:hover,
.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.05);
    color: var(--muted);
    font-weight: 600;
}

.map-embed {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.05);
    min-height: 280px;
    box-shadow: var(--shadow);
}

.map-embed iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
    display: block;
}

.success-card {
    text-align: center;
}

.site-footer {
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 42%), var(--navy-900);
    color: rgba(255, 255, 255, 0.82);
    margin-top: 80px;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-top-inner {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-kicker {
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.74rem;
    font-weight: 700;
}

.footer-top-title {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--white);
}

.footer-top-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.footer-grid {
    display: grid;
    gap: 32px;
    padding: 48px 0 40px;
    grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(190px, 1fr));
}

.footer-brand .brand-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-brand .brand-mark {
    padding: 8px 10px;
    font-size: 16px;
}

.company-name {
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px;
}

.footer-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.footer-col-title {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 1.03rem;
    letter-spacing: 0.01em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-links a,
.footer-links span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 5px 10px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.footer-links span {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.84);
    cursor: default;
}

.footer-contact {
    width: 100%;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    column-gap: 10px;
    row-gap: 2px;
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 0.88rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    grid-row: 1 / span 2;
}

.footer-contact-title {
    color: var(--white);
    font-weight: 600;
    display: block;
}

.footer-contact-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.footer-meta {
    display: flex;
    gap: 16px;
}

.footer-meta a {
    color: rgba(255, 255, 255, 0.7);
}

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

@media (max-width: 960px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        right: 4vw;
        background: var(--white);
        border-radius: 16px;
        padding: 16px;
        box-shadow: var(--shadow);
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-cta,
    .callout {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        padding-top: 34px;
    }
}

/* Reference visual tuning */
:root {
    --navy-900: #0f172a;
    --navy-800: #172841;
    --navy-700: #1f3657;
    --navy-500: #2e4e79;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --bg: #f8fafc;
    --text: #0f172a;
    --muted: #475569;
    --white: #ffffff;
    --radius: 16px;
    --shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
    --shadow-strong: 0 18px 44px rgba(15, 23, 42, 0.15);
}

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.container {
    width: min(1280px, 92vw);
}

.site-header {
    background: rgba(248, 250, 252, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.nav-links a {
    color: #1e293b;
    padding: 8px 10px;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links a:hover {
    color: var(--navy-700);
    background: rgba(15, 23, 42, 0.05);
}

.nav-phone {
    color: #0f172a;
    font-weight: 700;
}

.hero {
    min-height: 82vh;
    border-radius: 0 0 28px 28px;
    overflow: hidden;
}

.hero-overlay {
    background:
        radial-gradient(circle at 70% 25%, rgba(249, 115, 22, 0.18), transparent 42%),
        linear-gradient(106deg, rgba(15, 23, 42, 0.93), rgba(23, 40, 65, 0.82));
}

.hero-inner {
    padding: 96px 0 84px;
}

.hero h1 {
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.2rem, 3.6vw, 3.5rem);
    letter-spacing: -0.02em;
}

.badge {
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(249, 115, 22, 0.18);
}

.btn {
    min-height: 46px;
    border-radius: 12px;
    font-weight: 700;
}

.btn-primary {
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.32);
}

.btn-secondary {
    background: var(--navy-700);
}

.btn:hover {
    transform: translateY(-1px);
}

.hero-stats .stat-card {
    backdrop-filter: blur(4px);
}

.section {
    padding: 92px 0;
}

.section-subtitle {
    font-size: 1.05rem;
}

.service-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(46, 78, 121, 0.28);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(30, 58, 95, 0.12), rgba(249, 115, 22, 0.2));
}

.service-icon i {
    font-size: 1.4rem;
    color: var(--navy-700);
}

.image-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.image-card img {
    height: 220px;
}

.image-caption {
    color: #1e293b;
}

.bullet-grid li {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.section-dark {
    background:
        radial-gradient(circle at 10% 10%, rgba(249, 115, 22, 0.12), transparent 36%),
        linear-gradient(135deg, var(--navy-700), var(--navy-900));
}

.reason-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(4px);
}

.reason-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.35), rgba(249, 115, 22, 0.2));
}

.reason-icon i {
    font-size: 1.3rem;
    color: #fff;
}

.why-cta {
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.process-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.process-number {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
}

.callout {
    background: linear-gradient(130deg, var(--navy-700), #10243f);
}

.contact-form {
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-form input,
.contact-form textarea {
    border-color: #cbd5e1;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy-500);
    box-shadow: 0 0 0 3px rgba(46, 78, 121, 0.18);
}

.contact-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card-title {
    color: #0f172a;
}

.contact-card-content {
    color: #1e293b;
    font-weight: 600;
}

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

.map-embed {
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.site-footer {
    margin-top: 72px;
    background: #0f172a;
}

.footer-contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 0.95rem;
    background: rgba(249, 115, 22, 0.26);
}

@media (max-width: 960px) {
    .hero {
        min-height: 72vh;
        border-radius: 0 0 22px 22px;
    }

    .hero-inner {
        padding: 78px 0 64px;
    }

    .section {
        padding: 72px 0;
    }
}

/* Simplified footer */
.site-footer {
    margin-top: 64px;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.82);
}

.footer-main {
    display: grid;
    gap: 28px;
    padding: 52px 0 34px;
    grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(180px, 1fr));
}

.footer-brand .brand-inline {
    margin-bottom: 12px;
}

.company-name {
    margin: 0 0 10px;
}

.footer-desc {
    margin: 0;
    line-height: 1.65;
}

.footer-col-title {
    margin: 0 0 12px;
    color: #fff;
    font-size: 1.02rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-links span {
    display: inline;
    padding: 0;
    min-height: 0;
    border-radius: 0;
    background: none;
}

.footer-links a:hover {
    color: #fff;
    background: none;
    text-decoration: underline;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.74);
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-contact-item {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-contact-item:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
}

.footer-contact-title {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.62);
}

.footer-contact-value {
    display: block;
    margin-top: 2px;
    color: #fff;
    font-weight: 700;
}

.footer-contact-sub {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.58);
}

.footer-bottom {
    padding: 18px 0;
}

.footer-bottom-inner {
    gap: 12px;
}

.footer-meta a {
    color: rgba(255, 255, 255, 0.74);
}

.footer-meta a:hover {
    color: #fff;
}

@media (max-width: 960px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 34px 0 26px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Enhanced navbar */
.site-header {
    top: 10px;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
}

.nav-bar {
    margin-top: 4px;
    padding: 10px 14px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.nav-links {
    margin-left: 18px;
    padding: 4px;
    gap: 4px;
    border-radius: 12px;
    background: #f1f5f9;
}

.nav-links a {
    padding: 8px 12px;
    border-radius: 9px;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.09);
}

.nav-cta {
    margin-left: auto;
    gap: 10px;
}

.nav-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: #334155;
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav-status i {
    color: var(--orange-500);
    font-size: 0.9rem;
}

.nav-phone {
    padding: 8px 11px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    font-size: 0.9rem;
}

.nav-cta .btn {
    min-height: 40px;
    padding: 10px 16px;
}

@media (max-width: 960px) {
    .site-header {
        top: 0;
    }

    .nav-bar {
        margin-top: 0;
        padding: 12px 0;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: none;
        background: rgba(255, 255, 255, 0.96);
    }

    .nav-status {
        display: none;
    }

    .nav-links.open {
        top: 72px;
        left: 4vw;
        right: 4vw;
        border: 1px solid rgba(15, 23, 42, 0.12);
        background: #ffffff;
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
    }
}

/* Compact footer tweak */
.site-footer {
    margin-top: 48px;
}

.footer-main {
    gap: 20px;
    padding: 40px 0 22px;
}

.footer-col-title {
    margin-bottom: 8px;
    font-size: 0.94rem;
}

.footer-desc,
.footer-links a,
.footer-links span,
.footer-contact-sub,
.footer-bottom {
    font-size: 0.92rem;
}

.footer-contact-item {
    padding: 10px 12px;
}

.footer-contact-title {
    font-size: 0.72rem;
}

.footer-contact-value {
    font-size: 0.95rem;
}

.footer-bottom {
    padding: 14px 0;
}

@media (max-width: 960px) {
    .footer-main {
        padding: 28px 0 16px;
    }
}

/* Hero from top + navbar over hero (home only) */
main {
    padding-top: 0;
}

body.home-hero .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
}

body.home-hero .nav-bar {
    margin-top: 14px;
    background: rgba(15, 23, 42, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

body.home-hero .nav-links {
    background: rgba(255, 255, 255, 0.08);
}

body.home-hero .nav-links a {
    color: #f8fafc;
}

body.home-hero .nav-links a:hover,
body.home-hero .nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

body.home-hero .nav-status,
body.home-hero .nav-phone {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
}

body.home-hero .nav-status i {
    color: #fdba74;
}

body.home-hero .hero {
    margin-top: 0;
    min-height: 100vh;
    border-radius: 0 0 28px 28px;
}

body.home-hero .hero-inner {
    padding-top: 170px;
}

@media (max-width: 960px) {
    body.home-hero .site-header {
        top: 0;
    }

    body.home-hero .nav-bar {
        margin-top: 0;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(15, 23, 42, 0.45);
        backdrop-filter: blur(8px);
    }

    body.home-hero .nav-toggle span {
        background: #ffffff;
    }

    body.home-hero .nav-links.open {
        top: 72px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(15, 23, 42, 0.95);
    }

    body.home-hero .nav-links.open a {
        color: #ffffff;
    }

    body.home-hero .hero {
        min-height: 86vh;
        border-radius: 0 0 22px 22px;
    }

    body.home-hero .hero-inner {
        padding-top: 140px;
    }
}

/* Footer contact cards side-by-side */
.footer-main {
    grid-template-columns: minmax(240px, 1fr) minmax(160px, 0.75fr) minmax(160px, 0.75fr) minmax(340px, 1.35fr);
}

.footer-col-contact .footer-contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.footer-col-contact .footer-contact-item {
    height: 100%;
}

@media (max-width: 960px) {
    .footer-col-contact .footer-contact-list {
        grid-template-columns: 1fr;
    }
}
