/* =====================================================
   CAR DETAILS LANDING PAGE - CSS
   ===================================================== */

/* ===== VARIABLES ===== */
:root {
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --secondary: #764ba2;
    --accent: #f5576c;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #1a1a2e;
    --light: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 87, 108, 0.1) 0%, transparent 30%);
    animation: floatPattern 20s ease-in-out infinite;
}

@keyframes floatPattern {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #ffd700;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Price Box */
.hero-price-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 35px;
}

.price-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.price-unit {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.price-original {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.discount-badge {
    background: #d63447;
    /* Darker red for better contrast */
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.price-monthly {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.price-monthly strong {
    font-size: 1.3rem;
    color: white;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-primary-cta:hover::before {
    left: 100%;
}

.btn-primary-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.btn-primary-cta i {
    transition: transform 0.3s;
}

.btn-primary-cta:hover i {
    transform: translateX(5px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: #0B6B5E;
    /* Even darker WhatsApp green for WCAG AA compliance (4.5:1 ratio) */
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 700;
    /* Bolder for better readability */
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(11, 107, 94, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(18, 140, 126, 0.4);
}

/* Trust Badges */
.hero-trust {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-trust .trust-item i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-main {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    transition: transform 0.5s;
}

.hero-image:hover .hero-image-main {
    transform: scale(1.02);
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gradient-accent);
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
    border-radius: 50%;
}

/* Floating badges on image */
.floating-badge {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-badge.top-right {
    top: 20px;
    right: -20px;
    animation-delay: 0.5s;
}

.floating-badge.bottom-left {
    bottom: 40px;
    left: -20px;
    animation-delay: 1s;
}

.floating-badge i {
    font-size: 1.5rem;
}

.floating-badge .badge-text {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
}

.floating-badge .badge-sub {
    font-size: 0.8rem;
    color: #666;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 100px 40px;
    background: white;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.2);
    /* Darker background for better contrast */
    color: #4338ca;
    /* Darker shade for WCAG AA compliance (4.5:1 ratio) */
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    /* Bolder for better readability */
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--light);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 100px 40px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.gallery-section .section-header {
    position: relative;
    z-index: 2;
}

.gallery-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.gallery-section .section-title,
.gallery-section .section-subtitle {
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-section {
    padding: 100px 40px;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
}

.why-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.why-list li i {
    width: 30px;
    height: 30px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.why-list li span {
    font-size: 1.05rem;
    color: var(--dark);
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
}

.why-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 25px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 40px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-price {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 50px;
    margin-bottom: 40px;
    display: inline-block;
}

.cta-price-from {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 5px;
}

.cta-price-value {
    font-size: 3rem;
    font-weight: 900;
    color: white;
}

.cta-price-unit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 45px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s;
    user-select: none;
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}

.lightbox-nav:hover {
    color: var(--primary);
    transform: translateY(-50%) scale(1.2);
}

.lightbox-counter {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

/* ===== UNAVAILABLE STATE ===== */
.unavailable-overlay {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    cursor: not-allowed;
}

.unavailable-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.05;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.05;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.testimonial-stat {
    text-align: center;
}

.testimonial-stat-value {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.testimonial-stat-label {
    font-size: 0.95rem;
    color: #666;
    margin-top: 5px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 25px;
}

.google-badge img {
    height: 24px;
}

.google-badge span {
    font-weight: 600;
    color: var(--dark);
}

.google-stars {
    display: flex;
    gap: 3px;
}

.google-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    padding: 2px;
    background: white;
}

.testimonial-author {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #999;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    position: relative;
    z-index: 2;
}

.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 8px 15px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-verified i {
    font-size: 0.9rem;
}

.see-all-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    padding: 15px 35px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.see-all-reviews:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: var(--primary);
    color: white;
}

/* Trust Banner */
.trust-banner {
    background: var(--gradient-primary);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.trust-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.trust-banner .trust-item {
    text-align: center;
    color: white;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
}

.trust-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.trust-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== MARKETING ELEMENTS ===== */

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    animation: pulse-bg 2s infinite;
}

@keyframes pulse-bg {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

.urgency-banner i {
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.urgency-viewers {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Adjust header position when urgency banner is shown */
body.has-urgency header {
    top: 44px;
}

body.has-urgency .hero-section {
    padding-top: 44px;
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 30px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sticky-cta-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
}

.sticky-cta-price small {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.sticky-cta-name {
    font-weight: 600;
    color: var(--dark);
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-cta-buttons {
    display: flex;
    gap: 10px;
}

.sticky-cta .btn-primary-cta {
    padding: 15px 30px;
    font-size: 1rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
    z-index: 9997;
    transition: all 0.3s;
    animation: float-pulse 2s infinite;
}

@keyframes float-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: var(--dark);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    right: 75px;
}

/* Booking Notification Toast */
.booking-notification {
    position: fixed;
    bottom: 100px;
    left: 30px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-strong);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9996;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 350px;
}

.booking-notification.show {
    transform: translateX(0);
}

.booking-notification-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.booking-notification-content h4 {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.booking-notification-content p {
    font-size: 0.8rem;
    color: #666;
}

/* Price Comparison Table */
.pricing-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-duration {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 5px;
}

.pricing-unit {
    font-size: 1rem;
    color: #999;
    margin-bottom: 20px;
}

.pricing-savings {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #555;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success);
    font-size: 0.9rem;
}

.pricing-cta {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.pricing-card.featured .pricing-cta {
    background: var(--gradient-primary);
    color: white;
}

.pricing-card:not(.featured) .pricing-cta {
    background: #f0f0f0;
    color: var(--dark);
}

.pricing-cta:hover {
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 100px 40px;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--light);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.05rem;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.7;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 40px;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.guarantee-badge {
    text-align: center;
}

.guarantee-badge-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
}

.guarantee-badge-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.guarantee-badge-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Minimum Duration Badge */
.min-duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 10px;
}

/* Special Offer Banner */
.special-offer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 30px;
    border-radius: 16px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.special-offer-text {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.special-offer-text i {
    font-size: 2rem;
}

.special-offer-text h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.special-offer-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.countdown {
    display: flex;
    gap: 10px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 30px 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-cta,
    .hero-trust {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .floating-badge {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-image {
        order: -1;
    }

    .why-stats {
        position: relative;
        bottom: 0;
        margin-top: 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .sticky-cta-name {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Hero Section Optimizations */
    .hero-container {
        padding: 100px 20px 50px;
        gap: 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .hero-badge {
        margin: 0 auto 20px;
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .hero-category {
        display: block;
        text-align: center;
        margin: 0 auto 25px;
        font-size: 0.9rem;
    }

    /* Price Box Mobile */
    .hero-price-box {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .price-main {
        justify-content: center;
        gap: 10px;
    }

    .price-current {
        font-size: 2.5rem;
    }

    .price-original {
        font-size: 1.2rem;
    }

    .price-unit {
        font-size: 1rem;
    }

    .discount-badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .price-monthly {
        font-size: 0.9rem;
        text-align: center;
    }

    .price-monthly strong {
        font-size: 1.1rem;
    }

    /* CTA Buttons Mobile */
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-primary-cta,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1rem;
    }

    /* Trust Badges Mobile */
    .hero-trust {
        justify-content: center;
        gap: 15px;
    }

    .hero-trust .trust-item {
        font-size: 0.85rem;
        flex: 0 1 auto;
    }

    .hero-trust .trust-item i {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    /* Sections General */
    .section-container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .section-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    /* Features Mobile */
    .features-section {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-text {
        font-size: 0.95rem;
    }

    /* Gallery Mobile */
    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        border-radius: 15px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .google-badge {
        margin: 0 auto 30px;
    }

    .testimonials-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 30px;
    }

    .testimonial-stat {
        min-width: 100px;
    }

    .testimonial-stat-value {
        font-size: 2rem;
    }

    .testimonial-stat-label {
        font-size: 0.85rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .see-all-reviews {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    /* Trust Banner Mobile */
    .trust-banner {
        padding: 40px 20px;
    }

    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-banner .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .trust-icon {
        margin: 0 auto;
    }

    .trust-title {
        font-size: 0.9rem;
    }

    .trust-text {
        font-size: 0.85rem;
    }

    /* Why Section Mobile */
    .why-section {
        padding: 60px 20px;
    }

    .why-content h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .why-content p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .why-list li {
        font-size: 0.95rem;
    }

    .why-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }

    .stat-item {
        padding: 10px 0;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Pricing Section Mobile */
    .pricing-section {
        padding: 60px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        max-width: 100%;
    }

    .pricing-duration {
        font-size: 0.95rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .pricing-unit {
        font-size: 0.9rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
    }

    .pricing-cta {
        padding: 16px 32px;
        font-size: 1rem;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 60px 20px;
    }

    .faq-grid {
        gap: 15px;
    }

    .faq-question {
        padding: 18px 15px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 15px 18px;
        font-size: 0.9rem;
    }

    /* Guarantee Section Mobile */
    .guarantee-section {
        padding: 60px 20px;
    }

    .guarantee-badges {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .guarantee-badge {
        padding: 30px 20px;
    }

    .guarantee-badge-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .guarantee-badge-title {
        font-size: 1rem;
    }

    .guarantee-badge-text {
        font-size: 0.85rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-price {
        padding: 20px 30px;
        margin-bottom: 30px;
    }

    .cta-price-value {
        font-size: 2.5rem;
    }

    .cta-price-unit {
        font-size: 1rem;
    }

    /* Urgency Banner Mobile */
    .urgency-banner {
        flex-direction: column;
        gap: 8px;
        padding: 12px 15px;
        font-size: 0.85rem;
        text-align: center;
    }

    .urgency-banner i.fa-fire {
        display: none;
    }

    .urgency-viewers {
        font-size: 0.8rem;
    }

    /* Special Offer Mobile */
    .special-offer {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }

    .special-offer-text {
        flex-direction: column;
        gap: 10px;
    }

    .special-offer-text i {
        font-size: 2.5rem;
    }

    .special-offer-text h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .special-offer-text p {
        font-size: 0.85rem;
    }

    .countdown {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .countdown-item {
        padding: 8px 12px;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 1.3rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    /* Sticky CTA Mobile */
    .sticky-cta {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    .sticky-cta-info {
        text-align: center;
    }

    .sticky-cta-price {
        font-size: 1.3rem;
    }

    .sticky-cta-buttons {
        width: 100%;
        gap: 10px;
    }

    .sticky-cta .btn-primary-cta {
        flex: 1;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    /* WhatsApp Float Mobile */
    .whatsapp-float {
        bottom: 180px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .whatsapp-float .tooltip {
        display: none;
    }

    /* Booking Notification Mobile */
    .booking-notification {
        left: 15px;
        right: 15px;
        max-width: none;
        padding: 15px;
    }

    .booking-notification h4 {
        font-size: 0.95rem;
    }

    .booking-notification p {
        font-size: 0.85rem;
    }

    /* Minimum Duration Badge */
    .min-duration-badge {
        display: block;
        margin: 10px auto 0;
        width: fit-content;
    }
}

@media (max-width: 480px) {

    /* Hero Section - Very Small Mobile */
    .hero-container {
        padding: 90px 15px 40px;
        gap: 30px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .hero-category {
        font-size: 0.85rem;
        padding: 6px 16px;
    }

    /* Price Box - Very Small Mobile */
    .hero-price-box {
        padding: 20px 15px;
        margin-bottom: 25px;
        border-radius: 20px;
    }

    .price-label {
        font-size: 0.85rem;
    }

    .price-main {
        flex-wrap: wrap;
        justify-content: center;
    }

    .price-current {
        font-size: 2.2rem;
    }

    .price-original {
        font-size: 1rem;
    }

    .price-unit {
        font-size: 0.9rem;
    }

    .discount-badge {
        padding: 5px 10px;
        font-size: 0.8rem;
        border-radius: 15px;
    }

    .price-monthly {
        font-size: 0.85rem;
        margin-top: 12px;
        padding-top: 12px;
    }

    .price-monthly i {
        font-size: 0.9rem;
    }

    .price-monthly strong {
        font-size: 1rem;
        display: block;
        margin-top: 3px;
    }

    /* CTA Buttons - Very Small Mobile */
    .btn-primary-cta,
    .btn-whatsapp {
        width: 100%;
        padding: 16px 25px;
        font-size: 0.95rem;
        border-radius: 50px;
    }

    .btn-primary-cta i,
    .btn-whatsapp i {
        font-size: 1rem;
    }

    /* Trust Items - Very Small Mobile */
    .hero-trust {
        gap: 12px;
    }

    .hero-trust .trust-item {
        font-size: 0.8rem;
    }

    .hero-trust .trust-item i {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    /* Sections - Very Small Mobile */
    .section-container {
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 5px;
    }

    /* Features - Very Small Mobile */
    .features-section,
    .gallery-section,
    .why-section,
    .cta-section,
    .testimonials-section,
    .pricing-section,
    .faq-section,
    .guarantee-section,
    .trust-banner {
        padding: 50px 15px;
    }

    .feature-card {
        padding: 25px 15px;
        border-radius: 20px;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        border-radius: 20px;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    /* Gallery - Very Small Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item {
        border-radius: 12px;
    }

    .gallery-overlay {
        padding: 15px;
    }

    .gallery-overlay span {
        font-size: 0.9rem;
    }

    /* Testimonials - Very Small Mobile */
    .testimonials-header {
        margin-bottom: 30px;
    }

    .google-badge {
        padding: 15px 20px;
        gap: 10px;
    }

    .google-badge img {
        height: 18px !important;
    }

    .google-stars {
        font-size: 0.85rem;
    }

    .google-badge span {
        font-size: 0.85rem;
    }

    .testimonials-stats {
        gap: 15px;
        margin-bottom: 25px;
    }

    .testimonial-stat {
        min-width: 90px;
    }

    .testimonial-stat-value {
        font-size: 1.8rem;
    }

    .testimonial-stat-label {
        font-size: 0.8rem;
    }

    .testimonials-grid {
        gap: 15px;
    }

    .testimonial-card {
        padding: 20px 15px;
        border-radius: 18px;
    }

    .testimonial-avatar {
        width: 50px !important;
        height: 50px !important;
    }

    .testimonial-name {
        font-size: 0.95rem;
    }

    .testimonial-date {
        font-size: 0.75rem;
    }

    .testimonial-rating {
        font-size: 0.85rem;
        margin: 12px 0;
    }

    .testimonial-content {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonial-verified {
        font-size: 0.75rem;
    }

    .see-all-reviews {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Trust Banner - Very Small Mobile */
    .trust-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .trust-banner .trust-item {
        padding: 20px 15px;
        border-radius: 16px;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .trust-title {
        font-size: 0.95rem;
        font-weight: 700;
    }

    .trust-text {
        font-size: 0.8rem;
    }

    /* Why Section - Very Small Mobile */
    .why-content h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .why-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .why-list li {
        font-size: 0.9rem;
        gap: 12px;
        margin-bottom: 15px;
    }

    .why-list li i {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .why-image img {
        border-radius: 20px;
    }

    .why-stats {
        padding: 18px 15px;
        width: 95%;
        border-radius: 16px;
        margin-top: 20px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Pricing - Very Small Mobile */
    .pricing-grid {
        gap: 15px;
    }

    .pricing-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .pricing-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .pricing-duration {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .pricing-amount {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }

    .pricing-unit {
        font-size: 0.85rem;
    }

    .pricing-savings {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .pricing-features {
        margin: 15px 0;
        gap: 10px;
    }

    .pricing-features li {
        font-size: 0.85rem;
    }

    .pricing-features i {
        font-size: 0.75rem;
    }

    .pricing-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    /* FAQ - Very Small Mobile */
    .faq-grid {
        gap: 12px;
    }

    .faq-item {
        border-radius: 16px;
    }

    .faq-question {
        padding: 16px 12px;
        font-size: 0.9rem;
    }

    .faq-question i {
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 12px 16px;
        font-size: 0.85rem;
    }

    /* Guarantee - Very Small Mobile */
    .guarantee-badges {
        gap: 20px;
    }

    .guarantee-badge {
        padding: 25px 15px;
        border-radius: 18px;
    }

    .guarantee-badge-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .guarantee-badge-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .guarantee-badge-text {
        font-size: 0.8rem;
    }

    /* CTA Section - Very Small Mobile */
    .cta-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .cta-price {
        padding: 18px 25px;
        margin-bottom: 25px;
        border-radius: 16px;
    }

    .cta-price-from {
        font-size: 0.9rem;
    }

    .cta-price-value {
        font-size: 2.2rem;
    }

    .cta-price-unit {
        font-size: 0.95rem;
    }

    .cta-buttons {
        gap: 12px;
    }

    /* Special Offer - Very Small Mobile */
    .special-offer {
        padding: 20px 15px;
        border-radius: 14px;
        gap: 15px;
    }

    .special-offer-text i {
        font-size: 2rem;
    }

    .special-offer-text h3 {
        font-size: 1rem;
        line-height: 1.4;
    }

    .special-offer-text p {
        font-size: 0.8rem;
    }

    .countdown {
        gap: 6px;
    }

    .countdown-item {
        padding: 6px 10px;
        min-width: 65px;
        border-radius: 8px;
    }

    .countdown-number {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    /* Minimum Duration Badge */
    .min-duration-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin: 8px auto 0;
    }

    /* Urgency Banner - Very Small Mobile */
    .urgency-banner {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .urgency-viewers {
        font-size: 0.75rem;
    }

    #viewerCount {
        font-weight: 700;
    }

    /* Sticky CTA - Very Small Mobile */
    .sticky-cta {
        padding: 12px;
        gap: 10px;
    }

    .sticky-cta-car {
        font-size: 0.85rem;
    }

    .sticky-cta-price {
        font-size: 1.2rem;
    }

    .sticky-cta .btn-primary-cta {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    /* WhatsApp Float - Very Small Mobile */
    .whatsapp-float {
        bottom: 160px;
        right: 12px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Booking Notification - Very Small Mobile */
    .booking-notification {
        left: 10px;
        right: 10px;
        padding: 12px;
    }

    .booking-notification-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .booking-notification h4 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }

    .booking-notification p {
        font-size: 0.8rem;
    }

    /* Lightbox - Very Small Mobile */
    .lightbox img {
        max-width: 95%;
        max-height: 80vh;
        border-radius: 12px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 35px;
    }

    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }

    .lightbox-counter {
        bottom: 15px;
        font-size: 0.85rem;
    }

    /* Unavailable Overlay - Very Small Mobile */
    .unavailable-overlay {
        padding: 16px 25px;
    }

    .unavailable-text span {
        font-size: 0.95rem;
    }

    .unavailable-text small {
        font-size: 0.8rem;
    }
}