/* =============================================
       CSS CUSTOM PROPERTIES
        ============================================= */
:root {
    --sky: #0ea5e9;
    --sky-light: #38bdf8;
    --sky-dark: #0369a1;
    --sky-deeper: #0c4a6e;
    --white: #ffffff;
    --off-white: #f0f9ff;
    --text: #0f172a;
    --text-muted: #475569;
    --border: rgba(14, 165, 233, 0.15);
    --glass: rgba(255, 255, 255, 0.72);
    --shadow: 0 8px 32px rgba(14, 165, 233, 0.12);
    --shadow-lg: 0 24px 64px rgba(14, 165, 233, 0.18);
    --radius: 16px;
    --radius-lg: 24px;
    --nav-h: 72px;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
       RESET & BASE
        ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

input,
textarea,
button {
    font-family: var(--font-body);
}

section {
    padding: 100px 0;
}

/* =============================================
       UTILITY
        ============================================= */
.container {
    width: min(1180px, 100% - 48px);
    margin-inline: auto;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sky);
    background: rgba(14, 165, 233, 0.10);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.tag i {
    font-size: 0.65rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text);
}

.section-title span {
    color: var(--sky);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
}

.section-head {
    margin-bottom: 64px;
}

.section-head.center {
    text-align: center;
}

.section-head.center .section-sub {
    margin-inline: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    padding: 14px 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sky) 0%, var(--sky-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(14, 165, 233, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--sky-dark);
    border: 2px solid var(--sky);
}

.btn-outline:hover {
    background: var(--sky);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--sky-dark);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

/* =============================================
       NAVBAR
        ============================================= */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(14, 165, 233, 0.1), 0 4px 24px rgba(14, 165, 233, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-family: var(--font-head);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--sky-dark);
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--sky);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--sky-dark);
    background: rgba(14, 165, 233, 0.08);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text);
    font-size: 1.3rem;
}

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(12, 74, 110, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--white);
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.08);
}

.mobile-nav.open .mobile-drawer {
    transform: translateX(0);
}

.mobile-drawer a {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.mobile-drawer .btn {
    margin-top: 20px;
    justify-content: center;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text);
}

/* =============================================
       HERO
        ============================================= */
#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #e0f2fe 0%, #f0f9ff 40%, #bae6fd 100%);
    padding-top: var(--nav-h);
}

/* Decorative blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.22) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: blobFloat 8s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
    bottom: -80px;
    left: 10%;
    animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -30px) scale(1.05);
    }
}

/* Grid lines decoration */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sky-dark);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sky);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.5);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(14, 165, 233, 0);
    }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

.hero-title .accent {
    color: var(--sky);
}

.hero-title .brand {
    position: relative;
    display: inline-block;
}

.hero-title .brand::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky), var(--sky-light));
    border-radius: 2px;
    opacity: 0.6;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid rgba(14, 165, 233, 0.15);
}

.hero-stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--sky-dark);
    line-height: 1;
}

.hero-stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.h-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 28px;
}

.h-card-main {
    position: relative;
    z-index: 3;
    animation: cardFloat 5s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.h-card-back {
    position: absolute;
    top: -18px;
    right: -22px;
    width: 85%;
    z-index: 2;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.2);
    animation: cardFloat 5s ease-in-out infinite 0.5s;
}

.h-card-back2 {
    position: absolute;
    bottom: -18px;
    left: -22px;
    width: 75%;
    z-index: 1;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.18);
    animation: cardFloat 5s ease-in-out infinite 1s;
    min-height: 90px;
}

.card-metric-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 6px;
}

.card-metric-value {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.card-chart {
    margin-top: 20px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--sky-light), var(--sky-dark));
    opacity: 0.7;
    animation: barGrow 1s ease-out forwards;
    transform-origin: bottom;
}

@keyframes barGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.card-pill-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.cpill {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 5px 13px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sky-dark);
}

/* Floating badges */
.float-badge {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    border: 1px solid rgba(14, 165, 233, 0.12);
    white-space: nowrap;
    z-index: 10;
}

.float-badge i {
    color: var(--sky);
    font-size: 1rem;
}

.fb-1 {
    top: 10%;
    right: -30px;
    animation: fbFloat 6s ease-in-out infinite;
}

.fb-2 {
    bottom: 15%;
    left: -25px;
    animation: fbFloat 6s ease-in-out infinite 1.5s;
}

@keyframes fbFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* =============================================
       SERVICES
        ============================================= */
#services {
    background: var(--white);
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sky), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.svc-card {
    background: var(--white);
    border: 1px solid rgba(14, 165, 233, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.04) 0%, rgba(3, 105, 161, 0.06) 100%);
    opacity: 0;
    transition: var(--transition);
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.3);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 28px;
    position: relative;
    transition: var(--transition);
}

.svc-card:hover .svc-icon-wrap {
    transform: scale(1.1);
}

.icon-blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: var(--sky-dark);
}

.icon-cyan {
    background: linear-gradient(135deg, #cffafe, #a5f3fc);
    color: #0e7490;
}

.icon-indigo {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #3730a3;
}

.svc-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.svc-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--sky-dark);
    transition: var(--transition);
}

.svc-link i {
    transition: var(--transition);
}

.svc-card:hover .svc-link i {
    transform: translateX(4px);
}

.svc-number {
    position: absolute;
    bottom: 28px;
    right: 28px;
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(14, 165, 233, 0.06);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}

.svc-card:hover .svc-number {
    color: rgba(14, 165, 233, 0.1);
}

/* =============================================
       ABOUT
    ============================================= */
#about {
    background: linear-gradient(160deg, #f0f9ff 0%, var(--white) 60%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 50%, #38bdf8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-img-inner {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-mini-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 20px 16px;
    color: white;
    backdrop-filter: blur(8px);
}

.about-mini-card i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
}

.about-mini-card strong {
    font-family: var(--font-head);
    font-size: 1.1rem;
    display: block;
}

.about-mini-card span {
    font-size: 0.75rem;
    opacity: 0.75;
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
    border: 1px solid rgba(14, 165, 233, 0.12);
}

.about-badge-float strong {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--sky-dark);
    display: block;
}

.about-badge-float span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about-content .section-sub {
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-dark);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-feature-text strong {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.about-feature-text span {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =============================================
       WHY CHOOSE US
        ============================================= */
#why {
    background: linear-gradient(135deg, var(--sky-deeper) 0%, var(--sky-dark) 50%, var(--sky) 100%);
    position: relative;
    overflow: hidden;
}

#why::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

#why .section-title {
    color: var(--white);
}

#why .section-sub {
    color: rgba(255, 255, 255, 0.75);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 0;
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #bae6fd;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.why-stat {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.why-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #bae6fd;
    margin-bottom: 12px;
}

.why-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* =============================================
       FOOTER
        ============================================= */
footer {
    background: linear-gradient(160deg, #0c4a6e 0%, #075985 50%, #0369a1 100%);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--sky-light);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--sky);
    border-color: var(--sky);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--sky-light);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.contact-item i {
    color: var(--sky-light);
    font-size: 0.9rem;
    margin-top: 2px;
}

/* Map section */
.map-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 64px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map {
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-form-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-form-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-form input,
.footer-form textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    resize: none;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer-form input:focus,
.footer-form textarea:focus {
    border-color: var(--sky-light);
    background: rgba(255, 255, 255, 0.12);
}

.footer-form textarea {
    height: 100px;
}

.footer-form .btn-submit {
    background: linear-gradient(135deg, var(--sky-light), var(--sky));
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    transition: var(--transition);
}

.footer-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}

/* Footer bottom */
.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
    color: var(--sky-light);
}

/* Form success toast */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--sky-dark);
    color: var(--white);
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
    z-index: 9999;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    color: #86efac;
}

/* =============================================
       RESPONSIVE
        ============================================= */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 72px 0;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-card-stack {
        max-width: 340px;
    }

    .hero-stats {
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-badge-float {
        bottom: -15px;
        right: 0;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .map-form-row {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .fb-1,
    .fb-2 {
        display: none;
    }
}

/* =============================================
       SCROLL INDICATOR
        ============================================= */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator i {
    font-size: 1rem;
    color: var(--sky);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}