:root {
    --blue: #0b62e3;
    --blue-dark: #0a4fb5;
    --green: #12c28c;
    --bg: #f6f9fc;
    --text: #132238;
    --muted: #5a6b85;
    --card: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 16px 36px rgba(11, 98, 227, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: var(--blue);
    text-decoration: none;
}

h1, h2, h3 {
    margin: 0 0 0.4em;
    color: #0d1b39;
}

p {
    margin: 0 0 1em;
    color: var(--muted);
}

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

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 95px;
    height: auto;
}

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

.brand-name {
    font-weight: 800;
    letter-spacing: 0.3px;
}

.brand-tagline {
    font-size: 13px;
    color: var(--muted);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.call-us {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: var(--muted);
}

.call-number {
    font-weight: 800;
    color: var(--blue);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: #fff;
    box-shadow: 0 12px 24px rgba(11, 98, 227, 0.22);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(11, 98, 227, 0.3);
}

.btn-secondary {
    background: #e8f3ff;
    color: var(--blue);
    border: 1px solid #d4e4ff;
}

.btn.full {
    width: 100%;
}

/* Hero */
.hero {
    padding: 64px 0 40px;
}

.hero-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    align-items: start;
}

.hero-text h1 {
    font-size: clamp(28px, 4vw, 38px);
}

.lead {
    font-size: 17px;
}

.note {
    color: #0d1b39;
    font-weight: 600;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #e8f4ff;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.hero-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.facts {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    color: var(--muted);
}

.facts.compact li {
    padding: 6px 0;
    border-bottom: 1px dashed var(--border);
}

/* Categories */
/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 12px;
}

/* Form */
.form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
    max-width: 500px;
    width: 100%;
}

form {
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 600;
    color: #0d1b39;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fdfefe;
    font-size: 15px;
    color: var(--text);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(11, 98, 227, 0.12);
    outline: none;
}

.radio-row {
    display: flex;
    gap: 14px;
}

.radio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-weight: 500;
}

.form-header h2 {
    margin: 0 0 6px;
}

.form-header p {
    margin: 0 0 12px;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.small-note {
    font-size: 13px;
    color: var(--muted);
}

.alert {
    width: min(920px, 92%);
    margin: 0 auto 14px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ffd7d7;
    background: #fff5f5;
    color: #a02929;
}

.alert ul {
    margin: 6px 0 0 16px;
    padding: 0;
}

.alert strong {
    display: block;
    margin-bottom: 4px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
}

.error-field {
    border-color: #e63946 !important;
    box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.18) !important;
}

/* Footer */
.site-footer {
    background: #0c172d;
    color: #cfd7e6;
    padding: 18px 0 10px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    width: min(1140px, 92%);
    margin: 0 auto 10px;
}

.footer-brand p {
    color: #9badc9;
    margin: 4px 0 0;
}

.footer-copy {
    text-align: center;
    font-size: 13px;
    color: #7f8aac;
    padding-bottom: 6px;
}

.mobile-cta {
   
    display: none !important;
   
}

/* Floating WhatsApp */
.whatsapp-fab {
    position: fixed;
    right: 16px;
    bottom: 90px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.whatsapp-badge {
    background: #ffffff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.20);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    border: 2px solid #22c55e;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.whatsapp-fab:hover .whatsapp-badge {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(16, 185, 129, 0.32);
    filter: brightness(1.03);
}

.whatsapp-tip {
    background: #0b1224;
    color: #f8fafc;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 640px) {
    .form-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .whatsapp-fab {
        right: 12px;
        bottom: 80px;
    }
}

/* Thank you */
.thankyou {
    padding: 60px 0;
}

.thankyou-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 12px;
    background: #e6fff6;
    color: #0f9b6d;
    display: grid;
    place-items: center;
    font-size: 30px;
    font-weight: 800;
}

.thankyou-actions {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .header-cta {
        display: none;
    }
    .mobile-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .hero {
        padding-top: 48px;
    }
}

@media (max-width: 640px) {
    .form-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .mobile-cta .btn {
        padding: 11px 12px;
        font-size: 14px;
    }
    .mobile-cta {
        width: min(360px, 92%);
        gap: 4px;
    }
    .whatsapp-fab {
        right: 10px;
        bottom: 72px;
    }
}
