/* 
/*
   =================================================
   HogarShield Seguridad - UX & Mobile Optimized
   =================================================
*/

:root {
    /* Color Palette - Match the Reference Image */
    --bg-main: #0F172A;
    --bg-darker: #1E293B;
    --bg-form: rgba(30, 41, 59, 0.65);
    --bg-input: rgba(15, 23, 42, 0.4);

    /* Primary Accent */
    --accent-primary: #22C55E;
    --accent-primary-hover: #16A34A;
    --accent-primary-bright: #4ADE80;

    /* Form Submit Button */
    --btn-submit-bg: #10B981;
    --btn-submit-hover: #059669;

    --text-primary: #FFFFFF;
    --text-secondary: #E5E7EB;
    --text-muted: #9CA3AF;

    --border-color: rgba(255, 255, 255, 0.1);
    --border-input: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-heading: 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Effects & Shapes */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3.2rem, 5.5vw, 5rem);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: none;
}

h4 {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: none;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--accent-primary);
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.section-padding {
    padding: 120px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.position-relative {
    position: relative;
}

.d-block {
    display: block;
}

.text-accent {
    color: var(--accent-primary);
}

.text-muted {
    color: var(--text-muted);
}

.section-subtitle {
    display: inline-block;
    color: var(--text-primary);
    background: transparent;
    padding: 0;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    text-align: inherit;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-primary);
    margin: 8px auto 0;
}

/* If subtitle is inside a text-center class, ensure the pseudo-element bar is centered */
.text-center .section-subtitle::after {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--btn-submit-bg);
    color: #fff;
    border-radius: var(--border-radius-md);
}

.btn-primary:hover {
    background-color: var(--btn-submit-hover);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
}

.btn-form-submit {
    background-color: var(--btn-submit-bg);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--border-radius-md);
    padding: 1.1rem 1.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-form-submit:hover {
    background-color: var(--btn-submit-hover);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

.btn-large {
    padding: 1.125rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.cta-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ==========================================================================
   CARDS (Dark, Subtle borders)
   ========================================================================== */
.dark-card {
    background: var(--bg-form);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2.25rem;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.dark-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   HEADER & STICKY NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    /* Fixed by default to remain sticky */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    /* Smooth transition for background states */
}

/* Triggred when user scrolls past 50px */
.navbar.scrolled {
    background: rgba(13, 13, 14, 0.98);
    /* Solid dark/semi-opaque bg */
    padding: 1rem 0;
    /* Slightly thinner padding to save space */
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    /* Good dropping shadow to define the header */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.logo span {
    font-weight: 300;
    font-size: 0.5em;
    position: relative;
    top: -5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    /* Protects content from the fixed navbar */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url('assets/images/premium_dark_security_bg.png');
    background-size: cover;
    background-position: right center;
    background-attachment: scroll;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding-top: 0;
    /* Centered accurately within the height-reduced hero wrapper */
}

.hero-text-area {
    flex: 1;
    max-width: 600px;
}

.hero-icon-accent {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.hero-text-area h1 {
    margin-bottom: 1.5rem;
    line-height: 1.05;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-text-area h2 {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* FORM ON THE RIGHT */
.hero-form-card {
    flex: 0 0 420px;
    max-width: 100%;
    background: var(--bg-form);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    border: none;
    backdrop-filter: blur(8px);
}

.hero-form-card h3 {
    font-size: 1.55rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.hero-form-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--bg-input);
    border: 1px solid var(--border-input);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    /* Glow active items green */
    background: rgba(75, 75, 75, 0.6);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar-section {
    padding: 3.5rem 0;
    border-top: 1px solid var(--border-color);
}

.trust-bar-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* ==========================================================================
   SERVICES SECTION Grid
   ========================================================================== */
.services-section {
    background: var(--bg-main);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* PERFECT CENTERING AND ALIGNMENT */
.services-grid .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services-grid .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the icon itself */
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.services-grid .service-card:hover .service-icon {
    transform: scale(1.1);
}

/* ==========================================================================
   HOW IT WORKS (Interactive Steps)
   ========================================================================== */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.step-line {
    position: absolute;
    top: 35px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: var(--bg-darker);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius-md);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* UX Interactions on steps */
/* Removed entire card lift to prevent layout shift */

/* Icon starts muted, brightens on hover */
.anim-icon {
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.step.interactive-step:hover .anim-icon {
    color: var(--accent-primary);
    transform: scale(1.15);
    /* Slightly bigger icon */
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 auto;
    box-shadow: 0 0 0 10px var(--bg-darker);
    transition: all 0.3s ease;
}

/* Custom highlight applied exclusively to the number circle */
.step.interactive-step:hover .step-number {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    border-color: var(--accent-primary);
    transform: scale(1.05);
}

.step-icon-large {
    font-size: 2.2rem;
    margin-top: 1rem;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.mask-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1.5rem;
    text-align: center;
    z-index: 10;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--bg-darker);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.benefits-list li:hover {
    background: var(--bg-form);
}

.benefit-icon {
    font-size: 1.25rem;
    color: var(--accent-primary);
}

.benefits-list h4 {
    margin: 0;
    font-size: 1.1rem;
    text-transform: none;
}

/* ==========================================================================
   TESTIMONIALS (WITH PERFECT RATINGS)
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stars-rating {
    color: var(--accent-primary);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    flex-grow: 1;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h5 {
    margin: 0;
    font-size: 1rem;
    text-transform: none;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background-image: url('assets/images/hero_dark_corporate.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--bg-form);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-primary);
}

.info-item p {
    margin: 0;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.half {
    flex: 1;
}

.contact-form-container h3 {
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #000;
    color: #9CA3AF;
    padding: 60px 0 20px;
    /* Extra padding bottom to ensure it clears the mobile sticky CTA block */
    padding-bottom: 100px;
}

.footer .logo {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #fff;
    text-transform: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: #9CA3AF;
}

.footer-links ul li a:hover {
    color: var(--accent-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
}

.social-links a:hover {
    background: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* ==========================================================================
   WHATSAPP & STICKY CTA
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: gentlePulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #128C7E;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    animation-play-state: paused;
}

@keyframes gentlePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.7);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    }
}

.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 14, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
    z-index: 105;
    /* High z-index */
    display: none;
    /* Desktop hidden */
}

.mobile-sticky-cta .btn {
    width: 100%;
    margin: 0;
    font-size: 1.1rem;
    animation: stickyPulse 2.5s infinite;
}

@keyframes stickyPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ==========================================================================
   MEDIA QUERIES (HEAVY MOBILE OPTIMIZATION)
   ========================================================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 2.5rem;
        padding-top: 2rem;
    }

    .hero-overlay {
        background: rgba(5, 5, 5, 0.85);
    }

    .hero-form-card {
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-text-area {
        text-align: center;
    }

    .hero-text-area h2 {
        margin: 0 auto;
    }

    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-image {
        order: -1;
        max-width: 700px;
        margin: 0 auto;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    /* Navbar collapse */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0d0d0e;
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Ensure initial nav has background on mobile for clear menu icon viewing */
    .navbar {
        padding: 1rem 0;
        background: rgba(13, 13, 14, 0.95) !important;
        border-bottom: 1px solid var(--border-color);
    }

    .logo {
        font-size: 1.4rem;
    }

    /* Shrink sections and text */
    .section-padding {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding-top: 100px;
        /* Accounts for navbar on mobile */
        padding-bottom: 60px;
        min-height: 100vh;
        height: auto;
    }

    .hero-text-area p,
    .hero-text-area h2 {
        font-size: 1.1rem;
    }

    /* Layout stacking */
    .trust-bar-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trust-stat {
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        margin-bottom: 0.25rem;
        font-size: 2rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-line {
        display: none;
    }

    .step {
        padding: 2rem 1.5rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Reposition WhatsApp to dodge the Mobile CTA */
    .whatsapp-float {
        bottom: 95px;
        /* Shift above the CTA */
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Reveal Bottom Sticky CTA */
    .mobile-sticky-cta {
        display: block;
    }

    .hero-container {
        padding: 0 5%;
    }
}