/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4A90E2;
    --primary-light: #87CEEB;
    --primary-dark: #2E5E9E;
    --secondary-color: #FFD700;
    --secondary-light: #FFF34D;
    --secondary-dark: #E6C200;
    --accent-color: #B3E5FC;
    --text-dark: #1A365D;
    --text-light: #4A5568;
    --text-blue: #2E5E9E;
    --bg-light: #F7FCFF;
    --bg-white: #FFFFFF;
    --bg-blue-light: #E3F2FD;
    --bg-yellow-light: #FFFDE7;
    --shadow: 0 4px 6px rgba(74, 144, 226, 0.1);
    --shadow-lg: 0 10px 30px rgba(74, 144, 226, 0.15);
    --border-light: #E3F2FD;
    --spain-red: #4A90E2;
    --spain-yellow: #FFD700;
    --guiri-pink: #87CEEB;
}

body {
    font-family: 'Inter', sans-serif;
    background: white;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.cta-button {
    background: var(--primary-color);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(-45deg, #f8f9fa, #e3f2fd, #fff3e0, #f3e5f5);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding-top: 80px;
    height: 100vh;
    height: 100svh; /* Use small viewport height for better mobile support */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1rem, 3vh, 2rem) 0 clamp(1rem, 2vh, 3rem);
    text-align: center;
    height: calc(100vh - 80px);
    height: calc(100svh - 80px);
    overflow: hidden;
    box-sizing: border-box;
}

.hero-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
    margin-bottom: clamp(0.5rem, 2vh, 1.5rem);
    max-width: min(1000px, 95vw);
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-photo {
    width: clamp(200px, 20vw, 250px);
    height: clamp(240px, 25vh, 300px);
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-photo:hover {
    transform: scale(1.02);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-photo {
    width: clamp(200px, 20vw, 250px);
    height: clamp(240px, 25vh, 300px);
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-photo:hover {
    transform: scale(1.02);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: clamp(0.5rem, 1vh, 1rem);
    color: var(--primary-color);
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    max-width: min(800px, 90vw);
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--primary-color);
    display: inline;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-light);
    max-width: min(600px, 85vw);
    margin: clamp(1rem, 3vh, 3rem) auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    margin-bottom: clamp(0.5rem, 2vh, 1.5rem);
    padding: clamp(1rem, 2vh, 2rem) clamp(0.5rem, 2vw, 1.5rem);
    background: rgba(255, 255, 255, 0.95);
    border-radius: clamp(15px, 3vw, 20px);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.15);
    border: 2px solid rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.stat {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

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

.stat-number {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
}

.stat-label {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    color: var(--text-light);
}

.highlight-stat {
    position: relative;
}

.stat-flag {
    display: block;
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.hero-cta {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: clamp(0.75rem, 1.5vh, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.scroll-down-arrow {
    position: absolute;
    bottom: 7.5px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    animation: bounce 2s infinite;
    z-index: 100;
}

.scroll-down-arrow span {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.scroll-down-arrow:hover span {
    background: var(--primary-color);
    color: white;
    transform: translateY(3px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.brand-partners {
    margin-top: clamp(0.25rem, 1vh, 0.5rem);
    text-align: center;
    flex-shrink: 0;
}

.partners-intro {
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
    color: var(--text-light);
    margin-bottom: clamp(0.5rem, 1vh, 1rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
}

.partner-logo {
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.problem-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

/* Minimal Services Header */
.services-header-enhanced {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.services-content-overlay {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.services-main-content h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.services-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    text-align: center;
}

.services-social-proof {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.proof-stat {
    background: var(--bg-light);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    border: 2px solid #E9ECEF;
}

.proof-number {
    display: inline;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.proof-label {
    display: inline;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.services-side-image {
    text-align: center;
}

.side-image {
    width: 100%;
    max-width: 1000px;
    min-width: 600px;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.image-caption {
    display: none;
}

/* Legacy support */
.services-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.services-content h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.services-image {
    position: relative;
}

.services-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.services-grid-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card-new {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #E9ECEF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card-new.featured-new {
    border-color: var(--primary-color);
    transform: scale(1.02);
    background: white;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.1);
}

.service-level {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    background: #F8F9FA;
    color: #6C757D;
}

.service-level.popular {
    background: var(--primary-color);
    color: white;
}

.service-level.premium {
    background: var(--text-light);
    color: white;
}

.savings-badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.2);
}

.promo-banner {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    transform: rotate(5deg);
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: rotate(5deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.05); }
    100% { transform: rotate(5deg) scale(1); }
}

.price-section {
    text-align: center;
    margin: 1.5rem 0;
}

.price-main {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-subtitle {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.price-comparison {
    display: block;
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.price-original {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.booking-price-original {
    font-size: 1.8rem;
    font-weight: 500;
    color: #999 !important;
    text-decoration: line-through;
    margin: 0.25rem 0 !important;
    line-height: 1;
}

.package-description {
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.benefits-list li {
    padding: 0.4rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-cta-new {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.service-cta-new {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.service-cta-new:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--text-blue));
    transform: translateY(-2px);
}

.featured-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.featured-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--text-blue)) !important;
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.premium-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light)) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.premium-btn:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color)) !important;
    box-shadow: 0 6px 20px rgba(111, 66, 193, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border: 2px solid #E9ECEF;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.service-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    white-space: nowrap;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.booking-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.booking-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Service Network Section */
.network-section {
    padding: 5rem 0;
    background: white;
}

.network-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.network-value-prop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.5;
}

.services-categories {
    margin-bottom: 4rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    background: var(--bg-light);
    border: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.tab-button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-button:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.service-category {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.service-category.active {
    display: block;
}

.service-category h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.service-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.service-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-item p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-pain {
    display: block;
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.network-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-light), white);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.network-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.network-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.network-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.network-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

/* Cost Perspective Section */
.perspective-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.perspective-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.perspective-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.perspective-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.cost-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.cost-column {
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
}

.cost-column.expensive {
    background: linear-gradient(135deg, var(--bg-blue-light), var(--accent-color));
    border: 2px solid #ff6b6b;
}

.cost-column.smart {
    background: linear-gradient(135deg, var(--bg-yellow-light), var(--secondary-light));
    border: 2px solid #28a745;
}

.cost-column h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cost-items {
    margin-bottom: 2rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    gap: 1rem;
}

.cost-amount {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    white-space: nowrap;
}

.cost-desc {
    flex: 1;
    text-align: left;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.cost-item.stress .cost-amount,
.cost-item.peace .cost-amount {
    font-size: 1.5rem;
}

.total-cost {
    background: #ff6b6b;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
}

.total-savings {
    background: #28a745;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
}

.perspective-reality {
    margin-bottom: 3rem;
}

.perspective-reality h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.reality-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.reality-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.reality-item p {
    color: var(--text-dark);
    font-weight: 500;
}

.perspective-cta {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.cta-emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
}

.perspective-button {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.perspective-button:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-features {
    margin-top: 2rem;
}

.feature {
    padding: 1rem 0;
    border-bottom: 1px solid #E9ECEF;
}

.feature strong {
    color: var(--primary-color);
}

strong, b {
    color: var(--primary-color);
    font-weight: 700;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Process Section */
.process-section {
    padding: 5rem 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.testimonial cite {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-light);
}

/* Success Stories Section */
.success-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.success-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.privacy-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.metric {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.metric-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
    white-space: nowrap;
}

.metric-label {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
}

.transformation-stories-carousel {
    position: relative;
    margin-bottom: 3rem;
    padding: 0 3rem;
}

.transformation-stories {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
}

.transformation-stories::-webkit-scrollbar {
    height: 8px;
}

.transformation-stories::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.transformation-stories::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.transformation-stories::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 1.33rem);
    scroll-snap-align: start;
    min-width: 320px;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.story-card.featured-story {
    border: 2px solid var(--primary-color);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.story-info h4 {
    margin: 0;
    color: var(--text-dark);
}

.story-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.story-quote {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.story-result {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, var(--primary-color), #A91932);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.urgency-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.urgency-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.urgency-cta {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.urgency-cta:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slots-counter {
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Authority Section */
.authority-section {
    padding: 4rem 0;
    background: white;
}

.media-features {
    text-align: center;
    margin-bottom: 3rem;
}

.media-intro {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.media-logo {
    height: 40px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.media-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.authority-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.authority-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.authority-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-blue-light) 100%);
}

.cta-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Booking Section - Calendly Integration */
.booking-section {
    background: linear-gradient(135deg, white 0%, var(--bg-light) 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.1);
    margin-bottom: 3rem;
    border: 1px solid rgba(196, 30, 58, 0.1);
}

.booking-section h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
}

.booking-subtitle {
    color: var(--text-light);
    margin-bottom: 3.5rem;
    font-size: 1.15rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.booking-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.booking-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #E9ECEF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(196, 30, 58, 0.15);
    border-color: var(--primary-color);
}

.booking-card.featured {
    background: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
}

.booking-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.recommended-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.35rem 1.2rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 3px 10px rgba(196, 30, 58, 0.3);
}

.booking-card h4 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
}

.booking-price {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.75rem 0;
    line-height: 1;
}

.booking-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.calendly-inline-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendly-inline-button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35);
}

.calendly-inline-button.active {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.25);
}

/* Calendly inline widget container */
#calendly-inline-widget {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.booking-note {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    letter-spacing: 0.5px;
}

.booking-important-note {
    background: linear-gradient(135deg, var(--bg-yellow-light), var(--secondary-light));
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

.booking-important-note h4 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.booking-important-note p {
    color: #856404;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.booking-important-note p:last-child {
    margin-bottom: 0;
}

.social-proof p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Enhanced Social Media Section */
.social-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--guiri-pink) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    margin-top: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.social-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.social-title {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.social-title .flag {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.social-title h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.social-title p {
    opacity: 0.9;
    font-size: 1rem;
    font-weight: 500;
}

.social-links-enhanced {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.social-link:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link.tiktok:hover {
    background: linear-gradient(45deg, #000000, #ff0050);
}

.social-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .social-hero {
        padding: 1.5rem;
    }
    
    .social-title h3 {
        font-size: 1.5rem;
    }
    
    .social-links-enhanced {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-link {
        justify-content: center;
        padding: 1rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr;
    gap: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 0.9rem;
}

.footer-social a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-legal h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-legal li {
    margin-bottom: 0.75rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-legal a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-disclaimers h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0.25rem 0;
}

/* Notifications */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    float: right;
    margin-left: 1rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Spain-inspired decorative elements removed */

.hero-content {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
/* Tablet breakpoint */
@media (max-width: 1024px) {
    .hero-main {
        max-width: 900px;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-photo {
        width: 220px;
        height: 280px;
    }
    
    .hero-stats {
        gap: 2rem;
        padding: 1.5rem 1rem;
    }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        padding-top: 70px;
    }
    
    .hero-content {
        min-height: calc(100vh - 70px);
        min-height: calc(100svh - 70px);
        padding: 1.5rem 0 2rem;
        justify-content: space-evenly;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-photo {
        width: min(250px, 80vw);
        height: min(300px, 60vh);
        max-height: 350px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat {
        min-width: calc(50% - 0.5rem);
        flex: 1;
    }
    
    .stat-number {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .stat-label {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: clamp(1rem, 4vw, 1.1rem);
        margin-bottom: 1rem;
    }
    
    .brand-partners {
        margin-top: 1rem;
    }
    
    .partners-logos {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .partner-logo {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
    .hero-stats {
        gap: 0.75rem;
        padding: 1rem 0.5rem;
    }
    
    .stat {
        min-width: calc(50% - 0.375rem);
        padding: 0.25rem;
    }
    
    .hero-photo {
        width: min(200px, 75vw);
        height: min(250px, 50vh);
    }
    
    .hero-subtitle {
        margin: 1.5rem auto;
    }
}

/* Continue with existing responsive rules */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .transformation-stories {
        grid-template-columns: 1fr;
    }
    
    .story-card.featured-story {
        transform: none;
    }
    
    .media-logos {
        gap: 1.5rem;
    }
    
    .urgency-banner {
        padding: 2rem;
    }
    
    .urgency-content h3 {
        font-size: 1.5rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .tab-button {
        width: 100%;
        max-width: 250px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .services-header-enhanced {
        max-width: 100%;
        padding: 2rem 0;
    }
    
    .services-content-overlay {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-content h2 {
        text-align: center;
    }
    
    .services-image img {
        height: 300px;
    }
    
    .side-image {
        min-width: 100%;
        max-width: 100%;
        height: 320px;
    }
    
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-new.featured-new {
        transform: none;
    }
    
    .network-cta {
        padding: 2rem;
    }
    
    .network-cta h3 {
        font-size: 1.4rem;
    }
    
    .cost-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cost-column {
        padding: 1.5rem;
    }
    
    .perspective-section h2 {
        font-size: 2rem;
    }
    
    .reality-grid {
        grid-template-columns: 1fr;
    }
    
    .perspective-cta {
        padding: 2rem;
    }
    
    .cta-emphasis {
        font-size: 1.1rem;
    }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    animation: slideUp 0.3s ease;
}

.cookie-consent.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    color: var(--text-dark);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-decline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-decline:hover {
    background: var(--text-dark);
    color: white;
}

.cookie-learn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.cookie-learn:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.modal-content h3 {
    color: var(--text-dark);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

.modal-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-content ul {
    color: var(--text-light);
    margin-left: 1.5rem;
    line-height: 1.8;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--text-dark);
}

/* Responsive for cookie consent and footer */
@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-disclaimers {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    
    .footer-disclaimers {
        grid-column: span 1;
    }
    
    .footer-social {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .footer-social a {
        flex: 0 0 calc(50% - 0.5rem);
        text-align: center;
    }
}