/* =========================
   RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background: #ffffff;
}

/* =========================
   GLOBAL
========================= */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section {
    padding: 48px 16px;
    max-width: 1100px;
    margin: auto;
}

.light-bg {
    background: #f7f9fc;
}

h1,
h2 {
    line-height: 1.3;
}

h2 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
}

p {
    font-size: 16px;
}

/* =========================
   HERO
========================= */
.hero {
    display: flex;
    flex-direction: column;
    padding: 40px 16px;
    background: linear-gradient(135deg, #0a2a43, #0f3f66);
    color: #ffffff;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 34px;
    font-weight: 700;
}

.hero .location {
    font-size: 15px;
    opacity: 0.9;
    margin: 8px 0;
}

.hero h2 {
    font-size: 28px;
    margin: 16px 0;
}

.hero h2 span {
    color: #ffd200;
}

.hero .subtext {
    font-size: 16px;
    margin-bottom: 24px;
}

.cta-btn {
    display: inline-block;
    background: #ffd200;
    color: #000;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.hero-image {
    margin-top: 30px;
}

/* =========================
   TRUST STRIP
========================= */
.trust {
    background: #ffffff;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

/* =========================
   HIGHLIGHTS
========================= */
.highlights {
    list-style: none;
    max-width: 600px;
    margin: 24px auto 0;
}

.highlights li {
    font-size: 16px;
    padding: 10px 0;
}

/* =========================
   FORM
========================= */
.form-section {
    background: #ffffff;
}

form {
    max-width: 420px;
    margin: 0 auto;
}

form input,
form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

form button {
    width: 100%;
    background: #0a2a43;
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

form button:hover {
    background: #08304f;
}

.disclaimer {
    text-align: center;
    font-size: 12px;
    margin-top: 16px;
    color: #666;
}

/* =========================
   STICKY CTA (MOBILE)
========================= */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 9999;
}

.sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.sticky-whatsapp {
    background: #25d366;
}

.sticky-call {
    background: #0a2a43;
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 768px) {

    .hero {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 60px;
    }

    .hero-image {
        max-width: 420px;
        margin-top: 0;
    }

    .sticky-cta {
        display: none;
    }

    /* =========================
   FLOATING ICONS
========================= */
    .floating-icons {
        position: fixed;
        right: 16px;
        bottom: 80px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .floating-icons a {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .floating-icons img {
        width: 28px;
        height: 28px;
    }

    .float-whatsapp {
        background: #25D366;
    }

    .float-call {
        background: #0a2a43;
    }

    /* Hide floating icons on desktop if sticky CTA exists */
    @media (min-width: 768px) {
        .floating-icons {
            bottom: 24px;
        }
    }


}