:root {
    /* PREMIUM APP PALETTE */
    --red-brand: #E63946;
    --red-dark: #C92A35;

    --green-brand: #2D6A4F;
    /* Deep Forest Green */
    --green-light: #40916C;

    --bg-app: #FFFFFF;
    /* Crystalline infinite canvas */
    --bg-white: #FFFFFF;

    --text-primary: #111827;
    /* High Contrast Black */
    --text-secondary: #4B5563;
    /* Readable Gray */
    --text-tertiary: #9CA3AF;

    /* UNIFIED SHADOW SYSTEM */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
    --button-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
    --badge-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);

    /* UNIFIED RADIUS SYSTEM */
    --radius-card: 16px;
    --radius-image: 12px;
    --radius-pill: 50px;
    --radius-badge: 6px;

    /* TYPOGRAPHY SYSTEM */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* LEGACY COMPATIBILITY */
    --shadow-card: var(--card-shadow);
    --border-radius-card: var(--radius-card);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-app);
    overflow-x: hidden;
    max-width: 100%;
    font-size: 16px;
    /* Base 16px for readability */
    line-height: 1.5;
}

/* GLOBAL REVEAL ANIMATION */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    /* 20px Distance */
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Faster 400ms duration */
    will-change: opacity, transform;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-200 {
    transition-delay: 0.35s;
    /* Increased for "Title First" effect */
}

/* Slower duration for Headers */
.reveal-duration-slow {
    transition-duration: 1.5s !important;
}

/* Long delay for footer buttons */
.reveal-delay-500 {
    transition-delay: 0.5s;
}

/* --- PREMIUM MODERN CARD REVEAL (FLUID STABLE) --- */
.reveal-premium-card {
    opacity: 0;
    transform: scale(0.96);
    /* Subtle depth ONLY, no vertical shift */
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Standard smooth */
    will-change: opacity, transform;
}

.reveal-premium-card.reveal-visible {
    opacity: 1;
    transform: scale(1);
    /* No translateY to interfere with scroll snapping */
}

/* Auto-Stagger - Tighter "Ripple" */
.services-row .reveal-premium-card:nth-child(1) {
    transition-delay: 0.0s;
}

.services-row .reveal-premium-card:nth-child(2) {
    transition-delay: 0.1s;
}

.services-row .reveal-premium-card:nth-child(3) {
    transition-delay: 0.2s;
}

.services-row .reveal-premium-card:nth-child(4) {
    transition-delay: 0.3s;
}

.services-row .reveal-premium-card:nth-child(5) {
    transition-delay: 0.4s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

/* HEADER */
/* HEADER & NAVIGATION */
.main-header {
    background: #fff;
    padding: 12px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.header-top-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 12px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--red-brand);
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: #222;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 0.9rem;
    color: #777;
    font-weight: 400;
}

.header-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid #f2f2f2;
}

.menu-toggle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #333;
    cursor: pointer;
    flex-shrink: 0;
}

/* Visibility Control for Dual Buttons */
.desktop-menu-btn {
    display: none !important;
}

.mobile-menu-btn {
    display: flex;
    /* Default for mobile */
}

.header-actions {
    display: flex;
    gap: 10px;
    flex-grow: 1;
}

.btn-header-action {
    flex: 1;
    height: 48px;
    /* Slightly taller */
    border-radius: 50px;
    /* Pillow */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.btn-header-presupuesto {
    background: #fff;
    border: 1.5px solid var(--green-brand);
    color: var(--green-brand);
    gap: 8px;
}

.btn-header-presupuesto i {
    font-size: 1rem;
}

.btn-header-llama {
    background: var(--red-brand);
    color: #fff;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.25);
}

/* SIDE DRAWER MENU */
.side-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    transition: visibility 0.4s;
}

.side-drawer.active {
    visibility: visible;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.4s;
}

.side-drawer.active .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: -290px;
    width: 290px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    padding: 40px 25px;
}

.side-drawer.active .drawer-content {
    right: 0;
}

/* CONTAINER FIXES - PREVENT JUMPS */
.services-section,
.intro-section {
    overflow: hidden;
    /* Locks vertical scroll */
    position: relative;
    width: 100%;
}

.drawer-header {
    margin-bottom: 35px;
}

.drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #444;
    margin-bottom: 25px;
    font-weight: 700;
}

.header-line {
    width: 100%;
    height: 1px;
    background: #f0f0f0;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-grow: 1;
    padding-top: 10px;
}

.drawer-item {
    display: flex;
    align-items: center;
    gap: 22px;
    text-decoration: none;
    color: #444;
    font-weight: 700;
    font-size: 1.15rem;
    transition: color 0.2s;
}

.drawer-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #457B69;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.drawer-item:hover {
    color: var(--green-brand);
}

.drawer-footer {
    margin-top: auto;
}

.support-badge {
    background: #F1FBF7;
    color: #457B69;
    padding: 18px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 700;
    font-size: 1.1rem;
}

.support-badge i {
    font-size: 1.3rem;
    color: #457B69;
}

/* Hide logo text on very small devices if it overflows */
@media (max-width: 360px) {
    .logo-sub {
        display: none;
    }
}

/* Amazon Star Animation - DISABLED (Static Mode) */
.amazon-star-row {
    display: inline-flex;
    gap: 2px;
    margin-right: 5px;
    align-items: center;
}

.amazon-star-row i {
    color: #FFA41C;
    /* Amazon Orange */
    font-size: 0.9rem;
    opacity: 1;
    /* Always visible */
    transform: none;
    /* No scale */
    display: inline-block;
    /* CRITICAL FIX: Transform ignores inline elements */
}

/* Animation trigger removed/commented out for static request */
/*
.amazon-star-row.animate-pop i {
    animation: popStar 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    /* Snappier spring */
/*}

/* Staggered Delays - Balanced Speed */
/* Faster flow: 0.5s -> 0.62s -> 0.74s -> 0.86s -> 0.98s */
/*
.amazon-star-row.animate-pop i:nth-child(1) {
    animation-delay: 0.5s;
}

.amazon-star-row.animate-pop i:nth-child(2) {
    animation-delay: 0.62s;
}

.amazon-star-row.animate-pop i:nth-child(3) {
    animation-delay: 0.74s;
}

.amazon-star-row.animate-pop i:nth-child(4) {
    animation-delay: 0.86s;
}

.amazon-star-row.animate-pop i:nth-child(5) {
    animation-delay: 0.98s;
}

@keyframes popStar {
    0% {
        opacity: 0;
        transform: scale(0.5);
        /* Start slightly visible size but invisible */
/*    }

    60% {
        transform: scale(1.15);
        /* Subtle overshoot */
/*    }

    100% {
        opacity: 1;
        transform: scale(1);
        /* Settle */
/*    }
}
*/

.rating-num {
    font-weight: 700;
    color: #111;
}

.rating-count {
    color: #555;
    font-size: 0.9rem;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    /* Use local asset or fallback */
    background: url('../assets/images/hero-bg-pro-v4.png') no-repeat top right/cover;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 40px;
    /* Increased top padding for better separation */
    color: #fff;
    margin-top: -1px;
    /* Fix any gap */
}

@media (min-width: 768px) {
    .hero-section {
        background-position: center right;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-family: var(--font-heading);
    color: #F4A261;
    /* Gold Accent */
    font-size: 1.45rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 400;
}

.btn-hero-cta {
    background: var(--red-brand);
    color: #fff;
    padding: 18px 24px;
    /* Larger touch target */
    border-radius: 50px;
    /* Pillow shape */
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* Full width mobile */
    max-width: 400px;
    margin: 0 auto;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 56px;
    /* Uber style height */
}

.btn-hero-cta:active {
    transform: scale(0.96);
}

/* TRUST SECTION - ULTRA MINIMALIST */
.trust-section {
    background: #FAFAFA;
    padding: 40px 0 20px;
    /* Reduced vertical padding */
    position: relative;
    overflow: hidden;
}

.trust-header {
    text-align: center;
    margin-bottom: 25px;
    /* Tighter to title */
    padding: 0 20px;
}

.trust-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    /* Smaller to fit single line */
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    /* Tighter */
    letter-spacing: -0.5px;
    white-space: nowrap;
    /* Force one line */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.trust-header p {
    color: #555;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: -0.2px;
}

/* CAROUSEL LOGIC */
/* CAROUSEL LOGIC - UNIFIED SCROLL */
.trust-carousel,
.intro-image-carousel,
.services-row {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    /* Critical Fix for Vertical Jump */
    scroll-snap-type: x mandatory;
    gap: 15px;
    /* Unified Gap */
    padding: 10px 20px 40px;
    /* Unified Padding */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
}

.trust-carousel::-webkit-scrollbar,
.intro-image-carousel::-webkit-scrollbar,
.services-row::-webkit-scrollbar {
    display: none;
}

/* Force Snap Align on ALL Children */
.trust-card,
.intro-img-card,
.service-card {
    scroll-snap-align: center;
}

.trust-card {
    min-width: 210px;
    /* Compact width */
    max-width: 240px;
    flex: 0 0 auto;
    scroll-snap-align: center;

    /* COMPACT CARD */
    background: #FFFFFF;
    border: none;
    border-radius: 24px;
    /* Smaller radius */
    padding: 24px 20px;
    /* Compact padding */

    /* Deep Premium Shadow */
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.06);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* Left Align */
    text-align: left;
    /* Left Align */

    height: auto;
    min-height: 240px;
    /* Reduced height */
    margin: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.trust-card:active {
    transform: scale(0.97);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}

/* HEADER INSIDE CARD */
.card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Start align */
    margin-bottom: 15px;
    /* Tighter spacing */
    margin-right: 0;
    gap: 12px;
    /* Space between icon and label */

    /* Reset Wrapper Dimensions */
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    flex-shrink: 0;
}

/* LABEL: Uppercase next to icon */
.icon-label {
    display: block !important;
    /* Force show */
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
    line-height: 1.2;
}

/* CIRCLE ICON WRAPPERS -> Now applied to SVG for shape */
.icon-green,
.icon-orange,
.icon-green-light {
    background: transparent;
}

.card-icon-wrapper svg {
    width: 44px;
    /* Smaller icon */
    height: 44px;
    padding: 10px;
    /* Internal padding for background */
    border-radius: 14px;
    /* Squircle */
    flex-shrink: 0;
    box-shadow: none;
}

/* Specialized Backgrounds for Icons */
.icon-green svg {
    background: #E6F4EA;
}

.icon-green svg path {
    fill: #1E8E3E !important;
    stroke: #1E8E3E !important;
}

.icon-orange svg {
    background: #FFF7E0;
}

.icon-orange svg path {
    fill: #F59E0B !important;
    stroke: #F59E0B !important;
}

.icon-green-light svg {
    background: #E0F2F1;
}

.icon-green-light svg path {
    fill: #00897B !important;
    stroke: #00897B !important;
}

/* Fixing SVG stroke mapping */
.card-icon-wrapper svg path {
    stroke-width: 2;
}

/* Typography for Compact Card */
.trust-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    /* Smaller Font */
    font-weight: 800;
    margin-bottom: 8px;
    color: #111;
    line-height: 1.2;
    letter-spacing: -0.3px;
    text-align: left;
}

.trust-card p {
    color: #666;
    font-size: 0.85rem;
    /* Smaller Body */
    line-height: 1.5;
    margin-top: 0;
    font-weight: 400;
    max-width: 100%;
    /* Full width */
    margin: 0;
    /* Left align */
    text-align: left;
}

/* DOTS */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.15);
    /* Subtler dark blue-gray */
    transition: all 0.3s;
}

.dot.active {
    background: var(--red-brand);
    transform: scale(1.3);
}

/* OPTIMIZED: Continuous flow transition */
.services-section {
    padding: 10px 15px 0;
    /* Continuous flow transition */
    background: #FFFFFF;
}

.services-row {
    margin-bottom: 0;
    /* Zeroed out to remove gap */
    padding-bottom: 0;
}



.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #222;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

/* 2-Row Horizontal Scroll Grid for Mobile */
/* Independent Horizontal Independent Rows for Mobile */
.services-row {
    display: flex;
    /* Changed from Grid to Flex for simple independent scrolling */
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    padding: 0 0 5px 15px;
    /* Compact rhythm transition */

    /* STRATEGIC PEEK EFFECT: Show 2.5 cards on mobile */
    /* Calculation: (170px card × 2.5) + (15px gap × 2) = 455px */
    max-width: calc(100vw);
    /* Full viewport width */

    /* On mobile, we want to show exactly 2.5 cards */
    /* This creates visual affordance that there's more content */
}

.services-row::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

/* ========================================
   CURATED SECTION (DOORDASH MERCHANT STYLE)
   ======================================== */
/* Divider removed to prevent visual 'raya' artifacts */

/* ========================================
   CURATED SECTION (ULTRA PREMIUM EDITORIAL)
   ======================================== */
.curated-section {
    padding: 10px 0 20px;
    /* Reduced bottom padding from 60px */
    background: linear-gradient(to bottom, #FFFFFF 0%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}

.curated-header {
    text-align: center;
    margin-bottom: 15px;
    padding: 0 24px;
}

.curated-label {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.curated-tagline {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: -0.3px;
    opacity: 0.8;
}

.curated-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 5px 24px 25px;
    /* Reduced bottom gap (was 50px) */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.curated-row::-webkit-scrollbar {
    display: none;
}

/* ... (Animations remain the same) ... */

/* Global Footer Action (Catalog) */
.curated-footer {
    display: flex;
    justify-content: center;
    padding: 10px 0 20px;
    /* Tighter spacing (was 12/32px) */
}

/* --- MOTION & STAGGER SYSTEM (FASTER) --- */
.curated-card:nth-child(1) {
    transition-delay: 0.1s;
}

.curated-card:nth-child(2) {
    transition-delay: 0.15s;
}

.curated-card:nth-child(3) {
    transition-delay: 0.2s;
}

/* Was 0.4s - drastic reduction */

.reveal-delay-100 {
    transition-delay: 0.05s;
}

.reveal-delay-200 {
    transition-delay: 0.1s;
}

.reveal-delay-300 {
    transition-delay: 0.15s;
}

/* DoorDash-Grade Merchant Card */
.merchant-card {
    min-width: 75vw;
    max-width: 75vw;
    flex: 0 0 auto;
    scroll-snap-align: center;
    background: transparent;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
    border: none;
    box-shadow: none;
    position: relative;
}

/* PREMIUM INTERACTION */
.merchant-card:active {
    transform: scale(0.97);
}

.merchant-visual {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    /* More modern curve */
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    /* Ambient base */
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    position: relative;
    background: #f0f0f0;
    /* Skeleton placeholder color */
}

/* Striking Hover Effect */
.merchant-card:hover .merchant-visual {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    /* Deep Lift */
    transform: translateY(-5px);
}

.merchant-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.merchant-card:hover .merchant-visual img {
    transform: scale(1.08);
    /* Cinematic slow zoom */
}

.merchant-info {
    padding: 0 8px;
    /* Inset alignment (Image edge) */
    display: flex;
    flex-direction: column;
    gap: 2px;
    /* Tight vertical rhythm */
}

.merchant-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align top in case of wrapping */
    margin-bottom: 0;
}

.merchant-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    /* Editorial Size (-5%) */
    font-weight: 600;
    /* Semibold */
    color: var(--text-primary);
    letter-spacing: -0.3px;
    line-height: 1.35;
    margin-right: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Max 2 lines */
    line-clamp: 2;
    /* Standard property */
    -webkit-box-orient: vertical;
}

/* CLEAN MINIMAL HEART (REMOVED VIA HTML, HIDING HERE JUST IN CASE) */
.btn-favorite-heart {
    display: none;
}

/* Metadata Bar (DD Style - Single Line) */
.merchant-metadata {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 400;
    /* Normal weight */
    color: var(--text-secondary);
    margin-top: 6px;
    /* Breathing room (+2px) */
}

.m-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.amazon-star-row {
    color: #EAB308;
    /* Soft Yellow */
    font-size: 0.45rem;
    /* Sub-microscopic (-10%) */
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    margin-right: 2px;
    /* Slight separation from number */
}

.rating-num {
    font-weight: 400;
    /* Not bold */
    color: #333;
}

.rating-count {
    color: #9ca3af;
    /* Softer grey */
    display: flex;
    align-items: center;
}

/* Dot Separator via CSS */
.rating-count::before {
    content: "•";
    color: #ccc;
    font-size: 0.6rem;
    margin: 0 5px;
}

/* MINIMALIST PREMIUM BADGES */
.merchant-visual {
    position: relative;
}

.merchant-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    /* Glass Edge */
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 10;
    pointer-events: none;
}

.badge-top {
    background: var(--red-brand);
    color: #FFFFFF;
    border: none;
    border-left: 3px solid rgba(0, 0, 0, 0.2);
}

.badge-popular {
    background: #1F2937;
    color: #FFFFFF;
    border: none;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.badge-fast {
    background: #10B981;
    color: #FFFFFF;
    border: none;
    border-left: 3px solid rgba(0, 0, 0, 0.2);
}

.btn-favorite-heart:hover {
    transform: scale(1.15);
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: var(--red-brand);
}

/* Metadata Bar (DD Style) */
.merchant-metadata {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.m-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-primary);
    font-weight: 700;
}

.m-rating i {
    color: var(--text-primary);
    font-size: 0.75rem;
}

.m-sep {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* Global Footer Action (Catalog) */
.curated-footer {
    display: flex;
    justify-content: center;
    padding: 32px 0 20px;
    /* Added 32px top spacing for "Visual Closure" */
}

.btn-catalog-mockup {
    background: var(--red-brand);
    /* Changed to Red Brand */
    color: #FFFFFF;
    padding: 14px 40px;
    /* Reduced height (was 18px) */
    border-radius: 50px;
    font-weight: 950;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: none;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-catalog-mockup:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.dash-image {
    width: 45%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    /* Top layer */
    padding-right: 15px;
}

.dash-image img {
    height: 140%;
    /* Aggressive scaling */
    width: auto;
    object-fit: contain;
    transform: rotate(-10deg) translateY(-10px);
    /* Pop out top and bottom */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
    /* Soft shadow on image itself */
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.dash-style-card:hover .dash-image img {
    transform: rotate(-4deg) scale(1.15) translateY(-20px);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
}


.dash-blob {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    color: rgba(0, 0, 0, 0.02);
    z-index: 1;
}

@media (min-width: 768px) {
    .dash-style-card {
        min-width: 450px;
        max-width: 450px;
        height: 200px;
    }
}

.btn-featured-action:hover {
    background: var(--red-brand);
    color: #fff;
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .featured-card {
        min-width: 500px;
        max-width: 500px;
        height: 300px;
    }
}

.gallery-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-right: 15px;
    cursor: pointer;
    /* Clickable */
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.service-card {
    /* Responsive width for peek effect: 2.5 cards on mobile */
    min-width: calc((100vw - 45px) / 2.5);
    max-width: calc((100vw - 45px) / 2.5);

    flex: 0 0 auto;
    scroll-snap-align: start;
    background: var(--bg-white);
    border-radius: var(--radius-card);
    /* Unified 16px */
    overflow: hidden;
    box-shadow: var(--card-shadow);
    /* Unified shadow */
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    min-height: 260px;
    /* Fixed minimum height for consistency */
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    cursor: pointer;
    /* Whole card is clickable */
    -webkit-tap-highlight-color: transparent;
    /* Remove tap highlight */
}

/* Desktop override for service cards */
@media (min-width: 768px) {
    .service-card {
        min-width: 170px;
        max-width: 170px;
    }
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    /* Unified hover shadow */
}

.service-card:active {
    transform: scale(0.98);
}

.service-img {
    position: relative;
    height: 125px;
    width: 100%;
    overflow: hidden;
    /* Changed to hidden to fully contain content */
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-image) var(--radius-image) 0 0;
    /* Unified 12px */
}

.btn-service-view,
.btn-selection-trigger {
    position: absolute;
    bottom: 15px;
    /* Centered inside the image zone */
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-brand);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    /* Unified 50px */
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--button-shadow);
    /* Unified button shadow */
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-selection-trigger:hover {
    background: var(--red-dark);
    /* Unified dark red */
    transform: translateX(-50%) translateY(-2px);
}

.btn-selection-trigger:active {
    transform: scale(0.95);
}



.btn-selection-trigger:active {
    transform: scale(0.95);
}

.btn-service-view i {
    font-size: 0.7rem;
}



/* New Premium Red Detail */


.service-content {
    padding: 16px 14px;
    /* Normalized padding now that button doesn't overlap */
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
    line-height: 1.25;
    width: 100%;
}

.service-content p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Reduced to 2 lines for consistency */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 2px;
    min-height: 2.24rem;
    /* 2 lines * 1.4 line-height * 0.8rem = ~2.24rem */
}

@media (min-width: 768px) {
    .services-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        overflow-x: visible;
        padding-bottom: 0;
        margin-bottom: 25px;
        /* Add gap between the two rows */
    }

    .service-img {
        height: 160px;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }
}

/* FLOATING BUTTONS */
.floating-btns {
    position: fixed;
    bottom: 12px;
    /* Further down */
    right: 12px;
    /* Further to the right */
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
}

.fab-btn {
    width: 44px;
    /* Reduced another 15% */
    height: 44px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    /* Proportionally smaller */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, background 0.2s;
}

.fab-whatsapp {
    background: #25D366;
}

.fab-call {
    background: var(--red-brand);
}

.fab-btn:active {
    transform: scale(0.92);
}

/* MEDIA QUERIES (DESKTOP) */
@media (min-width: 768px) {
    .trust-carousel {
        justify-content: center;
        flex-wrap: wrap;
        overflow: visible;
        max-width: 1200px;
        margin: 0 auto;
    }

    .trust-card {
        min-width: auto;
        /* Reset mobile width */
        width: 100%;
        /* Fill flex space */
        flex: 1;
        max-width: 350px;
        margin: 0;
    }

    @keyframes pulse-ring {
        0% {
            width: 100%;
            height: 100%;
            opacity: 0.8;
        }

        100% {
            width: 300%;
            height: 300%;
            opacity: 0;
        }
    }

    /* =========================================
   DESKTOP LAYOUT (1024px+)
   "Services Area" Optimization
   ========================================= */
    @media (min-width: 1024px) {
        .areas-section {
            padding: 80px 0;
        }

        .areas-container {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            /* Left: Map, Right: Text */
            grid-template-rows: auto auto auto auto;
            gap: 0 60px;
            align-items: center;
            max-width: 1100px;
            /* User requested 1100px */
            margin: 0 auto;
            padding: 0 24px;
            /* Consistent padding */
            text-align: left;
        }

        /* Column 1: Map (Left Protagonist) */
        .areas-map-wrapper {
            grid-column: 1;
            grid-row: 1 / span 5;
            height: 550px;
            width: 100%;
            max-width: 100%;
            margin: 0;

            /* Reset for Desktop Full View */
            background-color: transparent;
            background-size: contain;
            background-position: center;
            overflow: visible;
            border-radius: 12px;
            /* Image Source */
            background-image: url('../assets/images/final_red_map.jpg');

            /* Entrance */
            opacity: 0;
            transform: scale(0.95);
            animation: mapFadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
            animation-delay: 0.2s;
        }

        /* Column 2: Content (Right) */
        .areas-header {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 25px;
        }

        .counties-grid {
            grid-column: 2;
            grid-row: 3;
            justify-content: flex-start;
            margin-bottom: 25px;
        }

        .areas-support-block {
            grid-column: 2;
            grid-row: 4;
            text-align: center;
            /* Center content (specifically the button) */
            margin: 0 auto;
            /* Center the block itself if it has width < 100% */
            width: 100%;
            max-width: 100%;
            align-self: start;
            background: #f8f9fa;
            display: flex;
            flex-direction: column;
            /* Force vertical stack */
            align-items: center;
            /* Center children horizontally */
            justify-content: center;
            padding: 25px 20px;
        }

        .areas-support-block .btn-area-consult {
            margin: 0;
            width: 100%;
            max-width: 420px;
            /* User requested constraint */
            /* justify-self: center; No longer needed with align-items: center on parent */
        }
    }

    @keyframes mapFadeIn {
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .carousel-dots {
        display: none;
    }

    .hero-content h1 {
        font-size: 4.2rem;
        line-height: 1.1;
    }

    .hero-content h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .btn-header {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* =========================================
   INTRO SECTION (En Handy Express)
   ========================================= */
.intro-section {
    padding: 40px 0 0;
    /* More air above to signal the start of the action zone */
    background: #fdfdfd;
    overflow: hidden;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- TEXT --- */
.intro-text-block {
    text-align: center;
    max-width: 600px;
    margin-bottom: 30px;
    /* More authoritative space */
}

.intro-text-block h2 {
    font-size: 2.2rem;
    /* Punchy presence */
    font-weight: 900;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.intro-text-block p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.4;
    padding: 0 10px;
}

/* --- IMAGE CAROUSEL --- */
.intro-image-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
    padding: 5px 5px 30px 5px;
    /* Reduced top padding for tighter visual flow */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 10px;
}

.intro-image-carousel::-webkit-scrollbar {
    display: none;
}

.intro-img-card {
    min-width: 65vw;
    /* Slightly wider for a more immersive feel */
    scroll-snap-align: center;
    background: #fff;
    border-radius: 28px;
    /* Soft premium curvature */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Fine architectural definition */
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 1),
        0 12px 30px rgba(0, 0, 0, 0.04);
    /* Light-catching edge + airy depth */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    cursor: pointer;
}

.intro-img-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 1),
        0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Active State Refinement */
.intro-img-card.card-active {
    border-color: var(--green-brand);
    background: #fcfdfc;
    /* Subtlest green tint background */
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 1),
        0 15px 40px rgba(45, 106, 79, 0.08);
}

.intro-card-img {
    position: relative;
    height: 180px;
    /* Taller for luxury display */
    width: 100%;
    overflow: hidden;
}

.intro-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.intro-img-card:hover .intro-card-img img {
    transform: scale(1.1);
    /* Subtle cinematic zoom */
}

.intro-card-body {
    padding: 20px 15px 15px;
}

.intro-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.intro-card-body p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
}

/* --- ICON CIRCLE --- */
.intro-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-red {
    background: var(--red-brand);
}

.bg-green {
    background: var(--green-brand);
}

/* --- WIDE CARD --- */
.intro-wide-card {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 16px;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: 10px;
    cursor: pointer;
}

.intro-wide-text {
    flex: 1;
}

.intro-wide-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 3px;
}

.intro-wide-text p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}

.intro-arrow {
    color: #ccc;
    font-size: 0.9rem;
}

/* --- DOTS --- */
.intro-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    /* Reduced gap to bring button closer */
}

.intro-dots .dot {
    width: 5px;
    /* Slightly smaller */
    height: 5px;
    background: rgba(0, 0, 0, 0.07);
    /* Lower opacity */
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-dots .dot.active-green {
    background: var(--red-brand);
    opacity: 1;
    /* More solid when active for clarity */
    transform: scale(1.3);
}

/* --- CTA --- */
.intro-cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-intro-red {
    background: var(--red-brand);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
    transition: 0.3s;
    font-size: 0.95rem;
}

.btn-intro-red:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Desktop */
@media (min-width: 768px) {
    .intro-image-carousel {
        justify-content: center;
        overflow: visible;
        flex-wrap: wrap;
    }

    .intro-img-card {
        min-width: 250px;
        flex: 1;
        max-width: 300px;
    }
}



/* =========================================
   SERVICE DETAIL MODAL
   ========================================= */
.service-modal {
    position: fixed;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: flex-end;
    /* Align bottom for mobile sheet */
    justify-content: center;
}

.service-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-modal.active .modal-overlay {
    opacity: 1;
}

/* Modal Card (Bottom Sheet Base) */
.modal-card {
    background: white;
    width: 100%;
    max-height: 90vh;
    /* Max height on mobile */
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.service-modal.active .modal-card {
    transform: translateY(0);
}

/* Drag Handle */
.modal-drag-handle {
    width: 40px;
    height: 5px;
    background: #e0e0e0;
    border-radius: 10px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

/* Close Button (Floating) */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.modal-close:active {
    transform: scale(0.9);
}

/* Scrollable Content Area */
.modal-content-scrollable {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    /* Takes clear space */
    padding-bottom: 20px;
}

/* Modal Body/Text */
.modal-body {
    padding: 0 24px;
}

.modal-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    /* Immersive height */
    margin-bottom: 20px;
    background: #f0f0f0;
}

.modal-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    height: 100%;
    width: 100%;
}

.modal-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.modal-carousel img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
}

/* Indicators (Dots) */
.modal-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 8px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-dots .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.modal-dots .dot.active {
    background: #fff;
    opacity: 0.9;
    transform: scale(1.3);
}

/* Swipe Hint */
.modal-swipe-hint {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    animation: fadeInOut 3s infinite;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Typography Enhancements */
#modal-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #111;
}

.modal-desc-short {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Benefits Grid (App-Style) */
.modal-benefits-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 5px;
    /* Scrollbar space fix */
}

.benefit-item {
    flex: 1;
    min-width: 90px;
    background: #f8f9fa;
    padding: 12px 10px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
}

.benefit-item i {
    font-size: 1.4rem;
    color: var(--green-brand);
    margin-bottom: 8px;
    display: block;
}

.benefit-item span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #444;
    display: block;
    line-height: 1.2;
}

/* =========================================
   UBER / DOORDASH PREMIUM STYLE (Modern App)
   ========================================= */
.modal-faq-section {
    margin: 40px 0;
    text-align: left !important;
}

.modal-faq-section h4 {
    font-size: 1.1rem;
    font-weight: 800;
    /* Heavy modern font */
    margin-bottom: 20px;
    color: #000;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

/* SEARCH BAR: Pill Shape (DoorDash Style) */
.faq-search-container {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 50px;
    /* Full pill */
    padding: 14px 20px;
    margin-bottom: 30px;
    box-shadow: none;
    background: #F1F1F1;
    /* Soft heavy gray */
    width: 100%;
    transition: background 0.2s;
}

.faq-search-container:hover,
.faq-search-container:focus-within {
    background: #E8E8E8;
}

.faq-search-container i {
    color: #111;
    margin-right: 12px;
    font-size: 1rem;
    font-weight: 700;
}

.faq-search-container input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    color: #111;
    font-weight: 600;
    background: transparent;
    font-family: var(--font-body);
}

.faq-search-container input::placeholder {
    color: #777;
    font-weight: 500;
}

.faq-item {
    margin-bottom: 0;
    border-top: 1px solid #eee;
    /* Very subtle separator */
}

.faq-item:first-of-type {
    border-top: none;
}

/* Question: Modern, clean, spacious */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: transparent;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
}

.faq-question span {
    font-weight: 600;
    color: #000;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.faq-question i {
    color: #000;
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Active State */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 300px;
    opacity: 1;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   REVIEWS SECTION (App Style)
   ========================================= */
.modal-reviews-section {
    margin-top: 50px;
    padding-top: 0;
    border-top: none;
    /* Seamless flow */
    padding-bottom: 20px;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.review-score {
    font-size: 2.8rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

.review-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Right align summary */
}

/* APP STARS: Reverted to Amazon Orange */
.review-stars {
    color: #DE7921;
    /* Vibrant Orange */
    font-size: 1rem;
    margin-bottom: 4px;
    letter-spacing: 2px;
    display: flex;
    gap: 3px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.review-stars i {
    color: #DE7921 !important;
}

.review-count {
    color: #777;
    font-size: 0.85rem;
    font-weight: 600;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: #fff;
    padding: 0;
    border: none;
    /* Clean list */
    border-radius: 0;
    margin-bottom: 10px;
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.review-user {
    font-weight: 800;
    color: #000;
    font-size: 0.95rem;
}

.review-date {
    color: #999;
    font-size: 0.75rem;
}

/* Mini Stars in Card */
.review-stars-mini {
    color: #DE7921;
    /* Orange */
    font-size: 0.8rem;
    margin-bottom: 6px;
    display: flex;
    gap: 2px;
}

.review-stars-mini i {
    color: #DE7921 !important;
}

.review-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.btn-see-all-reviews {
    background: #F1F1F1;
    /* matches search */
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    /* Pill */
    margin-top: 20px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: none;
    font-size: 0.95rem;
    box-shadow: none;
}

.btn-see-all-reviews:hover {
    background: #E8E8E8;
    transform: scale(0.98);
}

/* GLOBAL STARS FIX */
.fa-star,
.fa-star-half-stroke {
    color: #DE7921 !important;
    /* Force Amazon orange star */
}

/* Sections */
.modal-section {
    text-align: left;
    /* Keep details left aligned */
    margin-bottom: 20px;
}

.modal-section h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 700;
}

#modal-include-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

#modal-include-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #333;
    display: flex;
    gap: 10px;
}

#modal-include-list li i {
    color: var(--green-brand);
    margin-top: 4px;
}

.modal-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.modal-duration i {
    font-size: 1rem;
}

.btn-process {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red-brand);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    transition: 0.3s;
    margin-top: 10px;
    /* Tighter gap with icons */
    animation: simple-pulse 3s infinite;
}

@keyframes simple-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    }
}

.btn-process:hover {
    background: #C92A35;
    transform: translateY(-2px);
    animation-play-state: paused;
    /* Pause pulse on hover for cleaner interaction */
}

.modal-cta-wrapper {
    margin-top: 10px;
    padding-bottom: 10px;
    /* Space from bottom edge */
}

.modal-trust-text {
    font-size: 0.75rem;
    color: #999;
    margin-top: 15px;
    text-align: center;
}

/* STICKY FOOTER */
.modal-footer {
    background: white;
    padding: 15px 24px 25px;
    /* Safe area bottom */
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    z-index: 20;
}

.footer-price-hint {
    display: flex;
    flex-direction: column;
}

.footer-price-hint span {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-price-hint strong {
    font-size: 1.2rem;
    color: #222;
}

.btn-modal-wa {
    background: #111;
    /* Uber Black */
    color: white;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    flex: 1;
    margin-left: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.areas-cta {
    margin-top: 5px;
    /* Even tighter */
    margin-bottom: 0;
}

/* Desktop Adjustment */
@media (min-width: 768px) {
    .service-modal {
        align-items: center;
        /* Center on desktop */
    }

    .modal-card {
        width: 480px;
        /* Fixed width app-like card */
        max-height: 85vh;
        border-radius: 20px;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .service-modal.active .modal-card {
        transform: translateY(0);
        opacity: 1;
    }

    .modal-drag-handle {
        display: none;
    }
}

/* =========================================
   SELECTION MODAL (Grid selection)
   ========================================= */
.selection-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.selection-modal.active {
    display: flex;
}

.selection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.selection-card {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.selection-header {
    padding: 24px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selection-title-group h3 {
    margin: 0;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.selection-title-group p {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.selection-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.selection-close:hover {
    color: var(--red-brand);
}

.selection-body {
    padding: 12px;
    max-height: 70vh;
    overflow-y: auto;
}

.selection-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 8px;
    border: 1px solid transparent;
}

.selection-item:hover {
    background: #f8fcfb;
    border-color: var(--green-brand);
}

.selection-icon {
    font-size: 1.5rem;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
}

.selection-text {
    flex: 1;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
}

.selection-arrow {
    color: #ccc;
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.selection-item:hover .selection-arrow {
    color: var(--green-brand);
    transform: translateX(4px);
}



.modal-body {
    padding: 25px 22px;
    text-align: center;
    /* Center header part */
}

.modal-body h3 {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.modal-desc-short {
    font-size: 1rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

/* =========================================
   AMAZON Q&A STYLE FAQ
   ========================================= */
.modal-faq-section {
    margin: 40px 0;
    text-align: left !important;
    /* Force override modal center */
}

.modal-faq-section h4 {
    font-size: 1.1rem;
    /* Slightly larger like reference */
    font-weight: 700;
    margin-bottom: 15px;
    color: #0F1111;
    font-family: var(--font-heading);
    text-transform: none;
    letter-spacing: 0;
}

.faq-search-container {
    display: flex;
    align-items: center;
    border: 1px solid #888C8C;
    border-radius: 8px;
    padding: 10px 12px;
    /* Taller input area */
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(15, 17, 17, 0.1);
    background: #fff;
    width: 100%;
}

.faq-search-container i {
    color: #565959;
    margin-right: 12px;
    font-size: 1.1rem;
}

.faq-search-container input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    color: #0F1111;
    background: transparent;
    font-family: var(--font-body);
}

/* Placeholder styling */
.faq-search-container input::placeholder {
    color: #767676;
}

.faq-item {
    margin-bottom: 0;
    border-top: 1px solid #e7e7e7;
}

.faq-item:first-of-type {
    border-top: none;
}

/* Question portion */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align top in case of multiline */
    padding: 15px 0 5px;
    background: transparent;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    /* Explicitly left */
    transition: none;
}

.modal-section {
    text-align: left;
    /* Keep details left aligned */
    margin-bottom: 20px;
}

.modal-section h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#modal-include-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

#modal-include-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 12px;
    text-align: left;
    /* Force left align for text */
}

#modal-include-list li i {
    color: #2D6A4F;
    margin-top: 3px;
    font-size: 0.9rem;
}

.modal-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.modal-duration i {
    font-size: 1rem;
}

.btn-process {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red-brand);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    transition: 0.3s;
    margin-top: 10px;
    /* Tighter gap with icons */
    animation: simple-pulse 3s infinite;
}

@keyframes simple-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    }
}

.btn-process:hover {
    background: #C92A35;
    transform: translateY(-2px);
    animation-play-state: paused;
    /* Pause pulse on hover for cleaner interaction */
}

.modal-cta-wrapper {
    margin-top: 10px;
    padding-bottom: 10px;
    /* Space from bottom edge */
}

.modal-trust-text {
    font-size: 0.75rem;
    color: #999;
    margin-top: 15px;
    text-align: center;
}

/* =========================================
   AREAS SECTION (Pixel-Perfect Full-Width)
   ========================================= */
.areas-section {
    padding: 60px 0;
    background: #fff;
    /* Fondo blanco para integraciÃ³n total */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.areas-content-wrapper {
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
    margin: 0 auto;
}

.areas-header {
    text-align: center;
    margin-bottom: 35px;
}

.areas-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.areas-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

/* BREAKOUT TECHNIQUE: Real 100vw Width */
.areas-map-full {
    width: 100%;
    max-width: 100%;
    height: 300px;
    margin-top: 20px;
    margin-bottom: 40px;
    overflow: hidden;
    background: #f0f0f0;
}

.areas-indiana-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    /* Zoom interno para eliminar bordes blancos del activo */
    filter: brightness(1.02);
}

.areas-counties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 45px;
}

.county-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.county-chip i {
    color: #2D6A4F;
    font-size: 0.9rem;
}

.areas-footer {
    text-align: center;
    padding-top: 0;
    border-top: none;
}

.areas-footer h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.areas-footer p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.4;
}

.btn-areas-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E63946;
    color: #fff;
    padding: 18px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.25);
    transition: transform 0.2s, background 0.2s;
    width: 100%;
}

.btn-areas-cta:hover {
    background: #c92f3b;
    transform: translateY(-2px);
}

.btn-areas-cta:active {
    transform: translateY(0);
}

/* Bloqueo de scroll robusto para mÃ³vil */
body.modal-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
    /* top se define dinÃ¡micamente por JS */
}

/* =========================================
   SELECTION MODAL (Reparaciones RÃ¡pidas)
   ========================================= */
.selection-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4000;
    /* Basic overlay level */
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.selection-modal.active {
    display: flex;
}

.selection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.selection-card {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 500px;
    height: auto;
    max-height: 90vh;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;

    /* Entrance Animation */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.selection-modal.active .selection-card {
    opacity: 1;
    transform: translateY(0);
}

/* Header Sticky Internal */
.selection-header {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 10;
}

.selection-title-group h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.selection-title-group p {
    font-size: 0.95rem;
    color: #666;
    background: none;
}

.selection-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

/* Body Scrollable */
.selection-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.selection-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.selection-item:hover,
.selection-item:active {
    border-color: var(--red-brand);
    background: #fff;
    transform: scale(1.01);
}

.selection-icon {
    font-size: 1.6rem;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.selection-text {
    flex: 1;
    font-weight: 700;
    font-size: 1.05rem;
    color: #333;
}

.selection-arrow {
    font-size: 0.9rem;
    color: #ccc;
    margin-left: 10px;
}

/* =========================================
   COVERAGE SECTION (Refined Design)
   ========================================= */
.coverage-section {
    background-color: #f3f4f6;
    /* Light gray background like image */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.coverage-card-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    width: 100%;
    max-width: 600px;
    /* Constrained width like the card */
    text-align: left;
}

.coverage-header {
    text-align: center;
    margin-bottom: 30px;
}

.coverage-header h2 {
    font-family: var(--font-body);
    /* More standard looking font */
    font-size: 1.8rem;
    color: #2D3748;
    margin-bottom: 10px;
    font-weight: 800;
}

.coverage-header p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #718096;
    line-height: 1.5;
}

/* Fake Search Bar */
.coverage-search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.search-input-wrapper {
    flex: 1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0aec0;
}

.btn-check-red {
    background: #E53E3E;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0 24px;
    font-weight: 600;
    font-size: 1rem;
    cursor: auto;
    /* Not clickable really */
    display: flex;
    align-items: center;
    gap: 8px;
}

.divider-line {
    height: 1px;
    background: #f0f0f0;
    margin-bottom: 30px;
}

/* Titles */
.coverage-block-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* Pills Grid (Counties) */
.counties-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.county-pill {
    background: #EDF2F7;
    /* Gray background */
    color: #4A5568;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.county-pill i {
    color: #38A169;
    /* Green check */
}

.view-more-pill {
    background: transparent;
    color: #A0AEC0;
    font-size: 0.85rem;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 cols like image */
    gap: 10px;
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols mobile */
    }
}

.city-pill {
    background: #F7FAFC;
    border: 1px solid #EDF2F7;
    border-radius: 6px;
    /* Slightly squared like image */
    padding: 8px 5px;
    text-align: center;
    font-size: 0.85rem;
    color: #4A5568;
}

/* Footer Bar like image */
.cities-footer-bar {
    background: #F7FAFC;
    border: 1px solid #EDF2F7;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4A5568;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* Big Red Link Button */
.btn-check-availability {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #E53E3E;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.btn-check-availability:hover {
    background: #C53030;
    transform: translateY(-2px);
}

/* =========================================
   PROCESS SECTION (Como funciona)
   ========================================= */
.process-section {
    padding: 30px 20px 40px !important;
    /* Further reduced top gap to Searcher */
    background: #f8fafc;
    text-align: center;
    overflow: visible;
}

.step-card {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-card.step-animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.step-card.step-animate-in .step-icon {
    animation: icon-float-soft 4s ease-in-out infinite alternate;
}

@keyframes icon-float-soft {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-5px);
    }
}

.step-card:hover .step-icon {
    animation: icon-float 0.6s ease-in-out infinite alternate;
}

@keyframes icon-float {
    from {
        transform: translateY(0) scale(1.1);
    }

    to {
        transform: translateY(-4px) scale(1.1);
    }
}

.process-section h3 {
    font-size: 2rem;
    /* Slightly larger for presence */
    font-family: var(--font-heading);
    color: #111;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.process-section p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* Ensure visibility on small screens */
@media (max-width: 480px) {
    .process-section {
        padding-top: 60px !important;
        /* Balanced for mobile */
    }

    .process-section p {
        font-size: 1rem;
        padding: 0 10px;
    }
}


.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
    position: relative;
}

/* Mobile Flow Line */
.steps-grid:before {
    content: "";
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #e2e8f0;
    z-index: 1;
}

@media (min-width: 768px) {
    .steps-grid:before {
        display: none;
    }
}

/* Step Card */
.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    /* Interactive cursor */
    transition: transform 0.3s ease;
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: iconPulse 3s infinite;
    /* Continuous subtle glow */
}

.step-card:hover .step-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: none;
    /* Pausa el pulso al hacer hover para feedback sÃ³lido */
}

@keyframes iconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    z-index: 3;
}

.btn-header {
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-catalog {
    background: transparent;
    color: var(--green-brand);
    border: 1px solid var(--green-brand);
    margin-right: 5px;
}

.btn-catalog:hover {
    background: var(--green-brand);
    color: white;
}

.btn-catalog i {
    margin-right: 5px;
}

.bg-green {
    background: var(--green-brand);
}

.bg-blue {
    background: #3498db;
}

.bg-orange {
    background: var(--orange-icon);
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

.step-connector {
    display: none;
    /* Hidden on mobile */
}

/* CTA Button */
.hero-btns-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .hero-btns-group {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

.btn-hero-cta,
.btn-hero-secondary {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 80%;
    /* Mobile first */
    max-width: 280px;
}

.btn-hero-cta {
    background: var(--red-brand);
    color: #fff;
}

.btn-hero-cta:hover {
    background: #c92c3a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-hero-cta:active,
.btn-hero-secondary:active {
    transform: scale(0.96);
}

.btn-primary-large {
    background: var(--red-brand);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
    background: var(--red-dark);
}

/* Desktop */
@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .step-connector {
        display: block;
        flex: 0.5;
        height: 2px;
        background: repeating-linear-gradient(90deg, #ddd, #ddd 8px, transparent 8px, transparent 16px);
        margin-top: 40px;
        /* Aligns with icon center */
    }
}


/* =========================================
   GALLERY SECTION (Antes/DespuÃ©s)
   ========================================= */
.gallery-section {
    padding: 60px 20px;
    background: #fdfdfd;
    text-align: center;
}

.gallery-header {
    margin-bottom: 40px;
}

.gallery-header h3 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: #222;
    margin-bottom: 10px;
}

.gallery-header p {
    font-size: 1.1rem;
    color: #666;
}

.gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 0 5px 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

/* Card */
.gallery-card {
    min-width: 85vw;
    /* Casi pantalla completa mÃ³vil */
    scroll-snap-align: center;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-info {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.gallery-info div {
    /* Container for text */
    flex: 1;
    text-align: left;
}

.gallery-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.gallery-info p {
    margin: 3px 0 0;
    font-size: 0.9rem;
    color: #777;
}

/* Gallery CTA Button */
.btn-gallery-cta {
    background: var(--red-brand);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    /* Just in case */
}

.btn-gallery-cta:hover {
    background: var(--red-dark);
    transform: scale(1.05);
}

/* COMPARISON LOGIC */
.comparison-container {
    position: relative;
    width: 100%;
    height: 250px;
    /* Fixed height for consistency */
    overflow: hidden;
    user-select: none;
    /* No selection while dragging */
}

.comp-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    /* Let clicks pass usually, handle catches them */
}

.comp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* IMPORTANT: Prevent image dragging */
    -webkit-user-drag: none;
    user-select: none;
}

/* Base Image (DespuÃ©s) */
.base-img {
    z-index: 1;
}

/* Overlay Image (Antes) */
.overlay-img {
    z-index: 2;
    border-right: 2px solid #fff;
    /* Divider visual */
    background: #333;
    /* Fallback */
}

/* Labels */
.comp-label {
    position: absolute;
    top: 15px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.label-before {
    left: 15px;
}

.label-after {
    right: 15px;
}

/* Handle */
.comp-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    /* larger touch area */
    transform: translateX(-50%);
    /* Centered on the line */
    z-index: 10;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensure handle captures touches */
    touch-action: none;
}

/* Visual Circle */
.comp-handle i {
    width: 36px;
    height: 36px;
    background: #fff;
    color: var(--red-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

/* Desktop */
@media (min-width: 768px) {
    .gallery-card {
        min-width: 350px;
        flex: 1;
        max-width: 400px;
    }

    .comparison-container {
        height: 300px;
    }

    .gallery-carousel {
        justify-content: center;
        flex-wrap: wrap;
        overflow: visible;
    }
}


/* =========================================
   SERVICE AREAS SECTION
   ========================================= */
.service-areas {
    padding: 20px 20px 40px;
    /* Reduced bottom padding for tighter section continuity */
    background: linear-gradient(to bottom, #fff, #f4f6f8);
    text-align: center;
}

/* --- REFINED SERVICE AREAS --- */
.areas-section {
    padding: 5px 20px 10px;
    /* Reduced bottom padding from 20px to 10px */
    background: #FFFFFF;
}

.areas-header {
    margin-bottom: 24px;
    /* Reduced from 40px for immediacy */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Search Bar (Actionable Top) - High Authority UI */
.area-search-wrapper {
    width: 100%;
    max-width: 500px;
    margin-bottom: 24px;
    position: relative;
    background: #E5E7EB;
    /* Crisp contrast bg */
    border-radius: 12px;
    padding: 2px;
    border: 1px solid #D1D5DB;
    /* Defined boundary */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.area-search-wrapper:focus-within {
    background: #FFFFFF;
    box-shadow: 0 0 0 1px var(--red-brand), 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--red-brand);
}

#area-search::placeholder {
    color: #6B7280;
    /* Explicitly more legible gray */
    opacity: 1;
}

#area-search {
    width: 100%;
    height: 48px;
    background: transparent;
    border: none;
    padding: 0 44px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: #111;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
}

/* Status Indicator Badge */
.status-indicator-wrapper {
    margin-bottom: 8px;
}

.pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.08);
    /* Softer green */
    color: #15803d;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulseStatus 3s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pulseStatus {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.areas-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}

.areas-header p {
    font-size: 0.85rem;
    /* Reduced 1 level */
    color: #9CA3AF;
    /* Softened from #6B7280 */
    max-width: 320px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    /* Concise authoritative weight */
    letter-spacing: -0.2px;
}

/* Grid & Actionable Cards */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 0;
    /* Explicitly zero bottom margin */
    padding-bottom: 0 !important;
    /* Force zero bottom padding */
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: visible;
    /* Ensure shadows don't clip */
}

/* Initial state for extra chips (n+5) - Animatable */
.area-chip:nth-child(n+5) {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border-width: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Expanded state for extra chips - Premium Staggered Flow */
.areas-grid.is-expanded .area-chip:nth-child(n+5),
.areas-grid.active-filtering .area-chip {
    max-height: 120px;
    opacity: 1;
    pointer-events: auto;
    padding: 16px;
    margin: 0;
    border-width: 1px;
    transform: translateY(0) scale(1);
    /* Scale unification */
}

/* Staggered Row Delays (Premium Cascading Effect) */
.areas-grid.is-expanded .area-chip:nth-child(5),
.areas-grid.is-expanded .area-chip:nth-child(6) {
    transition-delay: 0.05s;
}

.areas-grid.is-expanded .area-chip:nth-child(7),
.areas-grid.is-expanded .area-chip:nth-child(8) {
    transition-delay: 0.12s;
}

.areas-grid.is-expanded .area-chip:nth-child(9),
.areas-grid.is-expanded .area-chip:nth-child(10) {
    transition-delay: 0.19s;
}

/* Footer & Show More Button - Neutral Ghost Hierarchy */
.areas-footer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    /* Neutralized from -36px to prevent overlap */
    opacity: 0;
    transform: translateY(10px);
    z-index: 20;
    /* Ensure button sits above shadow effects */
}

.areas-footer.reveal-visible {
    animation: fadeInUpPremium 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

.btn-show-more {
    background: transparent;
    /* Neutral/Ghost style */
    border: 1px solid #E5E7EB;
    color: var(--red-brand);
    /* Changed to red as requested */
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    /* Increased weight for better contrast in red */
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: none;
}

.btn-show-more:hover {
    background: rgba(230, 57, 70, 0.05);
    /* Soft red tint */
    border-color: rgba(230, 57, 70, 0.3);
    color: #b91c1c;
    /* Darker red on hover */
    transform: translateY(-1px);
}

.btn-show-more:active {
    transform: scale(0.98) translateY(0);
    background: #F3F4F6;
}

/* Precise Chevron Rotation */
.areas-grid.is-expanded+.areas-footer .btn-show-more i {
    transform: rotate(180deg);
}


.area-chip {
    background: #FFFFFF;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Native Motion Base */
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    /* Discrete scale for depth */
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- MOTION: Reveal On Scroll Trigger --- */
.reveal-visible .area-chip {
    animation: fadeInUpPremium 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Header Element Staggering */
.reveal-visible .stagger-item {
    animation: fadeInUpPremium 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered Entrance (Native Feel) */
.area-chip:nth-child(1) {
    animation-delay: 0.1s;
}

.area-chip:nth-child(2) {
    animation-delay: 0.18s;
}

.area-chip:nth-child(3) {
    animation-delay: 0.26s;
}

.area-chip:nth-child(4) {
    animation-delay: 0.34s;
}

.area-chip:nth-child(5) {
    animation-delay: 0.42s;
}

.area-chip:nth-child(6) {
    animation-delay: 0.5s;
}

.area-chip:nth-child(7) {
    animation-delay: 0.58s;
}

.area-chip:nth-child(8) {
    animation-delay: 0.66s;
}

/* Actionable Tap Feedback: Tactile Native Feel */
.area-chip:active {
    transform: translateY(-1px) !important;
    /* Micro-lift */
    background: #FFFFFF;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    /* Precisely +10% boost */
    z-index: 10;
}

.area-chip:active .chip-icon-wrapper {
    opacity: 1;
    /* confirmations boost */
    background: rgba(39, 174, 96, 0.15);
}

.area-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    border-color: #E5E7EB;
}

/* Premium Search Matching Highlight */
.highlight-match {
    color: var(--red-brand);
    font-weight: 800;
}

/* Empty State / No Results */
.no-results-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: #F9FAFB;
    border-radius: 16px;
    border: 1px dashed #E5E7EB;
    animation: fadeInPremium 0.4s ease forwards;
}

@keyframes fadeInUpPremium {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInPremium {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-results-msg p {
    color: #6B7280;
    font-size: 0.95rem;
    margin: 0;
}

.no-results-msg a {
    color: var(--red-brand);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    padding-bottom: 2px;
    border-bottom: 2px solid rgba(230, 57, 70, 0.2);
}

/* Icon Wrapper */
.chip-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.08);
    /* Subtle glow bg */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-brand);
    font-size: 0.95rem;
    flex-shrink: 0;
    opacity: 0.85;
    /* Subtle base to allow 'solid' feedback on tap */
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.chip-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.city-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.2;
}

.availability-status {
    font-size: 0.75rem;
    color: var(--green-brand);
    font-weight: 500;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    height: 0;
    /* Hidden initially */
    overflow: hidden;
}

/* INTERACTIVE STATES */
.area-chip:active {
    transform: scale(0.97);
    /* Press effect */
}

/* Selected State (JS triggered class) */
.area-chip.selected {
    background: #e6f4ea;
    /* Light green tint */
    border-color: rgba(39, 174, 96, 0.3);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.15);
}

.area-chip.selected .chip-icon-wrapper {
    background: var(--green-brand);
    color: #fff;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.4);
}

.area-chip.selected .availability-status {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-top: 2px;
}

/* TOAST NOTIFICATION */
.confirmation-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    /* Hidden down */
    background: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
    width: 90%;
    max-width: 450px;
    border: 1px solid #eee;
}

.confirmation-toast.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-content p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
}

.btn-toast-action {
    background: var(--red-brand);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-toast-action:hover {
    background: var(--red-dark);
}

/* Mobile tweak for toast */
@media (max-width: 480px) {
    .confirmation-toast {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        border-radius: 16px;
        bottom: 10px;
    }

    .btn-toast-action {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

/* MODAL ENHANCEMENTS */
.modal-benefits-grid {
    display: flex;
    justify-content: space-around;
    margin: 15px 0 20px;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
}

.benefit-item i {
    font-size: 1.2rem;
    color: var(--green-brand);
    background: rgba(39, 174, 96, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.satisfaction-guarantee {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0fdf4;
    /* Light green tint */
    border: 1px solid #dcfce7;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.satisfaction-guarantee i {
    font-size: 1.5rem;
    color: var(--green-brand);
}

.satisfaction-guarantee p {
    margin: 0;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.3;
}

/* SEARCH BAR MAGIC */
.area-search-wrapper {
    position: relative;
    max-width: 450px;
    margin: 30px auto 20px;
    /* Increased top margin to separate from content */
    background: #f8f9fa;
    border-radius: 50px;
    padding: 2px;
}

.area-search-wrapper input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
    /* Clean white */
}

.area-search-wrapper input:focus {
    border-color: var(--green-brand);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.15);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.clear-search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s, transform 0.2s;
    z-index: 10;
}

.clear-search-icon:hover {
    color: #888;
    transform: translateY(-50%) scale(1.1);
}

/* Hide no results msg in original design */
.no-results-msg {
    display: none;
}

/* SEARCH CELEBRATION ANIMATION */
@keyframes celebrate-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

.area-chip.pulse-celebrate {
    animation: celebrate-pulse 0.8s ease-out;
    background: var(--green-brand);
    color: white;
    border-color: var(--green-brand);
}

.area-chip.pulse-celebrate i {
    color: white;
}

/* LIVE TICKER MAGIC */
.live-ticker-wrapper {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    opacity: 0.8;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #e74c3c;
    /* Live red */
    border-radius: 50%;
    animation: blink-live 1.5s infinite;
}

@keyframes blink-live {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

#live-ticker-text {
    transition: opacity 0.5s ease-in-out;
}

.fade-out {
    opacity: 0;
}

/* MOBILE PROCESS GRID OPTIMIZATION (3 Cols) */
@media (max-width: 768px) {
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
        /* Tighter gap */
    }

    .step-card {
        padding: 10px 5px;
        background: #f9f9f9;
        border-radius: 8px;
    }

    /* Reset span logic */
    .step-card:last-child {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }

    /* Hide connectors */
    .step-connector {
        display: none !important;
    }

    /* Mini Sizing */
    .step-icon-wrapper {
        margin-bottom: 8px;
    }

    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .step-number {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        top: -2px;
        right: -2px;
    }

    .step-card h4 {
        font-size: 0.85rem;
        /* Slightly smaller to prevent wrap */
        margin-bottom: 0;
        margin-top: 5px;
    }

    .step-card p {
        display: none !important;
        /* Hide description for cleaner look */
    }
}

/* TRUST STRIP (Gap Filler) */
.trust-strip {
    background: #fdfdfd;
    padding: 22px 20px;
    /* More breathing room */
    border-top: 1px solid #f2f4f7;
    border-bottom: 1px solid #f2f4f7;
    display: flex;
    justify-content: center;
}

.trust-strip-content {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Slightly more gap */
    flex-wrap: wrap;
    justify-content: center;
}

.trust-stars {
    color: #ffb703;
    /* Star yellow */
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.trust-strip p {
    margin: 0;
    font-size: 0.85rem;
    color: #444;
    /* Softer text */
    font-weight: 500;
    letter-spacing: 0.3px;
    /* Premium breathe space */
}

/* Zone Link (Interactive Magic) */
.zone-link {
    color: var(--green-brand);
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.2s;
    animation: pulseText 2s infinite;
}

.zone-link:hover {
    transform: scale(1.1);
    color: var(--green-dark);
}

@keyframes pulseText {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.trust-strip strong {
    color: var(--green-brand);
    font-weight: 700;
}

/* MODERN GALLERY GRID & DIAGONAL STYLE */
.gallery-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 side-by-side on mobile */
    gap: 15px;
    /* Smaller gap */
    padding: 10px 10px 40px;
    /* Space at bottom */
    overflow: visible;
    /* No scroll */
    scroll-snap-type: none;
}

.gallery-card {
    min-width: 0;
    /* Reset flex width */
    width: 100%;
    margin-right: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    /* Premium shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-dots {
    display: none !important;
    /* Hide dots */
}

/* DIAGONAL SPLIT VIEW */
.gallery-split-view {
    display: flex;
    width: 100%;
    height: 240px;
    position: relative;
    user-select: none;
    background: #f0f0f0;
}

.split-img {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Image 1 (Before) - Full width background */
.split-img:first-child {
    z-index: 1;
}

/* Image 2 (After) - Clipped diagonally overlaid */
.split-img:last-child {
    z-index: 2;
    clip-path: polygon(45% 0, 100% 0, 100% 100%, 30% 100%);
    /* Diagonal Slash */
    border-left: 3px solid #fff;
    /* White slash line attempt (border doesnt follow clip-path easily, minimal is fine) */
}

/* Add a white slash line using pseudo element if needed, but clip-path is clean enough */

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* GLASS LABELS */
.split-label {
    position: absolute;
    top: 15px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.15);
    /* Glass base */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 30px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    /* Blur effect */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.label-before {
    left: 15px;
}

.label-after {
    right: 15px;
    text-align: right;
}

/* Desktop Grid */
@media (min-width: 768px) {
    .gallery-carousel {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 0 50px;
    }

    .gallery-split-view {
        height: 260px;
    }
}

/* COMPACT MOBILE GALLERY CARD (Icon Button + Clean Layout) */
@media (max-width: 768px) {
    .gallery-info {
        flex-direction: row;
        /* Side by side */
        justify-content: space-between;
        align-items: center;
        padding: 8px 12px;
        gap: 8px;
        text-align: left;
    }

    .gallery-info div {
        flex: 1;
        /* Title takes space */
        min-width: 0;
        /* Allow truncation */
        text-align: left;
    }

    .gallery-info h4 {
        font-size: 0.8rem;
        margin: 0;
        line-height: 1.2;
        /* Truncate if too long */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .gallery-info p {
        display: none !important;
        /* Hide City/Details for clean look */
    }



    /* Circular Arrow Button */
    .btn-gallery-cta {
        width: 32px;
        height: 32px;
        min-width: 32px;
        /* Prevent shrinking */
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0;
        /* Hide text "Ver Precio" */
        background: var(--red-brand);
        /* Uses brand red */
    }

    .btn-gallery-cta i {
        font-size: 0.9rem;
        /* Show Icon */
        margin: 0;
    }
}


/* GUARANTEE STRIP (Moved to Global) */
/* GUARANTEE STRIP (Compact App Features) */
.guarantee-strip {
    margin: 0 auto 10px;
    /* Removed vertical white gap */
    width: 95%;
    max-width: 1100px;
    background: transparent;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    /* Tighter gap */
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
    transform: translateY(20px);
}

.guarantee-item {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    color: #fff;
    padding: 10px 16px;
    /* High compactness */
    border-radius: 16px;
    /* Tighter refined radius */
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.15);
    /* Lighter shadow base */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    flex: 1;
    min-width: 240px;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    /* Breathing Animation */
    animation: breathingGlow 8s ease-in-out infinite;
}

/* Typography for new copy */
.g-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.g-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.g-sub {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 0.2px;
}

/* Shine breathing effect */
@keyframes breathingGlow {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(27, 67, 50, 0.15);
        border-color: rgba(255, 255, 255, 0.08);
    }

    50% {
        box-shadow: 0 8px 20px rgba(45, 106, 79, 0.3);
        /* Subtle green glow */
        border-color: rgba(255, 255, 255, 0.2);
    }
}

/* Passing Shine Overlay */
.guarantee-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    /* Start off-screen */
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    animation: passingShine 6s infinite;
    pointer-events: none;
}

@keyframes passingShine {

    0%,
    80% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.guarantee-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.25);
    filter: brightness(1.05);
}

.guarantee-item:active {
    transform: scale(0.98);
}

/* Icon Wrapper: Smaller, refined */
.guarantee-item i {
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.guarantee-idivider {
    display: none;
}

@media (max-width: 768px) {
    .guarantee-strip {
        /* Horizontal Scroll Layout */
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        /* Prevent wrapping */
        overflow-x: auto;
        /* Enable scroll */
        gap: 12px;
        padding: 0 20px;
        /* Safe padding */
        justify-content: flex-start;
        /* Align start for scroll */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Hide scrollbar */
    }

    .guarantee-strip::-webkit-scrollbar {
        display: none;
    }

    .guarantee-item {
        /* Fixed/Min width for cards */
        flex: 0 0 auto;
        width: auto;
        min-width: 0;
        /* Override previous */
        max-width: none;
        padding: 12px 20px;
        font-size: 0.85rem;
        box-shadow: 0 4px 10px rgba(27, 67, 50, 0.1);
        /* Lighter shadow */
    }
}


/* INFO MODAL (Simple Popup) */
.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.info-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.info-modal-content {
    background: #fff;
    width: 90%;
    max-width: 350px;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.info-modal.active .info-modal-content {
    transform: translateY(0);
}

.info-modal-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--green-brand);
}

.info-modal-icon i {
    color: inherit;
}

.info-modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #222;
}

.info-modal-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

.modal-close-simple {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #aaa;
    cursor: pointer;
}

.btn-primary-small {
    background: var(--green-brand);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

/* UBER-STYLE COVERAGE BAR */
.coverage-bar {
    margin: 25px auto 35px;
    width: 95%;
    max-width: 1100px;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(27, 67, 50, 0.2);
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

.coverage-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
}

.coverage-scroll {
    display: flex;
    gap: 15px;
    /* Consistent gap */
    overflow-x: auto;
    padding: 0 30px;
    /* EXTRA generous side padding to ensure first/last are fully visible */
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    align-items: center;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    mask-image: none;
    -webkit-mask-image: none;
}

.coverage-scroll::-webkit-scrollbar {
    display: none;
}

.city-chip {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    cursor: grab;
    /* Better cursor */

    /* Scroll & Layout Fixes - ENFORCE NO SQUISH */
    flex: 0 0 auto;
    /* Shorthand for flex-grow 0, flex-shrink 0, flex-basis auto. stronger than shrink:0 */
    width: auto;
    max-width: none;
    /* remove fit-content to be safe */
    scroll-snap-align: center;
    margin-right: 0;
}

.city-chip i {
    color: #4ade80;
    font-size: 0.85rem;
}

.city-chip:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-see-zones {
    background: #fff;
    color: var(--green-brand);
    padding: 10px 22px;
    /* Bigger button */
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(255, 255, 255, 0.3);
    /* Subtle glow border */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.btn-see-zones:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    background: #f8f9fa;
}

.btn-see-zones:active {
    transform: scale(0.95);
}

.btn-see-zones i {
    transition: transform 0.3s ease;
}

.btn-see-zones:hover i {
    transform: translateX(3px);
}

@keyframes pulseCta {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-see-zones {
    animation: pulseCta 3s infinite;
}

/* CATALOG DISCOVERY BANNER */
.discovery-banner {
    margin: 40px auto 20px;
    max-width: 1100px;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.25);
    display: block;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .banner-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.banner-info {
    flex: 1;
}

.banner-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    color: #fff !important;
    border: none !important;
    background: none !important;
}

.banner-info p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 500px;
    color: #fff !important;
}

.btn-discovery {
    background: #fff;
    color: var(--green-brand) !important;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-discovery:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    background: #f8f9fa;
    color: var(--green-brand) !important;
}

.banner-bg-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

/* --- DISCOVERY BRIDGE V3 (Organized Premium) --- */
.discovery-bridge {
    position: relative;
    background: #fdfdfd;
    /* Fallback */
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    overflow: hidden;
}

/* Subtle Animated Mesh Background */
.bridge-bg-mesh {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(45, 106, 79, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 183, 3, 0.05) 0%, transparent 30%);
    animation: bgRotate 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes bgRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bridge-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Updated Icon - Cleaner */
.bridge-icon-premium {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06), inset 0 2px 5px rgba(255, 255, 255, 0.8);
    border: 1px solid #fff;
}

.icon-inner {
    font-size: 1.8rem;
    color: #334155;
}

.discovery-bridge h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    font-family: var(--font-heading, sans-serif);
    letter-spacing: -0.5px;
}

.discovery-bridge p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.5;
}

.btn-bridge-green {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border: 2px solid #2D6A4F;
    color: #2D6A4F;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-bottom: 40px;
    /* Space for tags below */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.btn-bridge-green:hover {
    background: #2D6A4F;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.2);
}

/* Organized Tags Grid */
.bridge-tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
}

.bridge-tag {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: all 0.2s;
    cursor: default;
}

.bridge-tag:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    color: #334155;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* =========================================
   PREMIUM INCLUDES GRID (Redesign)
   ========================================= */
#modal-include-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
    list-style: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

#modal-include-list li {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    cursor: default;
    /* No pointer */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Remove hover scale/shadow intensity for static view */
#modal-include-list li:hover {
    border-color: #e0e0e0;
}

/* Icon Styling */
#modal-include-list li i.fa-check {
    background: #e9f5ec;
    color: #2D6A4F;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

/* Content Wrapper */
.include-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Title Styling */
.include-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #111;
    line-height: 1.35;
    margin-bottom: 8px;
    /* Space before detail */
}

/* Dropdown/Detail Styling - STATIC VISIBLE */
.include-detail {
    display: block;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    opacity: 1;
    margin-top: 0;
    /* Optional separator */
    border-top: 1px solid #f9f9f9;
    padding-top: 8px;
}

/* ========================================
   UNIFIED BADGE SYSTEM
   ======================================== */

/* Time Badges (1h, 2-3h) */
.badge-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(45, 106, 79, 0.12);
    /* Green tint */
    color: var(--green-brand);
    padding: 4px 10px;
    border-radius: var(--radius-badge);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

/* TOP/Featured Badges */
.badge-top {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--red-brand);
    color: var(--bg-white);
    padding: 4px 10px;
    border-radius: var(--radius-badge);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Rating Badges */
.badge-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-white);
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: var(--radius-badge);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    box-shadow: var(--badge-shadow);
}

.badge-rating .star-icon {
    color: #FFA500;
    /* Orange star */
    font-size: 0.7rem;
}

/* Badge Container for Cards */
.card-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
}

/* Review Navigation Buttons Hidden on Mobile (Base) */
.review-nav-btn,
.modal-review-nav {
    display: none;
}