html {
    scroll-behavior: smooth !important;
    scroll-padding-top: 97px; /* Add padding for the fixed header */
}

html.no-smooth-scroll {
    scroll-behavior: auto !important;
}

html, body {
    overflow-x: hidden;
}

/* ===================================
   LONDON PREMIUM LAUNDRY - MAIN STYLES
   Clean, Organized, No Duplicates
   Version: 2.0 - Consolidated
   =================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary-blue: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --accent-gold: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-white: #ffffff;
    --background-light: #f8fafc;
    --border-light: #e5e7eb;
    --success-green: #10b981;
    --emergency-red: #cc0000;
    --emergency-dark-red: #dc2626;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-white); /* Reverted to original */
    overflow-x: hidden;
    padding-top: 97px; /* Reverted to account for fixed header */
    
    /* FOUC prevention for the entire body */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.body-loaded {
    opacity: 1;
    visibility: visible;
}

/* Added for fixed header compensation */
main#main-content {
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--background-white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--background-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
    color: var(--text-light);
}

.rotating-headlines {
    position: relative;
    height: 180px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.hero-headline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    margin: 0;
    padding: 0 2rem;
    pointer-events: none;
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    color: var(--text-dark);
    animation: rotate-headlines 60s infinite;
}

.hero-headline.active {
    opacity: 1;
}

.hero-headline:nth-child(1) { animation-delay: 0s; }
.hero-headline:nth-child(2) { animation-delay: 5s; }
.hero-headline:nth-child(3) { animation-delay: 10s; }
.hero-headline:nth-child(4) { animation-delay: 15s; }
.hero-headline:nth-child(5) { animation-delay: 20s; }
.hero-headline:nth-child(6) { animation-delay: 25s; }

@keyframes rotate-headlines {
    0% { opacity: 0; }
    5% { opacity: 1; }
    8% { opacity: 1; }
    10% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-cta-button {
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.hero-cta-button.primary {
    background: var(--primary-blue);
    color: white;
}

.hero-cta-button.secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--background-light);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    color: var(--text-light);
}

/* ===== SECTIONS COMMON STYLES ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.section-title {
    font-size: clamp(2rem, 4.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CLIENT LOGOS ===== */
.client-logos-section {
    background: var(--background-light);
    padding: 4rem 0;
}

.client-logos-title {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.scrolling-logos-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.scrolling-logos {
    display: flex;
    gap: 3rem;
    animation: scroll-logos 20s linear infinite;
    width: max-content;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo-placeholder {
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid var(--border-light);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 6rem 0;
    background: var(--background-white);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: default;
}

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

.service-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* ===== EMERGENCY SERVICE SECTION ===== */
.emergency-service-section {
    background: linear-gradient(135deg, var(--emergency-red), #f87171);
    color: white;
    padding: 4rem 0;
}

.emergency-service-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.emergency-icon-wrapper {
    background: rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 50%;
}

.emergency-text {
    flex: 1;
    min-width: 300px;
}

.emergency-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.emergency-description {
    opacity: 0.9;
}

.emergency-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.emergency-call-button, .emergency-whatsapp-button {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.emergency-call-button {
    background: white;
    color: var(--emergency-red);
}



.emergency-call-button:hover, .emergency-whatsapp-button:hover {
    transform: translateY(-2px);
}

.emergency-whatsapp-button {
    background: #25D366;
    color: white;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    padding: 6rem 0;
    background: var(--background-white);
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid var(--border-light);
}

.feature-icon-wrapper {
    background: var(--background-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--background-white);
}

.testimonials-carousel {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-nav-button {
    background: var(--background-light);
    border: none;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.testimonial-nav-button:hover {
    background: var(--primary-blue);
    color: white;
}

.testimonial-card {
    flex: 1;
    background: var(--background-light);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
}

.testimonial-quote-icon {
    color: var(--primary-blue);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-author-position {
    color: var(--text-light);
    font-size: 0.875rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-blue);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 6rem 0;
    background: var(--background-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info-description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-method.emergency {
    border-left: 4px solid var(--emergency-red);
}

.contact-method.whatsapp-method {
    border-left: 4px solid #25D366;
    cursor: pointer;
}



.contact-method.whatsapp-method {
    border-left: 4px solid #25D366;
    cursor: pointer;
}

.contact-method-value {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid var(--border-light);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-submit-button:hover {
    background: var(--primary-dark);
}

/* ===== SERVICE PAGE STYLES ===== */
.service-hero {
    background: var(--background-white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-details {
    padding: 4rem 0;
    background: var(--background-white);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.service-main-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-main-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.service-features-detailed {
    list-style: none;
    margin: 2rem 0;
}

.service-features-detailed li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.service-features-detailed li i {
    color: var(--primary-blue);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-features-detailed strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
}

.benefit-card i {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* ===== SIDEBAR STYLES ===== */
.service-sidebar {
    position: sticky;
    top: 2rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
}

.pricing-card h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-cta {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-cta:hover {
    background: var(--primary-dark);
}

.contact-sidebar {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-sidebar h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.sidebar-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.sidebar-contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sidebar-contact-link.whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 2rem;
        min-height: 150px;
    }
    
    .rotating-headlines {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .client-logo-placeholder {
        white-space: normal;
        padding: 1rem 1.5rem;
    }

    .testimonial-nav-button {
        display: none;
    }

    .scrolling-logos {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 1rem;
        width: 100%;
    }

    .scrolling-logos-container {
        mask: none;
    }
    
    .hero-headline {
        font-size: 1.6rem;
        min-height: 120px;
        padding: 0 1rem;
    }
    
    .rotating-headlines {
        height: 120px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .emergency-service-content {
        flex-direction: column;
        text-align: center;
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-features-detailed li {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.4rem;
        min-height: 100px;
    }
    
    .rotating-headlines {
        height: 100px;
    }
    
    .section-title {
        /* font-size: 2rem; Handled by clamp() */
    }
    
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-area-map {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .hero-headline {
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-light: #000000;
        --border-light: #000000;
    }
}
/* ===== COVERAGE MEGA MENU COMPACT FIX - CORRECTED ===== */
.coverage-mega-wrapper-tabs {
    padding: 1.5rem 2rem;
    gap: 2rem;
}

/* Fix tabs - ALL tabs should highlight on hover including London */
.coverage-tab-vertical {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    background: var(--background-light);
    border: 2px solid transparent;
}

/* Remove active state but ensure ALL tabs can hover */
.coverage-tab-vertical.active {
    background: var(--background-light) !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

.coverage-tab-vertical.active .coverage-tab-icon {
    background: white !important;
    border-color: var(--border-light) !important;
}

.coverage-tab-vertical.active .coverage-tab-icon i {
    color: var(--text-light) !important;
}

.coverage-tab-vertical.active .coverage-tab-title {
    color: var(--text-dark) !important;
}

/* IMPORTANT: Make sure ALL tabs get hover effects including London */
.coverage-tab-vertical:hover,
.coverage-tab-vertical.active:hover {
    background: white !important;
    border-color: var(--primary-light) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.coverage-tab-vertical:hover .coverage-tab-icon,
.coverage-tab-vertical.active:hover .coverage-tab-icon {
    background: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

.coverage-tab-vertical:hover .coverage-tab-icon i,
.coverage-tab-vertical.active:hover .coverage-tab-icon i {
    color: white !important;
}

.coverage-tab-vertical:hover .coverage-tab-title,
.coverage-tab-vertical.active:hover .coverage-tab-title {
    color: var(--primary-blue) !important;
}

.coverage-tab-icon {
    width: 36px;
    height: 36px;
}

.coverage-tab-icon i {
    width: 16px !important;
    height: 16px !important;
}

.coverage-tab-title {
    font-size: 0.95rem;
}

.coverage-tab-description {
    font-size: 0.75rem;
}

/* Remove gap between tabs and stats completely */
.coverage-tabs-section {
    margin-bottom: 0 !important;
}

/* Fix stats boxes - make them equal width, center content, bigger text, and align left */
.coverage-stats {
    padding-top: 0 !important;
    margin-top: 0 !important;
    border-top: none !important;
    gap: 0.5rem;
    display: flex !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
}

.stat-item {
    padding: 0.8rem 0.5rem !important;
    min-width: 100px !important;
    max-width: 100px !important;
    gap: 0.3rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    height: 85px !important;
}

.stat-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0.2rem !important;
}

.stat-icon i {
    width: 20px !important;
    height: 20px !important;
}

.stat-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0.1rem !important;
}

.stat-number {
    font-size: 1.1rem !important;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center !important;
    line-height: 1 !important;
}

.stat-label {
    font-size: 0.8rem !important;
    color: var(--text-light);
    font-weight: 500;
    text-align: center !important;
    line-height: 1 !important;
}

.coverage-tagline-bottom {
    padding-top: 1rem;
}

.coverage-view-all-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Keep map larger */
.service-area-map {
    width: 500px;
    padding: 1.5rem;
}

.service-area-map div {
    width: 500px !important;
    height: 400px !important;
}

/* Make all sections tighter but not too tight */
.mega-menu-coverage-right-tabs {
    gap: 1rem;
}
/* ==================== */
/* ENHANCED PAGE DESIGN */
/* ==================== */

/* Background Lines Pattern */
.coverage-page-body {
  background-color: white;
}

/* Theme variations for each page */
.london-theme {
  background-color: white;
}

.greater-london-theme {
  background-color: white;
}

.outer-london-theme {
  background-color: white;
}

/* Numbered Image Placeholders */
.image-placeholder {
  position: relative;
  background: #f8fafc;
  border: 2px dashed #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  margin: 2rem 0;
  padding: 2rem;
}

.placeholder-number {
  position: absolute;
  top: -12px;
  left: -12px;
  background: #3b82f6;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  z-index: 2;
}

.placeholder-icon {
  width: 48px;
  height: 48px;
  color: #94a3b8;
}

/* Enhanced Hero Section */
.enhanced-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-background-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 99%, rgba(59, 130, 246, 0.1) 99%) 0 0 / 100px 100px,
    linear-gradient(0deg, transparent 99%, rgba(59, 130, 246, 0.1) 99%) 0 0 / 100px 100px;
  pointer-events: none;
}

/* Content Sections with Lines */
.content-section {
  position: relative;
  padding: 4rem 0;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.section-connector {
  position: absolute;
  left: 50%;
  top: -20px;
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  z-index: 1;
}

.section-connector i {
  width: 16px;
  height: 16px;
  color: #64748b;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Borough cards grid */
.boroughs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.borough-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.borough-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.borough-card i {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  color: #dc2626;
}

.borough-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.borough-card p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

/* Service Highlights */
.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.highlight-card:nth-child(2) { border-left-color: #10b981; }
.highlight-card:nth-child(3) { border-left-color: #f59e0b; }
.highlight-card:nth-child(4) { border-left-color: #ef4444; }

.highlight-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  color: #3b82f6;
}

.highlight-card:nth-child(2) .highlight-icon { color: #10b981; }
.highlight-card:nth-child(3) .highlight-icon { color: #f59e0b; }
.highlight-card:nth-child(4) .highlight-icon { color: #ef4444; }

.highlight-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.highlight-card p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

/* Coverage Map Visual */
.coverage-visual {
  background: linear-gradient(145deg, #f8fafc, #e2e8f0);
  border-radius: 16px;
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.map-placeholder {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  margin: 1rem 0;
  border: 2px dashed #cbd5e1;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Central London Specific Styles */
.central-london-hero .hero-badge {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.central-london-hero .hero-badge i {
  color: #dc2626;
}
/* ==================== */
/* OUTER LONDON THEME */
/* ==================== */

.outer-london-theme {
  background: 
    linear-gradient(90deg, transparent 99%, rgba(139, 92, 246, 0.02) 99%) 0 0 / 60px 60px,
    linear-gradient(0deg, transparent 99%, rgba(139, 92, 246, 0.02) 99%) 0 0 / 60px 60px;
  background-color: white;
}

/* Hero Badge Styling */
.outer-london-theme .hero-badge {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.outer-london-theme .hero-badge i {
  color: #7c3aed;
}

/* Section Connectors */
.outer-london-theme .section-connector {
  background: #7c3aed;
  border-color: #7c3aed;
}

.outer-london-theme .section-connector i {
  color: white;
}

/* Stats Cards */
.outer-london-theme .stat-card {
  border-left: 4px solid #7c3aed;
}

/* Highlight Cards */
.outer-london-theme .highlight-card {
  border-left: 4px solid #7c3aed;
}

.outer-london-theme .highlight-icon {
  color: #7c3aed;
}

/* Area Tags */
.outer-london-theme .area-tag.primary {
  background: #7c3aed;
  color: white;
  border-color: #7c3aed;
}

/* Borough Cards */
.outer-london-theme .borough-card i {
  color: #7c3aed;
}

/* Hero Section Fix - No Overlay Issues */
.outer-london-theme .enhanced-hero {
  background: white;
  position: relative;
}

.outer-london-theme .hero-background-lines {
  opacity: 0.5; /* Reduced opacity for better readability */
  z-index: 1;
}

.outer-london-theme .hero-content > * {
  position: relative;
  z-index: 2;
}
/* Greater London Theme - Hero Overlay Fix */
.greater-london-theme .enhanced-hero {
  background: white !important;
  position: relative;
  padding-top: 120px;
  isolation: isolate; /* Creates new stacking context */
}

.greater-london-theme .hero-background-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 99%, rgba(16, 185, 129, 0.03) 99%) 0 0 / 80px 80px,
    linear-gradient(0deg, transparent 99%, rgba(16, 185, 129, 0.03) 99%) 0 0 / 80px 80px;
  pointer-events: none;
  z-index: 1; /* Behind content */
  opacity: 0.4; /* Reduced opacity */
}

.greater-london-theme .hero-content {
  position: relative;
  z-index: 2; /* Above background lines */
}

/* Ensure all hero content stays above background */
.greater-london-theme .hero-badge,
.greater-london-theme .hero-headline,
.greater-london-theme .hero-subheadline,
.greater-london-theme .image-placeholder,
.greater-london-theme .location-filters {
  position: relative;
  z-index: 3;
}

/* Hero Badge Styling */
.greater-london-theme .hero-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
  backdrop-filter: blur(10px); /* Adds nice effect */
}

.greater-london-theme .hero-badge i {
  color: #10b981;
}
/* Services Theme Shared Styles */
.service-page {
  --service-primary: #3b82f6;
  --service-primary-light: rgba(59, 130, 246, 0.1);
}

.service-hero {
  color: white;
  padding: 10rem 0 6rem;
  text-align: center;
  margin-top: 97px;
  position: relative;
}

.service-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.service-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

/* Image Placeholders */
.image-placeholder {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  margin: 2rem 0;
  color: white;
}

.placeholder-number {
  position: absolute;
  top: -12px;
  left: -12px;
  background: white;
  color: var(--service-primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  z-index: 2;
}

.placeholder-icon {
  width: 48px;
  height: 48px;
  margin-right: 0.5rem;
}

/* Service Stats */
.service-stats {
  padding: 4rem 0;
  background: var(--background-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--service-primary);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--service-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
}

/* Service Category Sections */
.service-category-section {
  padding: 6rem 0;
}

.service-category-section:nth-child(even) {
  background: var(--background-light);
}

.service-category-header {
  text-align: center;
  margin-bottom: 4rem;
}

.service-category-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.service-category-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-category-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Service Detail Cards */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-detail-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  height: 100%;
}

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

/* Service Summary Card styles */
.service-summary-card {
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.service-summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: var(--theme-hostel); /* Add a border highlight on hover */
}

/* Hostel Service Card Specific Styles */
.hostel-service-card {
  background-color: #F5F5DC; /* A common hostel color - beige */
}

.service-summary-card .lucide {
  width: 48px;
  height: 48px;
  stroke-width: 1.5; /* Adjust icon thickness */
}

/* Generic Brief CTA Block styles for reuse */
.brief-cta-block {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brief-cta-block p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

.brief-cta-block .cta-buttons-inline {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.brief-cta-block .cta-buttons-inline .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.brief-cta-block .cta-buttons-inline .btn-primary {
    background-color: var(--theme-color); /* Dynamically set by JS or inline style */
    border-color: var(--theme-color);
}

.brief-cta-block .cta-buttons-inline .btn-outline-primary {
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.service-detail-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-detail-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--service-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-cta-button {
  padding: 1.25rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.hero-cta-button.primary {
  background: white;
  color: var(--service-primary);
}

.hero-cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hero-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 2.5rem;
  }
  
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Highlight active sticky nav item */
.sticky-nav-item.active {
    background-color: var(--primary-blue); /* Use primary blue for active background */
    color: white; /* Ensure icon and text are white */
    border-color: var(--primary-blue); /* Add a border highlight */
}

.sticky-nav-item.active i {
    color: white; /* Ensure icon is white */
}
/* Cafe Service Theme */
.service-page.cafe-theme {
  --service-primary: #d97706;
  --service-primary-light: rgba(217, 119, 6, 0.1);
  --service-primary-dark: #b45309;
}

.cafe-theme .service-hero {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.9) 0%, rgba(217, 119, 6, 0.7) 100%);
  color: white;
  padding: 10rem 0 6rem;
  text-align: center;
  margin-top: 97px;
  position: relative;
  overflow: hidden;
}

.cafe-theme .service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 99%, rgba(255,255,255,0.05) 99%) 0 0 / 100px 100px,
    linear-gradient(0deg, transparent 99%, rgba(255,255,255,0.05) 99%) 0 0 / 100px 100px;
  pointer-events: none;
}

.cafe-theme .service-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cafe-theme .service-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.cafe-theme .service-category-icon,
.cafe-theme .service-detail-icon,
.cafe-theme .service-cta,
.cafe-theme .process-step-number {
  background: var(--service-primary);
}

.cafe-theme .service-features li i {
  color: var(--service-primary);
}

.cafe-theme .stat-card {
  border-left: 4px solid var(--service-primary);
}

.cafe-theme .feature-icon-wrapper {
  background: var(--service-primary-light);
  color: var(--service-primary);
}

/* Cafe-specific sections */
.cafe-stats {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  padding: 4rem 0;
}

.cafe-benefits {
  background: #f8fafc;
}

/* Hero Badge */
.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

/* Hero Image Placeholder */
.hero-image-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 3rem;
  margin: 2rem auto;
  max-width: 800px;
  text-align: center;
  color: white;
  position: relative;
}

.placeholder-number {
  position: absolute;
  top: -12px;
  left: -12px;
  background: white;
  color: var(--service-primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

.placeholder-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  opacity: 0.7;
}

/* Hero CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-cta-button {
  padding: 1.25rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.hero-cta-button.primary {
  background: white;
  color: var(--service-primary);
}

.hero-cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hero-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--service-primary);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--service-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #64748b;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Service Category Sections */
.service-category-section {
  padding: 6rem 0;
  position: relative;
}

.service-category-section:nth-child(even) {
  background: var(--background-light);
}

.service-category-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 99%, rgba(0,0,0,0.02) 99%) 0 0 / 50px 50px,
    linear-gradient(0deg, transparent 99%, rgba(0,0,0,0.02) 99%) 0 0 / 50px 50px;
  pointer-events: none;
}

.service-category-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.service-category-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.service-category-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-category-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Detail Grid */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.service-detail-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

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

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 12px 12px 0 0;
  background: var(--service-primary);
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--service-primary);
}

.service-detail-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.service-detail-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #374151;
  font-size: 0.9rem;
}

.service-features li i {
  color: #10b981;
  width: 16px;
  height: 16px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--service-primary-light);
  color: var(--service-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--service-primary-light);
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: var(--service-primary);
  color: white;
  text-decoration: none;
}

/* Process Steps */
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0;
  gap: 2rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--service-primary);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.process-step-number {
  width: 80px;
  height: 80px;
  background: var(--service-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.process-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.process-step-description {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Quick Links Section */
.quick-links-section {
  padding: 4rem 0;
  background: white;
}

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

.quick-link-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.quick-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
}

.quick-link-icon {
  width: 60px;
  height: 60px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #3b82f6;
}

.quick-link-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.quick-link-description {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--service-primary), var(--service-primary-dark));
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background: white;
  color: var(--service-primary);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  text-decoration: none;
}



/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-hero h1 {
    font-size: 3rem;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 3rem;
  }
  
  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 2.5rem;
  }
  
  .service-hero p {
    font-size: 1.125rem;
  }
  
  .service-category-title {
    font-size: 2rem;
  }
  
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .service-hero {
    padding: 8rem 0 4rem;
  }
  
  .service-category-section {
    padding: 4rem 0;
  }
}
/* Conservative Cafe Theme with Better Visibility */
.service-page.cafe-theme {
  --service-primary: #dc2626; /* Use red instead of orange for better contrast */
  --service-primary-light: rgba(220, 38, 38, 0.1);
  --service-primary-dark: #b91c1c;
}

.cafe-theme .service-hero {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(220, 38, 38, 0.7) 100%);
}

/* Simple button fixes */
.cafe-theme .service-cta {
  background: var(--service-primary);
  color: white !important;
  border: 2px solid var(--service-primary);
}

.cafe-theme .service-cta:hover {
  background: var(--service-primary-dark);
  color: white !important;
  border-color: var(--service-primary-dark);
}

.cafe-theme .hero-cta-button.primary:hover,
.cafe-theme .cta-button.primary:hover {
  background: var(--service-primary);
  color: white !important;
}

.cafe-theme .hero-cta-button.secondary:hover,
.cafe-theme .cta-button.secondary:hover {
  background: white;
  color: var(--service-primary) !important;
}
.service-page.cafe-theme {
  --service-primary: #78350f; /* Warm brown */
  --service-primary-light: rgba(120, 53, 15, 0.1);
  --service-primary-dark: #451a03;
}
.service-page.cafe-theme {
  --service-primary: #57534e; /* Espresso brown */
  --service-primary-light: rgba(87, 83, 78, 0.1);
  --service-primary-dark: #44403c;
}
/* ===== END OF STYLES ===== */
@keyframes floatEffect {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); } /* Move up 5px */
  100% { transform: translateY(0); }
}

/* Sticky Navigation for Other Services Page */
#services-sticky-nav {
  transition: all 0.5s ease-in-out; /* Smooth transition for all properties */
}

#services-sticky-nav.initial-position {
  position: absolute; /* Position relative to its closest positioned ancestor or the initial containing block */
  bottom: -150px; /* Position off-screen from the bottom */
  opacity: 0; /* Make it completely transparent */
  visibility: hidden; /* Hide it from screen readers and interaction */
}

.sticky-nav-right {
  position: fixed;
  right: 10px; /* Aligned 10px from the right of the viewport */
  bottom: 20px; /* Aligned 20px above the bottom of the viewport */
  transform: translateY(0%); /* Remove vertical centering transform */
  z-index: 1050; /* Ensure it's above most content, but below modals/offcanvas */
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between icons */
  background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white background */
  padding: 15px 10px; /* Increased padding around the icons */
  border-radius: 10px; /* Rounded corners for all sides */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: floatEffect 2s ease-in-out infinite; /* Apply the floating animation */
}

.sticky-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px; /* Size of the icon button */
  height: 45px; /* Size of the icon button */
  border-radius: 8px; /* Slightly rounded corners for items */
  color: var(--text-light); /* Default icon color */
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative; /* Needed for tooltip/title */
}

.sticky-nav-item i {
  width: 24px; /* Size of the Lucide icon */
  height: 24px;
}

.sticky-nav-item:hover {
  background-color: var(--primary-blue); /* Background on hover */
  color: white; /* Icon color on hover */
  transform: scale(1.1); /* Slight grow effect */
}

.sticky-nav-item:hover i {
  color: white; /* Ensure Lucide icon color changes */
}

/* Tooltip/Title for sticky nav items */
.sticky-nav-item[data-title]:hover::after {
  content: attr(data-title);
  position: absolute;
  right: calc(100% + 10px); /* Position to the left of the item */
  background-color: var(--text-dark);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 0.85rem;
  z-index: 1060; /* Above the navigation bar */
  transform: translateX(5px); /* Slight animation from the right */
  opacity: 0;
  visibility: hidden;
  animation: fadeInLeft 0.3s forwards;
}

@keyframes fadeInLeft {
  from {
    transform: translateX(5px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .sticky-nav-right {
    right: auto !important; /* Reset right property */
    left: 6px !important; /* Position from left edge with 6px padding */
    top: 50% !important; /* Center vertically */
    bottom: auto !important; /* Explicitly unset bottom */
    transform: translateY(-50%) !important; /* Adjust for vertical centering */
    background-color: rgba(255, 255, 255, 0.9) !important; /* Make more opaque */
    padding: 8px 4px;
    gap: 8px;
  }
}



/* Fixed Contact Button Specific Styles */
.fixed-contact-button-wrapper {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
}

.fixed-get-in-touch-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--emergency-red);
    color: white;
    border: none;
    padding: 25px 8px; /* Adjusted horizontal padding to make it a tiny bit smaller */
    border-radius: 8px 0 0 8px; /* Rounded on the left side */
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.fixed-get-in-touch-button:hover {
    background: var(--emergency-dark-red);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

.fixed-get-in-touch-button span {
    writing-mode: vertical-lr;
    text-orientation: mixed; /* Ensures characters are upright */
    white-space: nowrap; /* Prevent text from wrapping horizontally */
}
