/* ==========================================================================
   AC SERVICE & REPAIR - PREMIUM CSS STYLESHEET
   Design Theme: Clean, Trustworthy, Modern Corporate (Glassmorphism & Gradients)
   Primary Font: Poppins
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties (Design System) */
:root {
    --primary: #0D6EFD;
    --primary-hover: #0b5ed7;
    --secondary: #17A2B8;
    --secondary-hover: #138496;
    --accent: #28A745;
    --accent-hover: #218838;
    --bg-primary: #F8FAFC;
    --bg-secondary: #FFFFFF;
    --bg-dark: #0F172A;
    --bg-dark-hover: #1E293B;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-white: #FFFFFF;
    --text-dark: #0F172A;
    --border-color: #E2E8F0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0D6EFD 0%, #17A2B8 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 10px 20px -10px rgba(15, 23, 42, 0.1);
    --shadow-primary: 0 10px 20px -5px rgba(13, 110, 253, 0.3);
    --shadow-accent: 0 10px 20px -5px rgba(40, 167, 69, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Widths & Constraints */
    --container-width: 1240px;
    --header-height: 80px;
}

/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
}

/* ==========================================================================
   2. UTILITY CLASSES & TYPOGRAPHY
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 15px;
}

.badge-primary {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary);
}

.badge-accent {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--accent);
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(13, 110, 253, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--bg-primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(40, 167, 69, 0.4);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.btn-dark:hover {
    background-color: var(--bg-dark-hover);
    transform: translateY(-3px);
}

/* Icons styling helper */
.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
.top-bar {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-info a, .top-bar-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-info a:hover {
    color: var(--secondary);
}

.top-bar-cta {
    display: flex;
    gap: 15px;
}

.top-bar-cta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.whatsapp-link { color: #25D366; }
.phone-link { color: var(--secondary); }

header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    background-color: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all var(--transition-normal);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    height: 70px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary);
}

.logo svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

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

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Hamburger mobile button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    justify-content: center;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-normal);
}

/* ==========================================================================
   4. HERO & ACTION SECTIONS
   ========================================================================== */
.hero {
    position: relative;
    padding: 140px 0 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(215, 235, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 90%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-usp-tags {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-usp-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    background-color: var(--bg-secondary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.hero-usp-tag svg {
    color: var(--accent);
    width: 16px;
    height: 16px;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(13, 110, 253, 0.12);
    z-index: -1;
}

.hero .lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-image-container {
    position: relative;
    animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--bg-secondary);
}

.hero-img-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-img-wrapper:hover img {
    transform: scale(1.03);
}

.hero-badge-floating {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background-color: var(--bg-secondary);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.hero-badge-floating .stars {
    color: #FFC107;
    font-size: 1rem;
}

.hero-badge-floating .text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Emergency service banner */
.emergency-banner {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 15px 0;
    text-align: center;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-weight: 500;
}

.emergency-content span {
    font-weight: 700;
    background-color: var(--accent);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* ==========================================================================
   5. SERVICES COMPONENT
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-secondary);
    padding: 35px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 110, 253, 0.2);
}

.service-card:hover .icon-wrapper {
    background-color: var(--primary);
    color: var(--text-white);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card .card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-card .card-link svg {
    transition: transform var(--transition-fast);
}

.service-card:hover .card-link svg {
    transform: translateX(4px);
}

/* ==========================================================================
   6. BRANDS COMPONENT
   ========================================================================== */
.brands-section {
    background-color: var(--bg-secondary);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brands-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brands-title {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    font-weight: 600;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    opacity: 0.75;
}

.brand-logo-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 70px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.brand-logo-card:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: var(--bg-secondary);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-md);
    opacity: 1;
}

/* ==========================================================================
   7. WHY CHOOSE US & WORK PROCESS
   ========================================================================== */
.why-us-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.why-us-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.why-us-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-feature {
    display: flex;
    gap: 15px;
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature-text h4 {
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.why-feature-text p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* Work Process Stepper */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

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

.process-step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 20px auto;
    border: 6px solid var(--bg-primary);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.process-step:hover .process-step-num {
    transform: scale(1.15);
}

.process-step h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.process-line {
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .process-line {
        display: none;
    }
    .process-step {
        display: flex;
        text-align: left;
        gap: 20px;
        align-items: center;
    }
    .process-step-num {
        margin: 0;
    }
}

/* ==========================================================================
   8. AMC PLANS
   ========================================================================== */
.amc-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.amc-benefit-card {
    background-color: var(--bg-secondary);
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.amc-benefit-card .icon-container {
    width: 50px;
    height: 50px;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amc-benefit-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.amc-benefit-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.amc-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1080px;
    margin: 0 auto;
}

.amc-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.amc-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

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

.amc-card.featured:hover {
    transform: translateY(-8px) scale(1.03);
}

.amc-card-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.amc-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.amc-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 0;
}

.amc-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.amc-features-list {
    margin-bottom: 35px;
    flex-grow: 1;
}

.amc-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.amc-features-list li svg {
    color: var(--accent);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.amc-features-list li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.amc-features-list li.disabled svg {
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .amc-packages {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .amc-card.featured {
        transform: none;
    }
    .amc-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* ==========================================================================
   9. GALLERY COMPONENT
   ========================================================================== */
.gallery-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.gallery-filter-btn:hover, .gallery-filter-btn.active {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-normal);
}

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

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    padding: 20px;
}

.gallery-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Before / After comparison slider container */
.slider-container {
    max-width: 700px;
    margin: 50px auto 0 auto;
    text-align: center;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    user-select: none;
    -webkit-user-select: none;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.img-before {
    z-index: 1;
}

.img-after {
    width: 50%; /* JS will control this */
    z-index: 2;
    overflow: hidden;
}

.img-after img {
    width: 700px; /* Must match container width max */
    max-width: none;
}

/* Resize label tags */
.slider-label {
    position: absolute;
    bottom: 20px;
    padding: 6px 12px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    z-index: 4;
    text-transform: uppercase;
}

.label-before { right: 20px; }
.label-after { left: 20px; }

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--text-white);
    cursor: ew-resize;
    z-index: 3;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transform: translateX(-50%);
}

.slider-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    pointer-events: none;
}

@media (max-width: 768px) {
    .before-after-slider {
        height: 300px;
    }
    .img-after img {
        width: 100vw;
    }
}

/* ==========================================================================
   10. REVIEWS COMPONENT
   ========================================================================== */
.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.review-slider-wrapper {
    display: flex;
    transition: transform var(--transition-normal);
}

.review-card {
    min-width: 100%;
    box-sizing: border-box;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 50px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.review-rating {
    color: #FFC107;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.review-content {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 25px;
}

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

.review-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.review-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.review-nav-btn:hover {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

/* ==========================================================================
   11. SERVICE AREAS LIST
   ========================================================================== */
.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.area-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-fast);
}

.area-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.area-card svg {
    color: var(--primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.area-card span {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* ==========================================================================
   12. FAQS ACCORDION
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
    color: var(--text-muted);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer-inner {
    padding: 0 28px 24px 28px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer-inner {
    border-top-color: var(--border-color);
}

/* ==========================================================================
   13. CONTACT SECTION & BOOKING FORM
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
}

.contact-card-info {
    background: var(--gradient-dark);
    color: var(--text-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card-info h3 {
    color: var(--text-white);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.contact-card-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-method-details h4 {
    color: var(--text-white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-method-details p, .contact-method-details a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.contact-socials {
    display: flex;
    gap: 15px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.contact-socials a:hover {
    background-color: var(--primary);
    color: var(--text-white);
}

/* Booking Form */
.booking-form-wrapper {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.booking-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    background-color: var(--bg-secondary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

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

/* Form validation styling */
.form-group.has-error .form-control {
    border-color: #DC3545;
}
.error-message {
    color: #DC3545;
    font-size: 0.78rem;
    margin-top: 5px;
    display: none;
}
.form-group.has-error .error-message {
    display: block;
}

.submit-success-msg {
    display: none;
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--accent);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(40, 167, 69, 0.2);
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
}

/* Map frame styling */
.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-top: 30px;
    height: 250px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .booking-form-wrapper, .contact-card-info {
        padding: 30px;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   14. FOOTER COMPONENT
   ========================================================================== */
footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--text-white);
    transform: translateX(4px);
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 8px;
}

.footer-hours-list span.day {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-contact-item svg {
    color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-contact-item a:hover {
    color: var(--text-white);
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-logo svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--text-white);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   15. STICKY ACTION BUTTONS & FLOATING ELEMENTS
   ========================================================================== */
.sticky-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
    position: relative;
}

.sticky-btn::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all var(--transition-normal);
}

.sticky-btn-call {
    background-color: var(--primary);
}

.sticky-btn-call:hover {
    background-color: var(--primary-hover);
    transform: scale(1.1);
}

.sticky-btn-whatsapp {
    background-color: #25D366;
}

.sticky-btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

/* Badge for emergency/online book status */
.sticky-btn-book {
    background-color: var(--accent);
}
.sticky-btn-book:hover {
    background-color: var(--accent-hover);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .sticky-actions {
        bottom: 20px;
        right: 20px;
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        justify-content: space-around;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 10px;
        border-radius: var(--radius-full);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-color);
    }
    
    .sticky-btn {
        width: 48px;
        height: 48px;
        box-shadow: none;
    }
}

/* ==========================================================================
   16. CSS ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Nav Overlay & Reveal */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-secondary);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 25px;
        transition: right var(--transition-normal);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Extra header spacing since hero needs to start lower due to sticky bar */
    .hero {
        padding-top: 100px;
    }
}
