:root {
    --cream: #FAF6EF;
    --dark: #1A1208;
    --earth: #7C4F1E;
    --gold: #C8962A;
    --green: #2D4A2A;
    --sage: #6B8F5E;
    --light-gold: #F0D898;
    --terracotta: #C2603A;
    --sand: #E8D5B0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--green);
    color: var(--dark);
    overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 18, 8, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 150, 42, 0.2);
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light-gold);
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-cta {
    background: var(--gold);
    color: var(--dark);
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.nav-cta:hover {
    background: var(--terracotta);
    color: white;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    background: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 0 6%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 70% 50%, rgba(200, 150, 42, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(45, 74, 42, 0.4) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8962a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(200, 150, 42, 0.3), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1 1 56%;
    padding: 120px 0 110px;
    max-width: 700px;
}

.hero-media {
    position: relative;
    z-index: 2;
    flex: 0 1 40%;
    width: 100%;
    max-width: 460px;
    min-width: 280px;
    margin-top: 72px;
    animation: fadeUp 0.8s 0.25s ease both;
}

.hero-media::before {
    content: '';
    position: absolute;
    inset: -16px;
    background: radial-gradient(circle at 50% 40%, rgba(200, 150, 42, 0.25), transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.hero-video-frame {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(200, 150, 42, 0.35);
    background: #0f1a17;
    box-shadow: 0 24px 60px rgba(7, 12, 11, 0.55);
}

.hero-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 150, 42, 0.15);
    border: 1px solid rgba(200, 150, 42, 0.4);
    padding: 6px 16px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--cream);
    margin-bottom: 12px;
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: rgba(240, 216, 152, 0.7);
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(250, 246, 239, 0.65);
    max-width: 520px;
    margin-bottom: 44px;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.4s ease both;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-primary:hover {
    background: var(--terracotta);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(200, 150, 42, 0.5);
    color: var(--light-gold);
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(200, 150, 42, 0.1);
}

.hero-stats {
    position: absolute;
    bottom: 48px;
    right: 6%;
    display: flex;
    gap: 40px;
    animation: fadeUp 0.8s 0.5s ease both;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(250, 246, 239, 0.5);
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 6%;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(250, 246, 239, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(200, 150, 42, 0.4);
    animation: expandLine 1.5s 1s ease both;
}

/* ─── MARQUEE STRIP ─── */
.strip {
    background: var(--green);
    padding: 14px 0;
    overflow: hidden;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.strip-inner {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.strip-item {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--light-gold);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.strip-item::after {
    content: '◆';
    color: var(--gold);
    font-size: 0.5rem;
}

/* ─── SECTION BASICS ─── */
section {
    padding: 100px 6%;
}

.section-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title em {
    color: var(--earth);
    font-style: italic;
}

/* ─── ABOUT / FEATURES ─── */
.about {
    background: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-frame {
    background: var(--sand);
    height: 480px;
    position: relative;
    overflow: hidden;
}

.about-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--earth) 0%, var(--green) 100%);
    opacity: 0.85;
}

.about-img-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.plot-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    opacity: 0.8;
}

.about-img-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-gold);
    text-align: center;
}

.about-img-sub {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(240, 216, 152, 0.7);
    margin-top: 6px;
    text-transform: uppercase;
}

.about-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--gold);
    opacity: 0.4;
}

.about-accent2 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 70px;
    height: 70px;
    background: var(--gold);
    opacity: 0.15;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.highlight-card {
    background: var(--cream);
    padding: 20px;
    border-left: 3px solid var(--gold);
}

.highlight-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.highlight-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
}

.highlight-desc {
    font-size: 0.75rem;
    color: #888;
    margin-top: 4px;
    line-height: 1.5;
}

/* ─── PLOTS SECTION ─── */
.plots {
    background: var(--dark);
}

.plots .section-label {
    color: var(--gold);
}

.plots .section-title {
    color: var(--cream);
}

.plots .section-title em {
    color: var(--gold);
}

.plots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 50px;
}

.plot-card {
    background: #231A0D;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.plot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 150, 42, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.plot-card:hover::before {
    opacity: 1;
}

.plot-card:hover {
    transform: translateY(-4px);
    background: #2D2010;
}

.plot-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(200, 150, 42, 0.1);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 24px;
}

.plot-size {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.plot-unit {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--sage);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.plot-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 8px;
}

.plot-desc {
    font-size: 0.8rem;
    color: rgba(250, 246, 239, 0.5);
    line-height: 1.6;
}

.plot-tag {
    display: inline-block;
    background: var(--green);
    color: var(--sage);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    margin-top: 16px;
    text-transform: uppercase;
}

.plot-tag.hot {
    background: rgba(194, 96, 58, 0.2);
    color: var(--terracotta);
}

/* ─── WHY US ─── */
.why {
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.why-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--sand);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    border-color: var(--gold);
    background: white;
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.why-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #777;
}

/* ─── TESTIMONIAL ─── */
.testimonial {
    background: var(--green);
    text-align: center;
    padding: 80px 6%;
}

.testimonial .section-label {
    justify-content: center;
    color: var(--sage);
}

.testimonial .section-label::before {
    display: none;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-style: italic;
    color: var(--light-gold);
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.4;
}

.testimonial-author {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--sage);
    text-transform: uppercase;
}

/* ─── CONTACT / CTA ─── */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
}

.contact-item-icon {
    font-size: 1.2rem;
}

.contact-item-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}

.contact-item-sub {
    font-size: 0.72rem;
    color: #999;
    margin-top: 2px;
}

/* ─── FORM ─── */
.form-wrap {
    background: var(--dark);
    padding: 44px;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-gold);
    margin-bottom: 8px;
}

.form-sub {
    font-size: 0.8rem;
    color: rgba(250, 246, 239, 0.5);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 150, 42, 0.25);
    padding: 12px 16px;
    color: var(--cream);
    font-size: 0.88rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250, 246, 239, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group select option {
    background: var(--dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--dark);
    padding: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    font-family: 'DM Sans', sans-serif;
}

.form-submit:hover {
    background: var(--terracotta);
    color: white;
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
}

.wa-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 14px 22px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    border-radius: 50px;
    animation: pulse 2s infinite;
}

.wa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.wa-icon {
    font-size: 1.4rem;
}

/* ─── FOOTER ─── */
footer {
    background: var(--dark);
    padding: 40px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(200, 150, 42, 0.2);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-gold);
}

.footer-brand span {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: rgba(250, 246, 239, 0.5);
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.7rem;
    color: rgba(250, 246, 239, 0.3);
    width: 100%;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }

    to {
        width: 40px;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.65);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    section {
        padding: 86px 5%;
    }

    .hero {
        gap: 24px;
        padding: 0 5%;
    }

    .hero-content {
        padding: 110px 0 96px;
        max-width: 560px;
    }

    .hero-media {
        max-width: 420px;
        min-width: 280px;
        margin-top: 84px;
    }

    .hero-stats {
        gap: 24px;
    }

    .about,
    .contact-grid {
        gap: 48px;
    }

    .about-img-frame {
        height: 420px;
    }

    .plots-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    nav {
        padding: 14px 5%;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .hero {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0;
    }

    .hero-content {
        padding: 110px 5% 48px;
        max-width: 100%;
        width: 100%;
    }

    .hero-media {
        flex: none;
        min-width: 0;
        max-width: 420px;
        width: 100%;
        margin: 0 auto;
        padding: 0 5% 26px;
    }

    .hero-line,
    .hero-scroll {
        display: none;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 0;
        width: 100%;
        padding: 0 5%;
        justify-content: flex-start;
        gap: 24px;
        flex-wrap: wrap;
    }

    .about,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-frame {
        height: 360px;
    }

    .about-accent,
    .about-accent2 {
        display: none;
    }

    .form-wrap {
        padding: 34px 28px;
    }

    .footer-links {
        gap: 18px;
        flex-wrap: wrap;
    }

    .wa-float {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 600px) {
    section {
        padding: 70px 5%;
    }

    nav {
        padding: 12px 5%;
        gap: 10px;
    }

    .logo-main {
        font-size: 1rem;
    }

    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 0.14em;
    }

    .nav-cta {
        padding: 9px 14px;
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }

    .hero-content {
        padding: 96px 5% 34px;
    }

    .hero-media {
        max-width: 360px;
        padding: 0 5% 18px;
    }

    .hero-badge {
        font-size: 0.62rem;
        letter-spacing: 0.14em;
        padding: 6px 12px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }

    .hero-desc {
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .plots-grid {
        grid-template-columns: 1fr;
    }

    .plot-card {
        padding: 32px 22px;
    }

    .plot-num {
        font-size: 3.2rem;
        top: 14px;
        right: 14px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 32px 18px;
    }

    .testimonial {
        padding: 64px 5%;
    }

    .form-wrap {
        padding: 28px 20px;
    }

    .form-title {
        font-size: 1.55rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-item {
        align-items: flex-start;
        padding: 12px 14px;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 5%;
    }

    .footer-links {
        gap: 14px;
    }

    .wa-float {
        /* left: 12px; */
        right: 45px;
        bottom: 12px;
    }

    .wa-btn {
        width: 160px;
        justify-content: center;
        padding: 12px 28px;
        font-size: 0.78rem;
    }
}
