:root {
    --red: #E23744;
    --red-dark: #b82d38;
    --red-glow: rgba(226, 55, 68, 0.3);
    --dark: #0a0a0a;
    --dark2: #111111;
    --dark3: #181818;
    --card: #141414;
    --border: rgba(255, 255, 255, 0.07);
    --text: #f0f0f0;
    --muted: #888;
    --light: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Syne', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.tag {
    display: inline-block;
    background: rgba(226, 55, 68, 0.12);
    color: var(--red);
    border: 1px solid rgba(226, 55, 68, 0.3);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--red-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.section-title {
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 60% at 60% 40%, rgba(226, 55, 68, 0.13) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 10% 60%, rgba(226, 55, 68, 0.05) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.floating-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float-shape 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(226, 55, 68, 0.13);
    top: 10%;
    right: 6%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(226, 55, 68, 0.07);
    bottom: 20%;
    right: 30%;
    animation-delay: 3s;
}

.shape-3 {
    width: 140px;
    height: 140px;
    background: rgba(255, 100, 60, 0.08);
    top: 60%;
    left: 5%;
    animation-delay: 5s;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-28px) scale(1.05);
    }
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 55, 68, 0.1);
    border: 1px solid rgba(226, 55, 68, 0.3);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 28px;
    animation: fadeSlideUp 0.8s ease both;
}

.dot-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(32px, 3vw, 50px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 22px;
    animation: fadeSlideUp 0.8s ease 0.1s both;
}

.hero-title .accent {
    color: var(--red);
}

.hero-sub {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeSlideUp 0.8s ease 0.2s both;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.3s both;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO STAT CARDS */
.hero-stats {
    animation: fadeSlideUp 0.8s ease 0.2s both;
    display: grid;
    gap: 16px;
}

.hstat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.hstat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--red);
    transition: height 0.4s;
}

.hstat-card:hover::before {
    height: 100%;
}

.hstat-card:hover {
    border-color: rgba(226, 55, 68, 0.25);
    transform: translateX(4px);
}

.hstat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(226, 55, 68, 0.1);
    border: 1px solid rgba(226, 55, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.4s;
}

.hstat-card:hover .hstat-icon {
    background: var(--red);
}

.hstat-val {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--red);
}

.hstat-lbl {
    font-size: 13px;
    color: var(--muted);
}

/* CONTACT OPTIONS */
#contact-options {
    padding: 80px 0;
    background: var(--dark2);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.option-card {
    background: var(--card);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s;
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.option-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(226, 55, 68, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(226, 55, 68, 0.3);
}

.option-card:hover::after {
    opacity: 1;
}

.option-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: rgba(226, 55, 68, 0.1);
    border: 1px solid rgba(226, 55, 68, 0.2);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.option-card.wa .option-icon-wrap {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.25);
}

.option-card:hover .option-icon-wrap {
    transform: scale(1.1);
}

.option-card:not(.wa):hover .option-icon-wrap {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 12px 36px var(--red-glow);
}

.option-card.wa:hover .option-icon-wrap {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.3);
}

.option-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.option-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.option-link {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.option-card:not(.wa) .option-link {
    color: var(--red);
}

.option-card.wa .option-link {
    color: #25D366;
}

.option-badge {
    font-size: 11px;
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 100px;
    padding: 3px 10px;
    display: inline-block;
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

/* CONTACT FORM SECTION */
#contact-form-section {
    padding: 120px 0;
    background: var(--dark);
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: start;
}

.form-left h2 {
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.form-perks {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-perk {
    display: flex;
    align-items: center;
    gap: 14px;
}

.perk-dot {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(226, 55, 68, 0.1);
    border: 1px solid rgba(226, 55, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.perk-text {
    font-size: 14px;
    color: var(--muted);
}

.perk-text strong {
    color: var(--text);
    display: block;
    margin-bottom: 1px;
}

/* FORM */
.contact-form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 100px;
}

.form-title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 6px;
}

.form-sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 32px;
}

.field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    position: relative;
    margin-bottom: 18px;
}

.field.full {
    grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    transition: all 0.3s;
    outline: none;
    appearance: none;
    resize: none;
}

.field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.field select option {
    background: #1a1a1a;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(226, 55, 68, 0.1);
    background: #1a1a1a;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--muted);
}

.field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.field input.error,
.field select.error,
.field textarea.error {
    border-color: var(--red);
}

.field .err-msg {
    font-size: 11px;
    color: var(--red);
    margin-top: 5px;
    display: none;
}

.field.has-error .err-msg {
    display: block;
}

.submit-btn {
    width: 100%;
    background: var(--red);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px var(--red-glow);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 14px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 32px 20px;
}

.form-success .success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 14px;
    color: var(--muted);
}

/* QUICK CTA */
#quick-cta {
    padding: 80px 0;
    background: var(--dark2);
}

.qcta-inner {
    background: linear-gradient(135deg, rgba(226, 55, 68, 0.12) 0%, rgba(226, 55, 68, 0.04) 100%);
    border: 1px solid rgba(226, 55, 68, 0.25);
    border-radius: 24px;
    padding: 60px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.qcta-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(226, 55, 68, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.qcta-text h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.qcta-text p {
    font-size: 15px;
    color: var(--muted);
}

.qcta-btns {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* TRUST */
#trust {
    padding: 80px 0;
    background: var(--dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 56px;
}

.trust-card {
    background: var(--card);
    padding: 44px 36px;
    text-align: center;
    transition: background 0.3s;
}

.trust-card:hover {
    background: var(--dark3);
}

.trust-icon {
    font-size: 36px;
    margin-bottom: 18px;
    display: block;
}

.trust-val {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 6px;
}

.trust-lbl {
    font-size: 14px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 6px;
}

.trust-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* MAP/LOCATION */
#location {
    padding: 80px 0;
    background: var(--dark2);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 56px;
}

.map-placeholder {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
    position: relative;
}

.map-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d1a0d 0%, #0a120a 100%);
    position: relative;
}

.map-grid-h {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.map-grid-v {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.map-roads {
    position: absolute;
    inset: 0;
}

.road-h {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
}

.road-v {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: marker-float 2.5s ease-in-out infinite;
}

@keyframes marker-float {

    0%,
    100% {
        transform: translate(-50%, -100%);
    }

    50% {
        transform: translate(-50%, calc(-100% - 8px));
    }
}

.marker-pin {
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px var(--red-glow);
}

.marker-pin span {
    transform: rotate(45deg);
    font-size: 20px;
}

.marker-pulse {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(226, 55, 68, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: map-pulse 2s ease-out infinite;
}

@keyframes map-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.map-label {
    background: rgba(226, 55, 68, 0.1);
    border: 1px solid rgba(226, 55, 68, 0.3);
    border-radius: 8px;
    padding: 8px 14px;
    margin-top: 12px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.map-info-card {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 14px;
}

.mic-icon {
    font-size: 22px;
}

.mic-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--light);
}

.mic-addr {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.mic-hours {
    font-size: 11px;
    color: #25D366;
    margin-top: 2px;
}

.location-info h3 {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

.loc-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.loc-detail:last-child {
    border-bottom: none;
}

.loc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(226, 55, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.loc-lbl {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.loc-val {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

/* FAQ */
#faq {
    padding: 80px 0;
    background: var(--dark);
}

.faq-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 56px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(226, 55, 68, 0.3);
}

.faq-question {
    width: 100%;
    background: var(--card);
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--dark3);
}

.faq-item.open .faq-question {
    background: var(--dark3);
}

.faq-q-text {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--light);
}

.faq-chevron {
    font-size: 18px;
    color: var(--red);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(45deg);
}

.faq-answer {
    background: var(--card);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* FINAL CTA */
#final-cta {
    padding: 140px 0;
    background: var(--dark2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

#final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(226, 55, 68, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.fcta-content {
    position: relative;
    z-index: 1;
}

.fcta-title {
    font-size: clamp(36px, 5vw, 70px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.fcta-sub {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 48px;
    font-weight: 300;
}

.fcta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* FOOTER */
footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    color: var(--muted);
}

.social-link:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(226, 55, 68, 0.1);
}

.footer-col h5 {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--light);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted);
}

/* WA FLOAT */
.wa-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    animation: float-btn 3s ease-in-out infinite;
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.1);
}

@keyframes float-btn {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .form-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-card {
        position: static;
    }

    .location-layout {
        grid-template-columns: 1fr;
    }

    .faq-cols {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .qcta-inner {
        flex-direction: column;
        text-align: center;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .field-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .fcta-actions {
        flex-direction: column;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .qcta-btns {
        flex-direction: column;
        width: 100%;
    }

    .qcta-btns a {
        text-align: center;
        justify-content: center;
    }
}