/* ============================================
   HOMEPAGE CSS - Mobile-First Approach
   Based on WEB_4_0_MOBILE_FIRST_GUIDE
   ============================================ */

/* CSS Variables - Breakpoints & Design Tokens */
:root {
    /* Breakpoints */
    --bp-xs: 0;
    --bp-sm: 576px;
    --bp-md: 768px;
    --bp-lg: 992px;
    --bp-xl: 1200px;
    --bp-xxl: 1400px;

    /* Colors */
    --color-primary: #e22721;
    --color-primary-dark: #c91f1a;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-text-muted: #9ca3af;
    --color-bg: #ffffff;
    --color-bg-alt: #f9fafb;
    --color-border: #e5e7eb;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Touch targets */
    --touch-target-min: 48px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header sticky fix */
#header-placeholder {
    position: sticky;
    top: 0;
    z-index: 100;
}

/* BASE STYLES - Mobile Default */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    padding: 0 var(--space-md);
    -webkit-text-size-adjust: 100%;
}

/* Touch-friendly elements */
button,
.btn,
input[type="submit"],
input[type="button"] {
    min-height: var(--touch-target-min);
    min-width: var(--touch-target-min);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Prevent iOS zoom on input focus */
input,
select,
textarea {
    font-size: 16px;
    min-height: var(--touch-target-min);
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    body {
        font-size: 17px;
        padding: 0 var(--space-lg);
    }

    .container {
        max-width: 720px;
        padding: 0 var(--space-lg);
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    body {
        font-size: 18px;
        padding: 0 var(--space-xl);
    }

    .container {
        max-width: 960px;
    }
}

/* Large Desktop (min-width: 1200px) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* XXL (min-width: 1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* HERO SECTION */
.hero {
    background: #ffffff;
    padding: 80px 0;
}

/* ============================================
   HERO SPLIT LAYOUT - Homepage (Mobile-First)
   ============================================ */
.hero-split {
    background: linear-gradient(135deg, #fafafa 0%, #f3f4f6 100%);
    display: flex;
    align-items: center;
    padding: 40px 0;
    min-height: auto;
    overflow: hidden;
}

.hero-split-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .hero-split {
        padding: 60px 0;
    }

    .hero-split-container {
        padding: 0 var(--space-lg);
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .hero-split-container {
        max-width: 1300px;
        padding: 0 40px;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: left;
    }
}

/* Left Content - Mobile First */
.hero-split-content {
    max-width: 100%;
    order: 1;
}

.hero-badge-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--color-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.hero-badge-home svg {
    color: var(--color-primary);
}

/* Mobile: smaller title */
.hero-split-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.hero-split-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .hero-split-title {
        font-size: 36px;
    }

    .hero-split-subtitle {
        font-size: 18px;
        margin-bottom: var(--space-xl);
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .hero-split-content {
        max-width: 580px;
        order: 0;
    }

    .hero-split-title {
        font-size: 52px;
        margin-bottom: 20px;
    }
}

/* Search Form - Mobile First */
.hero-search-form {
    background: white;
    border-radius: 16px;
    padding: var(--space-md);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: var(--space-lg);
}

/* Mobile: single column */
.hero-search-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: var(--space-md);
}

.hero-search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 14px 16px;
    min-height: var(--touch-target-min);
    transition: all 0.2s ease;
}

.hero-search-field:focus-within {
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(226, 39, 33, 0.1);
}

.hero-search-field input,
.hero-search-field select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px; /* Prevents iOS zoom */
    color: #111827;
    outline: none;
    min-height: auto;
}

.hero-search-field input::placeholder {
    color: var(--color-text-muted);
}

.hero-search-field select {
    cursor: pointer;
}

.hero-search-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: var(--touch-target-min);
    transition: all 0.3s ease;
}

.hero-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 39, 33, 0.3);
    color: white;
    text-decoration: none;
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .hero-search-form {
        padding: var(--space-lg);
    }

    .hero-search-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Quick Tags - Mobile First */
.hero-quick-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: var(--space-lg);
    justify-content: center;
}

.hero-tags-label {
    font-size: 13px;
    color: var(--color-text-muted);
    width: 100%;
    text-align: center;
}

.hero-quick-tags a {
    background: white;
    border: 1px solid var(--color-border);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    color: #4b5563;
    text-decoration: none;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.hero-quick-tags a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Trust Stats - Mobile First */
.hero-trust-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.hero-trust-number {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.hero-trust-label {
    font-size: 11px;
    color: var(--color-text-muted);
}

/* Hide divider on mobile */
.hero-trust-divider {
    display: none;
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .hero-trust-number {
        font-size: 24px;
    }

    .hero-trust-label {
        font-size: 12px;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .hero-quick-tags {
        justify-content: flex-start;
    }

    .hero-tags-label {
        width: auto;
        text-align: left;
    }

    .hero-trust-stats {
        justify-content: flex-start;
        gap: var(--space-lg);
    }

    .hero-trust-item {
        align-items: flex-start;
    }

    .hero-trust-divider {
        display: block;
        width: 1px;
        height: 40px;
        background: var(--color-border);
    }
}

/* Right Image - Mobile First */
.hero-split-image {
    position: relative;
    order: 0;
}

.hero-split-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Hide floating card on mobile */
.hero-image-card {
    display: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: #ecfdf5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-text {
    display: flex;
    flex-direction: column;
}

.hero-card-text strong {
    font-size: 14px;
    color: #111827;
}

.hero-card-text span {
    font-size: 12px;
    color: var(--color-text-light);
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .hero-split-image img {
        height: 350px;
        border-radius: 20px;
    }

    .hero-image-card {
        display: flex;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        border-radius: 16px;
        padding: 16px 20px;
        align-items: center;
        gap: 14px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .hero-split-image img {
        height: 500px;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

    .hero-image-card {
        bottom: 30px;
        left: -30px;
        transform: none;
        animation: float 3s ease-in-out infinite;
    }
}

/* Large Desktop (min-width: 1200px) */
@media (min-width: 1200px) {
    .hero-split-image img {
        height: 600px;
    }
}

/* Hero Title - Mobile First */
.hero h1 {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: var(--space-xl);
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero .subtitle {
        font-size: 20px;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .hero h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .hero .subtitle {
        font-size: 24px;
        margin-bottom: 40px;
    }
}

/* SEARCH BAR - Mobile First */
.search-container {
    background: white;
    padding: var(--space-md);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.search-input, .search-select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 16px; /* Prevents iOS zoom */
    min-height: var(--touch-target-min);
    transition: border-color 0.3s;
}

.search-input:focus, .search-select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.search-btn {
    width: 100%;
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 15px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    min-height: var(--touch-target-min);
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 39, 33, 0.3);
    text-decoration: none;
}

.search-btn:active {
    transform: translateY(0);
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .search-container {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 28px;
    }

    .search-input, .search-select {
        flex: 1;
        min-width: 200px;
        width: auto;
    }

    .search-btn {
        width: auto;
        padding: 15px 40px;
        font-size: 18px;
    }
}

/* QUICK LINKS */
.quick-links {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.quick-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    transition: all 0.3s;
}

.quick-links a:hover {
    background: rgba(255,255,255,0.95);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ====================================== */
/* BRAND STRIP - Logo Grande (Mobile-First) */
/* ====================================== */

.brand-strip {
    background: white;
    padding: 32px 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.brand-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(226, 39, 33, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(226, 39, 33, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.brand-strip-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

/* Mobile: smaller logo */
.brand-logo-large {
    width: 180px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.brand-logo-large:hover {
    transform: scale(1.02);
}

.brand-logo-large svg {
    width: 100%;
    height: auto;
}

.brand-strip-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.brand-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin: 0;
    text-align: center;
}

/* Hide divider on mobile */
.brand-divider {
    display: none;
}

.brand-auth {
    font-size: 12px;
    color: var(--color-text-light);
    margin: 0;
    text-align: center;
}

.brand-strip-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: var(--space-sm);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    padding: 8px 16px;
    background: var(--color-bg-alt);
    border-radius: 100px;
    border: 1px solid var(--color-border);
    min-height: 40px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: white;
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(226, 39, 33, 0.1);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .brand-strip {
        padding: 40px 0;
    }

    .brand-logo-large {
        width: 220px;
    }

    .brand-strip-content {
        gap: var(--space-lg);
    }

    .brand-strip-info {
        flex-direction: row;
        gap: var(--space-md);
    }

    .brand-divider {
        display: block;
        width: 1px;
        height: 20px;
        background: #d1d5db;
    }

    .brand-tagline {
        font-size: 18px;
    }

    .brand-auth {
        font-size: 13px;
    }

    .trust-item {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .brand-strip {
        padding: 50px 0;
    }

    .brand-logo-large {
        width: 280px;
    }

    .brand-strip-trust {
        gap: 32px;
    }
}

/* STATS SECTION - Modern Card Design (Mobile-First) */
.stats {
    background: var(--color-bg-alt);
    padding: 40px 0;
}

/* Modern Stats Card - Mobile First */
.stats-card {
    background: white;
    border-radius: 16px;
    padding: var(--space-lg);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    max-width: 100%;
    margin: 0 auto;
}

/* Mobile: single column */
.stats-grid-modern {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.stat-item-modern {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 10px;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.stat-item-modern:hover {
    background: var(--color-bg-alt);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number-modern {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.stat-label-modern {
    font-size: 13px;
    color: var(--color-text-light);
}

/* Hide divider on mobile */
.stat-divider {
    display: none;
}

/* Small devices (min-width: 576px) */
@media (min-width: 576px) {
    .stats-grid-modern {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item-modern {
        flex: 0 0 calc(50% - var(--space-md));
    }
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .stats {
        padding: 50px 0;
    }

    .stats-card {
        padding: 32px 40px;
        border-radius: 20px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-number-modern {
        font-size: 28px;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .stats {
        padding: 60px 0;
    }

    .stats-card {
        padding: 40px 50px;
        max-width: 1150px;
    }

    .stats-grid-modern {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .stat-item-modern {
        flex: 1;
    }

    .stat-divider {
        display: block;
        width: 1px;
        height: 50px;
        background: var(--color-border);
        flex-shrink: 0;
    }
}

/* Legacy support - Mobile First */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Small devices (min-width: 576px) */
@media (min-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.stat-item {
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #e22721;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

/* REVIEWS - Modern Design (Mobile-First) */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 500px;
    margin: 0 auto;
}

.review-card-modern {
    background: white;
    border-radius: 16px;
    padding: var(--space-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.review-text-modern {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: var(--space-md);
}

.review-author-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: var(--space-md);
    border-top: 1px solid #f3f4f6;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: var(--color-text);
    font-size: 14px;
}

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

.review-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.review-rating .stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
        max-width: 800px;
    }

    .review-card-modern {
        padding: 28px;
    }

    .review-text-modern {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .review-avatar {
        width: 48px;
        height: 48px;
    }

    .review-name {
        font-size: 15px;
    }

    .review-meta {
        font-size: 13px;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 1100px;
    }
}

/* Google Stars Animation */
.stars-container {
    display: inline-flex;
    gap: 2px;
}

.star {
    color: #fbbf24;
    font-size: 20px;
    opacity: 0;
    animation: starPop 0.3s ease forwards;
}

@keyframes starPop {
    0% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(90deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

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

/* REVIEWS */
.review-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards;
}

.review-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-stars {
    color: #fbbf24;
    font-size: 18px;
}

.review-text {
    font-style: italic;
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.5;
}

.review-author {
    color: #6b7280;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 8px;
    background: #f3f4f6;
    border-radius: 4px;
    font-size: 11px;
    color: #6b7280;
}

/* HOW IT WORKS - Mobile First */
.how-it-works {
    background: #ffffff;
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: var(--space-xl);
    color: var(--color-text);
}

/* Mobile: single column */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.step-card {
    text-align: center;
    padding: var(--space-lg);
}

.step-icon {
    font-size: 40px;
    margin-bottom: var(--space-md);
}

.step-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--color-text);
}

.step-desc {
    color: var(--color-text-light);
    font-size: 15px;
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .step-icon {
        font-size: 48px;
    }

    .step-title {
        font-size: 22px;
    }

    .step-desc {
        font-size: 16px;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .how-it-works {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .step-card {
        padding: 30px;
    }

    .step-title {
        font-size: 24px;
    }
}

/* MAP SECTION - Modern Design (Mobile-First) */
.map-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* City Cards Grid - Mobile First */
.city-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .map-section {
        padding: 60px 0;
    }

    .city-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .map-section {
        padding: 80px 0;
    }

    .city-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.city-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.city-card:hover {
    border-color: #e22721;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.city-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.city-card-header h3 {
    color: #1f2937;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.city-badge {
    background: #e22721;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.city-address {
    color: #4b5563;
    font-size: 14px;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.city-region {
    color: #9ca3af;
    font-size: 13px;
    margin: 0;
}

/* CTA Card */
.city-card-cta {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #fecaca;
}

.city-card-cta:hover {
    border-color: #e22721;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.city-card-cta h3 {
    color: #e22721;
}

.city-cta-text {
    color: #e22721;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.city-card-cta .city-region {
    color: #e22721;
    opacity: 0.7;
}

.map-placeholder {
    background: #e5e7eb;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #6b7280;
    margin-bottom: 40px;
}

.cities-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cities-list a {
    color: #e22721;
    text-decoration: none;
    font-weight: 500;
}

/* CTA SECTION - Mobile First */
.cta {
    background: #fee2e2;
    padding: 40px 0;
    text-align: center;
}

.cta h2 {
    font-size: 24px;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.cta p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.cta-btn {
    display: inline-block;
    background: var(--color-text);
    color: white;
    padding: 15px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    min-height: var(--touch-target-min);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #111827;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 30px;
    }

    .cta p {
        font-size: 18px;
    }

    .cta-btn {
        padding: 15px 40px;
        font-size: 18px;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .cta {
        padding: 80px 0;
    }

    .cta h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .cta p {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

/* Additional button animations - already defined in base styles */

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

.timeline-step:hover {
    transform: translateY(-5px) !important;
}

.timeline-step:hover > div:first-child {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* ========================================
   IMAGE PLACEHOLDERS & NEW SECTIONS
   Design Principles 2025
   ======================================== */

/* Image Placeholder Base Style */
.img-placeholder {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.4) 50%,
        transparent 100%
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.img-placeholder .size-label {
    position: relative;
    z-index: 1;
    background: rgba(0,0,0,0.1);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: monospace;
}

/* HERO WITH BACKGROUND IMAGE - Mobile First */
.hero-with-image {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Mobile: gradient from top to bottom */
.hero-bg-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    text-align: center;
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .hero-with-image {
        min-height: 500px;
    }

    .hero-bg-placeholder::after {
        background: linear-gradient(
            to right,
            rgba(255,255,255,0.95) 0%,
            rgba(255,255,255,0.8) 50%,
            rgba(255,255,255,0.4) 100%
        );
    }

    .hero-content {
        max-width: 600px;
        text-align: left;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .hero-with-image {
        min-height: 550px;
    }
}

/* BENTO GRID - Team Section (Mobile-First) */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--space-md);
}

.bento-item {
    background: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Mobile: all items same size */
.bento-item--large,
.bento-item--wide,
.bento-item--tall {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item .img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.bento-item .bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.bento-item .bento-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.bento-item .bento-content p {
    font-size: 13px;
    opacity: 0.9;
}

/* Small devices (min-width: 576px) */
@media (min-width: 576px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-item--large {
        grid-column: span 2;
        min-height: 250px;
    }

    .bento-item--wide {
        grid-column: span 2;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 200px);
        gap: 16px;
    }

    .bento-item--large {
        grid-column: span 2;
        grid-row: span 2;
        min-height: auto;
    }

    .bento-item--wide {
        grid-column: span 2;
    }

    .bento-item--tall {
        grid-row: span 2;
    }

    .bento-item {
        min-height: auto;
    }

    .bento-item .bento-content {
        padding: 20px;
    }

    .bento-item .bento-content h3 {
        font-size: 18px;
    }

    .bento-item .bento-content p {
        font-size: 14px;
    }
}

/* SECTORS/INDUSTRIES SECTION - Mobile First */
.sectors-section {
    padding: 40px 0;
    background: #ffffff;
}

/* Mobile: single column, 16:9 aspect ratio */
.sectors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.sector-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sector-card:hover {
    transform: scale(1.03);
}

.sector-card .img-placeholder {
    width: 100%;
    height: 100%;
}

.sector-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.sector-card .sector-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    z-index: 1;
    color: white;
}

.sector-card .sector-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.sector-card .sector-content p {
    font-size: 13px;
    opacity: 0.9;
}

/* Small devices (min-width: 576px) */
@media (min-width: 576px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .sector-card {
        aspect-ratio: 1;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .sectors-section {
        padding: 80px 0;
    }

    .sectors-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .sector-card .sector-content {
        padding: 20px;
    }

    .sector-card .sector-content h3 {
        font-size: 20px;
    }

    .sector-card .sector-content p {
        font-size: 14px;
    }
}

/* CHI SIAMO SECTION - Mobile First */
.chi-siamo-section {
    padding: 40px 0;
    background: var(--color-bg-alt);
}

/* Mobile: single column, image first */
.chi-siamo-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.chi-siamo-image {
    order: -1;
}

.chi-siamo-text h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.chi-siamo-text p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.chi-siamo-image .img-placeholder {
    width: 100%;
    height: 250px;
    border-radius: 12px;
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .chi-siamo-section {
        padding: 60px 0;
    }

    .chi-siamo-text h2 {
        font-size: 30px;
    }

    .chi-siamo-text p {
        font-size: 17px;
    }

    .chi-siamo-image .img-placeholder {
        height: 300px;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .chi-siamo-section {
        padding: 80px 0;
    }

    .chi-siamo-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .chi-siamo-image {
        order: 0;
    }

    .chi-siamo-text h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .chi-siamo-text p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .chi-siamo-image .img-placeholder {
        height: 400px;
    }
}

/* HOW IT WORKS WITH IMAGES - Mobile First */
.how-it-works-enhanced {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.how-it-works-image {
    order: -1;
}

.how-it-works-image .img-placeholder {
    width: 100%;
    height: 250px;
    border-radius: 12px;
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .how-it-works-enhanced {
        gap: 40px;
        margin-bottom: 40px;
    }

    .how-it-works-image .img-placeholder {
        height: 300px;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .how-it-works-enhanced {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-bottom: 60px;
    }

    .how-it-works-image {
        order: 0;
    }

    .how-it-works-image .img-placeholder {
        height: 450px;
    }
}

/* IMAGE ZOOM EFFECT */
.img-zoom {
    overflow: hidden;
}

.img-zoom img,
.img-zoom .img-placeholder {
    transition: transform 0.5s ease;
}

.img-zoom:hover img,
.img-zoom:hover .img-placeholder {
    transform: scale(1.05);
}

/* ========================================
   STEPS BENTO GRID - How It Works Section (Mobile-First)
   ======================================== */

/* Mobile: single column */
.steps-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.step-bento-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    min-height: 220px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step-bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Mobile: all cards same height */
.step-bento-card--large {
    grid-row: span 1;
    min-height: 260px;
}

.step-bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.1) 100%
    );
    transition: background 0.3s ease;
}

.step-bento-card:hover .step-bento-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.2) 100%
    );
}

.step-bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    color: white;
    z-index: 1;
}

.step-bento-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.step-bento-card--large .step-bento-number {
    width: 50px;
    height: 50px;
}

.step-bento-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.step-bento-card--large .step-bento-content h3 {
    font-size: 20px;
}

.step-bento-content p {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 100%;
}

.step-bento-card--large .step-bento-content p {
    font-size: 14px;
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .steps-bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 220px);
        gap: 20px;
        margin-bottom: 40px;
    }

    .step-bento-card {
        min-height: auto;
    }

    .step-bento-card--large {
        grid-row: span 2;
        min-height: auto;
    }

    .step-bento-content {
        padding: 20px;
    }

    .step-bento-number {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .step-bento-card--large .step-bento-number {
        width: 60px;
        height: 60px;
    }

    .step-bento-content h3 {
        font-size: 20px;
    }

    .step-bento-card--large .step-bento-content h3 {
        font-size: 24px;
    }

    .step-bento-content p {
        font-size: 14px;
        max-width: 280px;
    }

    .step-bento-card--large .step-bento-content p {
        font-size: 15px;
        max-width: 350px;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .steps-bento-grid {
        margin-bottom: 60px;
    }

    .step-bento-content {
        padding: 24px;
    }

    .step-bento-content h3 {
        font-size: 22px;
    }

    .step-bento-card--large .step-bento-content h3 {
        font-size: 28px;
    }

    .step-bento-content p {
        font-size: 14px;
    }

    .step-bento-card--large .step-bento-content p {
        font-size: 16px;
    }
}
