/* ==========================================================================
   TRUE CLEANER (Urban Company Style) - Clean Modern Design System
   ========================================================================== */

/* Custom properties / Tokens */
:root {
    --primary-color: #000000;
    --primary-hover: #1e1e1e;
    --accent-color: #7C3AED;
    /* Elegant Violet Accent */
    --accent-hover: #6D28D9;
    --text-main: #0F172A;
    /* Slate 900 */
    --text-secondary: #475569;
    /* Slate 600 */
    --text-muted: #94A3B8;
    /* Slate 400 */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    /* Slate 50 */
    --bg-card: #FFFFFF;
    --border-color: #E2E8F0;
    /* Slate 200 */
    --border-hover: #CBD5E1;
    --rating-color: #F59E0B;
    /* Amber 500 */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    margin-top: 72px;
    /* For fixed-top navbar */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    line-height: 1.25;
}

p {
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom Sparkle Keyframe & Icon for Cleaning Vibe */
@keyframes sparkleEffect {
    0% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 2px rgba(124, 58, 237, 0.4));
    }

    50% {
        transform: scale(1.15) rotate(15deg);
        filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.8));
    }

    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 2px rgba(124, 58, 237, 0.4));
    }
}

.sparkle-icon {
    animation: sparkleEffect 2.5s infinite ease-in-out;
    display: inline-block;
}

/* Container */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--border-color);
}

.btn-outline:hover {
    background-color: var(--bg-light);
    border-color: var(--text-main);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

/* Layout Padding & Headings */
.area-padding {
    padding: 80px 0;
}

.section-headline {
    text-align: center;
    margin-bottom: 50px;
}

.section-headline h3 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-headline h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.section-headline h3:hover::after {
    width: 90px;
}

.section-headline p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 12px auto 0;
    color: var(--text-secondary);
}


/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1040;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    width: 100%;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    gap: 8px;
    padding-left: 0;
    margin-bottom: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: var(--transition-fast);
    display: block;
    text-decoration: none;
}

/* FIX: Clean link hover style. No chunky blue backgrounds. */
.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color) !important;
    background-color: var(--bg-light) !important;
}

/* Dropdown Menu (Desktop Hover Mechanism) */
.nav-item.dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-nav .dropdown-menu,
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Hover reveal for Desktop */
@media (min-width: 992px) {

    .nav-item.dropdown:hover .navbar-nav .dropdown-menu,
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Dropdown Items styling */
.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    font-size: 0.875rem;
    color: var(--text-main);
    font-weight: 600;
    border-radius: 6px;
    background-color: transparent;
    transition: var(--transition-fast);
    border: none;
    width: 100%;
    text-align: left;
    text-decoration: none;
}

/* FIX: Text remains visible, background changes cleanly. */
.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--accent-color) !important;
}

.dropdown-item .icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    margin-right: 12px;
    color: var(--bg-white);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Mobile Navbar Toggler */
.navbar-toggler {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    display: none;
    padding: 4px 8px;
}

/* Mobile Actions Header Buttons */
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-right: 12px;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: var(--transition-fast);
    font-size: 1.15rem;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.mobile-action-btn.call-btn {
    background-color: rgba(124, 58, 237, 0.06);
    color: var(--accent-color);
    border-color: rgba(124, 58, 237, 0.15);
}

.mobile-action-btn.call-btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.mobile-action-btn.whatsapp-btn {
    background-color: rgba(34, 197, 94, 0.06);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.15);
}

.mobile-action-btn.whatsapp-btn:hover {
    background-color: #22c55e;
    color: var(--bg-white);
}

@media (max-width: 991px) {
    .mobile-header-actions {
        display: flex;
    }
}


/* ==========================================================================
   Mobile Menu / Drawer
   ========================================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition-normal);
    z-index: 1050;
    padding: 60px 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 4px;
}

.mobile-menu .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 4px;
}

.mobile-menu .nav-item {
    width: 100%;
}

.mobile-menu .nav-link {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-bottom: 1px solid var(--bg-light);
    border-radius: 6px;
}

/* Mobile dropdown controls */
.mobile-menu .navbar-nav .dropdown-menu,
.mobile-menu .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: none;
    background-color: var(--bg-light);
    margin-top: 4px;
    padding: 8px 16px;
    transform: none;
}

.mobile-menu .navbar-nav .dropdown-menu.show,
.mobile-menu .dropdown-menu.show {
    display: flex;
}


/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 52vh;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(88, 28, 135, 0.45) 0%, 
        rgba(30, 27, 75, 0.6) 50%,
        rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
    color: #ffffff;
    animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-text h1 {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    text-shadow: 0 4px 30px rgba(15, 23, 42, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f3e8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-text p {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    letter-spacing: -0.01em;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-text.fade-out h1,
.hero-text.fade-out p {
    opacity: 0;
    transform: translateY(8px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 3;
}

.control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all 0.2s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.06);
}

/* Entrance animation for hero text */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Search Bar UI (Urban Company Style) */
.hero-search-container {
    max-width: 620px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: heroFadeIn 0.8s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.9rem;
    padding-left: 16px;
    border-right: 1.5px solid var(--border-color);
    padding-right: 12px;
    white-space: nowrap;
}

.hero-location i {
    color: var(--accent-color);
}

.hero-search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.hero-search-input-wrapper i {
    color: var(--text-muted);
}

.hero-search-input-wrapper input {
    border: none;
    width: 100%;
    outline: none;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    color: var(--text-main);
    font-weight: 500;
}

.hero-search-input-wrapper input::placeholder {
    color: var(--text-muted);
}

.hero-search-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: none;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.hero-search-btn:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
}

/* Slider buttons */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 2;
    pointer-events: none;
}

.slider-controls .control-btn {
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 1.1rem;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.slider-controls .control-btn:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: scale(1.05);
}


/* ==========================================================================
   How We Work Section
   ========================================================================== */
.choose-area {
    background-color: var(--bg-light);
}

.well-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.well-services {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.well-services:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-hover);
}

.well-services .services-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--bg-light);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.well-services:hover .services-icon {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: rotate(5deg) scale(1.05);
}

.well-services h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.well-services p {
    font-size: 0.925rem;
    color: var(--text-secondary);
}


/* ==========================================================================
   Our Services Section
   ========================================================================== */
/* ==========================================================================
   Our Services Section
   ========================================================================== */
.our-services-area {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tablet responsiveness for services grid */
@media (max-width: 991px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.02);
    border-color: rgba(124, 58, 237, 0.15);
}

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.service-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0) 50%, rgba(15, 23, 42, 0.4) 100%);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-img-wrapper::after {
    opacity: 0.95;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(124, 58, 237, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--bg-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
    z-index: 2;
}

.service-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-rating-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.service-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: rgba(245, 158, 11, 0.08);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.15);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 50px;
}

.service-bookings {
    font-size: 0.775rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.service-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.service-info p {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.5;
}

.service-price-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #F1F5F9;
}

.service-price-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-label {
    font-size: 0.75rem;
    color: #94A3B8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.price-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
}

.service-card .btn-outline {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(124, 58, 237, 0.2);
    color: var(--accent-color);
    background: transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .btn-outline {
    background-color: var(--accent-color);
    color: #ffffff !important;
    border-color: var(--accent-color);
    box-shadow: 0 8px 16px rgba(124, 58, 237, 0.2);
}



/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-us-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-text {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.about-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-item i {
    font-size: 1.35rem;
    color: var(--accent-color);
    background-color: rgba(124, 58, 237, 0.08);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}


/* ==========================================================================
   Our Clients Section
   ========================================================================== */
.our-clients-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    align-items: center;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo img {
    max-height: 52px;
    transition: var(--transition-normal);
}

.client-logo img:hover {
    transform: scale(1.05);
}


/* ==========================================================================
   Our Achievements Section
   ========================================================================== */
.our-achievements-section {
    position: relative;
    padding: 100px 0;
    background-color: #0F172A;
    background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%),
        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--bg-white);
}

.our-achievements-section .section-headline h3 {
    color: var(--bg-white);
}

.our-achievements-section .section-headline p {
    color: rgba(255, 255, 255, 0.7);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.achievement-box {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 35px 24px;
    text-align: center;
    transition: var(--transition-normal);
}

.achievement-box:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.achievement-icon {
    font-size: 2.25rem;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.achievement-content h4 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.achievement-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}


/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-us-section {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}


/* ==========================================================================
   Certified By Section
   ========================================================================== */
.certified-by-section {
    background-color: var(--bg-white);
    padding-bottom: 60px;
}

.certified-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 30px;
}

.certified-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.certified-logo img {
    height: 55px;
    width: auto;
    transition: var(--transition-normal);
}

.certified-logo img:hover {
    transform: scale(1.05);
}


/* ==========================================================================
   Recent Work Gallery
   ========================================================================== */
.gallery-section {
    background-color: var(--bg-white);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-hover);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item .description {
    padding: 24px;
}

.gallery-item .description h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.gallery-item .description p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}


/* ==========================================================================
   Appointment Booking Modal
   ========================================================================== */
.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.modal-header {
    background-color: var(--bg-light);
    border-bottom: 1.5px solid var(--border-color);
    padding: 20px 24px;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 800;
}

.modal-body {
    padding: 30px 24px;
}

.form-control,
.form-select {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    padding: 12px 16px 12px 42px;
    /* Extra left padding for position relative icons */
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
    transition: var(--transition-fast);
    color: var(--text-main);
    font-weight: 500;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

/* Position relative icons in inputs */
.position-relative i {
    font-size: 1rem;
    left: 16px;
    color: var(--text-muted);
    z-index: 10;
    pointer-events: none;
}

.modal-body .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
}


/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    background-color: #0F172A;
    /* Slate 900 (UC Dark Footer) */
    color: #94A3B8;
    /* Slate 400 */
    padding: 80px 0 20px;
    font-family: var(--font-sans);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-size: 0.95rem;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-section ul li a {
    font-size: 0.9rem;
    color: #94A3B8;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--bg-white);
    text-decoration: none;
    padding-left: 2px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #94A3B8;
    transition: var(--transition-fast);
    font-size: 1.05rem;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748B;
}

.footer-bottom p {
    margin: 0;
}


/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 991px) {
    body {
        margin-top: 60px;
    }

    .navbar {
        padding: 10px 0;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-menu {
        display: none !important;
    }

    .hero-section {
        height: calc(100vh - 60px);
        min-height: 520px;
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        min-height: unset;
    }

    .hero-text p {
        font-size: 1.05rem;
        min-height: unset;
    }

    .slider-controls {
        position: absolute;
        bottom: 24px;
        top: auto;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 14px;
        padding: 0;
    }

    .slider-controls .control-btn {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .well-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .area-padding {
        padding: 60px 0;
    }

    .section-headline h3 {
        font-size: 1.85rem;
    }

    /* ---- Mobile Hero: BG image preserved, no blank space ---- */
    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* Use real viewport height minus navbar - no padding tricks */
        height: calc(100svh - 60px);
        min-height: 560px;
        max-height: 900px;
        padding: 0;
        /* Keep the real background image - do NOT override with !important gradient */
        position: relative;
        overflow: hidden;
    }

    /* Stronger dark overlay on mobile for text readability over image */
    .hero-overlay {
        display: block;
        background: linear-gradient(160deg,
                rgba(10, 14, 28, 0.82) 0%,
                rgba(15, 23, 42, 0.65) 60%,
                rgba(26, 16, 64, 0.72) 100%);
    }

    /* Ambient purple glow blob layered over image */
    .hero-section::before {
        content: '';
        position: absolute;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 340px;
        height: 340px;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 68%);
        z-index: 2;
        pointer-events: none;
    }

    .hero-text {
        position: relative;
        z-index: 3;
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .hero-text h1 {
        font-size: 1.7rem;
        font-weight: 800;
        margin-bottom: 4px;
        line-height: 1.25;
        background: linear-gradient(135deg, #ffffff 0%, #ddd6fe 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: heroFadeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
    }

    .hero-text p {
        display: none;
    }

    /* Search card - clean white card look */
    .hero-search-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        background: #ffffff;
        border: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
        padding: 14px 14px 10px;
        border-radius: 16px;
        gap: 6px;
        margin: 0;
        width: calc(100% - 40px);
        max-width: 380px;
        animation: heroFadeIn 0.7s 0.25s cubic-bezier(0.4, 0, 0.2, 1) both;
    }

    .hero-location {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--text-main);
        font-size: 0.85rem;
        font-weight: 700;
        padding: 0 0 10px 0;
        border-right: none;
        border-bottom: 1.5px solid #f1f5f9;
        white-space: nowrap;
    }

    .hero-location i {
        color: var(--accent-color);
        font-size: 0.9rem;
    }

    .hero-search-input-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 2px 0;
        background: transparent;
        border: none;
        width: 100%;
    }

    .hero-search-input-wrapper i {
        color: #94a3b8;
        font-size: 0.875rem;
        flex-shrink: 0;
    }

    .hero-search-input-wrapper input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        font-size: 0.85rem;
        color: var(--text-main);
        font-weight: 500;
    }

    .hero-search-input-wrapper input::placeholder {
        color: #94a3b8;
        font-size: 0.8rem;
    }

    /* Arrow button as full-width CTA */
    .hero-search-btn {
        position: static;
        width: 100%;
        height: 44px;
        border-radius: 10px;
        background: var(--accent-color);
        color: #fff;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        margin-top: 2px;
        transform: none;
        transition: background 0.2s ease;
    }

    .hero-search-btn:hover {
        background: var(--accent-hover);
        transform: none;
    }

    /* Slider controls at bottom of hero */
    .slider-controls {
        position: absolute;
        bottom: 18px;
        top: auto;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 12px;
        padding: 0;
        z-index: 4;
        pointer-events: none;
    }

    .slider-controls .control-btn {
        pointer-events: auto;
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
        background-color: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: #fff;
    }

    .well-services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Floating Bottom Bar */
.mobile-floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    padding: 10px 16px;
    gap: 12px;
    z-index: 999;
    border-top: 1px solid var(--border-color);
}

.mobile-floating-bar .floating-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.mobile-floating-bar .btn-call {
    background-color: rgba(124, 58, 237, 0.08);
    color: var(--accent-color);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.mobile-floating-bar .btn-call:hover {
    background-color: rgba(124, 58, 237, 0.15);
}

.mobile-floating-bar .btn-book {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.mobile-floating-bar .btn-book:hover {
    background-color: var(--accent-hover);
}

/* Add padding to body on mobile to prevent content overlap with floating bar */
@media (max-width: 991px) {
    body {
        padding-bottom: 72px;
        /* 48px height + 24px padding */
    }
}

/* Optimizing mobile close button and padding targets */
.mobile-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

/* Quick Services Grid Section (Premium Upgraded UI/UX) */
.quick-services-section {
    position: relative;
    z-index: 10;
    margin-top: -60px; /* Overlaps hero slightly for desktop layout */
    padding-bottom: 50px;
}

.quick-services-card {
    background-color: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(15, 23, 42, 0.02), 0 10px 20px -5px rgba(124, 58, 237, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.7);
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-services-card:hover {
    box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.03), 0 15px 30px -10px rgba(124, 58, 237, 0.05);
    transform: translateY(-2px);
}

.quick-services-header {
    display: none !important; /* Premium global style removes the redundant heading inside card */
}

.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
}

.quick-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    text-decoration: none !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-service-item:hover {
    transform: translateY(-4px);
}

.quick-service-item .icon-wrapper {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.6), 0 1px 2px rgba(15, 23, 42, 0.02);
}

.quick-service-item:hover .icon-wrapper {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    border-color: #8B5CF6;
    box-shadow: 0 12px 24px rgba(124, 58, 237, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transform: scale(1.04);
}

.quick-service-item img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.quick-service-item:hover img {
    filter: brightness(0) invert(1);
    transform: scale(1.06);
}

.quick-service-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569; /* Slate 600 */
    line-height: 1.3;
    transition: color 0.3s ease;
}

.quick-service-item:hover span {
    color: var(--accent-color);
}

/* ==========================================================================
   Responsive UI/UX Enhancements for Mobile (Scroll-Free Alignment)
   ========================================================================== */
@media (max-width: 991px) {
    .quick-services-section {
        margin-top: -30px;
        padding-bottom: 30px;
    }
    
    .quick-services-card {
        padding: 28px 24px;
        border-radius: 20px;
    }
    
    .quick-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px 16px;
    }
}

@media (max-width: 768px) {
    /* Compact scroll-free Mobile Hero Banner */
    .hero-section {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
        padding: 0;
    }

    .hero-text {
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 1.6rem !important;
        margin-bottom: 0 !important;
        line-height: 1.25;
    }

    .hero-text p {
        display: none !important;
    }

    .slider-controls {
        display: none !important; /* Hide controls on mobile to save vertical space */
    }

    /* Standalone Quick Services below Hero Banner */
    .quick-services-section {
        margin-top: 16px !important;
        padding-bottom: 16px;
    }
    
    .quick-services-card {
        box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04), 0 0 0 1px rgba(15, 23, 42, 0.01);
        border-radius: 24px;
        padding: 24px;
        border: 1px solid rgba(241, 245, 249, 0.9);
    }
    
    .quick-services-header {
        display: none !important;
    }
    
    .quick-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px 10px;
    }
    
    .quick-service-item {
        gap: 8px;
    }
    
    .quick-service-item .icon-wrapper {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        border-width: 1px;
    }
    
    .quick-service-item img {
        width: 26px;
        height: 26px;
    }
    
    .quick-service-item span {
        font-size: 0.72rem;
        line-height: 1.25;
    }
}

/* ==========================================================================
   Service Details Custom Layout Components
   ========================================================================== */
.service-rating-badge {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.825rem;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-bar {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.trust-item i {
    font-size: 1.15rem;
    color: var(--accent-color);
    background-color: rgba(124, 58, 237, 0.08);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-item span {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-step::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 42px;
    bottom: 0;
    width: 2px;
    background-color: #e2e8f0;
}

.timeline-step:last-child::after {
    display: none;
}

.step-num {
    width: 42px;
    height: 42px;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
    position: relative;
    z-index: 2;
}

.step-content {
    padding-top: 6px;
}

.step-content h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Custom Accordion Styling */
.accordion-item {
    border: 1px solid #f1f5f9;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.01);
}

.accordion-button {
    font-weight: 700;
    color: var(--text-main) !important;
    padding: 18px 24px;
    font-size: 1rem;
    background-color: #ffffff !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(124, 58, 237, 0.02) !important;
    color: var(--accent-color) !important;
    border-bottom: 1px solid #f1f5f9;
}

.accordion-button::after {
    background-size: 1.1rem;
    transition: transform 0.2s ease;
}

.accordion-body {
    padding: 20px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: #ffffff;
}

@media (max-width: 991px) {
    .trust-bar {
        padding: 16px 0;
    }
    
    .trust-item {
        margin-bottom: 12px;
        justify-content: flex-start;
        padding-left: 20px;
    }
    
    .trust-item:last-child {
        margin-bottom: 0;
    }
}

/* Service Page Card Responsiveness */
.service-detail-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    padding: 24px 20px;
}

.service-booking-widget {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-color);
    box-shadow: var(--shadow-lg);
    border-top-width: 6px;
    padding: 24px 20px;
}

@media (min-width: 768px) {
    .service-detail-card {
        padding: 40px;
    }
    
    .service-booking-widget {
        padding: 35px;
    }
}

/* Gallery Filter Tabs */
.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background-color: rgba(124, 58, 237, 0.04);
}

.filter-btn.active {
    background-color: var(--accent-color);
    color: var(--bg-white) !important;
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

/* Other Services Sidebar Interlinking hover effect */
.other-service-link:hover {
    border-color: var(--accent-color) !important;
    color: var(--accent-color) !important;
    background-color: rgba(124, 58, 237, 0.02) !important;
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}