/* CSS Variables for Professional Blue Theme - Emergency button fix 2024-12-19 */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-color: rgba(37, 99, 235, 0.1);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    
    /* Samsung compatibility variables */
    --samsung-text-overflow: visible;
    --samsung-container-width: 100%;
    --samsung-line-clamp: unset;
    --samsung-header-height: 80px;
}

/* CRITICAL: Fix deprecated overflow: visible on ALL media elements - HIGHEST PRIORITY */
img, video, canvas, img *, video *, canvas *,
.logo-icon, .hero-image, .service-image, .footer-image,
.trustpilot-widget img, .social-links img, .qr-code,
.hero img, .service-card img, .footer img,
.nav-logo img, .hero-content img, .service-detail img {
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    contain: layout !important;
    contain: paint !important;
}

:root {
    /* Common Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --gradient-blue-light: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
    --gradient-whatsapp: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    --gradient-whatsapp-hover: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    --gradient-emergency: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --gradient-success: linear-gradient(45deg, #28a745, #20c997);
    --gradient-warning: linear-gradient(45deg, #ffc107, #fd7e14);
    --gradient-danger: linear-gradient(45deg, #dc3545, #e83e8c);
    
    /* Common Shadows */
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 15px rgba(0, 0, 0, 0.3);
    --shadow-primary: 0 4px 15px var(--shadow-color);
}

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

html {
    /* Removed smooth scroll to fix mobile scrolling issues */
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Override container for mobile hero */
@media (max-width: 768px) {
    .container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .hero .container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    /* Force mobile hero to use full width and center properly */
    .hero {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        padding-top: calc(var(--samsung-header-height) + 0.1rem) !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    /* Additional mobile container fixes */
    .nav-container {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .hero-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    .hero-container .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Force mobile layout to center perfectly */
    .hero-mobile-layout {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    padding-top: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
    
    .hero-mobile-images {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
    }
    
    .mobile-image-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 1rem !important;
        box-sizing: border-box !important;
        text-align: center !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
    
    .mobile-image-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        text-align: center !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
    
    .mobile-hero-image {
        width: 100% !important;
        max-width: 100% !important;
        height: 300px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        display: block !important;
        margin: 0 auto !important;
        /* Ensure proper image resolution */
        image-rendering: -webkit-optimize-contrast !important;
        image-rendering: crisp-edges !important;
    }
    
    /* Ensure hero text container is perfectly centered on mobile */
    .hero-mobile-layout .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 2rem auto !important;
        padding: 2rem 1.5rem !important;
        text-align: center !important;
        box-sizing: border-box !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(15px) !important;
        border-radius: 16px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
        /* Force perfect centering without hardcoded adjustments */
        display: block !important;
        float: none !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--background-white);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-color);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--primary-color);
    overflow-x: hidden;
    overflow-y: hidden;
}

.navbar {
    padding: 0.75rem 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.nav-logo .logo-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    outline: none;
}

.nav-logo .logo-link:hover {
    transform: scale(1.02);
}

.nav-logo h1 {
    color: #ffd700;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
    text-stroke: 1px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow: visible;
}

/* Header and main logo - 32x32px */
.logo-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    /* Prevent browser scaling */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    object-fit: contain;
    overflow: hidden !important;
}

/* Footer logo - 24x24px */
.footer-section .logo-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.nav-logo h1:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.nav-logo h1:hover {
    color: #ffd700;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    text-stroke: 1px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.nav-menu {
    display: none !important;
    list-style: none;
    gap: 2rem;
}

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

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

.hamburger {
    display: none !important;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Header Styles - Fix banner sizing and prevent horizontal scroll */
@media (max-width: 768px) {
    .hero {
        padding-top: calc(var(--samsung-header-height) - 0.2rem) !important;
        padding-bottom: 20px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .header {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        justify-content: center;
        align-items: center;
    }
    
    .nav-logo h1 {
        font-size: 1.4rem;
        gap: 6px;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        max-width: none;
        text-align: center;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .nav-container {
        padding: 0 10px;
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        justify-content: center;
    }
    
    .nav-logo h1 {
        font-size: 1.2rem;
        gap: 4px;
        max-width: none;
        text-align: center;
        overflow: visible;
        text-overflow: clip;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
    
    /* Extra small mobile - Even more compact hero */
    .hero-grid {
        min-height: 350px !important;
        padding: 10px 0 !important;
    }
    
    .hero-image {
        min-height: 350px !important;
    }
    
    .hero-image-left {
        min-height: 350px !important;
    }
    
    .hero-image-right {
        min-height: 350px !important;
    }
    
    .hero-text {
        min-height: 350px !important;
    }
    
    .hero-image-container {
        height: 350px !important;
        min-height: 350px !important;
        max-height: 350px !important;
    }
    
    .hero-image-container img {
        height: 350px !important;
        min-height: 350px !important;
        max-height: 350px !important;
    }
    
    .hero-image-container .hero-image-overlay {
        height: 350px !important;
        min-height: 350px !important;
        max-height: 350px !important;
    }
}

/* Enhanced Hero Section */
.hero {
    padding: 40px 0 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: block !important;
}

/* Mobile Hero Override - Force minimal top spacing */
@media (max-width: 768px) {
    .hero {
        padding: calc(var(--samsung-header-height) - 0.2rem) 0 20px 0 !important;
    }
    
    /* Mobile Hero Height Reduction - Make section more compact */
    .hero-grid {
        min-height: 400px !important;
        padding: 15px 0 !important;
    }
    
    .hero-image {
        min-height: 400px !important;
    }
    
    .hero-image-left {
        min-height: 400px !important;
    }
    
    .hero-image-right {
        min-height: 400px !important;
    }
    
    .hero-text {
        min-height: 400px !important;
    }
    
    .hero-image-container {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
    }
    
    .hero-image-container img {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
    }
    
    .hero-image-container .hero-image-overlay {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
    }
}

/* New Hero Container Structure - OPTIMIZED FOR GRID */
.hero-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
    display: block !important;
}

.hero-container .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.hero-container .container {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    width: 100% !important;
}

/* Hero Grid Layout - COMPLETELY REWRITTEN FOR CLEAN LAYOUT */
.hero-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 15px !important;
    align-items: flex-start !important;
    min-height: 600px !important;
    width: 100% !important;
    padding: 20px 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Individual Hero Sections - SIMPLIFIED */
.hero-image {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 600px !important;
    justify-content: flex-start !important;
    align-items: center !important;
    box-sizing: border-box !important;
    padding-top: 25px !important;
}

/* Left and Right Image Positioning - CLEAN */
.hero-image-left {
    grid-column: 1 !important;
    justify-self: start !important;
    align-self: flex-start !important;
    height: 100% !important;
    min-height: 600px !important;
}

.hero-image-right {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: flex-start !important;
    height: 100% !important;
    min-height: 600px !important;
}

.hero-text {
    grid-column: 2 !important;
    justify-self: center !important;
    align-self: flex-start !important;
    width: 90% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 25px !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    min-height: 600px !important;
    max-width: 90% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    position: relative !important;
    top: 0 !important;
    transform: none !important;
}

/* Hero Text Content Auto-Resize */
.hero-text .hero-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

.hero-text .hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem) !important;
    line-height: 1.4 !important;
    margin-bottom: 1.5rem !important;
}

.hero-text .hero-features {
    margin-bottom: 1.5rem !important;
}

.hero-text .hero-buttons {
    margin-bottom: 1.5rem !important;
    gap: 10px !important;
}

.hero-text .hero-stats {
    margin-top: auto !important;
}

/* Hero Image Container - OPTIMIZED FOR AUTO-RESIZE */
.hero-image-container {
    width: 100% !important;
    height: 600px !important;
    position: relative !important;
    min-height: 600px !important;
    max-height: 600px !important;
    max-width: 100% !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

/* Slideshow Container - OPTIMIZED FOR AUTO-RESIZE */
.home-slideshow, .vehicle-slideshow {
    position: relative !important;
    width: 100% !important;
    height: 600px !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    background: transparent !important;
    border: none !important;
    z-index: 1 !important;
    min-height: 600px !important;
    max-height: 600px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    /* Ensure proper positioning context for captions */
    transform: translateZ(0) !important;
}

/* Slideshow Images Auto-Resize */
.home-slideshow .slide, .vehicle-slideshow .slide {
    width: 100% !important;
    height: auto !important;
    position: relative !important;
}

.home-slideshow .hero-main-image, .vehicle-slideshow .hero-main-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    min-height: 600px !important;
    max-height: 600px !important;
    overflow: hidden !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Individual Slides - Consolidated */
.home-slideshow .slide, .vehicle-slideshow .slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transform: scale(1.05) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1 !important;
    display: block !important;
    visibility: hidden !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.home-slideshow .slide.active, .vehicle-slideshow .slide.active {
    opacity: 1 !important;
    transform: scale(1) !important;
    z-index: 2 !important;
    display: block !important;
    visibility: visible !important;
    background: transparent !important;
    border: none !important;
}

/* Fix for deprecated overflow: visible on media elements - HIGHEST PRIORITY */
img, video, canvas, img *, video *, canvas * {
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

/* Slideshow Images */
.home-slideshow .slide img, .vehicle-slideshow .slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block !important;
    overflow: hidden !important;
    visibility: inherit !important;
    opacity: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Slide Captions */
.slide-caption {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(0, 0, 0, 0.4) !important;
    color: white !important;
    padding: 15px 10px 10px !important;
    text-align: center !important;
    border-radius: 0 0 10px 10px !important;
    z-index: 20 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    backdrop-filter: blur(5px) !important;
}

.slide-caption h3,
.slide-caption h4 {
    margin: 0 0 5px 0 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: white !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.slide-caption p {
    margin: 0 !important;
    font-size: 0.85rem !important;
    opacity: 1 !important;
    color: white !important;
    line-height: 1.3 !important;
    display: block !important;
    visibility: visible !important;
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 15;
    visibility: visible;
    opacity: 1;
    pointer-events: none;
}

/* Desktop Navigation Arrows - More specific to avoid conflicts */
.hero-image-container .mobile-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 30;
    backdrop-filter: blur(5px);
    pointer-events: auto;
}

.hero-image-container .mobile-nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.hero-image-container .mobile-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-image-container .mobile-nav-btn.prev-btn {
    left: 15px;
}

.hero-image-container .mobile-nav-btn.next-btn {
    right: 15px;
}

/* Mobile Navigation Buttons - Match desktop style exactly */
.mobile-slideshow-nav .mobile-nav-btn {
    position: absolute;
    top: 60% !important;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 30;
    backdrop-filter: blur(5px);
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-slideshow-nav .mobile-nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.mobile-slideshow-nav .mobile-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.mobile-slideshow-nav .mobile-nav-btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.mobile-slideshow-nav .mobile-nav-btn.prev-btn {
    left: 15px;
}

.mobile-slideshow-nav .mobile-nav-btn.next-btn {
    right: 15px;
}

.mobile-slideshow-nav .mobile-nav-btn i {
    font-size: 18px;
}

/* Mobile navigation arrows - ensure they're visible on mobile */
@media (max-width: 768px) {
    .hero-image-container .mobile-nav-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}



.control-btn {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    pointer-events: auto;
    margin: 0 20px;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.control-btn i {
    font-size: 1.2rem;
    font-weight: bold;
}



/* Hero Image Overlay */
.hero-image-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 5px;
}

.overlay-content i {
    font-size: 0.9rem;
}

/* Floating Cards */
.hero-floating-card {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 220px;
    z-index: 10;
    margin-top: 20px !important;
}

.floating-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.floating-card-header i {
    color: var(--primary-color);
}

.floating-card-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-card-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive Hero Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 5px !important;
        max-width: 100% !important;
        padding: 30px 0 !important;
    }
    
    .hero-slideshow {
        min-height: 350px !important;
        max-height: 450px !important;
    }
    
    .hero-image-container {
        min-height: 400px !important;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 5px !important;
        min-height: auto !important;
        padding: 20px 0 !important;
    }
    
    .hero-image {
        order: 2;
        min-height: 400px;
    }
    
    .hero-text {
        order: 1;
        text-align: center;
        padding: 25px;
        min-height: 400px;
    }
    
    .hero-slideshow {
        min-height: 300px;
        max-height: 400px;
    }
    
    .hero-image-container {
        min-height: 350px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 5px !important;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
    
    .hero-floating-card {
        bottom: -30px;
        min-width: 200px;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 80px; /* Added bottom padding to prevent slideshow cutoff */
    }
    
    .hero-grid {
        gap: 5px !important;
        padding: 15px 0 !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-text {
        padding: 20px;
        min-height: 350px;
    }
    
    .hero-image {
        min-height: 350px;
    }
    
    .hero-slideshow {
        min-height: 250px;
        max-height: 350px;
    }
    
    .hero-image-container {
        min-height: 300px;
    }
    
    .slide-caption {
        padding: 10px;
    }
    
    .slide-caption h3,
    .slide-caption h4 {
        font-size: 0.9rem;
    }
    
    .slide-caption p {
        font-size: 0.8rem;
    }
    
    .hero-floating-card {
        bottom: -25px;
        min-width: 180px;
        padding: 12px 18px;
    }
}

/* Mobile-First Hero Layout Styles */
.hero-mobile-layout {
    display: none; /* Hidden by default on desktop */
}

.hero-desktop-layout {
    display: block; /* Visible by default on desktop */
}

/* Mobile Hero Layout */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 80px; /* Added bottom padding to prevent slideshow cutoff */
    }
    
    .hero-container {
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .hero-mobile-layout {
        display: block !important;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        /* Ensure perfect mobile centering with slight left adjustment */
        padding: 0 1rem;
        box-sizing: border-box;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .hero-desktop-layout {
        display: none !important;
    }
    
    .hero-mobile-layout .hero-text {
        order: 1;
        margin-bottom: 2rem;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
        border-radius: 16px;
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 2;
        margin: 0 auto 2rem auto;
        text-align: center;
        box-sizing: border-box;
        /* Ensure perfect mobile centering with slight left adjustment */
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
    
    .hero-mobile-images {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        align-items: center;
        /* Ensure proper bottom spacing */
        margin-bottom: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    
    .mobile-image-section {
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 16px !important;
        padding: 1.5rem !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        position: relative;
        left: 0;
        /* Ensure proper spacing */
        margin-bottom: 0.25rem !important;
    }
    
    .mobile-image-section:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    }
    
    /* Ensure last slideshow container has proper bottom spacing */
    .mobile-image-section:last-child {
        margin-bottom: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    
    .mobile-section-title {
        color: var(--accent-color);
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        width: 100%;
        /* Prevent text wrapping to keep on one line */
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        /* Ensure text fits on one line */
        min-width: 0 !important;
        flex-shrink: 1 !important;
    }
    
    .mobile-section-title i {
        font-size: 1rem;
    }
    
    /* Mobile section title responsive fixes */
    @media (max-width: 480px) {
        .mobile-section-title {
            font-size: 1rem !important;
            gap: 0.2rem !important;
        }
        
        .mobile-section-title i {
            font-size: 0.9rem !important;
        }
    }
    
    .mobile-image-container {
        position: relative !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        margin-bottom: 1rem !important;
        min-height: 300px !important;
        background: rgba(0, 0, 0, 0.1) !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .mobile-hero-image {
        width: 100% !important;
        height: 300px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        display: block !important;
        position: relative !important;
    }
    
    .mobile-slide-caption {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9)) !important;
        color: white !important;
        padding: 1.5rem 1rem 1rem !important;
        text-align: center !important;
        border-bottom-left-radius: 12px !important;
        border-bottom-right-radius: 12px !important;
        z-index: 10 !important;
    }
    
    .mobile-slide-caption h4 {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.5rem !important;
        color: white !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
    }
    
    .mobile-slide-caption p {
        font-size: 0.9rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        margin: 0 !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
    }
    
    .mobile-slideshow-nav {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        height: 100% !important;
        box-sizing: border-box;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 50 !important;
        pointer-events: none !important;
    }
    
    /* Mobile navigation buttons styled in the main CSS section above */
    

    
    .mobile-floating-card {
        text-align: center;
        margin: 1rem auto 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        padding: 0 1rem;
    }
    
    .mobile-card-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--gradient-primary);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }
    
    .mobile-card-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    }
    
    .mobile-card-btn i {
        font-size: 1rem;
    }
    
    /* Mobile Slideshow Functionality */
    .mobile-slideshow {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        overflow: hidden !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
        background: transparent !important;
        border: none !important;
        z-index: 1 !important;
        min-height: 300px !important;
        max-height: 300px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
    
    .mobile-slideshow .slide {
        display: none;
        position: relative;
    }
    
    .mobile-slideshow .slide.active {
        display: block;
    }
    
    /* Mobile Hero Text Adjustments */
    .hero-mobile-layout .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-mobile-layout .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-mobile-layout .hero-features {
        margin-bottom: 1.5rem;
    }
    
    .hero-mobile-layout .hero-feature {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-mobile-layout .hero-buttons {
        margin-bottom: 1.5rem;
    }
    
    .hero-mobile-layout .hero-buttons-row {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-mobile-layout .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-mobile-layout .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 1rem;
        /* Samsung mobile compatibility */
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }
    
    .hero-mobile-layout .hero-stat {
        text-align: center;
    }
    
    .hero-mobile-layout .hero-stat .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--accent-color);
    }
    
    .hero-mobile-layout .hero-stat .stat-label {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.95);
        /* Samsung mobile compatibility */
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
        min-height: 2.4rem !important;
        overflow: visible !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center !important;
        padding: 0.25rem 0.5rem !important;
        box-sizing: border-box !important;
    }
    
    /* SIMPLIFIED: Clean mobile layout */
    .hero-mobile-layout {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: block !important;
        padding: 0 1rem !important;
        box-sizing: border-box !important;
        /* Ensure perfect mobile centering */
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
    
    .hero-mobile-images {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .hero-mobile-layout .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-mobile-layout .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .mobile-image-container {
        min-height: 250px;
    }
    
    .mobile-hero-image {
        height: 250px;
    }
    
    .mobile-section-title {
        font-size: 1rem;
    }
    
    .mobile-slide-caption h4 {
        font-size: 1rem;
    }
    
    .mobile-slide-caption p {
        font-size: 0.8rem;
    }
    
    .hero-mobile-layout .hero-text {
        padding: 1.5rem 1rem;
        /* Ensure perfect mobile centering */
        margin: 0 auto 2rem auto !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
    
    .mobile-image-section {
        padding: 1rem;
    }
    
    /* Force mobile caption positioning and visibility */
    .mobile-slide-caption {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.95)) !important;
        color: white !important;
        padding: 1.5rem 1rem 1rem !important;
        text-align: center !important;
        border-bottom-left-radius: 12px !important;
        border-bottom-right-radius: 12px !important;
        z-index: 10 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* SIMPLIFIED: Clean mobile image container */
    .mobile-image-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        position: relative !important;
    }
    
    /* SIMPLIFIED: Clean mobile hero image */
    .mobile-hero-image {
        width: 100% !important;
        max-width: 100% !important;
        height: 300px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        display: block !important;
    }
    
    /* SIMPLIFIED: Clean mobile image section */
    .mobile-image-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        padding: 1rem !important;
        box-sizing: border-box !important;
    }
    
    /* Clean mobile spacing */
    .hero-mobile-layout {
        padding: 0 1rem !important;
        box-sizing: border-box !important;
    }
    
    .hero-mobile-images {
        padding: 0 0.5rem !important;
        box-sizing: border-box !important;
    }
    
    /* SIMPLIFIED: Clean mobile layout centering */
    .hero-container {
        padding: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        position: relative;
        left: 0;
    }
    
    .hero-container .container {
        padding: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Hero Container already defined above */

.hero-text {
    text-align: center !important;
    order: unset !important;
    justify-self: center !important;
    width: 100% !important;
    max-width: 2100px !important;
    margin: 0 auto !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    margin-bottom: 1rem !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
}

.hero-badge i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Enhanced Hero Title */
.hero-title {
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
}

.hero-title-main {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.hero-title-highlight {
    display: block;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.hero-title-sub {
    display: block;
    color: #ffffff;
}

/* Enhanced Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem !important;
    margin-bottom: 2rem !important;
    opacity: 0.95 !important;
    line-height: 1.6 !important;
    color: #f1f5f9 !important;
    width: 100% !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
}

/* Responsive Hero Title */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
        text-align: center !important;
    }
    
    .hero-title-main,
    .hero-title-highlight,
    .hero-title-sub {
        margin-bottom: 0.3rem;
        text-align: center !important;
    }
    

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
}

/* Hero Features */
.hero-features {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #e2e8f0;
    justify-content: center;
}

.hero-feature i {
    color: #ffd700;
    font-size: 1.1rem;
    width: 20px;
}

/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    margin-bottom: 2.5rem !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
}

.hero-buttons-row {
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

/* Override responsive rules for buttons */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: row !important;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: auto !important;
        justify-content: center;
    }
}

.hero-buttons .btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-buttons .btn i {
    font-size: 1.1rem;
}

/* WhatsApp Button in Hero */
.btn-whatsapp {
    background: var(--gradient-whatsapp) !important;
    color: white !important;
    border: 2px solid #25d366 !important;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    background: var(--gradient-whatsapp-hover) !important;
    border-color: #128c7e !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

/* Enhanced WhatsApp Quote Section */
.whatsapp-enhanced {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Emergency Service Section */
.emergency-enhanced {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-hero {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 60,40 90,40 65,60 75,90 50,70 25,90 35,60 10,40 40,40" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat;
    background-size: contain;
    opacity: 0.3;
}

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

.emergency-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.emergency-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.emergency-logo i {
    font-size: 1.8rem;
    color: white;
}

.emergency-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.emergency-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.emergency-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.emergency-benefits .benefit-item i {
    font-size: 1rem;
}

.emergency-process {
    margin-bottom: 2rem;
}

.emergency-process .process-header {
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-process .process-header h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.emergency-process .process-header p {
    color: #6b7280;
    margin: 0;
}

.emergency-process .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.emergency-process .process-step {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    padding: 1.25rem;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.emergency-process .process-step h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    font-weight: 600;
}

.emergency-process .process-step p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    padding: 0 0.75rem;
    max-width: 100%;
    word-wrap: break-word;
    color: #374151; /* Darker text for better contrast on white background */
}

/* Responsive design for process steps */
@media (max-width: 768px) {
    .emergency-process .process-steps {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1rem;
    }
    
    .emergency-process .process-step {
        min-height: 160px;
        padding: 1rem;
        position: relative;
    }
    
    .emergency-process .step-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    /* Fix step number positioning on mobile */
    .emergency-process .step-number {
        position: absolute !important;
        top: 10px !important;
        left: 15px !important;
        width: 28px !important;
        height: 28px !important;
        font-size: 0.9rem !important;
        z-index: 10 !important;
    }
    
    /* Fix step icon positioning on mobile */
    .emergency-process .step-icon {
        width: 45px !important;
        height: 45px !important;
        margin: 1.5rem auto 0.75rem !important;
        margin-top: 2.5rem !important;
    }
    
    .emergency-process .step-icon i {
        font-size: 1.3rem !important;
    }
    
    /* Improve step content positioning on mobile */
    .emergency-process .step-content {
        margin-top: 0.25rem !important;
        padding: 0 0.25rem !important;
        text-align: center !important;
    }
    
    .emergency-process .process-step h5 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
        margin-top: 0.5rem !important;
    }
}

/* Additional mobile optimization for emergency process steps */
@media (max-width: 480px) {
    .emergency-process .process-step {
        min-height: 140px !important;
        padding: 0.75rem !important;
    }
    
    .emergency-process .step-number {
        top: 8px !important;
        left: 12px !important;
        width: 26px !important;
        height: 26px !important;
        font-size: 0.85rem !important;
    }
    
    .emergency-process .step-icon {
        width: 40px !important;
        height: 40px !important;
        margin-top: 2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .emergency-process .step-icon i {
        font-size: 1.2rem !important;
    }
    
    .emergency-process .process-step h5 {
        font-size: 0.95rem !important;
        margin-bottom: 0.4rem !important;
        margin-top: 0.4rem !important;
    }
    
    .emergency-process .step-content p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-top: 0.4rem !important;
        padding: 0 0.3rem !important;
    }
}

.emergency-process .process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
}

.emergency-process .step-number {
    position: absolute;
    top: 15px;
    left: 20px;
    width: 32px;
    height: 32px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    z-index: 3;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.emergency-process .step-content {
    margin-top: 0.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.emergency-process .step-icon {
    width: 50px;
    height: 50px;
    background: #fef2f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
}

.emergency-process .step-icon i {
    font-size: 1.5rem;
    color: #dc2626;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Step Icon Styling */
.step-emoji {
    font-size: 2.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    position: relative;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    padding: 0.5rem 0;
    position: relative;
}

.step-emoji i {
    display: block;
}

.process-step:hover .step-emoji {
    opacity: 1;
    transform: scale(1.1);
    color: var(--primary-dark);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.emergency-process .step-content p {
    color: #6b7280;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 500;
}

.emergency-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-service-card {
    background: white;
    border-radius: 15px;
    padding: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #dc2626;
}

.emergency-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.emergency-service-card .service-icon {
    width: 50px;
    height: 50px;
    background: #fef2f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.emergency-service-card .service-icon i {
    font-size: 1.5rem;
    color: #dc2626;
}

.emergency-service-card .service-content h4 {
    font-size: 1.1rem;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.emergency-service-card .service-content p {
    color: #6b7280;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.emergency-service-card .response-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.emergency-service-card .response-time {
    background: #dc2626;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    white-space: nowrap;
}

.emergency-service-card .availability {
    background: #10b981;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    white-space: nowrap;
}

.emergency-cta {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-cta .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.emergency-cta .cta-text h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.emergency-cta .cta-text p {
    color: #6b7280;
    margin: 0;
}

.emergency-cta .cta-button .btn-emergency {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.emergency-cta .cta-button .btn-emergency:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%) !important;
    color: white !important;
    border: none !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.emergency-cta .cta-button .btn-emergency i {
    font-size: 1.2rem;
}

/* Force emergency button styling - override any WhatsApp interference */
.emergency-cta .cta-button {
    background: transparent !important;
    background-color: transparent !important;
}

.whatsapp-enhanced .emergency-cta .cta-button .btn.btn-emergency,
.whatsapp-enhanced .emergency-cta .cta-button a.btn.btn-emergency,
.emergency-cta .cta-button .btn.btn-emergency.btn-large,
.emergency-cta .cta-button a.btn.btn-emergency.btn-large {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    background-color: #dc2626 !important;
    color: white !important;
    border: none !important;
    border-color: transparent !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3) !important;
}

.whatsapp-enhanced .emergency-cta .cta-button .btn.btn-emergency:hover,
.whatsapp-enhanced .emergency-cta .cta-button a.btn.btn-emergency:hover,
.emergency-cta .cta-button .btn.btn-emergency.btn-large:hover,
.emergency-cta .cta-button a.btn.btn-emergency.btn-large:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%) !important;
    background-color: #b91c1c !important;
    color: white !important;
    border: none !important;
    border-color: transparent !important;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4) !important;
}

/* Nuclear option - completely override any WhatsApp styling for emergency button */
a[href="tel:447944156094"].btn.btn-emergency.btn-large,
a[href="tel:447944156094"].btn.btn-emergency,
.emergency-cta a.btn.btn-emergency,
.emergency-cta a.btn.btn-emergency.btn-large {
    background: #dc2626 !important;
    background-image: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    background-color: #dc2626 !important;
    color: white !important;
    border: none !important;
    border-color: transparent !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3) !important;
}

a[href="tel:447944156094"].btn.btn-emergency.btn-large:hover,
a[href="tel:447944156094"].btn.btn-emergency:hover,
.emergency-cta a.btn.btn-emergency:hover,
.emergency-cta a.btn.btn-emergency.btn-large:hover {
    background: #b91c1c !important;
    background-image: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%) !important;
    background-color: #b91c1c !important;
    color: white !important;
    border: none !important;
    border-color: transparent !important;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4) !important;
}

.emergency-guarantee {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #fef2f2;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
    text-align: center;
}

.emergency-guarantee .guarantee-icon {
    width: 50px;
    height: 50px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-guarantee .guarantee-icon i {
    font-size: 1.5rem;
    color: white;
}

.emergency-guarantee .guarantee-text h5 {
    font-size: 1.1rem;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    text-align: center;
}

.emergency-guarantee .guarantee-text p {
    color: #6b7280;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    text-align: center;
}

.emergency-guarantee .guarantee-text .response-priority {
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

/* Responsive Design for Emergency Section */
@media (max-width: 768px) {
    .emergency-enhanced {
        padding: 1.5rem;
    }
    
    .emergency-hero {
        padding: 1.5rem;
    }
    
    .emergency-hero .emergency-brand {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .emergency-benefits {
        justify-content: center;
    }
    
    .emergency-services-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-cta .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-guarantee {
        flex-direction: column;
        text-align: center;
    }
}

.whatsapp-hero {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat;
    background-size: contain;
    opacity: 0.3;
}

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

.whatsapp-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.whatsapp-logo {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.whatsapp-logo i {
    font-size: 2rem;
    color: white;
}

.whatsapp-title h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.whatsapp-subtitle {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.whatsapp-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.benefit-item i {
    font-size: 1.2rem;
    color: #ffd700;
}

.whatsapp-process {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-header {
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.process-header h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.process-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
    position: relative;
    align-content: center;
    height: 120px;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.step-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

.step-content h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-icon {
    display: none;
}

.whatsapp-cta {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cta-text h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.cta-button .btn-whatsapp {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 250px;
    justify-content: center;
}

.response-guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.guarantee-icon {
    background: #f59e0b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 1.5rem;
}

.guarantee-text h5 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.guarantee-text p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.business-hours {
    display: block;
    font-size: 0.8rem;
    color: #92400e;
    font-weight: 500;
    background: rgba(245, 158, 11, 0.1);
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    text-align: center;
}

/* Responsive Design for WhatsApp Section */
@media (max-width: 768px) {
    .whatsapp-enhanced {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .whatsapp-hero {
        padding: 1.5rem;
    }
    
    /* Compact whatsapp-process for mobile */
    .whatsapp-process .process-steps {
        gap: 0.5rem !important;
    }
    
    .whatsapp-process .process-step {
        padding: 0.75rem 0.5rem !important;
        min-height: auto !important;
        gap: 0.3rem !important;
    }
    
    .whatsapp-process .step-header {
        margin-bottom: 0.3rem !important;
    }
    
    .whatsapp-process .step-emoji {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
    
    .whatsapp-process .step-number {
        width: 18px !important;
        height: 18px !important;
        font-size: 0.7rem !important;
    }
    
    .whatsapp-process .step-content h5 {
        font-size: 0.85rem !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.1 !important;
    }
    
    .whatsapp-process .step-content p {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }
    
    .whatsapp-brand {
        flex-direction: row;
        text-align: left;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .whatsapp-logo {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .whatsapp-title h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .whatsapp-subtitle {
        font-size: 0.8rem;
        margin: 0;
    }
    
    .whatsapp-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .benefit-item {
        padding: 0.4rem 0.5rem;
        border-radius: 6px;
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .benefit-item i {
        font-size: 0.9rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .process-step {
        padding: 0.75rem 0.5rem;
        min-height: auto;
        gap: 0.5rem;
    }
    
    .step-header {
        margin-bottom: 0.5rem;
    }
    
    .step-emoji {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .process-step h5 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .process-step p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin: 0;
    }
    
    .response-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-button .btn-whatsapp {
        min-width: 100%;
        padding: 1rem;
    }
}

/* Hero Stats - Essential Styles */
.hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    padding: 1.5rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    justify-items: center !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    /* Samsung compatibility */
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    /* Prevent text overlap */
    align-items: start !important;
}

.hero-stat {
    text-align: center;
    /* Samsung compatibility */
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.hero-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Samsung compatibility */
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    text-align: center !important;
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    color: #e2e8f0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* Samsung compatibility */
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    text-align: center !important;
    /* Prevent text overlap */
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2 !important;
    min-height: 2.4rem !important;
    display: block !important;
}

/* Ensure consistent image display */
.hero-slideshow .slide {
    background: #f8f9fa;
    border-radius: 20px;
}

/* Essential Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.control-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.control-btn:active {
    transform: scale(0.95);
}

.slide-indicators {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slide-indicators::-webkit-scrollbar {
    display: none;
}

.indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.indicator.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Essential Floating Cards */
.hero-floating-card {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 200px;
    max-width: 240px;
    z-index: 5;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.hero-floating-card:hover {
    transform: translateX(-50%) perspective(1000px) rotateX(0deg) translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Decorative emoji elements matching floating card style */
.hero-emoji-decoration {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.4s ease;
}

.hero-emoji-decoration i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.hero-emoji-decoration:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), 0 6px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.25);
}

/* Essential Card Styles */

.home-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(255, 255, 255, 0.95));
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.25), 0 6px 15px rgba(0, 0, 0, 0.15);
}

.vehicle-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(255, 255, 255, 0.95));
    border-right: 5px solid var(--primary-light);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.25), 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive Hero Section - Updated */
@media (max-width: 1200px) {
    .hero-grid {
        gap: 5px !important;
        padding: 30px 0;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        gap: 5px;
        padding: 25px 0;
    }
    
    .hero-text {
        padding: 25px;
    }
    
    .hero-image {
        min-height: 450px;
    }
}

/* Essential 768px Hero Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 5px !important;
        padding: 20px 0 !important;
    }
    
    .hero-text {
        padding: 20px !important;
    }
    
    .hero-image {
        min-height: 400px !important;
    }
    
    .hero-slideshow {
        min-height: 300px !important;
        max-height: 400px !important;
    }
    
    .hero-image-container {
        min-height: 350px !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 280px !important;
    }
    
    .hero-floating-card {
        position: relative !important;
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin: 1rem auto 0 !important;
        max-width: 250px !important;
    }
}

.floating-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.floating-card-header i {
    font-size: 1.25rem;
    color: var(--primary-color);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.floating-card-number {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.floating-card-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.floating-card-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    filter: brightness(1.1);
}

/* Specific card styling */
.home-card .floating-card-header {
    color: var(--primary-dark);
}

.home-card .floating-card-header i {
    color: var(--primary-color);
}

.home-card .floating-card-number {
    color: var(--primary-dark);
    font-weight: 700;
}

.home-card .floating-card-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.vehicle-card .floating-card-header {
    color: var(--primary-dark);
}

.vehicle-card .floating-card-header i {
    color: var(--primary-light);
}

.vehicle-card .floating-card-number {
    color: var(--primary-dark);
    font-weight: 700;
}

.vehicle-card .floating-card-btn {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Background Shapes */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.bg-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.bg-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

/* Slow floating animation for background icons */
@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) translateX(3px) rotate(1deg);
    }
    50% {
        transform: translateY(-3px) translateX(-2px) rotate(-0.5deg);
    }
    75% {
        transform: translateY(5px) translateX(1px) rotate(0.5deg);
    }
}

/* Champagne pop animation removed - not used in production */

/* move-to-intermediate animation removed - not used in production */

/* float-to-left and float-to-right animations removed - not used in production */

/* float-to-left-far and float-to-right-far animations removed - not used in production */

/* float-to-center-left and float-to-center-right animations removed - not used in production */

/* float-to-left-mid and float-to-right-mid animations removed - not used in production */

/* float-to-left-high animation removed - not used in production */

/* All remaining float animations removed - not used in production */

.placeholder-text {
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

/* Services Section */
.services {
    padding: 15px 0 0 0;
    background: #fff;
    position: relative;
    overflow: visible;
    margin-bottom: 0;
    padding-bottom: 0;
    /* Fix for mobile scrolling issues */
    transform: none !important;
    will-change: auto;
    height: auto;
    max-height: none;
    overflow-y: visible;
    overflow-x: visible;
}

/* Services Grid - Horizontal Carousel */
.services-grid {
    display: flex !important;
    gap: 1.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    max-width: 100%;
    width: 100%;
}

.services-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.services-grid-container {
    position: relative;
    margin-bottom: 2rem;
    max-width: 1200px; /* Match container width */
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.services-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 30;
    backdrop-filter: blur(5px);
    pointer-events: auto;
}

.services-carousel-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.services-carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.services-carousel-nav.prev {
    left: 15px;
}

.services-carousel-nav.next {
    right: 15px;
}

.services-carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.services-carousel-nav:disabled:hover {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    transform: translateY(-50%);
}

/* Desktop responsive adjustments */
@media (min-width: 1200px) {
    .services-grid-container {
        max-width: 1200px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .services-grid-container {
        max-width: 960px;
    }
    
    .service-item {
        flex: 0 0 350px;
        min-width: 350px;
        max-width: 350px;
        width: 350px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .services-grid-container {
        max-width: 720px;
    }
    
    .service-item {
        flex: 0 0 320px;
        min-width: 320px;
        max-width: 320px;
        width: 320px;
    }
}

/* Mobile responsive carousel navigation */
@media (max-width: 768px) {
    .services-grid-container {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .services-carousel-nav {
        width: 44px;
        height: 44px;
        font-size: 18px;
        display: flex !important; /* Show navigation for horizontal carousel */
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .services-carousel-nav.prev {
        left: 15px;
    }
    
    .services-carousel-nav.next {
        right: 15px;
    }
    
    /* Mobile services grid - simple responsive layout */
    .services-grid {
        scroll-snap-type: x mandatory !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 1rem !important;
        overflow-x: auto !important;
    }
    
    .service-item {
        scroll-snap-align: start !important;
        flex: 0 0 45% !important; /* Simple percentage-based sizing */
        min-width: 45% !important;
        max-width: 45% !important;
        width: 45% !important;
    }
}

@media (max-width: 480px) {
    .services-carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
        display: flex !important; /* Show navigation for horizontal carousel */
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .services-carousel-nav.prev {
        left: 10px;
    }
    
    .services-carousel-nav.next {
        right: 10px;
    }
    
    /* Very small screens - 1 card per viewport */
    .service-item {
        flex: 0 0 90% !important; /* Simple percentage-based sizing */
        min-width: 90% !important;
        max-width: 90% !important;
        width: 90% !important;
    }
    
    /* Show scrollbar on very small screens for better UX */
    .services-grid {
        scrollbar-width: thin;
        -ms-overflow-style: auto;
    }
    
    .services-grid::-webkit-scrollbar {
        display: block;
        height: 4px;
    }
    
    .services-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .services-grid::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 2px;
    }
    
    .services-grid::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }
}

/* Service Items */
.service-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    flex: 0 0 380px !important; /* Wider for 3-4 cards display */
    min-width: 380px !important;
    max-width: 380px !important; /* Prevent stretching */
    width: 380px !important; /* Ensure consistent width */
}

/* Hidden state for better performance - Ultra aggressive */
.service-item.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    z-index: -1 !important;
    pointer-events: none !important;
    transform: scale(0) !important;
    max-height: 0 !important;
    min-height: 0 !important;
    max-width: 0 !important;
    min-width: 0 !important;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transition: height 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-item:hover::before {
    height: 5px;
}

/* Services Genie Icon */
.services-genie-icon {
    text-align: center;
    margin-top: 0.0625rem;
    margin-bottom: 0.03125rem;
}

.services-genie-image {
    width: 150px;
    height: 150px;
    opacity: 0.7;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: services-genie-float 10s ease-in-out infinite;
    display: block;
    margin: 0 auto;
}

@keyframes services-genie-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-20px) rotate(2deg); 
        opacity: 0.75;
    }
    50% { 
        transform: translateY(-10px) rotate(-1deg); 
        opacity: 0.72;
    }
    75% { 
        transform: translateY(-25px) rotate(1deg); 
        opacity: 0.78;
    }
}

/* Mobile responsive for services genie icon */
@media (max-width: 768px) {
    .services-genie-image {
        width: 120px;
        height: 120px;
        opacity: 0.6;
        /* Optimize animation for mobile performance */
        animation: services-genie-float-mobile 8s ease-in-out infinite;
        will-change: transform;
    }
}

@media (max-width: 480px) {
    .services-genie-image {
        width: 90px;
        height: 90px;
        opacity: 0.5;
        /* Further optimize for small screens */
        animation: services-genie-float-mobile 6s ease-in-out infinite;
        will-change: transform;
    }
}

/* Mobile-optimized animations for better performance */
@keyframes services-genie-float-mobile {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-15px) rotate(1deg); 
        opacity: 0.75;
    }
}

/* Compact Services Section */
.services .compact {
    /* Compact Service Controls */
    &.service-controls {
        margin-bottom: 2rem;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: space-between;
        
        .search-container {
            max-width: 300px;
        }
        
        .filter-tabs {
            gap: 0.25rem;
        }
        
        .filter-tab {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }
    }
    
    /* Compact Services Grid */
    &.services-grid {
        display: flex;
        gap: 1rem;
        margin-bottom: 2rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 0.5rem 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    &.services-grid::-webkit-scrollbar {
        display: none;
    }
    
            /* Compact Service Items */
        &.service-item {
            padding: 1.25rem;
            display: grid;
            grid-template-columns: 45px 1fr;
            grid-template-areas: "icon content";
            gap: 1rem;
            align-items: start;
            flex: 0 0 300px; /* Fixed width for carousel */
            min-width: 300px;
            max-width: 300px; /* Prevent stretching */
            width: 300px; /* Ensure consistent width */
            /* Disable ALL transitions to prevent movement */
            transition: none !important;
            transform: none !important;
            animation: none !important;
        
        .service-icon {
            width: 45px;
            height: 45px;
            font-size: 1.3rem;
            background: transparent !important;
            color: var(--primary-color) !important;
            /* Fix icon positioning */
            border-radius: 15px;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            transition: color 0.3s ease !important;
            /* Icon positioning */
            flex-shrink: 0;
        }
        
        /* Home Services - Blue Theme */
        &[data-category*="home"] {
            background: linear-gradient(135deg, #f0f4ff, #f8faff) !important;
            border-color: #dbeafe !important;
        }
        
        &[data-category*="home"] .service-icon {
            color: var(--primary-color) !important;
        }
        
        /* Vehicle Services - Blue Theme */
        &[data-category*="vehicle"] {
            background: linear-gradient(135deg, #f0f4ff, #f8faff) !important;
            border-color: #dbeafe !important;
        }
        
        &[data-category*="vehicle"] .service-icon {
            color: var(--primary-light) !important;
        }
        
        /* Business Services - Same styling as home for consistency */
        &[data-category*="business"] {
            background: linear-gradient(135deg, #f0f4ff, #f8faff) !important;
            border-color: #dbeafe !important;
        }
        
        &[data-category*="business"] .service-icon {
            color: var(--primary-color) !important;
        }
        
        .service-item .service-content {
            flex: 1;
            min-width: 0;
            /* Samsung-compatible text container sizing */
            width: 100% !important;
            max-width: 100% !important;
            overflow: visible;
            /* Content layout */
        }
        
        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.5rem;
            
            h4 {
                font-size: 1.1rem;
                margin: 0;
                line-height: 1.3;
            }
            
            .badge {
                font-size: 0.7rem;
                padding: 0.2rem 0.5rem;
                margin-left: 0.5rem;
                flex-shrink: 0;
            }
        }
        
        p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.6;
            color: #6b7280;
            /* Samsung-compatible text layout */
            word-wrap: break-word;
            overflow-wrap: break-word;
            /* Samsung-compatible text rendering */
            text-rendering: optimizeLegibility;
            font-feature-settings: "kern" 1;
            /* Flexible height for Samsung devices */
            height: auto !important;
            min-height: 46px !important;
            max-height: none !important;
            overflow: visible !important;
            /* Samsung-compatible line clamping */
            display: block !important;
            -webkit-line-clamp: unset !important;
            -webkit-box-orient: unset !important;
        }
        
        .service-actions {
            display: flex;
            gap: 0.75rem;
            align-items: center;
            
            .service-link {
                color: var(--primary-color);
                text-decoration: none;
                font-size: 0.85rem;
                font-weight: 500;
                transition: color 0.3s ease;
                
                &:hover {
                    color: var(--primary-dark);
                    text-decoration: underline;
                }
            }
            
            /* Home Services - Blue Theme */
            &[data-category="home"] .service-link {
                color: var(--primary-color);
                
                &:hover {
                    color: var(--primary-dark);
                }
            }
            
            /* Vehicle Services - Blue Theme */
            &[data-category="vehicle"] .service-link {
                color: var(--primary-light);
                
                &:hover {
                    color: var(--primary-color);
                }
            }
            
            .btn-small {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
                border-radius: 20px;
            }
        }
        
        &:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        &::before {
            height: 3px;
        }
    }
    
    /* Compact Service Summary */
    &.service-summary {
        padding: 2rem 2rem 6rem 2rem;
        background: var(--gradient-blue-light);
        border-radius: 20px 20px 0 0;
        border: 1px solid #dbeafe;
        border-bottom: none;
        margin-top: 1rem;
        margin-bottom: -2rem;
        position: relative;
        z-index: 1;
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
        
        .summary-stats {
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
            max-width: 350px;
            margin-left: auto;
            margin-right: auto;
            
            .stat-number {
                font-size: 2rem;
                color: var(--primary-color);
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            }
            
            .stat-label {
                font-size: 0.8rem;
                color: #1e293b;
                font-weight: 600;
                text-shadow: none;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }
        
        .summary-cta {
            p {
                font-size: 1rem;
                margin-bottom: 0;
                color: #1e293b;
                font-weight: 500;
                
                a {
                    color: var(--primary-color);
                    text-decoration: none;
                    font-weight: 600;
                    
                    &:hover {
                        color: var(--primary-dark);
                        text-decoration: underline;
                    }
                }
            }
        }
    }
    
    /* Responsive adjustments for compact layout */
    @media (max-width: 768px) {
        &.service-controls {
            flex-direction: column !important;
            gap: 1rem;
            justify-content: flex-start !important;
            align-items: stretch !important;
            
            .search-container {
                max-width: 100%;
                order: 2 !important;
            }
            
            .filter-tabs {
                order: 1 !important;
                margin-bottom: 1rem;
            }
        }
        
        &.services-grid {
            display: flex;
            gap: 0.75rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 0.5rem 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        &.services-grid::-webkit-scrollbar {
            display: none;
        }
        
        &.service-item {
            padding: 1rem;
            flex: 0 0 280px; /* Fixed width for mobile carousel */
            min-width: 280px;
            max-width: 280px; /* Prevent stretching */
            width: 280px; /* Ensure consistent width */
            
            .service-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .service-header h4 {
                font-size: 1rem;
            }
            
            p {
                font-size: 0.85rem;
            }
            
            .service-actions {
                flex-direction: column;
                align-items: stretch;
                gap: 0.5rem;
                
                .btn-small {
                    width: 100%;
                    text-align: center;
                }
            }
        }
        
        &.service-summary {
            padding: 1.5rem 1.5rem 5rem 1.5rem;
            margin-left: auto;
            margin-right: auto;
            max-width: 500px;
            
            .summary-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
                max-width: 350px;
                margin-left: auto;
                margin-right: auto;
            }
        }
    }
    
    @media (max-width: 480px) {
        &.service-controls {
            .filter-tabs {
                gap: 0.2rem;
            }
            
            .filter-tab {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }
        }
        
        &.service-item {
            padding: 0.75rem;
            flex: 0 0 260px; /* Fixed width for small mobile carousel */
            min-width: 260px;
            max-width: 260px; /* Prevent stretching */
            width: 260px; /* Ensure consistent width */
            
            .service-icon {
                width: 35px;
                height: 35px;
                font-size: 1.1rem;
            }
            
            .service-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
                
                .badge {
                    margin-left: 0;
                }
            }
        }
    }
}



/* Video Quote Responsive */
@media (max-width: 768px) {
    .video-booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .video-card {
        padding: 2rem;
        max-width: 100%;
    }
    
    .guide-steps {
        gap: 1rem;
    }
    
    .guide-step {
        padding: 1rem;
    }
}

/* Service Controls - Search & Filter */
.service-controls {
    margin-bottom: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.1rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
    transition: all 0.3s ease;
}

.searching .search-icon {
    color: var(--primary-light);
    transform: translateY(-50%) scale(1.1);
}

/* Search counter styling */
.search-counter {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #6c757d;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: none;
}

.search-counter span {
    font-weight: 500;
}

/* Screen reader only class for accessibility */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


.clear-search-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
}

.clear-search-btn:hover {
    background: #e9ecef;
    color: #495057;
}

.clear-search-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Responsive search container */
@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
        width: 100%;
    }
    
    .service-search {
        padding: 0.875rem 3rem 0.875rem 2.5rem;
        font-size: 0.9rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .search-icon {
        left: 0.75rem;
    }
    
    .clear-search-btn {
        right: 0.75rem;
        padding: 0.5rem;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile styles are now handled by the override at the end of the file */
}

@media (max-width: 480px) {
    .service-search {
        padding: 0.75rem 2.75rem 0.75rem 2.25rem;
        font-size: 0.85rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .search-icon {
        left: 0.5rem;
    }
    
    .clear-search-btn {
        right: 0.5rem;
        padding: 0.375rem;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Small mobile styles are now handled by the override at the end of the file */
}

/* Mobile services styling is now handled by the comprehensive override at the end of the file */

/* Search animation and effects */
.service-item {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Compact Services Section */
.services .compact {
    /* Compact Service Controls */
    &.service-controls {
        margin-bottom: 2rem;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: space-between;
        
        .search-container {
            max-width: 300px;
        }
        
        .filter-tabs {
            gap: 0.25rem;
        }
        
        .filter-tab {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }
    }
    
    /* Compact Services Grid */
    &.services-grid {
        display: flex;
        gap: 1rem;
        margin-bottom: 2rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 0.5rem 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    &.services-grid::-webkit-scrollbar {
        display: none;
    }
    
    /* Compact Service Items */
    &.service-item {
        padding: 1.25rem;
        display: grid;
        grid-template-columns: 45px 1fr;
        grid-template-areas: "icon content";
        gap: 1rem;
        align-items: start;
        flex: 0 0 300px; /* Fixed width for carousel */
        min-width: 300px;
        max-width: 300px; /* Prevent stretching */
        width: 300px; /* Ensure consistent width */
        /* Disable ALL transitions to prevent movement */
        transition: none !important;
        transform: none !important;
        animation: none !important;
        
        .service-icon {
            width: 45px;
            height: 45px;
            font-size: 1.3rem;
            background: transparent !important;
            color: var(--primary-color) !important;
            /* Fix icon positioning */
            border-radius: 15px;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            transition: color 0.3s ease !important;
            /* Icon positioning */
            flex-shrink: 0;
        }
        
        /* Home Services - Blue Theme */
        &[data-category*="home"] {
            background: linear-gradient(135deg, #f0f4ff, #f8faff) !important;
            border-color: #dbeafe !important;
        }
        
        &[data-category*="home"] .service-icon {
            color: var(--primary-color) !important;
        }
        
        /* Vehicle Services - Blue Theme */
        &[data-category*="vehicle"] {
            background: linear-gradient(135deg, #f0f4ff, #f8faff) !important;
            border-color: #dbeafe !important;
        }
        
        &[data-category*="vehicle"] .service-icon {
            color: var(--primary-light) !important;
        }
        
        /* Business Services - Same styling as home for consistency */
        &[data-category*="business"] {
            background: linear-gradient(135deg, #f0f4ff, #f8faff) !important;
            border-color: #dbeafe !important;
        }
        
        &[data-category*="business"] .service-icon {
            color: var(--primary-color) !important;
        }
        
        .service-content {
            flex: 1;
            min-width: 0;
            /* Samsung-compatible text container sizing */
            width: 100% !important;
            max-width: 100% !important;
            overflow: visible;
            /* Content layout */
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.5rem;
            
            h4 {
                font-size: 1.1rem;
                margin: 0;
                line-height: 1.3;
            }
            
            .badge {
                font-size: 0.7rem;
                padding: 0.2rem 0.5rem;
                margin-left: 0.5rem;
                flex-shrink: 0;
            }
        }
        
        p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.6;
            color: #6b7280;
            /* Ensure consistent text layout regardless of filter state */
            word-wrap: break-word;
        }
    }
}

/* No results message styling */
.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    background: var(--background-white);
    border-radius: 20px;
    border: 2px dashed #e9ecef;
    margin: 1rem 0;
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results-content i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.no-results-content h3 {
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.no-results-content p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-search {
    width: 100%;
    padding: 1rem 3rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.service-search::placeholder {
    transition: all 0.3s ease;
    color: #6c757d;
    opacity: 0.8;
    /* Smooth placeholder cycling animation */
    animation: placeholderFade 0.3s ease-in-out;
}

@keyframes placeholderFade {
    0% { opacity: 0.3; }
    50% { opacity: 0.8; }
    100% { opacity: 0.8; }
}

.service-search:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px var(--shadow-color);
}

.service-search.searching {
    border-color: var(--primary-light);
    background: #f0f8ff;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    color: #666;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Home Services Filter - Blue Theme */
.filter-tab[data-filter="home"].active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Vehicle Services Filter - Blue Theme */
.filter-tab[data-filter="vehicle"].active {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

/* Popular Filter - Blue Theme */
.filter-tab[data-filter="popular"].active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-color: var(--primary-color);
}

/* Services Grid - Main Section */
.services-grid {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-grid::-webkit-scrollbar {
    display: none;
}

/* Apply flexbox layout only to service items within the homepage services grid */
.services-grid .service-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
    flex: 0 0 380px !important; /* Wider for 3-4 cards display */
    min-width: 380px !important;
    max-width: 380px !important; /* Prevent stretching */
    width: 380px !important; /* Ensure consistent width */
}

.service-item {
    background: var(--background-white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    /* Performance optimization for mobile */
    will-change: box-shadow;
    backface-visibility: hidden;
}

.service-item:hover {
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: var(--primary-color);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Home Services - Blue Top Border */
.service-item[data-category*="home"]::before {
    background: var(--primary-color);
}

/* Vehicle Services - Purple Top Border */
.service-item[data-category*="vehicle"]::before {
    background: var(--primary-light);
}

/* Business Services - Blue Top Border (same as home) */
.service-item[data-category*="business"]::before {
    background: var(--primary-color);
}

.service-item:hover::before {
    transform: scaleX(1);
}

/* Service Header */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

/* Apply flexbox properties only to icons within the homepage services grid */
.services-grid .service-icon {
    flex-shrink: 0;
}

/* Desktop Service Actions Layout - Buttons stacked vertically */
.services-grid .service-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

/* Ensure the service content takes full width for proper centering */
.services-grid .service-content {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.services-grid .service-actions .service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.services-grid .service-actions .service-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.services-grid .service-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
    width: auto;
    min-width: 120px;
}

/* Home Services - Blue Theme */
.service-item[data-category*="home"] {
    background: linear-gradient(135deg, #f0f4ff, #f8faff);
    border-color: #dbeafe;
}

.service-item[data-category*="home"] .service-icon {
    color: var(--primary-color);
}

/* Vehicle Services - Blue Theme */
.service-item[data-category*="vehicle"] {
    background: linear-gradient(135deg, #f0f4ff, #f8faff);
    border-color: #dbeafe;
}

.service-item[data-category*="vehicle"] .service-icon {
    color: var(--primary-light) !important;
}

/* Ensure Vehicle icons are blue with high specificity */
.services-grid .service-item[data-category*="vehicle"] .service-icon {
    color: var(--primary-light) !important;
}

/* Business Services - Same styling as home services for consistency */
.service-item[data-category*="business"] {
    background: linear-gradient(135deg, #f0f4ff, #f8faff);
    border-color: #dbeafe;
}

.service-item[data-category*="business"] .service-icon {
    color: var(--primary-color);
}

/* Removed hover effect from service icons for better visibility */

/* Mobile performance optimizations for services */
@media (max-width: 768px) {
    .service-item {
        /* Reduce transition duration for mobile performance */
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
        /* Optimize for mobile rendering */
        will-change: auto !important;
        backface-visibility: visible !important;
        transform: none !important;
        text-align: left !important;
    }
    
    .service-item:hover {
        /* Disable hover effects on mobile for better performance */
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    }
    
    .service-item::before {
        /* Disable complex animations on mobile */
        transition: none !important;
        transform: none !important;
    }
    
    .service-item:hover::before {
        /* Disable hover animations on mobile */
        transform: none !important;
    }
    
    .service-icon {
        /* Optimize icon transitions for mobile */
        transition: color 0.2s ease !important;
        will-change: auto !important;
    }
    
    /* Ensure proper text alignment in service cards on mobile */
    .service-content {
        text-align: left !important;
        padding: 0.5rem 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .service-content h4 {
        text-align: left !important;
        margin-bottom: 0.75rem !important;
        /* Ensure text doesn't get cut off */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .service-content p {
        text-align: left !important;
        margin-bottom: 1rem !important;
        line-height: 1.5 !important;
        /* Ensure text doesn't get cut off */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .service-actions {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        /* Ensure buttons don't get cut off */
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        /* Force proper button container sizing */
        min-width: 0 !important;
        flex-shrink: 1 !important;
        /* Ensure button container doesn't overflow */
        box-sizing: border-box !important;
    }
    
    .service-actions .btn {
        width: auto !important;
        max-width: none !important;
        text-align: center !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
        /* Ensure button text doesn't get cut off */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        line-height: 1.3 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        /* Force button to stay within container */
        min-width: 0 !important;
        flex-shrink: 1 !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        /* Force proper grid sizing */
        min-width: 0 !important;
        flex-shrink: 1 !important;
    }
    
    .service-item {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        /* Ensure proper spacing */
        padding: 1.5rem !important;
        overflow: visible !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        /* Force proper container sizing */
        min-width: 0 !important;
        flex-shrink: 1 !important;
    }
    
    /* Disable complex animations on mobile for better scrolling performance */
    .services-genie-image {
        animation-play-state: running;
    }
}

/* Further optimizations for small mobile screens */
@media (max-width: 480px) {
    .service-item {
        /* Minimal transitions for small screens */
        transition: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
        /* Ensure proper alignment on very small screens */
        text-align: left !important;
        padding: 1rem !important;
    }
    
    .service-item:hover {
        /* No hover effects on small screens */
        transform: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    }
    
    .service-icon {
        /* No transitions on small screens */
        transition: none !important;
    }
    

    

    

}

.service-badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.popular {
    background: #fef3c7;
    color: #d97706;
}

.badge.new {
    background: #dbeafe;
    color: var(--primary-color);
}

.badge.premium {
    background: #f3e8ff;
    color: var(--primary-light);
}

.badge.urgent {
    background: #fee2e2;
    color: var(--danger-color);
}

.badge.seasonal {
    background: #dcfce7;
    color: var(--success-color);
}

.badge.essential {
    background: #e0e7ff;
    color: var(--primary-color);
}

/* Service Content - Samsung Compatible */
.services .service-content {
    /* Samsung-compatible text container sizing */
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible;
}

.service-content h4 {
    color: #1f2937;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

/* Samsung Compatible - Service content paragraphs */
.services .service-content p {
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    /* Samsung-compatible text layout */
    word-wrap: break-word;
    overflow-wrap: break-word;
    /* Samsung-compatible text rendering */
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
    /* Flexible height for Samsung devices */
    height: auto !important;
    min-height: 46px !important;
    max-height: none !important;
    overflow: visible !important;
    /* Samsung-compatible display */
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-tag {
    background: #f3f4f6;
    color: #4b5563;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature-tag i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Service Actions */
.service-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.service-actions .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}



/* Service Summary */
.service-summary {
    background: var(--gradient-light);
    border-radius: 20px 20px 0 0;
    padding: 2.5rem 3rem 3rem 3rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-bottom: none;
    margin-bottom: 0;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
    margin-left: -20px;
    margin-right: -20px;
    padding-bottom: 4rem;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.summary-cta p {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        display: flex !important;
        grid-template-columns: none;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .filter-tabs {
        gap: 0.25rem;
    }
    
    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .service-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .summary-stats {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: stretch !important;
        gap: 0.5rem !important;
        padding: 0.75rem !important;
        margin: 0 auto 1rem auto !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 8px !important;
    }
    
    .stat-item {
        flex: 1 !important;
        text-align: center !important;
        padding: 0.5rem 0.25rem !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .stat-item .stat-number {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        color: var(--primary-color) !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
        max-width: 100% !important;
        display: block !important;
        width: auto !important;
    }
    
    .stat-item .stat-label {
        font-size: 0.65rem !important;
        color: var(--text-secondary) !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05px !important;
        line-height: 1.1 !important;
        margin: 0 !important;
        padding: 0 !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
        max-width: 100% !important;
        display: block !important;
        width: auto !important;
    }
    
    .service-summary {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-controls {
        gap: 1rem;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .service-item {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .service-content h4 {
        font-size: 1.1rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-light) 0%, #e9ecef 100%);
}

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

.testimonial-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
}

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

.author-info h4 {
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info span {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Portfolio Gallery Section */
.portfolio {
    padding: 80px 0;
    background: #fff;
}

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

.portfolio-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 250px;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    text-align: center;
    position: relative;
}

.portfolio-image.before {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.portfolio-image.after {
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.portfolio-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #667eea;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Partnerships Section */
.partnerships {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.partnership-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partnership-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partnership-logo {
    margin-bottom: 1rem;
}

.partnership-logo i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.partnership-logo h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.partnership-item p {
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Special Offers Section */
.special-offers {
    padding: 80px 0;
    background: #fff;
}

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

.offer-item {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: visible;
    margin-top: 10px;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.offer-item.featured {
    background: var(--gradient-secondary);
    color: white;
    border-color: #667eea;
}

.offer-item.featured .offer-content p,
.offer-item.featured .offer-content li {
    color: rgba(255, 255, 255, 0.9);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(50%);
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.offer-item.featured .offer-badge {
    background: #ffd700;
    color: #333;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.offer-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.offer-header h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.offer-item.featured .offer-header h3 {
    color: white;
}

.offer-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.offer-item.featured .original-price {
    color: rgba(255, 255, 255, 0.7);
}

.current-price {
    color: #28a745;
    font-size: 1.8rem;
    font-weight: bold;
}

.offer-item.featured .current-price {
    color: #ffd700;
}

.discount {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.offer-item.featured .discount {
    background: #ffd700;
    color: #333;
}

.offer-content {
    margin-bottom: 2rem;
}

.offer-content p {
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.offer-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.offer-content li {
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.offer-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.offer-item.featured .offer-content li:before {
    color: #ffd700;
}

.offer-validity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.offer-item.featured .offer-validity {
    color: rgba(255, 255, 255, 0.7);
}

.offer-validity i {
    color: #667eea;
}

.offer-item.featured .offer-validity i {
    color: #ffd700;
}

.offer-item .btn {
    width: 100%;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-category {
    background: white;
    border: 2px solid #e9ecef;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-category:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.faq-category.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.faq-category i {
    font-size: 1.1rem;
}

.faq-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-group {
    display: none;
}

.faq-group.active {
    display: block;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #667eea;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 2rem;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
    opacity: 1;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: #fff;
}

.areas-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.areas-map {
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    height: 500px;
}

.map-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 50%, #2c5aa0 100%);
    position: relative;
    border-radius: 20px;
}

.map-title-overlay {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.map-title-overlay h3 {
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.map-title-overlay p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Thames River */
.thames-river {
    position: absolute;
    top: 45%;
    left: 20%;
    width: 60%;
    height: 8px;
    background: linear-gradient(90deg, #3498db 0%, #2980b9 100%);
    border-radius: 4px;
    transform: rotate(-15deg);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.thames-river::before {
    content: "River Thames";
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #2980b9;
    font-size: 0.8rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Zone Markers */
.zone-marker {
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.zone-marker:hover {
    z-index: 20;
    transform: scale(1.1);
}

.marker-pin {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.marker-pin i {
    color: white;
    font-size: 1.2rem;
    transform: rotate(45deg);
}

.zone-marker:hover .marker-pin {
    background: #5a67d8;
    transform: rotate(-45deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.zone-info {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-width: 140px;
    backdrop-filter: blur(10px);
}

.zone-marker:hover .zone-info {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.zone-info h4 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    font-weight: bold;
}

.response-time {
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    color: white;
}

.response-time.fastest {
    background: linear-gradient(45deg, #28a745, #20c997);
    animation: pulse-green 2s infinite;
}

.response-time.medium {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
}

.response-time.slow {
    background: linear-gradient(45deg, #dc3545, #e83e8c);
}

.coverage-detail {
    font-size: 0.75rem;
    color: #7f8c8d;
    line-height: 1.3;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(40, 167, 69, 0); }
}

/* Zone Positioning on Map */
.central-zone {
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.north-zone {
    top: 25%;
    left: 45%;
    transform: translateX(-50%);
}

.south-zone {
    bottom: 20%;
    left: 55%;
    transform: translateX(-50%);
}

.east-zone {
    top: 40%;
    right: 15%;
    transform: translateY(-50%);
}

.west-zone {
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}

.counties-zone {
    top: 10%;
    right: 10%;
}

/* Map Legend */
.map-legend {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 15;
    backdrop-filter: blur(10px);
}

.map-legend h4 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: bold;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #2c3e50;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-color.fastest {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.legend-color.medium {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
}

.legend-color.slow {
    background: linear-gradient(45deg, #dc3545, #e83e8c);
}

.areas-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.coverage-details h3,
.check-coverage h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.coverage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.coverage-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 0.25rem;
}

.coverage-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.coverage-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.check-coverage p {
    color: #666;
    margin-bottom: 1rem;
}

.postcode-checker {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.postcode-checker input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.postcode-checker input:focus {
    outline: none;
    border-color: #667eea;
}

.coverage-result {
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.coverage-result.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.coverage-result.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Emergency Contact Section */
.emergency-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

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

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-weight: bold;
    font-size: 0.9rem;
}

.emergency-badge i {
    color: #ffd700;
    animation: pulse 2s infinite;
}

.emergency-info h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.emergency-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.emergency-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.emergency-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.emergency-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.emergency-feature i {
    font-size: 1.5rem;
    color: #ffd700;
    margin-top: 0.25rem;
}

.emergency-feature h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.emergency-feature p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.emergency-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.emergency-contact-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: #333;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header h3 {
    color: #dc3545;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.contact-header p {
    color: #666;
    margin: 0;
}

.emergency-numbers {
    margin-bottom: 2rem;
}

.emergency-number {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.emergency-number:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.number-icon {
    background: #dc3545;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.number-info h4 {
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.phone-number {
    color: #dc3545;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.response-time {
    color: #28a745;
    font-size: 0.8rem;
    font-weight: bold;
}

.emergency-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-emergency {
    background: #dc3545;
    color: white;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 15px 20px;
}

.btn-emergency:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 15px 20px;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* FAQ Section WhatsApp Button - Specific Styling */
.faq-whatsapp-btn {
    flex: none !important;
    width: auto !important;
    min-width: fit-content !important;
    max-width: 200px !important;
    padding: 15px 25px !important;
    justify-content: center !important;
}

/* Center the FAQ CTA content and WhatsApp button */
.faq-cta .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.faq-cta .cta-buttons {
    display: flex;
    justify-content: center;
}

.faq-cta .cta-buttons .faq-whatsapp-btn {
    margin: 0 auto;
}

.emergency-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    color: #856404;
}

.emergency-note i {
    color: #f39c12;
    margin-top: 0.25rem;
}

.emergency-note p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fff;
}

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

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.services-grid {
    display: flex !important;
    grid-template-columns: none;
    gap: 1.5rem;
}

.service-category h3 {
    color: #667eea;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Vehicle services category - purple theme */
.service-category:nth-child(2) h3 {
    color: #8b5cf6;
}

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

.service-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.service-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

/* Vehicle services items - purple theme */
.service-category:nth-child(2) .service-item:hover {
    border-color: #8b5cf6;
}

.service-category:nth-child(2) .service-item i {
    color: #8b5cf6;
}

.service-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.service-item.coming-soon {
    opacity: 0.7;
    background: #e9ecef;
}

.service-item.coming-soon i {
    color: #6c757d;
}

/* Vehicle services coming soon items - purple theme */
.service-category:nth-child(2) .service-item.coming-soon i {
    color: #a78bfa;
}

.service-detail-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

/* Mobile-specific fixes for section headers */
@media (max-width: 768px) {
    .section-header {
        padding: 0 15px;
        margin-bottom: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .section-header {
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 5px;
    }
}

.service-detail-link:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--background-light);
}

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

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

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.about-image {
    background: var(--primary-color);
    border-radius: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 20px 40px var(--shadow-color);
}

/* Contact Section */
.contact {
    padding: 0 0 80px 0;
    background: #fff;
    margin-top: 0;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
}

.contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-action {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-action h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-action p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-action .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-phone {
    background: var(--primary-color);
    color: white;
    border: none;
}

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

@media (max-width: 768px) {
    .contact-actions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Mobile fixes for contact section header */
    .contact .section-header {
        padding: 0 10px;
        margin-bottom: 1.5rem;
    }
    
    .contact .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact .section-header p {
        font-size: 1rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 5px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
}

/* Small mobile fixes for contact section */
@media (max-width: 480px) {
    .contact .section-header {
        padding: 0 5px;
        margin-bottom: 1rem;
        height: auto;
    }
    
    .contact .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
        display: block;
        visibility: visible;
    }
    
    .contact .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 3px;
        word-spacing: 0.5px;
        display: block;
        visibility: visible;
        height: auto;
    }
    
    .contact-content {
        padding: 0 10px;
        gap: 1.5rem;
    }
}

/* Ultra-small mobile fix for contact section text */
@media (max-width: 360px) {
    .contact .section-header {
        padding: 0 2px;
        margin-bottom: 0.8rem;
        min-height: 80px;
        height: auto;
    }
    
    .contact .section-header h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        line-height: 1.1;
        min-height: 30px;
        height: auto;
    }
    
    .contact .section-header p {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0 1px;
        word-spacing: 0.3px;
        letter-spacing: 0.2px;
        min-height: 40px;
        height: auto;
    }
}

/* Force contact section visibility on all mobile devices */
@media (max-width: 768px) {
    .contact {
        min-height: 200px;
        height: auto;
        overflow: visible;
    }
    
    .contact .section-header {
        min-height: 100px;
        height: auto;
        overflow: visible;
        position: relative;
        z-index: 10;
    }
}

/* Enhanced Booking Service Section */
.contact {
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    padding: 80px 0;
    margin-top: 0;
}

/* Booking Tabs */
.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.booking-tab {
    padding: 12px 24px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.booking-tab:hover {
    border-color: #667eea;
    color: #667eea;
}

.booking-tab.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

/* WhatsApp Tab Specific Styling */
.booking-tab[data-booking="whatsapp"].active {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.booking-tab[data-booking="whatsapp"]:hover {
    border-color: #25D366;
    color: #25D366;
}

/* Emergency Tab Specific Styling */
.booking-tab[data-booking="emergency"].active {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
}

.booking-tab[data-booking="emergency"]:hover {
    border-color: #dc2626;
    color: #dc2626;
}





.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}







/* Booking Content */
.booking-content {
    display: none;
}

.booking-content.active {
    display: block;
}

/* Form Rows */


/* Checkbox Styling */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #495057;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

/* Phone Booking Content */
.phone-booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .phone-booking-content {
        grid-template-columns: 1fr;
    }
}

.phone-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.phone-card i {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 20px;
}

.phone-card h3 {
    margin-bottom: 15px;
    color: #2d3748;
}

.phone-details {
    margin: 25px 0;
    text-align: left;
}

.phone-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.phone-features h3 {
    margin-bottom: 25px;
    color: #2d3748;
}

.features-grid {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-item i {
    font-size: 24px;
    color: #667eea;
    margin-top: 5px;
}

.feature-item h4 {
    margin-bottom: 8px;
    color: #2d3748;
}

.feature-item p {
    color: #6c757d;
    font-size: 14px;
}

/* Video Quote Section */
.video-booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
}

.video-info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-card {
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    max-width: 400px;
}

.video-card i {
    font-size: 3rem;
    color: #25d366;
    margin-bottom: 1.5rem;
}

.video-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.video-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.benefit-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
}

.btn-success {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-success:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Video Guide Section */
.video-guide {
    flex: 1;
}

.video-guide h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.guide-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.video-tips {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.video-tips h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.video-tips ul {
    color: var(--text-secondary);
    margin: 0;
    padding-left: 1.5rem;
}

.video-tips li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Emergency Service Content */
.emergency-content {
    text-align: center;
}

.emergency-header {
    margin-bottom: 40px;
}

.emergency-header i {
    font-size: 48px;
    color: #dc3545;
    margin-bottom: 20px;
}

.emergency-header h3 {
    color: #dc3545;
    margin-bottom: 10px;
}

.emergency-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.emergency-service {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #dc3545;
}

.emergency-service h4 {
    color: #dc3545;
    margin-bottom: 10px;
}

.emergency-service p {
    color: #6c757d;
    margin-bottom: 15px;
}

.response-time {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.emergency-contact {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: inline-block;
}

.emergency-phone {
    display: flex;
    align-items: center;
    gap: 20px;
}

.emergency-phone i {
    font-size: 36px;
    color: #dc3545;
    margin-bottom: 20px;
}

.emergency-phone h4 {
    color: #dc3545;
    margin-bottom: 5px;
}

.emergency-phone p {
    color: #6c757d;
    margin-bottom: 15px;
}

/* Button Enhancements */
.btn-large {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
}

.btn-danger {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
    border-color: #bd2130;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section .logo-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* QR Codes and Widgets Container */
.qr-widgets-container {
    margin-top: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* WhatsApp QR Code Styling */
.whatsapp-qr {
    text-align: center;
}

.whatsapp-qr .qr-code {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.whatsapp-qr .qr-code:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.whatsapp-qr .qr-caption {
    color: #bdc3c7;
}

/* Trustpilot Widget Styling */
.trustpilot-widget {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 300px;
    width: 100%;
}

.trustpilot-widget a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.trustpilot-widget a:hover {
    color: var(--primary-color);
}
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Google Review QR Code Styling */
.google-review-qr {
    text-align: center;
}

.google-review-qr .qr-code {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.google-review-qr .qr-code:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.google-review-qr .qr-caption {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Service Page Custom Navigation Overrides */
.custom-previous::before,
.custom-next::before,
.custom-previous::after,
.custom-next::after,
.custom-related-1::before,
.custom-related-2::before,
.custom-related-1::after,
.custom-related-2::after {
    display: none !important;
}

.custom-previous:hover::before,
.custom-next:hover::before,
.custom-related-1:hover::before,
.custom-related-2:hover::before {
    display: none !important;
}

.custom-previous:hover,
.custom-next:hover,
.custom-related-1:hover,
.custom-related-2:hover {
    border-color: #2563eb !important;
    background: white !important;
}

.custom-previous .btn:hover,
.custom-next .btn:hover {
    background: #2563eb !important;
    border-color: #2563eb !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        display: flex !important;
        grid-template-columns: none;
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-item {
        padding: 2rem 1.5rem 1.5rem;
        margin-top: 15px;
    }

    .offer-badge {
        top: -12px;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .offer-header h3 {
        font-size: 1.2rem;
    }

    .current-price {
        font-size: 1.5rem;
    }

    .faq-categories {
        gap: 0.5rem;
    }

    .faq-category {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .faq-content {
        padding: 1.5rem;
    }

    .areas-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        margin-bottom: 1rem;
        height: 400px;
    }

    .map-title-overlay {
        padding: 0.75rem 1.5rem;
    }

    .map-title-overlay h3 {
        font-size: 1rem;
    }

    .map-title-overlay p {
        font-size: 0.8rem;
    }

    .zone-marker {
        transform: scale(0.8);
    }

    .zone-info {
        min-width: 120px;
        padding: 0.75rem;
    }

    .zone-info h4 {
        font-size: 0.8rem;
    }

    .response-time {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }

    .coverage-detail {
        font-size: 0.7rem;
    }

    .map-legend {
        padding: 0.75rem;
        bottom: 0.5rem;
        left: 0.5rem;
    }

    .legend-items {
        gap: 0.25rem;
    }

    .legend-item {
        font-size: 0.7rem;
    }

    .map-legend {
        bottom: 0.5rem;
        left: 0.5rem;
        padding: 0.75rem;
    }

    .headquarters-marker {
        width: 30px;
        height: 30px;
    }

    .thames-river {
        height: 6px;
    }

    .postcode-checker {
        flex-direction: column;
    }

    .emergency-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .emergency-features {
        grid-template-columns: 1fr;
    }

    .emergency-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .emergency-actions {
        flex-direction: column;
    }

    .demo-buttons {
        flex-direction: column;
    }

    /* Online Booking Responsive */
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-form-container {
        padding: 2rem;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .time-options {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }

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

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Modal Responsive */
    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-footer {
        padding: 1rem 1.5rem 1.5rem;
    }

    /* Quote Calculator Responsive */
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .calculator-form {
        padding: 2rem;
    }

    .category-selection {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-group.active {
        grid-template-columns: 1fr;
    }

    .quote-result {
        position: static;
        order: -1;
    }

    .quote-card {
        margin-bottom: 1rem;
    }

    .calculator-navigation {
        flex-direction: column;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding: 1rem;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    }

    /* Job Tracking Mobile */
    .input-with-button {
        flex-direction: column;
        gap: 0.5rem;
    }

    .job-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .detail-cards {
        grid-template-columns: 1fr;
    }

    .technician-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .job-actions {
        flex-direction: column;
    }

    .demo-buttons {
        flex-direction: column;
    }

    /* Customer Portal Mobile */
    .dashboard-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .content-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    .service-details {
        grid-template-columns: 1fr;
    }

    .available-rewards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        padding: 1.5rem;
    }

    .testimonial-item {
        padding: 1.5rem;
    }

    .portfolio-item {
        padding: 1rem;
    }

    .map-container {
        height: 300px;
    }

    .map-title-overlay {
        padding: 0.5rem 1rem;
        top: 10px;
    }

    .map-title-overlay h3 {
        font-size: 0.9rem;
    }

    .map-title-overlay p {
        font-size: 0.75rem;
    }

    .zone-marker {
        transform: scale(0.7);
    }

    .zone-info {
        min-width: 100px;
        padding: 0.5rem;
    }

    .partnership-item {
        padding: 1.5rem;
    }

    .offer-item {
        padding: 1.5rem 1rem 1rem;
        margin-top: 20px;
    }

    .offer-badge {
        top: -15px;
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Message Styles */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Active Navigation State */
.nav-link.active {
    color: #667eea;
    font-weight: 600;
}

/* Loading State */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Online Booking Section */
.online-booking {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-form-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.booking-form {
    width: 100%;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

/* Service Selection */
.service-selection {
    margin-bottom: 2rem;
}

.service-category {
    margin-bottom: 2rem;
}

.service-category h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

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

.service-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option input[type="radio"] {
    display: none;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.service-option input[type="radio"]:checked + .option-content {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.option-content i {
    font-size: 1.5rem;
    color: #667eea;
}

.service-option input[type="radio"]:checked + .option-content i {
    color: white;
}

/* Schedule Selection */
.schedule-selection {
    margin-bottom: 2rem;
}

.date-picker {
    margin-bottom: 2rem;
}

.date-picker label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.date-picker input[type="date"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.date-picker input[type="date"]:focus {
    outline: none;
    border-color: #667eea;
}

.time-slots {
    margin-bottom: 2rem;
}

.time-slots label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.time-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
}

.time-option {
    cursor: pointer;
}

.time-option input[type="radio"] {
    display: none;
}

.time-option span {
    display: block;
    padding: 0.75rem;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.time-option input[type="radio"]:checked + span {
    border-color: #667eea;
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Urgency Selection */
.urgency-selection {
    margin-bottom: 2rem;
}

.urgency-selection label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.urgency-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.urgency-option {
    cursor: pointer;
}

.urgency-option input[type="radio"] {
    display: none;
}

.urgency-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.urgency-option input[type="radio"]:checked + .urgency-content {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.urgency-content i {
    font-size: 1.2rem;
    color: #667eea;
}

.urgency-option input[type="radio"]:checked + .urgency-content i {
    color: white;
}

/* Contact Details */
.contact-details {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

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

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}



/* Booking Info */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.info-header i {
    font-size: 2rem;
    color: #667eea;
}

.info-header h3 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.3rem;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: #667eea;
    width: 20px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.step-content p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quote Calculator Section */
.quote-calculator {
    padding: 80px 0;
    background: #fff;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.calculator-form {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.calc-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.calc-step.active {
    display: block;
}

.calc-step h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

/* Category Selection */
.category-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.category-option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-option:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%);
    transform: translateY(-5px);
}

.category-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.category-icon {
    margin-bottom: 1rem;
}

.category-icon i {
    font-size: 3rem;
    color: #667eea;
}

.category-option.selected .category-icon i {
    color: white;
}

.category-option h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.category-option p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Service Selection */
.service-selection-calc {
    margin-bottom: 2rem;
}

.service-group {
    display: none;
}

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

.service-calc-option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.service-calc-option:hover {
    border-color: #667eea;
    transform: translateY(-3px);
}

.service-calc-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
}

.service-calc-option.selected::after {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.service-calc-option i {
    font-size: 2rem;
    color: #667eea;
}

.service-calc-option.selected i {
    color: white;
}

.service-calc-option span {
    font-weight: 600;
    font-size: 1rem;
}

.service-calc-option small {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Details Form */
.details-form {
    margin-bottom: 2rem;
}

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

.detail-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.detail-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.detail-group select:focus {
    outline: none;
    border-color: #667eea;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.checkbox-option:hover {
    background: #f8f9fa;
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
    cursor: pointer;
}

/* Quote Result */
.quote-result {
    position: sticky;
    top: 100px;
}

.quote-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    margin-bottom: 2rem;
}

.quote-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.quote-header i {
    font-size: 2rem;
    color: #667eea;
}

.quote-header h3 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.5rem;
}

.quote-breakdown {
    margin-bottom: 2rem;
}

.quote-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: #495057;
    border-bottom: 1px solid #f8f9fa;
}

.quote-line:last-of-type {
    border-bottom: none;
}

.quote-divider {
    height: 2px;
    background: #e9ecef;
    margin: 1rem 0;
}

.quote-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
}

.quote-total span:last-child {
    color: #667eea;
    font-size: 1.5rem;
}

.quote-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quote-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    color: #856404;
    font-size: 0.9rem;
}

.quote-disclaimer i {
    color: #f39c12;
    margin-right: 0.5rem;
}

/* Calculator Navigation */
.calculator-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    bottom: 20px;
    z-index: 100;
    margin-top: 2rem;
}

.calc-prev, .calc-next, .calc-reset {
    flex: 1;
    justify-content: center;
}

/* Pulse attention animation for Next button */
.calc-next.pulse-attention {
    animation: pulseAttention 1s ease-in-out 3;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
}

@keyframes pulseAttention {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(102, 126, 234, 0.8); }
    100% { transform: scale(1); }
}

/* Floating Hint */
.floating-hint {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    z-index: 1000;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-hint.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.floating-hint .hint-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.floating-hint .hint-content i {
    font-size: 1.2rem;
    animation: bounce 1s ease-in-out infinite;
}

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

/* Job Tracking Section */
.job-tracking {
    padding: 80px 0;
    background: #f8f9fa;
}

.tracking-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tracking-input {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.input-group {
    max-width: 500px;
    margin: 0 auto;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.input-with-button {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.input-with-button input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-button input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-group small {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Tracking Result */
.tracking-result {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.job-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.job-ref, .job-date {
    margin: 0.25rem 0;
    opacity: 0.9;
}

.status-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Progress Timeline */
.tracking-progress {
    padding: 2rem;
}

.progress-timeline {
    position: relative;
}

.progress-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -25px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e9ecef;
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-item.completed .timeline-dot {
    background: #28a745;
}

.timeline-item.current .timeline-dot {
    background: #667eea;
    animation: pulse 2s infinite;
}

.timeline-content h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.timeline-content p {
    margin: 0 0 0.5rem 0;
    color: #6c757d;
}

.timeline-time {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
}

/* Detail Cards */
.job-details {
    padding: 2rem;
    border-top: 1px solid #e9ecef;
}

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

.detail-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
}

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

.card-header i {
    color: #667eea;
    font-size: 1.2rem;
}

.card-header h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

/* Technician Info */
.technician-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tech-avatar {
    width: 50px;
    height: 50px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.tech-details h5 {
    margin: 0 0 0.25rem 0;
    color: #333;
}

.tech-details p {
    margin: 0 0 0.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.tech-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffc107;
}

/* ETA Info */
.eta-info {
    text-align: center;
}

.eta-date {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.eta-remaining {
    display: block;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
}

/* Location Info */
.location-info p {
    margin: 0 0 0.5rem 0;
}

.location-note {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Job Updates */
.job-updates {
    padding: 2rem;
    border-top: 1px solid #e9ecef;
}

.job-updates h4 {
    margin: 0 0 1rem 0;
    color: #333;
}

.updates-list {
    gap: 1rem;
}

.update-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.update-time {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 100px;
}

.update-content {
    flex: 1;
}

.update-content h5 {
    margin: 0 0 0.25rem 0;
    color: #333;
    font-size: 1rem;
}

.update-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Job Actions */
.job-actions {
    padding: 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Demo Jobs */
.demo-jobs {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.demo-jobs h4 {
    margin: 0 0 1rem 0;
    color: #333;
}

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

.demo-btn {
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    border-color: #667eea;
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
}

/* Customer Portal Section */
.customer-portal {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.customer-portal .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.customer-portal .section-header h2 {
    color: white;
    margin-bottom: 1rem;
}

.customer-portal .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

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

/* Login Section */
.portal-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.login-card {
    background: white;
    color: #333;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.login-card h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.8rem;
}

.login-card p {
    margin: 0 0 2rem 0;
    color: #6c757d;
}

.login-form {
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.login-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.login-options a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-options a:hover {
    color: #5a6fd8;
}

.demo-login {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.demo-login p {
    margin: 0 0 1rem 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.demo-login-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.demo-login-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Dashboard */
.portal-dashboard {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-section h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.welcome-section p {
    margin: 0;
    opacity: 0.9;
}

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

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-content h4 {
    margin: 0 0 0.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-number {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Dashboard Content */
.dashboard-content {
    padding: 2rem;
}

.content-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #6c757d;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #667eea;
}

.tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Services Tab */
.services-list {
    display: grid;
    gap: 1rem;
}

.service-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-title {
    font-weight: 600;
    color: #333;
    margin: 0;
}

.service-date {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Dashboard service details - NOT service pages */
.dashboard .service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-detail i {
    color: #667eea;
    width: 16px;
}

.service-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-status.completed {
    background: #d4edda;
    color: #155724;
}

.service-status.upcoming {
    background: #fff3cd;
    color: #856404;
}

.service-status.in-progress {
    background: #cce7ff;
    color: #004085;
}

/* Maintenance Tab */
.maintenance-overview {
    margin-bottom: 2rem;
}

.maintenance-overview h4 {
    margin: 0 0 1rem 0;
    color: #333;
}

.maintenance-items {
    display: grid;
    gap: 1rem;
}

.maintenance-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #ffc107;
}

.maintenance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.maintenance-title {
    font-weight: 600;
    color: #333;
    margin: 0;
}

.maintenance-date {
    color: #dc3545;
    font-weight: 600;
}

.maintenance-description {
    color: #6c757d;
    margin: 0;
}

.reminder-options {
    display: grid;
    gap: 1rem;
}

.reminder-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.reminder-option:hover {
    background: #e9ecef;
}

.reminder-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
    cursor: pointer;
}

/* Vehicles Tab */
.vehicles-overview h4 {
    margin: 0 0 1rem 0;
    color: #333;
}

.vehicles-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vehicle-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #28a745;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.vehicle-info h5 {
    margin: 0 0 0.25rem 0;
    color: #333;
}

.vehicle-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.vehicle-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Rewards Tab */
.rewards-overview h4 {
    margin: 0 0 1rem 0;
    color: #333;
}

.rewards-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
}

.points-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.points-number {
    font-size: 3rem;
    font-weight: 700;
}

.points-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.rewards-progress {
    margin-bottom: 2rem;
}

.rewards-progress h5 {
    margin: 0 0 1rem 0;
    color: #333;
}

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

.level-progress .progress-bar {
    margin-bottom: 0.5rem;
}

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

.reward-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.reward-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.reward-card h5 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.reward-card p {
    margin: 0 0 1rem 0;
    color: #6c757d;
}

.reward-points {
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Booking Confirmation Modal */
.booking-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

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

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.modal-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4ade80;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
}

.booking-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
}

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

.detail-item strong {
    color: #2c3e50;
}

.modal-footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.modal-footer .btn {
    min-width: 120px;
} 

/* Customer Portal System */
.customer-portal {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Quick Actions Section */
.quick-actions {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.quick-action-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.quick-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.quick-action-card:hover::before {
    left: 100%;
}

.quick-action-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.quick-action-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.quick-action-card:hover i {
    transform: scale(1.1);
}

.quick-action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.quick-action-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.action-arrow {
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.quick-action-card:hover .action-arrow {
    opacity: 1;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    /* Quick Actions Mobile */
    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-action-card {
        padding: 30px 20px;
    }
    
    .quick-action-card h3 {
        font-size: 1.3rem;
    }
    
    .quick-action-card i {
        font-size: 2.5rem;
    }
}

/* Enhanced Service Navigation System */
.service-navigation {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    position: relative;
    overflow: hidden;
}

.service-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    pointer-events: none;
}

.service-navigation .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.service-navigation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-navigation-header h3 {
    color: var(--text-primary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-navigation-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-nav-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-nav-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-nav-card:hover::before {
    transform: scaleX(1);
}

.service-nav-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-nav-card:hover::after {
    opacity: 1;
}

.service-nav-card h4 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.service-nav-card h4 i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.service-nav-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.service-nav-card .btn {
    width: 100%;
    justify-content: center;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.service-nav-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.service-nav-card.previous-service {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.service-nav-card.previous-service h4 {
    color: var(--primary-color);
}

.service-nav-card.previous-service .btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.service-nav-card.previous-service .btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px) scale(1.05);
}

.service-nav-card.next-service {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.service-nav-card.next-service h4 {
    color: var(--primary-color);
}

.service-nav-card.next-service .btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.service-nav-card.next-service .btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px) scale(1.05);
}

.service-nav-card.related-service {
    border-color: #e9ecef;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.service-nav-card.related-service:hover {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.service-nav-card.related-service .btn {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.service-nav-card.related-service .btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
}

.service-navigation-footer {
    text-align: center;
    margin-top: 3rem;
}

.service-navigation-footer .btn {
    background: transparent;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.service-navigation-footer .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-navigation-footer .btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-navigation-footer .btn:hover::before {
    left: 100%;
}

/* Responsive Enhanced Service Navigation */
@media (max-width: 768px) {
    .service-navigation {
        padding: 3rem 0;
    }
    
    .service-navigation-header h3 {
        font-size: 1.8rem;
        background: var(--primary-color);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .service-navigation-header p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .service-navigation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-nav-card {
        padding: 2rem;
        margin: 0 0.5rem;
    }
    
    .service-nav-card h4 {
        font-size: 1.3rem;
    }
    
    .service-nav-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .service-navigation {
        padding: 2.5rem 0;
    }
    
    .service-navigation .container {
        padding: 0 1rem;
    }
    
    .service-nav-card {
        padding: 1.75rem;
        margin: 0;
    }
    
    .service-navigation-header {
        margin-bottom: 2.5rem;
    }
    
    .service-navigation-header h3 {
        font-size: 1.6rem;
    }
    
    .service-navigation-header p {
        font-size: 1rem;
    }
    
    .service-navigation-footer .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile-specific hero slideshow fixes */
@media (max-width: 768px) {
    .hero-slideshow {
        height: 350px !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 auto !important;
    }
    

    

    
    .hero-image-container {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 auto 20px !important;
        max-width: 100% !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-image-left,
    .hero-image-right {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }
    
    .slide-caption {
        padding: 15px 10px 10px !important;
        background: rgba(0, 0, 0, 0.7) !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        color: white !important;
    }
    
    .slide-caption h4 {
        font-size: 0.9rem !important;
        margin: 0 0 5px 0 !important;
    }
    
    .slide-caption p {
        font-size: 0.75rem !important;
        margin: 0 !important;
        line-height: 1.3 !important;
    }
    
    /* Hide navigation arrows on mobile, show only indicators */
    .slideshow-controls {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10 !important;
    }
    
    .control-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 28px !important;
        height: 28px !important;
        font-size: 10px !important;
        background: rgba(0, 0, 0, 0.6) !important;
        color: white !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    .slide-indicators {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        bottom: 15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10 !important;
        gap: 6px !important;
        padding: 10px 16px !important;
        background: rgba(0, 0, 0, 0.6) !important;
        border-radius: 20px !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    .indicator {
        width: 8px !important;
        height: 8px !important;
        background: rgba(255, 255, 255, 0.5) !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        flex-shrink: 0 !important;
    }
    
    .indicator.active {
        background: white !important;
        transform: scale(1.4) !important;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.6) !important;
    }
    
    .indicator:hover {
        background: rgba(255, 255, 255, 0.8) !important;
        transform: scale(1.2) !important;
    }
    
    /* Ensure indicators are clickable and visible */
    .indicator {
        cursor: pointer !important;
        pointer-events: auto !important;
        z-index: 10 !important;
    }
    
    /* Swipe hints completely removed */
    
    /* Touch handling simplified - no swipe gestures */
    .home-slideshow, .vehicle-slideshow {
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    .home-slideshow .slide, .vehicle-slideshow .slide {
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    /* Simple scrolling on mobile - no complex touch handling */
    @media (max-width: 768px) {
        .home-slideshow, .vehicle-slideshow {
            touch-action: auto;
        }
        
        .home-slideshow .slide, .vehicle-slideshow .slide {
            touch-action: auto;
        }
        
        .home-slideshow img, .vehicle-slideshow img {
            touch-action: auto;
        }
        
        .slide-caption {
            touch-action: auto;
        }
    }
    
    /* Swipe gestures removed - using simple arrow navigation instead */
    
    /* Emergency fixes for slideshow visibility */
    .home-slideshow, .vehicle-slideshow {
        min-height: 300px !important;
        position: relative !important;
        overflow: visible !important;
        z-index: 1 !important;
    }
    
    .home-slideshow .slide:first-child, .vehicle-slideshow .slide:first-child {
        opacity: 0 !important;
        visibility: hidden !important;
        display: block !important;
        z-index: 1 !important;
    }
    
    .home-slideshow .slide.active, .vehicle-slideshow .slide.active {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        z-index: 3 !important;
    }
    

}

/* Additional mobile fixes for very small screens */
@media (max-width: 480px) {
    .home-slideshow, .vehicle-slideshow {
        height: 300px !important;
    }
    
    .slide-caption h4 {
        font-size: 0.8rem !important;
    }
    
    .slide-caption p {
        font-size: 0.7rem !important;
    }
    
    .control-btn {
        width: 24px !important;
        height: 24px !important;
        font-size: 9px !important;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .indicator {
        width: 6px !important;
        height: 6px !important;
    }
}

/* Champagne icons removed - not used in production */

/* Samsung-specific fixes for text overflow */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* Samsung Internet and Android WebView compatibility */
    .service-content {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        word-break: break-word !important;
    }
    
    .service-content p {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        -webkit-line-clamp: unset !important;
        display: block !important;
    }
    
    .service-item {
        overflow: visible !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

/* Mobile fixes for process steps - prevent text overlapping icons */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
    }
    
    .process-step {
        flex-direction: column !important;
        min-height: 140px !important;
        height: auto !important;
        padding: 1.5rem 1rem 1rem !important;
        gap: 1rem !important;
    }
    
    .step-header {
        margin-bottom: 0.5rem !important;
        padding: 0 !important;
        justify-content: center !important;
    }
    
    .step-emoji {
        width: 50px !important;
        height: 50px !important;
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .step-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        padding: 0 !important;
        margin-top: 0.5rem !important;
    }
    
    .step-content h5 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .step-content p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    
    .step-number {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.9rem !important;
        top: -8px !important;
    }
}

/* Additional mobile optimization for very small screens */
@media (max-width: 480px) {
    .process-step {
        padding: 1.25rem 0.75rem 0.75rem !important;
        min-height: 130px !important;
    }
    
    .step-emoji {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.75rem !important;
    }
    
    .step-content h5 {
        font-size: 0.95rem !important;
    }
    
    .step-content p {
        font-size: 0.85rem !important;
    }
}

/* Mobile fixes for service navigation - prevent elongated cards and improve readability */
@media (max-width: 768px) {
    .service-navigation-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .service-nav-card {
        height: auto !important;
        padding: 1.25rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-nav-card h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3 !important;
    }
    
    .service-nav-card p {
        font-size: 1rem !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.5 !important;
    }
    
    .service-nav-card .btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    .service-navigation-header {
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    
    .service-navigation-header h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-navigation-header p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
}

/* Additional mobile optimization for very small screens */
@media (max-width: 480px) {
    .service-navigation-grid {
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .service-nav-card {
        padding: 1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .service-nav-card h4 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .service-nav-card p {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-nav-card .btn {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .service-navigation-header h2 {
        font-size: 1.5rem !important;
    }
    
    .service-navigation-header p {
        font-size: 0.9rem !important;
    }
}



















/* Samsung Device Compatibility Fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0), 
       screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 0),
       screen and (-webkit-min-device-pixel-ratio: 1.5),
       screen and (-webkit-min-device-pixel-ratio: 2),
       screen and (max-width: 480px) and (-webkit-min-device-pixel-ratio: 0),
       screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 768px) {
    /* Samsung Internet and Android WebView specific fixes */
    
    /* Service content containers */
    .service-content,
    .services .service-content {
        width: var(--samsung-container-width) !important;
        max-width: var(--samsung-container-width) !important;
        overflow: var(--samsung-text-overflow) !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }
    
    /* Service content paragraphs */
    .service-content p,
    .services .service-content p {
        height: auto !important;
        min-height: 46px !important;
        max-height: none !important;
        overflow: var(--samsung-text-overflow) !important;
        -webkit-line-clamp: var(--samsung-line-clamp) !important;
        display: block !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    /* Service items */
    .service-item {
        overflow: var(--samsung-text-overflow) !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    /* Hero stats Samsung compatibility */
    .hero-stats {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        box-sizing: border-box !important;
    }
    
    .hero-stat {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        box-sizing: border-box !important;
    }
    
    .hero-stat .stat-number,
    .hero-stat .stat-label {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    
    /* Specific fix for "24/7" text overflow on Samsung */
    .hero-stat .stat-number {
        font-size: 1.3rem !important;
        letter-spacing: -0.5px !important;
        word-break: keep-all !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
    
    /* Ensure grid items don't overflow */
    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 1.5rem !important;
        padding: 1.5rem !important;
    }
    
    /* Prevent stat label overlap on Samsung */
    .hero-stat .stat-label {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3 !important;
        min-height: 2.6rem !important;
        max-height: none !important;
    }
    
    /* Hero stats Samsung compatibility */
    .hero-stats {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        box-sizing: border-box !important;
    }
    
    .hero-stat {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        box-sizing: border-box !important;
    }
    
    .hero-stat .stat-number,
    .hero-stat .stat-label {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    
    /* Specific fix for "24/7" text overflow on Samsung */
    .hero-stat .stat-number {
        font-size: 1.3rem !important;
        letter-spacing: -0.5px !important;
        word-break: keep-all !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
    
    /* Ensure grid items don't overflow */
    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 1.5rem !important;
        padding: 1.5rem !important;
    }
    
    /* Prevent stat label overlap on Samsung */
    .hero-stat .stat-label {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3 !important;
        min-height: 2.6rem !important;
        max-height: none !important;
        overflow: visible !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        padding: 0.25rem 0.5rem !important;
        box-sizing: border-box !important;
        /* Simple Samsung text fix */
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Container overflow fixes */
    .container,
    .hero-container,
    .services-grid {
        overflow-x: hidden !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Text rendering optimization for Samsung */
    body, p, h1, h2, h3, h4, h5, h6 {
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
        text-rendering: optimizeLegibility !important;
    }
    
    /* Samsung header spacing fix */
.hero {
    padding-top: calc(var(--samsung-header-height) - 0.2rem) !important;
    margin-top: 0 !important;
    padding-bottom: 100px !important; /* Extra bottom padding for Samsung */
}
    
    .hero-mobile-layout {
        padding-top: 0.5rem !important;
        padding-bottom: 0.25rem !important; /* Bottom spacing for mobile */
    }
    
    /* Samsung vehicle slideshow spacing */
    .mobile-image-section:last-child {
        margin-bottom: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    
    /* Fix services section positioning on mobile */
    .services {
        position: relative !important;
        transform: none !important;
        overflow: visible !important;
        will-change: auto !important;
        z-index: 1 !important;
        height: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
        overflow-x: visible !important;
    }
    

    

}

/* Additional fixes to prevent overlap and ensure proper spacing */

/* Ensure services section never has scrollbars */
.services,
.services *,
.services-grid,
.services-grid *,
.services-grid-container,
.services-grid-container * {
    overflow: visible !important;
    overflow-y: visible !important;
    overflow-x: visible !important;
    height: auto !important;
    max-height: none !important;
}

/* Force services section to scroll with main page */
.services {
    overflow: visible !important;
    overflow-y: visible !important;
    position: relative !important;
    transform: none !important;
    will-change: auto !important;
    height: auto !important;
    max-height: none !important;
}

/* Ensure services grid container doesn't create vertical scrolling */
.services-grid-container {
    overflow-y: visible !important;
    height: auto !important;
    max-height: none !important;
    position: relative !important;
}

/* Preserve horizontal scrolling for service cards only */
.services-grid {
    overflow-x: auto !important;
    overflow-y: visible !important;
    height: auto !important;
    max-height: none !important;
}

/* Targeted fix for mobile vertical scrolling issue */
@media (max-width: 768px) {
    .services-grid-container {
        overflow: visible !important;
        overflow-y: visible !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* Mobile Services Override - Force mobile layout for services section */
@media (max-width: 768px) {
    /* Fix mobile scrolling issues */
    .services {
        transform: none !important;
        overflow: visible !important;
        position: relative !important;
        will-change: auto !important;
    }
    
    /* CRITICAL: Override the row layout to force column layout on mobile */
    .services .compact .service-controls {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        margin-bottom: 1rem !important;
        /* Force column layout override */
        flex-wrap: nowrap !important;
        /* Override any conflicting flex properties */
        flex-basis: auto !important;
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
    }
    
    /* Filter tabs styling for mobile */
    .services .compact .filter-tabs {
        justify-content: center !important;
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
        flex-wrap: wrap !important;
        /* Ensure tabs are centered and stacked properly */
        width: 100% !important;
        order: 1 !important;
    }
    
    .services .compact .filter-tab {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }
    
    /* Search container styling for mobile - positioned AFTER filter tabs */
    .services .compact .search-container {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 1rem !important;
        padding: 0 1rem !important;
        /* Force search to appear AFTER filter tabs */
        order: 2 !important;
        align-self: stretch !important;
        /* Ensure visual separation from filter tabs */
        border-top: 1px solid var(--border-color) !important;
        padding-top: 1rem !important;
    }
    
    .services .compact .service-search {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0.875rem 3rem 0.875rem 2.5rem !important;
        font-size: 1rem !important;
        min-height: 48px !important;
    }
}

/* Enhanced mobile search styling - additional visual improvements */
@media (max-width: 768px) {
    /* Force service controls to stack vertically on mobile */
    .services .compact .service-controls {
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 1.5rem !important;
    }
    
    /* Ensure filter tabs come first */
    .services .compact .filter-tabs {
        order: 1 !important;
        width: 100% !important;
        justify-content: center !important;
        margin-bottom: 1rem !important;
    }
    
    /* Ensure search container comes second (after filter tabs) */
    .services .compact .search-container {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 0 !important;
        padding: 0 1rem !important;
    }
    
    /* Search input enhanced styling for mobile */
    .services .compact .service-search {
        /* Enhanced mobile search styling */
        border-radius: 12px !important;
        border: 2px solid var(--border-color) !important;
        background: white !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        /* Mobile placeholder styling */
        font-size: 1rem !important;
        min-height: 48px !important;
    }
    
    /* Mobile placeholder styling */
    .services .compact .service-search::placeholder {
        color: var(--text-secondary) !important;
        opacity: 0.8 !important;
        font-size: 1rem !important;
        /* Smooth placeholder transitions on mobile */
        transition: opacity 0.3s ease !important;
    }
    
    /* Search icon positioning for mobile */
    .services .compact .search-container .search-icon {
        left: 1rem !important;
        font-size: 1.1rem !important;
        color: var(--primary-color) !important;
    }
    
    /* Search clear button positioning for mobile */
    .services .compact .search-container .clear-search-btn {
        right: 1rem !important;
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
        background: rgba(0, 0, 0, 0.05) !important;
        color: var(--text-secondary) !important;
    }
}

/* Samsung Mobile Banner Fixes - Prevent overflow and horizontal scroll */

/* OLD CAROUSEL STYLES REMOVED - Using clean approach below */
/* Services Carousel Styles - Force override conflicting styles */
.services-grid-container {
    position: relative !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 60px !important; /* Space for arrows */
    height: auto !important;
    overflow-y: visible !important; /* Prevent vertical scrolling */
}

#servicesGrid.services-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    gap: 1.5rem !important;
    padding: 1rem 0 !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
}

#servicesGrid.services-grid::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
}

#servicesGrid.services-grid .service-item {
    flex: 0 0 350px !important;
    min-width: 350px !important;
    max-width: 350px !important;
    width: 350px !important;
    height: auto !important;
    max-height: 400px !important;
}

/* Carousel Navigation Arrows */
.services-carousel-nav {
    position: absolute !important;
    top: 200px !important; /* Fixed position relative to card height */
    transform: none !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    border: none !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    margin-top: 0 !important;
}

.services-carousel-nav:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    transform: scale(1.1) !important;
}

.services-carousel-nav:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.services-carousel-nav.prev {
    left: 10px !important;
}

.services-carousel-nav.next {
    right: 10px !important;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid-container {
        padding: 0 40px !important;

    }
    
    .services-carousel-nav {
        width: 35px !important;
        height: 35px !important;
        font-size: 14px !important;
        top: 150px !important; /* Adjust for mobile card height */
    }
    
    .services-carousel-nav.prev {
        left: 5px !important;
    }
    
    .services-carousel-nav.next {
        right: 5px !important;
    }
    
    #servicesGrid.services-grid .service-item {
        flex: 0 0 200px !important;
        min-width: 200px !important;
        max-width: 200px !important;
        width: 200px !important;
        height: auto !important;
        max-height: 300px !important;
    }
    
    /* Clean mobile card layout */
    #servicesGrid.services-grid .service-item {
        padding: 1rem !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        text-align: left !important;
        background: white !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
        position: relative !important;
    }
    
    /* Icon in top corner - clean and simple */
    #servicesGrid.services-grid .service-item .service-icon,
    #servicesGrid.services-grid .service-item i[class*="fa-"] {
        position: absolute !important;
        top: 0.3rem !important;
        left: 0.3rem !important;
        font-size: 1rem !important;
        color: #007bff !important;
        z-index: 10 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Title - clean and readable, accounting for icon */
    #servicesGrid.services-grid .service-item h4 {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.5rem !important;
        margin-top: 0.5rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        color: #333 !important;
        padding: 0 !important;
    }
    
    /* Description - readable with proper spacing */
    #servicesGrid.services-grid .service-item p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.75rem !important;
        text-align: center !important;
        color: #666 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    /* Price - prominent but not overwhelming */
    #servicesGrid.services-grid .service-item .service-price {
        font-size: 1rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.75rem !important;
        text-align: center !important;
        color: #007bff !important;
    }
    
    /* Buttons - clean and functional */
    #servicesGrid.services-grid .service-item .service-actions {
        margin-top: auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    #servicesGrid.services-grid .service-item .btn {
        font-size: 0.8rem !important;
        padding: 0.5rem 1rem !important;
        margin: 0 !important;
        border-radius: 4px !important;
        font-weight: 500 !important;
    }
    
    /* Ensure quote button text is white */
    #servicesGrid.services-grid .service-item .btn-primary {
        color: white !important;
    }
    
    /* Learn More link - subtle */
    #servicesGrid.services-grid .service-item a {
        font-size: 0.75rem !important;
        color: #007bff !important;
        text-decoration: none !important;
        text-align: center !important;
        margin-top: 0.5rem !important;
    }
    
    #servicesGrid.services-grid .service-item a:hover {
        text-decoration: underline !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .services-grid-container {
        padding: 0 35px !important;
        min-height: 300px !important; /* Adjust height for small mobile */
    }
    

    
    .services-carousel-nav {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
        top: 120px !important; /* Adjust for small mobile card height */
    }
    
    /* Fix summary stats for small mobile - no overflow */
    .summary-stats {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: stretch !important;
        gap: 0.3rem !important;
        padding: 0.6rem !important;
        margin: 0 auto 1rem auto !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 6px !important;
    }
    
    .stat-item {
        flex: 1 !important;
        text-align: center !important;
        padding: 0.4rem 0.15rem !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .stat-item .stat-number {
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        color: var(--primary-color) !important;
        margin-bottom: 0.15rem !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
        max-width: 100% !important;
        display: block !important;
        width: auto !important;
    }
    
    .stat-item .stat-label {
        font-size: 0.6rem !important;
        color: var(--text-secondary) !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.03px !important;
        line-height: 1.1 !important;
        margin: 0 !important;
        padding: 0 !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
        max-width: 100% !important;
        display: block !important;
        width: auto !important;
    }
    
    .services-carousel-nav.prev {
        left: 3px !important;
    }
    
    .services-carousel-nav.next {
        right: 3px !important;
    }
    
    #servicesGrid.services-grid .service-item {
        flex: 0 0 160px !important;
        min-width: 160px !important;
        max-width: 160px !important;
        width: 160px !important;
        height: auto !important;
        max-height: 250px !important;
    }
    
    /* Clean small mobile card layout */
    #servicesGrid.services-grid .service-item {
        padding: 0.75rem !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        text-align: left !important;
        background: white !important;
        border-radius: 6px !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
        position: relative !important;
    }
    
    /* Icon in top corner - clean and simple, smaller */
    #servicesGrid.services-grid .service-item .service-icon,
    #servicesGrid.services-grid .service-item i[class*="fa-"] {
        position: absolute !important;
        top: 0.2rem !important;
        left: 0.2rem !important;
        font-size: 0.8rem !important;
        color: #007bff !important;
        z-index: 10 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Title - compact but readable, accounting for icon */
    #servicesGrid.services-grid .service-item h4 {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.4rem !important;
        margin-top: 0.3rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
        color: #333 !important;
        padding: 0 !important;
    }
    
    /* Description - compact with good readability */
    #servicesGrid.services-grid .service-item p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
        text-align: center !important;
        color: #666 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    /* Price - compact but visible */
    #servicesGrid.services-grid .service-item .service-price {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.5rem !important;
        text-align: center !important;
        color: #007bff !important;
    }
    
    /* Buttons - compact but functional */
    #servicesGrid.services-grid .service-item .service-actions {
        margin-top: auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.3rem !important;
    }
    
    #servicesGrid.services-grid .service-item .btn {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.8rem !important;
        margin: 0 !important;
        border-radius: 4px !important;
        font-weight: 500 !important;
    }
    
    /* Ensure quote button text is white */
    #servicesGrid.services-grid .service-item .btn-primary {
        color: white !important;
    }
    
    /* Learn More link - compact */
    #servicesGrid.services-grid .service-item a {
        font-size: 0.7rem !important;
        color: #007bff !important;
        text-decoration: none !important;
        text-align: center !important;
        margin-top: 0.3rem !important;
    }
    
    #servicesGrid.services-grid .service-item a:hover {
        text-decoration: underline !important;
    }
}

/* Cache bust - Updated: 2024-12-19 15:30 */
/* These rules take priority and ensure Samsung devices display correctly */

/* Samsung-specific header overflow prevention */
@media (max-width: 480px) {
    /* Force Samsung devices to respect viewport bounds */
    .header {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        position: fixed !important;
        top: 0 !important;
        /* Samsung-specific viewport handling */
        transform: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Samsung-specific navbar container */
    .navbar {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        /* Prevent Samsung overflow */
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    /* Samsung-specific navigation container */
    .nav-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        /* Force Samsung devices to respect bounds */
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
    }
    
    /* Samsung-specific logo text containment */
    .nav-logo h1 {
        max-width: calc(100vw - 20px) !important;
        word-wrap: normal !important;
        word-break: keep-all !important;
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
        /* Prevent Samsung text overflow */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
    }
    
    /* Samsung-specific body and html overflow prevention */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        /* Force Samsung viewport compliance */
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Samsung-specific container overflow prevention */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        /* Force Samsung devices to respect container bounds */
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto !important;
        padding: 0 10px !important;
    }
}

/* Local Coverage Section */
.local-coverage {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.local-coverage .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.local-coverage .section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.local-coverage .section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.coverage-area {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coverage-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.coverage-area .area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.coverage-area .area-icon i {
    font-size: 2rem;
    color: white;
}

.coverage-area h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.coverage-area p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.coverage-area .area-services {
    list-style: none;
    padding: 0;
    text-align: left;
}

.coverage-area .area-services li {
    color: #475569;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 25px;
}

.coverage-area .area-services li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.coverage-area .area-services li:last-child {
    border-bottom: none;
}

/* Coverage Carousel Styles */
.coverage-grid-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; /* Space for arrows */
    height: auto;
    overflow-y: visible;
}

.coverage-carousel-nav {
    position: absolute;
    top: 200px;
    transform: none;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.coverage-carousel-nav:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.coverage-carousel-nav:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.coverage-carousel-nav.prev {
    left: 10px;
}

.coverage-carousel-nav.next {
    right: 10px;
}

#coverageGrid.coverage-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    gap: 1.5rem !important;
    padding: 1rem 0 !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#coverageGrid.coverage-grid::-webkit-scrollbar {
    display: none;
}

.coverage-area {
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 300px;
    width: 300px;
}

.coverage-cta {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 15px;
}

.coverage-cta .cta-content h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 600;
}

.coverage-cta .cta-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.coverage-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.coverage-cta .cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.coverage-cta .cta-buttons .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
}

.coverage-cta .cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.coverage-cta .cta-buttons .btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.coverage-cta .cta-buttons .btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Local Coverage */
@media (max-width: 768px) {
    .local-coverage {
        padding: 60px 0;
    }
    
    .local-coverage .section-header h2 {
        font-size: 2rem;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .coverage-area {
        padding: 25px;
    }
    
    .coverage-cta {
        padding: 30px 20px;
        margin-bottom: 10px;
    }
    
    .coverage-cta .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .coverage-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .coverage-cta .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .coverage-cta .cta-buttons .btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .local-coverage .section-header h2 {
        font-size: 1.8rem;
    }
    
    .coverage-cta .cta-buttons {
        gap: 12px;
    }
    
    .coverage-cta .cta-buttons .btn {
        max-width: 260px;
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .coverage-cta .cta-buttons .btn i {
        font-size: 0.8rem;
    }
    
    /* Mobile Coverage Carousel */
    .coverage-grid-container {
        padding: 0 40px;
    }
    
    .coverage-carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
        top: 150px;
    }
    
    .coverage-area {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
        width: 280px;
    }
    
    /* Compact WhatsApp section for small mobile */
    .whatsapp-brand {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .whatsapp-logo {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .whatsapp-title h3 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .whatsapp-subtitle {
        font-size: 0.75rem;
    }
    
    .whatsapp-benefits {
        gap: 0.3rem;
    }
    
    .benefit-item {
        padding: 0.3rem 0.4rem;
        font-size: 0.7rem;
        gap: 0.25rem;
    }
    
    .benefit-item i {
        font-size: 0.8rem;
    }
    
    /* Compact process steps for small mobile */
    .process-steps {
        gap: 0.5rem;
    }
    
    .process-step {
        padding: 0.6rem 0.4rem;
        gap: 0.4rem;
    }
    
    .step-header {
        margin-bottom: 0.4rem;
    }
    
    .step-emoji {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-number {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .process-step h5 {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
        line-height: 1.1;
    }
    
    .process-step p {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    /* Even more compact whatsapp-process for small mobile */
    .whatsapp-process .process-steps {
        gap: 0.4rem !important;
    }
    
    .whatsapp-process .process-step {
        padding: 0.6rem 0.4rem !important;
        gap: 0.25rem !important;
    }
    
    .whatsapp-process .step-header {
        margin-bottom: 0.25rem !important;
    }
    
    .whatsapp-process .step-emoji {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
    }
    
    .whatsapp-process .step-number {
        width: 16px !important;
        height: 16px !important;
        font-size: 0.6rem !important;
    }
    
    .whatsapp-process .step-content h5 {
        font-size: 0.8rem !important;
        margin-bottom: 0.15rem !important;
        line-height: 1.05 !important;
    }
    
    .whatsapp-process .step-content p {
        font-size: 0.65rem !important;
        line-height: 1.15 !important;
    }
    
    .coverage-area .area-icon {
        width: 60px;
        height: 60px;
    }
    
    .coverage-area .area-icon i {
        font-size: 1.5rem;
    }
    
    .coverage-area h3 {
        font-size: 1.3rem;
    }
}

/* Image Popup Modal Styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.modal-image-container {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: opacity 0.3s ease;
}

.modal-caption {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.modal-caption h4 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.modal-caption p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.modal-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.modal-nav-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 10001;
}

.modal-nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.modal-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.modal-nav-btn:disabled:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: none;
}

.modal-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10001;
}

/* Expand Button Styles */
.expand-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.slide:hover .expand-btn {
    opacity: 1;
    visibility: visible;
}

/* Always show expand button on touch devices */
@media (hover: none) and (pointer: coarse) {
    .expand-btn {
        opacity: 1;
        visibility: visible;
    }
}

.expand-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.expand-btn:active {
    transform: scale(0.95);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .modal-content {
        max-width: 98vw;
        max-height: 98vh;
        border-radius: 10px;
    }
    
    .modal-image {
        max-height: 60vh;
    }
    
    .modal-caption {
        padding: 15px;
    }
    
    .modal-caption h4 {
        font-size: 1.2rem;
    }
    
    .modal-caption p {
        font-size: 0.9rem;
    }
    
    .modal-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .expand-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .modal-image {
        max-height: 50vh;
    }
    
    .modal-caption {
        padding: 12px;
    }
    
    .modal-caption h4 {
        font-size: 1.1rem;
    }
    
    .modal-caption p {
        font-size: 0.85rem;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        padding: 0 15px;
    }
    
    .modal-close {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: 10px;
        right: 10px;
    }
    
    .expand-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
        top: 8px;
        right: 8px;
    }
}





/ *   C a c h e   b u s t i n g   -   0 9 / 0 2 / 2 0 2 5   2 2 : 2 3 : 3 5   * / 
 
 / *   F O R C E   C A C H E   B U S T   -   0 9 / 0 2 / 2 0 2 5   2 2 : 3 9 : 4 6   * / 
 
 
 
 / *   F I N A L   O V E R R I D E :   F i x   d e p r e c a t e d   o v e r f l o w :   v i s i b l e   o n   A L L   m e d i a   e l e m e n t s   -   M U S T   B E   L A S T   * / 
 
 
 
 / *   F A Q   S e c t i o n   S t y l e s   * / 
 . f a q - s e c t i o n   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - l i g h t ) ; 
         p a d d i n g :   4 r e m   0 ; 
         m a r g i n - t o p :   2 r e m ; 
 } 
 
 . f a q - h e a d e r   { 
         t e x t - a l i g n :   c e n t e r ; 
         m a r g i n - b o t t o m :   3 r e m ; 
 } 
 
 . f a q - h e a d e r   h 2   { 
         f o n t - s i z e :   2 . 5 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
         m a r g i n - b o t t o m :   1 r e m ; 
 } 
 
 . f a q - h e a d e r   p   { 
         f o n t - s i z e :   1 . 1 r e m ; 
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ; 
         m a x - w i d t h :   6 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
 } 
 
 . f a q - g r i d   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 5 0 p x ,   1 f r ) ) ; 
         g a p :   2 r e m ; 
         m a r g i n - b o t t o m :   3 r e m ; 
 } 
 
 . f a q - i t e m   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - w h i t e ) ; 
         p a d d i n g :   2 r e m ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         b o x - s h a d o w :   v a r ( - - s h a d o w - l i g h t ) ; 
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . f a q - i t e m : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   v a r ( - - s h a d o w - m e d i u m ) ; 
 } 
 
 . f a q - i t e m   h 3   { 
         f o n t - s i z e :   1 . 2 5 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         m a r g i n - b o t t o m :   1 r e m ; 
         l i n e - h e i g h t :   1 . 4 ; 
 } 
 
 . f a q - i t e m   p   { 
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ; 
         l i n e - h e i g h t :   1 . 6 ; 
         m a r g i n :   0 ; 
 } 
 
 . f a q - c t a   { 
         t e x t - a l i g n :   c e n t e r ; 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         c o l o r :   w h i t e ; 
         p a d d i n g :   3 r e m   2 r e m ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         m a r g i n - t o p :   2 r e m ; 
 } 
 
 . f a q - c t a   h 3   { 
         f o n t - s i z e :   2 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
         m a r g i n - b o t t o m :   1 r e m ; 
 } 
 
 . f a q - c t a   p   { 
         f o n t - s i z e :   1 . 1 r e m ; 
         m a r g i n - b o t t o m :   2 r e m ; 
         o p a c i t y :   0 . 9 ; 
 } 
 
 . f a q - b u t t o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   1 r e m ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f l e x - w r a p :   w r a p ; 
 } 
 
 . f a q - b u t t o n s   . b t n   { 
         p a d d i n g :   1 r e m   2 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         b o r d e r - r a d i u s :   8 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   0 . 5 r e m ; 
 } 
 
 . f a q - b u t t o n s   . b t n - w h a t s a p p   { 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - w h a t s a p p ) ; 
         c o l o r :   w h i t e ; 
 } 
 
 . f a q - b u t t o n s   . b t n - w h a t s a p p : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - w h a t s a p p - h o v e r ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 . f a q - b u t t o n s   . b t n - p r i m a r y   { 
         b a c k g r o u n d :   v a r ( - - s e c o n d a r y - c o l o r ) ; 
         c o l o r :   w h i t e ; 
 } 
 
 . f a q - b u t t o n s   . b t n - p r i m a r y : h o v e r   { 
         b a c k g r o u n d :   # 0 5 9 6 6 9 ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 / *   M o b i l e   R e s p o n s i v e   F A Q   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . f a q - s e c t i o n   { 
                 p a d d i n g :   2 r e m   0 ; 
         } 
         
         . f a q - h e a d e r   h 2   { 
                 f o n t - s i z e :   2 r e m ; 
         } 
         
         . f a q - g r i d   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
                 g a p :   1 . 5 r e m ; 
         } 
         
         . f a q - i t e m   { 
                 p a d d i n g :   1 . 5 r e m ; 
         } 
         
         . f a q - c t a   { 
                 p a d d i n g :   2 r e m   1 r e m ; 
         } 
         
         . f a q - c t a   h 3   { 
                 f o n t - s i z e :   1 . 5 r e m ; 
         } 
         
         . f a q - b u t t o n s   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 a l i g n - i t e m s :   c e n t e r ; 
         } 
         
         . f a q - b u t t o n s   . b t n   { 
                 w i d t h :   1 0 0 % ; 
                 m a x - w i d t h :   3 0 0 p x ; 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
         } 
 } 
 
 
 
 / *   F A Q   A c c o r d i o n   S t y l e s   * / 
 . f a q - s e c t i o n   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - l i g h t ) ; 
         p a d d i n g :   4 r e m   0 ; 
 } 
 
 . f a q - h e a d e r   { 
         t e x t - a l i g n :   c e n t e r ; 
         m a r g i n - b o t t o m :   3 r e m ; 
 } 
 
 . f a q - h e a d e r   h 2   { 
         f o n t - s i z e :   2 . 5 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
         m a r g i n - b o t t o m :   1 r e m ; 
 } 
 
 . f a q - h e a d e r   p   { 
         f o n t - s i z e :   1 . 1 r e m ; 
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ; 
         m a x - w i d t h :   6 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
 } 
 
 . f a q - a c c o r d i o n   { 
         m a x - w i d t h :   8 0 0 p x ; 
         m a r g i n :   0   a u t o   3 r e m ; 
 } 
 
 . f a q - i t e m   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - w h i t e ) ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         b o x - s h a d o w :   v a r ( - - s h a d o w - l i g h t ) ; 
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ; 
         m a r g i n - b o t t o m :   1 r e m ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 . f a q - q u e s t i o n   { 
         p a d d i n g :   1 . 5 r e m   2 r e m ; 
         c u r s o r :   p o i n t e r ; 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - w h i t e ) ; 
 } 
 
 . f a q - q u e s t i o n : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - l i g h t ) ; 
 } 
 
 . f a q - q u e s t i o n   h 3   { 
         f o n t - s i z e :   1 . 2 5 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
         m a r g i n :   0 ; 
         f l e x :   1 ; 
 } 
 
 . f a q - q u e s t i o n   i   { 
         f o n t - s i z e :   1 . 2 r e m ; 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
 } 
 
 . f a q - i t e m . a c t i v e   . f a q - q u e s t i o n   i   { 
         t r a n s f o r m :   r o t a t e ( 1 8 0 d e g ) ; 
 } 
 
 . f a q - a n s w e r   { 
         p a d d i n g :   0   2 r e m ; 
         m a x - h e i g h t :   0 ; 
         o v e r f l o w :   h i d d e n ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - w h i t e ) ; 
 } 
 
 . f a q - i t e m . a c t i v e   . f a q - a n s w e r   { 
         p a d d i n g :   0   2 r e m   1 . 5 r e m ; 
         m a x - h e i g h t :   2 0 0 p x ; 
 } 
 
 . f a q - a n s w e r   p   { 
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ; 
         l i n e - h e i g h t :   1 . 6 ; 
         m a r g i n :   0 ; 
 } 
 
 . f a q - c t a   { 
         t e x t - a l i g n :   c e n t e r ; 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         c o l o r :   w h i t e ; 
         p a d d i n g :   3 r e m   2 r e m ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         m a r g i n - t o p :   2 r e m ; 
 } 
 
 . f a q - c t a   h 3   { 
         f o n t - s i z e :   2 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
         m a r g i n - b o t t o m :   1 r e m ; 
 } 
 
 . f a q - c t a   p   { 
         f o n t - s i z e :   1 . 1 r e m ; 
         m a r g i n - b o t t o m :   2 r e m ; 
         o p a c i t y :   0 . 9 ; 
 } 
 
 . f a q - b u t t o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   1 r e m ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f l e x - w r a p :   w r a p ; 
 } 
 
 . f a q - b u t t o n s   . b t n   { 
         p a d d i n g :   1 r e m   2 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         b o r d e r - r a d i u s :   8 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   0 . 5 r e m ; 
 } 
 
 . f a q - b u t t o n s   . b t n - w h a t s a p p   { 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - w h a t s a p p ) ; 
         c o l o r :   w h i t e ; 
 } 
 
 . f a q - b u t t o n s   . b t n - w h a t s a p p : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - w h a t s a p p - h o v e r ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 . f a q - b u t t o n s   . b t n - p r i m a r y   { 
         b a c k g r o u n d :   v a r ( - - s e c o n d a r y - c o l o r ) ; 
         c o l o r :   w h i t e ; 
 } 
 
 . f a q - b u t t o n s   . b t n - p r i m a r y : h o v e r   { 
         b a c k g r o u n d :   # 0 5 9 6 6 9 ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 / *   M o b i l e   R e s p o n s i v e   F A Q   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . f a q - s e c t i o n   { 
                 p a d d i n g :   2 r e m   0 ; 
         } 
         
         . f a q - h e a d e r   h 2   { 
                 f o n t - s i z e :   2 r e m ; 
         } 
         
         . f a q - q u e s t i o n   { 
                 p a d d i n g :   1 r e m   1 . 5 r e m ; 
         } 
         
         . f a q - q u e s t i o n   h 3   { 
                 f o n t - s i z e :   1 . 1 r e m ; 
         } 
         
         . f a q - i t e m . a c t i v e   . f a q - a n s w e r   { 
                 p a d d i n g :   0   1 . 5 r e m   1 r e m ; 
         } 
         
         . f a q - c t a   { 
                 p a d d i n g :   2 r e m   1 r e m ; 
         } 
         
         . f a q - c t a   h 3   { 
                 f o n t - s i z e :   1 . 5 r e m ; 
         } 
         
         . f a q - b u t t o n s   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 a l i g n - i t e m s :   c e n t e r ; 
         } 
         
         . f a q - b u t t o n s   . b t n   { 
                 w i d t h :   1 0 0 % ; 
                 m a x - w i d t h :   3 0 0 p x ; 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
         } 
 } 
 
 
 
 / *   F A Q   S e c t i o n   -   U p d a t e d   C o n t a i n e r   S t y l i n g   * / 
 . f a q - s e c t i o n   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - l i g h t ) ; 
         p a d d i n g :   4 r e m   0 ; 
 } 
 
 . f a q - s e c t i o n   . s e c t i o n - h e a d e r   { 
         t e x t - a l i g n :   c e n t e r ; 
         m a r g i n - b o t t o m :   3 r e m ; 
 } 
 
 . f a q - s e c t i o n   . s e c t i o n - h e a d e r   h 2   { 
         f o n t - s i z e :   2 . 5 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
         m a r g i n - b o t t o m :   1 r e m ; 
 } 
 
 . f a q - s e c t i o n   . s e c t i o n - h e a d e r   p   { 
         f o n t - s i z e :   1 . 1 r e m ; 
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ; 
         m a x - w i d t h :   6 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
 } 
 
 . f a q - c o n t e n t   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - w h i t e ) ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         p a d d i n g :   3 r e m ; 
         b o x - s h a d o w :   v a r ( - - s h a d o w - l i g h t ) ; 
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ; 
 } 
 
 . f a q - a c c o r d i o n   { 
         m a r g i n - b o t t o m :   2 r e m ; 
 } 
 
 . f a q - i t e m   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - l i g h t ) ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         m a r g i n - b o t t o m :   1 r e m ; 
         o v e r f l o w :   h i d d e n ; 
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ; 
 } 
 
 . f a q - q u e s t i o n   { 
         p a d d i n g :   1 . 5 r e m   2 r e m ; 
         c u r s o r :   p o i n t e r ; 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - l i g h t ) ; 
 } 
 
 . f a q - q u e s t i o n : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - w h i t e ) ; 
 } 
 
 . f a q - q u e s t i o n   h 3   { 
         f o n t - s i z e :   1 . 2 5 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
         m a r g i n :   0 ; 
         f l e x :   1 ; 
 } 
 
 . f a q - q u e s t i o n   i   { 
         f o n t - s i z e :   1 . 2 r e m ; 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
 } 
 
 . f a q - i t e m . a c t i v e   . f a q - q u e s t i o n   i   { 
         t r a n s f o r m :   r o t a t e ( 1 8 0 d e g ) ; 
 } 
 
 . f a q - i t e m . a c t i v e   . f a q - q u e s t i o n   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - w h i t e ) ; 
 } 
 
 . f a q - a n s w e r   { 
         p a d d i n g :   0   2 r e m ; 
         m a x - h e i g h t :   0 ; 
         o v e r f l o w :   h i d d e n ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - w h i t e ) ; 
 } 
 
 . f a q - i t e m . a c t i v e   . f a q - a n s w e r   { 
         p a d d i n g :   0   2 r e m   1 . 5 r e m ; 
         m a x - h e i g h t :   2 0 0 p x ; 
 } 
 
 . f a q - a n s w e r   p   { 
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ; 
         l i n e - h e i g h t :   1 . 6 ; 
         m a r g i n :   0 ; 
 } 
 
 . f a q - c t a   { 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         c o l o r :   w h i t e ; 
         p a d d i n g :   2 r e m ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         m a r g i n - t o p :   2 r e m ; 
 } 
 
 . f a q - c t a   . c t a - c o n t e n t   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         f l e x - w r a p :   w r a p ; 
         g a p :   1 r e m ; 
 } 
 
 . f a q - c t a   . c t a - t e x t   h 3   { 
         f o n t - s i z e :   1 . 5 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
         m a r g i n - b o t t o m :   0 . 5 r e m ; 
 } 
 
 . f a q - c t a   . c t a - t e x t   p   { 
         f o n t - s i z e :   1 r e m ; 
         m a r g i n :   0 ; 
         o p a c i t y :   0 . 9 ; 
 } 
 
 . f a q - c t a   . c t a - b u t t o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   1 r e m ; 
         f l e x - w r a p :   w r a p ; 
 } 
 
 . f a q - c t a   . b t n   { 
         p a d d i n g :   0 . 7 5 r e m   1 . 5 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         b o r d e r - r a d i u s :   8 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   0 . 5 r e m ; 
         f o n t - s i z e :   0 . 9 r e m ; 
 } 
 
 . f a q - c t a   . b t n - w h a t s a p p   { 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - w h a t s a p p ) ; 
         c o l o r :   w h i t e ; 
 } 
 
 . f a q - c t a   . b t n - w h a t s a p p : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - w h a t s a p p - h o v e r ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 . f a q - c t a   . b t n - p r i m a r y   { 
         b a c k g r o u n d :   v a r ( - - s e c o n d a r y - c o l o r ) ; 
         c o l o r :   w h i t e ; 
 } 
 
 . f a q - c t a   . b t n - p r i m a r y : h o v e r   { 
         b a c k g r o u n d :   # 0 5 9 6 6 9 ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 / *   M o b i l e   R e s p o n s i v e   F A Q   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . f a q - s e c t i o n   { 
                 p a d d i n g :   2 r e m   0 ; 
         } 
         
         . f a q - s e c t i o n   . s e c t i o n - h e a d e r   h 2   { 
                 f o n t - s i z e :   2 r e m ; 
         } 
         
         . f a q - c o n t e n t   { 
                 p a d d i n g :   2 r e m   1 . 5 r e m ; 
         } 
         
         . f a q - q u e s t i o n   { 
                 p a d d i n g :   1 r e m   1 . 5 r e m ; 
         } 
         
         . f a q - q u e s t i o n   h 3   { 
                 f o n t - s i z e :   1 . 1 r e m ; 
         } 
         
         . f a q - i t e m . a c t i v e   . f a q - a n s w e r   { 
                 p a d d i n g :   0   1 . 5 r e m   1 r e m ; 
         } 
         
         . f a q - c t a   { 
                 p a d d i n g :   1 . 5 r e m ; 
         } 
         
         . f a q - c t a   . c t a - c o n t e n t   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 t e x t - a l i g n :   c e n t e r ; 
         } 
         
         . f a q - c t a   . c t a - t e x t   h 3   { 
                 f o n t - s i z e :   1 . 2 5 r e m ; 
         } 
         
         . f a q - c t a   . c t a - b u t t o n s   { 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
                 w i d t h :   1 0 0 % ; 
         } 
         
         . f a q - c t a   . b t n   { 
                 f l e x :   1 ; 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
                 m i n - w i d t h :   1 4 0 p x ; 
         } 
 } 
 
 
 
 / *   F A Q   A c c o r d i o n   F i x   * / 
 . f a q - s e c t i o n   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - l i g h t ) ; 
         p a d d i n g :   4 r e m   0 ; 
 } 
 
 . f a q - s e c t i o n   . s e c t i o n - h e a d e r   { 
         t e x t - a l i g n :   c e n t e r ; 
         m a r g i n - b o t t o m :   3 r e m ; 
 } 
 
 . f a q - s e c t i o n   . s e c t i o n - h e a d e r   h 2   { 
         f o n t - s i z e :   2 . 5 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
         m a r g i n - b o t t o m :   1 r e m ; 
 } 
 
 . f a q - s e c t i o n   . s e c t i o n - h e a d e r   p   { 
         f o n t - s i z e :   1 . 1 r e m ; 
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ; 
         m a x - w i d t h :   6 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
 } 
 
 . f a q - c o n t e n t   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - w h i t e ) ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         p a d d i n g :   3 r e m ; 
         b o x - s h a d o w :   v a r ( - - s h a d o w - l i g h t ) ; 
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ; 
 } 
 
 . f a q - a c c o r d i o n   { 
         m a r g i n - b o t t o m :   2 r e m ; 
 } 
 
 . f a q - i t e m   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - l i g h t ) ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         m a r g i n - b o t t o m :   1 r e m ; 
         o v e r f l o w :   h i d d e n ; 
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ; 
 } 
 
 . f a q - q u e s t i o n   { 
         p a d d i n g :   1 . 5 r e m   2 r e m ; 
         c u r s o r :   p o i n t e r ; 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - l i g h t ) ; 
 } 
 
 . f a q - q u e s t i o n : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - w h i t e ) ; 
 } 
 
 . f a q - q u e s t i o n   h 3   { 
         f o n t - s i z e :   1 . 2 5 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
         m a r g i n :   0 ; 
         f l e x :   1 ; 
 } 
 
 . f a q - q u e s t i o n   i   { 
         f o n t - s i z e :   1 . 2 r e m ; 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
 } 
 
 . f a q - i t e m . a c t i v e   . f a q - q u e s t i o n   i   { 
         t r a n s f o r m :   r o t a t e ( 1 8 0 d e g ) ; 
 } 
 
 . f a q - i t e m . a c t i v e   . f a q - q u e s t i o n   { 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - w h i t e ) ; 
 } 
 
 . f a q - a n s w e r   { 
         p a d d i n g :   0   2 r e m ; 
         m a x - h e i g h t :   0 ; 
         o v e r f l o w :   h i d d e n ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b a c k g r o u n d :   v a r ( - - b a c k g r o u n d - w h i t e ) ; 
 } 
 
 . f a q - i t e m . a c t i v e   . f a q - a n s w e r   { 
         p a d d i n g :   0   2 r e m   1 . 5 r e m ; 
         m a x - h e i g h t :   5 0 0 p x ; 
 } 
 
 . f a q - a n s w e r   p   { 
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ; 
         l i n e - h e i g h t :   1 . 6 ; 
         m a r g i n :   0 ; 
 } 
 
 . f a q - c t a   { 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         c o l o r :   w h i t e ; 
         p a d d i n g :   2 r e m ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         m a r g i n - t o p :   2 r e m ; 
 } 
 
 . f a q - c t a   . c t a - c o n t e n t   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         f l e x - w r a p :   w r a p ; 
         g a p :   1 r e m ; 
 } 
 
 . f a q - c t a   . c t a - t e x t   h 3   { 
         f o n t - s i z e :   1 . 5 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
         m a r g i n - b o t t o m :   0 . 5 r e m ; 
 } 
 
 . f a q - c t a   . c t a - t e x t   p   { 
         f o n t - s i z e :   1 r e m ; 
         m a r g i n :   0 ; 
         o p a c i t y :   0 . 9 ; 
 } 
 
 . f a q - c t a   . c t a - b u t t o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   1 r e m ; 
         f l e x - w r a p :   w r a p ; 
 } 
 
 . f a q - c t a   . b t n   { 
         p a d d i n g :   0 . 7 5 r e m   1 . 5 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         b o r d e r - r a d i u s :   8 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   0 . 5 r e m ; 
         f o n t - s i z e :   0 . 9 r e m ; 
 } 
 
 . f a q - c t a   . b t n - w h a t s a p p   { 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - w h a t s a p p ) ; 
         c o l o r :   w h i t e ; 
 } 
 
 . f a q - c t a   . b t n - w h a t s a p p : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - w h a t s a p p - h o v e r ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 . f a q - c t a   . b t n - p r i m a r y   { 
         b a c k g r o u n d :   v a r ( - - s e c o n d a r y - c o l o r ) ; 
         c o l o r :   w h i t e ; 
 } 
 
 . f a q - c t a   . b t n - p r i m a r y : h o v e r   { 
         b a c k g r o u n d :   # 0 5 9 6 6 9 ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 / *   M o b i l e   R e s p o n s i v e   F A Q   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . f a q - s e c t i o n   { 
                 p a d d i n g :   2 r e m   0 ; 
         } 
         
         . f a q - s e c t i o n   . s e c t i o n - h e a d e r   h 2   { 
                 f o n t - s i z e :   2 r e m ; 
         } 
         
         . f a q - c o n t e n t   { 
                 p a d d i n g :   2 r e m   1 . 5 r e m ; 
         } 
         
         . f a q - q u e s t i o n   { 
                 p a d d i n g :   1 r e m   1 . 5 r e m ; 
         } 
         
         . f a q - q u e s t i o n   h 3   { 
                 f o n t - s i z e :   1 . 1 r e m ; 
         } 
         
         . f a q - i t e m . a c t i v e   . f a q - a n s w e r   { 
                 p a d d i n g :   0   1 . 5 r e m   1 r e m ; 
         } 
         
         . f a q - c t a   { 
                 p a d d i n g :   1 . 5 r e m ; 
         } 
         
         . f a q - c t a   . c t a - c o n t e n t   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 t e x t - a l i g n :   c e n t e r ; 
         } 
         
         . f a q - c t a   . c t a - t e x t   h 3   { 
                 f o n t - s i z e :   1 . 2 5 r e m ; 
         } 
         
         . f a q - c t a   . c t a - b u t t o n s   { 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
                 w i d t h :   1 0 0 % ; 
         } 
         
         . f a q - c t a   . b t n   { 
                 f l e x :   1 ; 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
                 m i n - w i d t h :   1 4 0 p x ; 
         } 
 } 
 
 . f a q - i t e m . a c t i v e   . f a q - a n s w e r   {   p a d d i n g :   0   2 r e m   1 . 5 r e m ;   m a x - h e i g h t :   5 0 0 p x ;   } 
 
 