/* ==========================================================================
   WHATSAPP & MIAMI OPTIMIZED - DRIVERS RENT A CAR
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #d42e12;          /* Brand Red */
    --primary-hover: #b5220c;
    --primary-light: #fee2e2;
    --accent: #E2B93C;           /* Gold Accent */
    
    /* WhatsApp Conversion Dominant Color */
    --whatsapp: #25D366;         
    --whatsapp-hover: #20ba56;
    --whatsapp-light: #e8f9ee;
    
    /* Neutrals */
    --dark-900: #0B0F19;         /* Rich Obsidian */
    --dark-800: #161F30;         /* Dark Slate Blue */
    --dark-700: #243249;
    --dark-600: #3E516B;
    --light-100: #F8FAFC;        /* Snow White */
    --light-200: #F1F5F9;        /* Cool Gray */
    --light-300: #E2E8F0;
    --light-400: #94A3B8;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    
    /* Status */
    --success: #10B981;
    --success-light: #D1FAE5;
    --warning: #F59E0B;
    --danger: #EF4444;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Elevation */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px -15px rgba(37, 211, 102, 0.15); /* WhatsApp glow shadow */
    
    /* Border Radii */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-100);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark-900);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-200);
}
::-webkit-scrollbar-thumb {
    background: var(--whatsapp);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--whatsapp-hover);
}

/* ==========================================================================
   2. UTILITIES & ACCENTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-whatsapp { color: var(--whatsapp); }
.text-accent { color: var(--accent); }
.text-success { color: var(--success); }
.text-white { color: #ffffff; }
.text-muted { color: var(--text-muted); }

.bg-dark { background-color: var(--dark-900); color: #ffffff; }
.bg-light { background-color: var(--light-200); }
.bg-red { background-color: var(--primary); color: #ffffff; }

.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }

.badge-promo {
    background-color: var(--whatsapp);
    color: white;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-trust {
    background-color: var(--whatsapp-light);
    color: var(--whatsapp-hover);
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* ==========================================================================
   3. BUTTONS & CTAS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.80rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(212, 46, 18, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 46, 18, 0.4);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: white;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    font-size: 1rem;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

.btn-dark {
    background-color: var(--dark-800);
    color: white;
    border: 1px solid var(--dark-700);
}

.btn-dark:hover {
    background-color: var(--dark-700);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   4. NAVIGATION BAR (OFFICIAL RED HEADER)
   ========================================================================== */
.announcement-bar {
    background: linear-gradient(90deg, var(--dark-900), var(--dark-800));
    color: white;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 101;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--primary); /* Official Red */
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    max-height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    color: white;
    padding: 0.45rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.lang-btn img {
    width: 17px;
    height: auto;
}

.lang-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-300);
    width: 130px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 110;
}

.lang-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    display: block;
    padding: 0.65rem 1rem;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-item:hover {
    background-color: var(--light-200);
    color: var(--primary);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   5. HERO & HIGH-CONVERTING WHATSAPP QUICK SELECTOR
   ========================================================================== */
.hero {
    position: relative;
    background-color: var(--dark-900);
    background-image: radial-gradient(circle at 10% 20%, rgba(30, 41, 59, 0.45) 0%, rgba(15, 23, 42, 0.95) 90%), url('assets/hero-miami.png');
    background-size: cover;
    background-position: center;
    padding: 7rem 0 8rem 0;
    color: white;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInL 0.8s ease-out;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    transition: opacity 0.5s ease-in-out;
}

.hero-title span {
    color: var(--accent); /* Gold Highlight */
}

.hero-description {
    font-size: 1.25rem;
    color: var(--light-300);
    margin-bottom: 2.5rem;
    max-width: 580px;
    line-height: 1.7;
}

.hero-trust-bullets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-bullet {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--light-200);
}

.trust-bullet svg {
    color: var(--whatsapp);
    flex-shrink: 0;
}

/* WhatsApp Hero Card Form (CRO: No-friction lead generator) */
.lead-widget-wrapper {
    animation: fadeInR 0.8s ease-out;
}

.lead-widget {
    background: rgba(22, 31, 48, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.lead-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--whatsapp), var(--primary));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.widget-header {
    margin-bottom: 1.75rem;
    text-align: center;
}

.widget-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.widget-subtitle {
    font-size: 0.9rem;
    color: var(--light-400);
}

.booking-form-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.form-group label svg {
    color: var(--whatsapp);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 1rem;
    color: var(--light-400);
    pointer-events: none;
}

.form-control {
    width: 100%;
    background-color: rgba(11, 15, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.95rem 1rem 0.95rem 2.75rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-control:focus {
    border-color: var(--whatsapp);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
    background-color: rgba(11, 15, 25, 0.85);
}

.form-control option {
    background-color: var(--dark-800);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   6. GUARANTEES STRIP (MIAMI GUARANTEES)
   ========================================================================== */
.guarantee-strip-section {
    background-color: white;
    padding: 2rem 0;
    border-bottom: 1px solid var(--light-300);
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.guarantee-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
}

.g-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.g-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-900);
    margin-bottom: 0.25rem;
}

.g-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   7. HOW IT WORKS SECTION (PASOS EN MIAMI)
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
}

.step-card {
    background-color: white;
    border: 1px solid var(--light-300);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem 2.5rem 2rem;
    position: relative;
    transition: var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--whatsapp);
}

.step-number {
    position: absolute;
    top: -24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(212, 46, 18, 0.3);
    transition: var(--transition-normal);
}

.step-card:hover .step-number {
    background-color: var(--whatsapp);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-900);
    margin-bottom: 1rem;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   8. FLEET FLEET CATALOGUE (MIAMI ONLY)
   ========================================================================== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.25rem;
}

.car-card {
    background-color: #ffffff;
    border: 1px solid var(--light-300);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.car-image-container {
    background: #ffffff;
    padding: 2.5rem 1.5rem 1rem 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 270px;
}

.car-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.car-image {
    transition: var(--transition-normal);
    max-height: 180px;
    object-fit: contain;
}

.car-card:hover .car-image {
    transform: scale(1.08) translateY(-3px);
}

.car-details {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.car-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.car-class {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.car-model {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--dark-900);
    margin-bottom: 1rem;
}

.car-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--light-300);
    margin-bottom: 1.25rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.spec-item svg {
    color: var(--light-400);
}

.car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    margin-top: 0.25rem;
}

.feature-tag {
    background-color: var(--light-200);
    color: var(--dark-700);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--light-300);
    transition: var(--transition-fast);
}

.car-card:hover .feature-tag {
    background-color: var(--primary-light);
    color: var(--primary-hover);
    border-color: rgba(212, 46, 18, 0.15);
}

.car-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-value-container {
    text-align: right;
}

.price-value {
    font-size: 1.85rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--dark-900);
    line-height: 1;
}

.price-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   9. ABOUT SECTION (NOSOTROS EN MIAMI)
   ========================================================================== */
.about-section {
    background-color: #ffffff;
    border-top: 1px solid var(--light-300);
    border-bottom: 1px solid var(--light-300);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-p {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: justify;
    line-height: 1.75;
}

.about-p strong {
    color: var(--dark-900);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(212,46,18,0.1), rgba(11,15,25,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}

.about-image-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   10. COMPARISON SECTION
   ========================================================================== */
.comparison-section {
    background-color: var(--dark-900);
    color: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background-color: rgba(22, 31, 48, 0.4);
    text-align: left;
}

.comparison-table th, 
.comparison-table td {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th {
    background-color: rgba(11, 15, 25, 0.9);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
}

.comparison-table th.highlight {
    background-color: rgba(37, 211, 102, 0.15); /* WhatsApp green hint */
    border-bottom: 3px solid var(--whatsapp);
    color: white;
}

.comparison-table td.highlight {
    background-color: rgba(37, 211, 102, 0.03);
    font-weight: 600;
}

.comparison-feature-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--light-200);
}

.comparison-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.status-check {
    color: var(--whatsapp);
}

.status-cross {
    color: var(--danger);
}

/* ==========================================================================
   11. SINGLE CONTACT INFO & MAP (MIAMI OFFICE ONLY)
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-details-box {
    background-color: white;
    border: 1px solid var(--light-300);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.contact-header-block h3 {
    font-size: 1.75rem;
    color: var(--dark-900);
    margin-bottom: 0.5rem;
}

.contact-header-block p {
    font-size: 1rem;
    color: var(--text-muted);
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.c-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item.c-wa .c-icon-circle {
    background-color: var(--whatsapp-light);
    color: var(--whatsapp);
}

.c-info-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--light-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.c-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-900);
}

.c-info-value a:hover {
    color: var(--primary);
}

.contact-item.c-wa .c-info-value a {
    color: var(--whatsapp-hover);
}

.contact-item.c-wa .c-info-value a:hover {
    color: var(--whatsapp);
}

.contact-map-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-300);
    min-height: 350px;
}

/* ==========================================================================
   12. WHATSAPP FLOATING WIDGET & FOOTER
   ========================================================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--whatsapp);
    color: white;
    padding: 0.75rem 1.25rem 0.75rem 0.85rem;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.whatsapp-floating:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-icon-circle {
    width: 38px;
    height: 38px;
    background-color: white;
    border-radius: var(--radius-full);
    color: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: var(--shadow-sm);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 120%;
    right: 0;
    background-color: var(--dark-900);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    width: 240px;
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 400;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 25px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--dark-900) transparent transparent transparent;
}

.whatsapp-floating:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Footer Styling */
.footer-dark {
    background-color: var(--dark-900);
    color: var(--light-400);
    padding: 4rem 0 2rem 0;
    border-top: 3px solid var(--whatsapp); /* Green accent bar on footer */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand img {
    max-height: 40px;
    width: auto;
    align-self: flex-start;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--whatsapp);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-contact-item svg {
    color: var(--whatsapp);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.social-circle:hover {
    background-color: var(--whatsapp);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

/* ==========================================================================
   13. DIALOGS & ACCORDIONS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    max-width: 550px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: var(--light-200);
    color: var(--dark-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background-color: var(--danger);
    color: white;
}

.modal-banner {
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-hover) 100%);
    color: white;
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.modal-banner::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 30px;
    height: 30px;
    background-color: var(--whatsapp-hover);
}

.modal-discount-badge {
    background-color: white;
    color: var(--whatsapp);
    font-size: 2.25rem;
    font-family: var(--font-heading);
    font-weight: 900;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    display: inline-block;
    margin-bottom: 1rem;
    transform: rotate(-3deg);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.modal-banner h3 {
    color: white;
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
}

.modal-banner p {
    color: var(--light-100);
    font-size: 0.90rem;
}

.modal-body {
    padding: 2.5rem 2rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form .form-control {
    background-color: var(--light-200);
    border-color: var(--light-300);
    color: var(--text-dark);
}

.modal-form .form-control:focus {
    background-color: white;
    border-color: var(--whatsapp);
}

.modal-form label {
    color: var(--text-dark);
}

.modal-form .input-wrapper svg {
    color: var(--text-muted);
}

/* FAQ Accordions */
.faqs-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid var(--light-300);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: none;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark-900);
    transition: var(--transition-fast);
}

.faq-header:hover {
    color: var(--whatsapp-hover);
    background-color: var(--light-100);
}

.faq-icon {
    font-size: 1.25rem;
    transition: transform var(--transition-normal);
    color: var(--text-muted);
}

.faq-item.active {
    border-color: var(--whatsapp);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--whatsapp);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-content {
    border-top: 1px solid var(--light-200);
}

/* ==========================================================================
   13. TESTIMONIALS SECTION (CRO OPTIMIZED GOOGLE REVIEWS GRID)
   ========================================================================== */
.google-badge-container {
    background-color: #ffffff;
    border: 1px solid var(--light-300);
    border-radius: var(--radius-md);
    padding: 1rem 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.google-badge-container:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.google-logo-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    color: var(--dark-900);
    font-family: var(--font-heading);
    border-right: 1px solid var(--light-300);
    padding-right: 1.5rem;
    font-size: 1.05rem;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.rating-number {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--dark-900);
    font-family: var(--font-heading);
}

.rating-stars {
    color: var(--accent);
    font-size: 1.25rem;
    letter-spacing: 2px;
    display: flex;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.50rem;
    margin-top: 1rem;
    transition: all 0.5s ease-in-out;
}

.review-card {
    background-color: #ffffff;
    border: 1px solid var(--light-300);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.review-stars {
    color: var(--accent);
    margin-bottom: 1.15rem;
    display: flex;
    gap: 3px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--accent); /* Gold color */
}

.review-text {
    font-size: 0.975rem;
    color: var(--dark-900);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border-top: 1px solid var(--light-200);
    padding-top: 1.15rem;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-full);
    overflow: hidden;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-sm);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.review-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-900);
    font-family: var(--font-heading);
}

.review-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Button Outline for CRO actions */
.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.85rem 2.25rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 46, 18, 0.25);
}

/* ==========================================================================
   14. KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInL {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInR {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   15. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero {
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-trust-bullets {
        align-items: center;
    }
    
    .lead-widget-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4.5rem 0;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-normal);
        z-index: 99;
        padding: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.open {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .nav-actions {
        display: none;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .step-card {
        padding: 2.5rem 1.5rem 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .lead-widget {
        padding: 1.5rem;
    }
    
    .whatsapp-floating {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.65rem;
    }
    
    .whatsapp-floating span {
        display: none;
    }
}
