/* Global Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0A0A0A;
    --pure-black: #000000;
    --pure-white: #ffffff;
    --light-grey: #fafafa;
    --accent-grey: #d1d1d1;
    --dark-grey: #4a4a4a;
    --glass-bg: rgba(0, 0, 0, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-black);
    line-height: 1.6;
    background-color: var(--pure-white);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Header & Nav */
header {
    background-color: transparent;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--glass-border);
}

header.scrolled .logo img {
    height: 36px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    margin-left: -60px; /* Desplazar más a la izquierda */
    margin-top: 10px; /* Ajuste sutil de altura */
}

header .logo img {
    height: 50px; /* Reducido un 10% adicional */
    transition: var(--transition);
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    header .logo {
        position: static;
        transform: none;
        margin-left: 10px;
    }
    .logo img {
        height: 40px !important;
    }
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pure-white);
    white-space: nowrap;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--pure-white);
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--dark-grey);
}

/* WhatsApp Icons */
.header-wa-icon, .btn-wa-icon, .floating-whatsapp img {
    height: 20px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
    filter: brightness(4); /* 300% brightness increase */
}

.floating-whatsapp img {
    margin-right: 0;
    height: auto;
    width: 60%;
}

.social-icon {
    height: 18px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

/* Header Right Group */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 24px;
    overflow: hidden;
    opacity: 0.6;
}

.lang-btn.active {
    opacity: 1;
    border-color: var(--pure-white);
    background: rgba(255,255,255,0.1);
}

.lang-btn:hover {
    opacity: 1;
    background: rgba(255,255,255,0.05);
}

.flag-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .header-right {
        margin-left: auto;
        gap: 0.8rem;
    }
    .lang-switcher {
        margin-right: 0;
    }
    .lang-btn {
        width: 30px;
        height: 22px;
    }
}

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

.whatsapp-header, .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.floating-whatsapp img {
    max-width: 60%;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--pure-black);
    color: var(--pure-white);
    border: 2px solid var(--pure-black);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--pure-black);
}

.btn-white {
    background-color: var(--pure-white);
    color: var(--pure-black);
    border: 2px solid var(--pure-white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--pure-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.btn-outline:hover {
    background-color: var(--pure-white);
    color: var(--pure-black);
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    padding: 12rem 0 4rem; /* Desktop padding */
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--pure-white);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 8rem 0 3rem; /* Mobile padding to avoid overlapping the header */
    }
}

.hero-slides {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    animation: kenBurns 12s linear infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        width: 100%;
    }
}

.hero-text .badge {
    display: inline-block;
    background-color: var(--pure-white);
    color: var(--pure-black);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0s;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 8vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.2s;
}

@media (max-width: 768px) {
    .hero-text h1 {
        margin-top: 1rem;
    }
}

.hero-text p {
    font-size: clamp(1rem, 4vw, 1.4rem);
    max-width: 800px;
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.4s;
}

.hero-btns, .hero-action-btns {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.6s;
    justify-content: center;
    margin-top: 2rem;
}

.btn-tarifario {
    background-color: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-tarifario:hover {
    background-color: var(--pure-white);
    color: var(--pure-black);
}

/* Booking Card (Glassmorphism) */
.booking-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.booking-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--accent-grey);
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Services */
.services-section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: var(--pure-black);
    margin: 1rem auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.service-card {
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--accent-grey);
    text-align: center;
    transition: var(--transition);
    background: transparent;
}

.service-card:hover {
    background-color: var(--primary-black);
    color: var(--pure-white);
    border-color: var(--primary-black);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card .icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card:nth-child(odd) .icon {
    color: #d32f2f;
}

.service-card:nth-child(even) .icon {
    color: #004aad;
}

.service-card:hover .icon {
    color: var(--pure-white) !important;
}

.service-card h4 {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-card p {
    font-size: 0.85rem;
}

/* Footer Socials */
.footer-socials {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark-grey);
    transition: var(--transition);
}

.footer-social-link:hover {
    color: var(--pure-black);
}

.footer-social-icon {
    height: 39px;
    width: auto;
    filter: grayscale(1) opacity(0.8);
    transition: var(--transition);
}

.footer-social-link:hover .footer-social-icon {
    filter: grayscale(0) opacity(1);
}

@media (max-width: 768px) {
    .footer-bottom-info, .footer-socials {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-bottom-info .sep, .footer-socials .sep {
        display: none;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ocultar iconos de validación y autocompletado del navegador */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input:invalid, input:out-of-range {
    box-shadow: none !important;
    outline: none !important;
}

/* Forzar la desaparición de iconos de Google/Browser */
input {
    background-image: none !important;
    background-repeat: no-repeat !important;
}

input::-webkit-contacts-auto-fill-button, 
input::-webkit-credentials-auto-fill-button,
input::-ms-clear, 
input::-ms-reveal {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    position: absolute !important;
    right: 0 !important;
}

/* --- ADVANCED ELEGANT ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger Effects for Grids */
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }
.service-card:nth-child(5) { transition-delay: 0.4s; }

.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }
.testimonial-card:nth-child(4) { transition-delay: 0.4s; }

.feature-mini:nth-child(1) { transition-delay: 0.1s; }
.feature-mini:nth-child(2) { transition-delay: 0.2s; }
.feature-mini:nth-child(3) { transition-delay: 0.3s; }
.feature-mini:nth-child(4) { transition-delay: 0.4s; }

/* Elegant Underline for Nav */
.nav-links li a {
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--pure-white);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Smooth Parallax-like Backgrounds */
.services-section, .fleet-section, .booking-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 992px) {
    .services-section, .fleet-section, .booking-section {
        background-attachment: scroll; /* Disable on mobile for performance */
    }
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* About Us Section */
.about-section {
    padding: 10rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.about-lead {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: var(--primary-black);
    letter-spacing: -0.5px;
}

/* Trajectory Photo & Philosophy Layout */
.about-visuals {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trajectory-photo-box {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.trajectory-img-bw, .bw-filter {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: var(--transition);
}

.philosophy-box-new {
    background: var(--light-grey);
    padding: 3rem;
    border-left: 4px solid var(--pure-black);
    position: relative;
    border-radius: 4px;
}

.philosophy-box-new p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-grey);
    margin-bottom: 1rem !important;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .philosophy-box-new {
        padding: 2rem 1.5rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 4rem;
    border-top: 1px solid var(--accent-grey);
    padding-top: 3rem;
}

.stat-item {
    text-align: left;
    position: relative;
    padding-right: 2rem;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 2rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: var(--accent-grey);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--pure-black);
    line-height: 1;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-grey);
    font-weight: 700;
}

.feature-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: var(--pure-white);
    border: 1px solid var(--accent-grey);
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.feature-card:hover {
    background: var(--pure-white);
    border-color: var(--pure-black);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-card:nth-child(odd) .feature-icon {
    color: #d32f2f;
}

.feature-card:nth-child(even) .feature-icon {
    color: #004aad;
}

.feature-text h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-text p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--dark-grey);
    line-height: 1.5;
}

.feature-text h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Estimator Section */
.estimator-section {
    padding: 8rem 0;
    background-color: var(--light-grey);
}

.estimator-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.estimator-card {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--accent-grey);
}

.map-container {
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--accent-grey);
    position: sticky;
    top: 100px;
}

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

.input-icon {
    position: absolute;
    left: 15px;
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 5;
}

.input-with-icon input {
    padding-left: 45px !important;
}

.vehicle-type-selector {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.vehicle-type-selector label {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-grey);
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.vehicle-item {
    background: var(--light-grey);
    border: 2px solid transparent;
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.vehicle-item:hover {
    background: var(--accent-grey);
}

.vehicle-item.active {
    background: var(--pure-white);
    border-color: var(--pure-black);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.v-icon {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.v-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.v-multiplier {
    font-size: 0.7rem;
    color: var(--dark-grey);
    font-weight: 600;
}

.btn-uber {
    padding: 1.2rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 12px;
    margin-top: 1rem;
}

.btn-uber:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
    border-color: #ccc;
}

#map {
    height: 100%;
    width: 100%;
    background: #e5e3df; /* Map placeholder color */
}

.estimator-card .form-group input {
    background: var(--light-grey);
    border: 1px solid var(--accent-grey);
    color: var(--primary-black);
    padding: 1rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.estimator-card .form-group input:focus {
    border-color: var(--primary-black);
    background: var(--pure-white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

.estimator-results {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--accent-grey);
    animation: fadeInUp 0.5s forwards;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--primary-black);
    color: var(--pure-white);
    border-radius: 8px;
}

.res-price {
    font-size: 1.8rem;
    font-weight: 800;
}

.res-note {
    font-size: 0.8rem;
    color: var(--dark-grey);
    margin-bottom: 2rem;
    font-style: italic;
}

/* Google Autocomplete Suggestions Styling */
.pac-container {
    background-color: var(--pure-white);
    border: 1px solid var(--accent-grey);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: inherit;
    margin-top: 5px;
    z-index: 9999; /* Ensure it's above other elements */
}

.pac-item {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    border-top: 1px solid var(--light-grey);
    color: var(--primary-black);
    transition: var(--transition);
}

.pac-item:hover {
    background-color: var(--light-grey);
}

.pac-item-query {
    font-size: 15px;
    font-weight: 700;
    color: var(--pure-black);
}

.pac-icon {
    display: none; /* Hide Google icons for a cleaner look */
}

.quick-destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.quick-btn {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--light-grey);
    border: 1px solid var(--accent-grey);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--dark-grey);
}

.quick-btn:hover {
    background: var(--primary-black);
    color: var(--pure-white);
    border-color: var(--primary-black);
}

@media (max-width: 992px) {
    .estimator-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 400px;
    }
}

/* Experience Section */
.experience-section {
    padding: 2rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: url('fotos/PNG_Imagotipo Carmoi Negro_TRANSPARENTE.png') no-repeat center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.experience-item {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.experience-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.experience-item:hover img {
    transform: scale(1.05);
}

.exp-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--pure-white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    .experience-item {
        height: 250px;
    }
}

.fleet-section {
    background-color: var(--primary-black);
    padding: 6rem 0;
    color: var(--pure-white);
}

.section-title.white .underline {
    background-color: var(--pure-white);
}

.fleet-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    cursor: pointer;
}

.fleet-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fleet-slide {
    min-width: 100%;
    height: 500px;
}

.fleet-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--pure-white);
    text-align: left;
    pointer-events: none;
}

.fleet-title-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.fleet-title-overlay p {
    font-size: 0.9rem;
    opacity: 0.7;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--pure-white);
    color: var(--pure-black);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    right: 30px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--pure-white);
    width: 24px;
    border-radius: 4px;
}
/* Service Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.modal-content {
    background: var(--pure-white);
    width: 90%;
    max-width: 600px;
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--primary-black);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-black);
}

.modal-body {
    text-align: center;
}

.modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-black);
}

.modal-body h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-body p {
    margin: 1.5rem 0;
    color: var(--dark-grey);
    line-height: 1.8;
}

#modal-features {
    text-align: left;
    margin: 1.5rem 0 2rem;
    padding-left: 1.5rem;
    list-style: none;
}

#modal-features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

#modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: bold;
}

.modal-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--accent-grey);
}

/* Booking Section (Premium CTA) */
.booking-section-premium {
    background-color: var(--primary-black);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    color: var(--pure-white);
    text-align: center;
}

.booking-section-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.05) 0%, transparent 70%);
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--accent-grey);
    border-radius: 30px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.cta-inner h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-desc {
    font-size: 1.2rem;
    color: var(--accent-grey);
    margin-bottom: 4rem;
    font-weight: 300;
}

.mega-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #004aad;
    border: 2px solid #004aad;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 74, 173, 0.4);
    transition: var(--transition);
    animation: waPulse 2s infinite;
    white-space: nowrap;
}

.mega-wa-btn img {
    height: 30px;
    margin-right: 15px;
    filter: brightness(1.5);
}

.mega-wa-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 74, 173, 0.6);
}

.cta-divider {
    margin: 3rem 0;
    color: var(--dark-grey);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
}

.mega-phone-link {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pure-white);
    display: block;
    margin-top: 0.5rem;
    letter-spacing: -1px;
}

.phone-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--dark-grey);
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 74, 173, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 74, 173, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 74, 173, 0); }
}

@media (max-width: 768px) {
    .booking-section-premium { padding: 6rem 0; }
    .cta-inner h2 { font-size: 2.2rem; }
    .mega-wa-btn { padding: 1rem 1.5rem; font-size: 0.85rem; width: 100%; }
    .mega-phone-link { font-size: 1.8rem; }
}

/* Booking CTA */
.booking-cta {
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.booking-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.divider {
    font-weight: 600;
    color: var(--dark-grey);
}

.phone-link {
    font-size: 1.8rem;
    font-weight: 700;
}

/* Footer (Minimalist) */
footer {
    background-color: #000000;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--pure-white);
    text-align: center;
}

.footer-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 0; /* Align with text */
}

.footer-minimal .logo {
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--accent-grey);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
}

.footer-bottom-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    font-weight: 400;
    font-size: 0.95rem;
}

.footer-bottom-info a:hover {
    color: var(--accent-grey);
}

.footer-bottom-info .sep {
    color: var(--dark-grey);
}

.footer-legal {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    font-size: 0.75rem;
    color: var(--dark-grey);
}

.dev-credit {
    margin-top: 0.5rem;
    opacity: 0.4;
    font-size: 0.65rem;
}

@media (max-width: 768px) {
    .footer-bottom-info {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-bottom-info .sep { display: none; }
    footer { padding: 4rem 0 2rem; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .booking-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Corrected: Removed redundant display: none */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-section {
        height: auto;
        padding: 6rem 0;
    }
}

/* Mobile Menu Toggle Style */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--pure-white);
    transition: var(--transition);
}

/* Hamburguesa animada */
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-text h1 { font-size: 3rem; }
    .hero-btns { justify-content: center; }
    .booking-card { max-width: 500px; margin: 0 auto; }
    
    .estimator-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .map-container { height: 400px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: #000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        visibility: hidden;
    }
    .nav-links.active { right: 0; visibility: visible; }
    .nav-links a { font-size: 1.5rem; }
    
    .mobile-menu-toggle { display: flex; }
    .header-cta { display: none; } /* Ocultar CTA en header para móvil, usar el del hero */
    
    .hero-section { height: auto; padding: 10rem 0 6rem; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text p { font-size: 1rem; }
    
    .section-title h2 { font-size: 2rem; }
    section { padding: 4rem 0 !important; }
    
    .fleet-slide { height: 300px; }
    .fleet-title-overlay h3 { font-size: 1.4rem; }
    
    .modal-content { padding: 2rem 1.5rem; }
}

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

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .btn { width: 100%; text-align: center; }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-lead { font-size: 1.1rem; }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px; height: 55px;
    }
}

/* Ocultar iconos de validación y autocompletado del navegador */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input:invalid, input:out-of-range {
    box-shadow: none !important;
    outline: none !important;
}

/* Forzar la desaparición de iconos de Google/Browser */
input {
    background-image: none !important;
    background-repeat: no-repeat !important;
}

input::-webkit-contacts-auto-fill-button, 
input::-webkit-credentials-auto-fill-button,
input::-ms-clear, 
input::-ms-reveal {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    position: absolute !important;
    right: 0 !important;
}

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

/* --- GOOGLE MAPS PREMIUM STYLES --- */
#map {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #f0f0f0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background-color: var(--pure-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background-color: var(--light-grey);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--accent-grey);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-color: var(--primary-black);
}

.testimonial-content {
    font-style: italic;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    font-size: 0.95rem;
}

.testimonial-author {
    border-top: 1px solid var(--accent-grey);
    padding-top: 1.2rem;
    margin-top: auto;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--primary-black);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.author-company {
    display: block;
    font-size: 0.75rem;
    color: var(--dark-grey);
    margin-top: 0.2rem;
    font-weight: 600;
}

/* --- NEW CONTACT & FEATURES STYLES --- */
.header-phone-cta-box {
    margin-top: 3rem;
}

.phone-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.calc-rate-box {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

#calc-rate-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    transition: var(--transition);
}

#calc-rate-btn:hover {
    background-color: #ffffff;
    color: var(--primary-black);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.highlight-inline {
    display: inline-flex;
    gap: 5px;
    vertical-align: middle;
}

.badge-red {
    background-color: #d32f2f;
    color: #ffffff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.9em;
}

.badge-blue {
    background-color: #004aad;
    color: #ffffff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.9em;
}

.dev-credit a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: var(--transition);
}

.dev-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.dev-credit a:hover::after {
    width: 100%;
}

.dev-credit a:hover {
    color: #25D366;
}

.header-phone-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 992px) {
    .header-phone-box {
        flex-direction: row;
        align-items: center;
    }
}

.header-wa-icon {
    filter: brightness(0) invert(1);
}

.wa-blue {
    background-color: #004aad;
    border-color: #004aad;
    color: #ffffff !important;
}

.wa-blue:hover {
    background-color: transparent;
    color: #004aad;
}

.wa-red {
    background-color: #d32f2f;
    border-color: #d32f2f;
    color: #ffffff !important;
}

.wa-red:hover {
    background-color: transparent;
    color: #d32f2f;
}

.wa-btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .wa-btn-group {
        flex-direction: row;
        justify-content: center;
    }
}

.mega-wa-btn.secondary {
    background-color: #d32f2f;
    border: 2px solid #d32f2f;
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.4);
}

.mega-wa-btn.secondary:hover {
    box-shadow: 0 0 40px rgba(211, 47, 47, 0.6);
    background-color: #b71c1c;
    border-color: #b71c1c;
}

.mega-wa-btn:hover {
    background-color: #003a8c;
    border-color: #003a8c;
    transform: translateY(-3px) scale(1.02);
}

.phone-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .phone-links {
        flex-direction: row;
        gap: 2rem;
    }
}

.mobile-features-box {
    background: #0d0d0d;
    padding: 5rem 3rem;
    border-radius: 16px;
    margin-bottom: 5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.features-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--pure-white);
    letter-spacing: 3px;
}

.features-header p {
    color: var(--accent-grey);
    margin-bottom: 4rem;
    font-weight: 300;
    font-size: 1.1rem;
}

.features-grid-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 992px) {
    .features-grid-mini {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.feature-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-mini:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.f-mini-icon {
    width: 48px;
    height: 48px;
    transition: var(--transition);
}

.feature-mini:nth-child(odd) .f-mini-icon {
    color: #d32f2f;
}

.feature-mini:nth-child(even) .f-mini-icon {
    color: #004aad;
}

.feature-mini:hover .f-mini-icon {
    color: var(--pure-white);
    transform: scale(1.1);
}

.feature-mini span {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pure-white);
    opacity: 0.9;
}

.footer-phones {
    display: inline-flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .footer-phones {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}
/* --- FINAL MOBILE EXCELLENCE REFINEMENTS --- */
@media (max-width: 768px) {
    .logo img {
        height: 40px !important;
    }

    header {
        padding: 1rem 0;
    }

    header.scrolled {
        padding: 0.5rem 0;
    }

    .header-phone-box {
        gap: 0.3rem;
    }

    .whatsapp-header {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    /* Scaling Typography for Screens */
    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 1.8rem !important; letter-spacing: 1px !important; }
    h3 { font-size: 1.4rem !important; }
    
.experience-section {
    padding: 10rem 0;
    position: relative;
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('taxi_airport_terminal.png') center/cover no-repeat fixed;
    color: var(--pure-white);
}

.experience-section .section-title h2 {
    color: var(--pure-white);
}

.experience-section .section-title p {
    color: var(--accent-grey);
}

.experience-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: var(--transition);
}

.experience-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.experience-item:hover img {
    transform: scale(1.1);
}

.exp-caption {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
}

    .mobile-features-box {
        padding: 3rem 1.5rem;
        margin-bottom: 3rem;
    }

    .features-header h3 {
        font-size: 1.6rem;
    }

    .feature-mini {
        padding: 2rem 1rem;
    }

    /* Mobile Menu Refinement */
    .nav-links {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid var(--glass-border);
    }
}

.footer-quote-box {
    margin: 3rem 0;
    text-align: center;
}

.btn-footer-quote {
    background-color: #25D366 !important;
    color: white !important;
    border: none !important;
    padding: 1.2rem 3rem !important;
    font-size: 1.1rem !important;
    border-radius: 50px !important;
    display: inline-block;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-footer-quote:hover {
    background-color: #1ebe57 !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Extra small devices refinement */
@media (max-width: 480px) {
    .logo img {
        height: 40px !important;
    }
    
    .mega-phone-link {
        font-size: 1.8rem;
    }
    
    .btn-footer-quote {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        width: 90%;
    }
}
/* Modal Dual Footer */
.modal-footer-dual {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.btn-wa-modal {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pure-white);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-wa-modal .btn-wa-icon {
    margin-right: 8px;
}

.btn-wa-modal.wa-blue {
    background-color: #004aad;
}

.btn-wa-modal.wa-red {
    background-color: #d32f2f;
}

.btn-wa-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    opacity: 0.9;
}

@media (max-width: 500px) {
    .modal-footer-dual {
        flex-direction: column;
    }
}
