/* ==========================================================================
   MAID CITY INDIA - Professional Design System & Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #004bb5;
    --primary-dark: #071b38;
    --primary-light: #1d61d1;
    --accent-orange: #ff6600;
    --accent-orange-hover: #e65c00;
    --accent-green: #22b14c;
    --whatsapp-green: #25d366;
    --call-blue: #004bb5;
    --gold: #f59e0b;
    --gold-light: #fef3c7;
    --success: #22b14c;
    --success-light: #e8f7ec;
    --bg-light: #f8fafc;
    --bg-surface: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --card-shadow: 0 10px 30px -5px rgba(0, 75, 181, 0.08);
    --hover-shadow: 0 20px 40px -10px rgba(0, 75, 181, 0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

/* Keyframes for Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulseCallGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 102, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

/* Reveal Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-dark);
}

.text-primary { color: var(--primary); }
.text-orange { color: var(--accent-orange); }
.text-green { color: var(--accent-green); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #004bb5 0%, #1d61d1 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 75, 181, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 75, 181, 0.45);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    animation: pulseGlow 3s infinite;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #20bd5a 0%, #0e7065 100%);
}

.btn-call {
    background: linear-gradient(135deg, #ff6600 0%, #d95300 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.35);
    animation: pulseCallGlow 3s infinite 1.5s;
}

.btn-call:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
    background: linear-gradient(135deg, #e65c00 0%, #c44b00 100%);
}

.btn-orange {
    background: linear-gradient(135deg, #ff6600 0%, #e65c00 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.35);
}

.btn-orange:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.45);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.88rem;
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
}

/* Badges & Chips */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.825rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

.badge-orange {
    background: #fff0e6;
    color: var(--accent-orange);
    border: 1px solid #ffd1b3;
}

.badge-blue {
    background: #e8f1fd;
    color: var(--primary);
    border: 1px solid #b8d4fa;
}

.badge-green {
    background: var(--success-light);
    color: var(--accent-green);
    border: 1px solid #a8e8bb;
}

/* Header & Navigation */
.top-bar {
    background-color: var(--primary-dark);
    color: #cbd5e1;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-info {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.top-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-info i {
    color: var(--accent-orange);
}

/* Top Bar Actions */
.top-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.top-actions .desktop-call-btn {
    display: none; /* Removed Call Now on desktop as requested */
}

.top-actions a {
    color: #e2e8f0;
    font-weight: 600;
}

.top-actions a:hover {
    color: var(--accent-orange);
}

/* Header Nav */
.header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

.brand-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo:hover img {
    transform: scale(1.03);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.98rem;
    position: relative;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 275px;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 75, 181, 0.15);
    border: 1px solid var(--border-color);
    padding: 0.8rem 0;
    max-height: 85vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1100;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: #f0f7ff;
    color: var(--accent-orange);
    padding-left: 1.5rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
    transition: var(--transition);
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    background: none;
    border: none;
}

/* Hero Section with Image Background */
.hero {
    position: relative;
    padding: 4.5rem 0 5.5rem;
    background: linear-gradient(135deg, rgba(7, 27, 56, 0.92) 0%, rgba(0, 75, 181, 0.88) 100%), 
                url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 0.8rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 span.city-rotator {
    color: var(--accent-orange);
    border-bottom: 3px dashed var(--accent-orange);
    display: inline-block;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-description {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 1.8rem;
    max-width: 580px;
    line-height: 1.55;
    animation: fadeInUp 1s ease;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

.hero-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
}

.hero-chip:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.hero-chip i {
    color: var(--accent-orange);
}

/* Square Image Card Component (Matching Screenshot with Verified Pill Badge) */
.hero-image-wrapper {
    position: relative;
    animation: fadeInUp 1s ease;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.square-image-card {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 450px;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--primary-dark);
}

.square-image-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
    border-radius: 28px !important;
    transition: transform 0.5s ease;
}

.square-image-card:hover img {
    transform: scale(1.04);
}

.verified-pill-badge {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 0.6rem 1.35rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    white-space: nowrap;
    z-index: 10;
}

.verified-pill-badge i {
    color: #22c55e;
    font-size: 1.15rem;
}

.verified-pill-badge span {
    font-weight: 800;
    font-size: 0.88rem;
    color: #071b38;
    letter-spacing: -0.2px;
}

/* Horizontal Quick Booking Bar (Replacing vertical card) */
.horizontal-booking-bar {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.4rem 2rem;
    box-shadow: 0 20px 45px rgba(0, 75, 181, 0.15);
    margin-top: -3.5rem;
    position: relative;
    z-index: 30;
    border: 1px solid var(--border-color);
}

.horizontal-booking-bar .btn-primary {
    border-radius: 50px !important;
    padding: 0.85rem 1.8rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    background: #0056d2 !important;
    box-shadow: 0 8px 20px rgba(0, 86, 210, 0.3) !important;
}

.booking-horizontal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 1.2rem;
    align-items: flex-end;
}

.booking-horizontal-grid .search-form-group {
    margin-bottom: 0;
}

/* Quick Search Card */
.hero-search-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    color: var(--text-dark);
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease;
}

.search-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--primary-dark);
}

.search-card-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.search-form-group {
    margin-bottom: 1.1rem;
}

.search-form-group label {
    display: block;
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-form-group select,
.search-form-group input {
    width: 100%;
    padding: 0.8rem 0.95rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.search-form-group select:focus,
.search-form-group input:focus {
    border-color: var(--accent-orange);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.15);
}

/* Section Review Badge Banner */
.section-reviews-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.8rem;
    background: #ffffff;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
}

.section-reviews-bar:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

.review-stars-inline {
    color: var(--gold);
    font-size: 1rem;
    display: flex;
    gap: 0.2rem;
}

.review-text-inline {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

/* Stats Counter Bar */
.stats-bar {
    background: #ffffff;
    padding: 1.8rem 0;
    box-shadow: var(--card-shadow);
    margin-top: -2.5rem;
    position: relative;
    z-index: 20;
    border-radius: var(--radius-md);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    border-right: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* Section Common */
.section {
    padding: 4.5rem 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.3rem;
    margin-top: 0.5rem;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    font-size: 1.025rem;
    color: var(--text-muted);
}

/* Verification Banner */
.verification-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%);
    border-top: 1px solid #d0e3f7;
    border-bottom: 1px solid #d0e3f7;
}

.verification-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.v-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 75, 181, 0.1);
}

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

.v-icon {
    width: 64px;
    height: 64px;
    background: #e8f1fd;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.v-card:hover .v-icon {
    background: var(--primary);
    color: #ffffff;
    transform: rotate(360deg);
}

.v-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.v-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

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

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.service-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.service-desc {
    font-size: 0.925rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.service-footer {
    display: flex;
    gap: 0.6rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

/* Single Service Page Components (Image 2 Design Layout) */
.single-service-hero {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
    padding: 3.5rem 0;
    text-align: center;
}

.single-service-hero h1 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 800;
}

.single-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin: 2.5rem 0;
}

.single-highlight-card {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.2rem 1rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    transition: var(--transition);
}

.single-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(249, 115, 22, 0.45);
}

.single-highlight-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.single-highlight-title {
    font-size: 1.05rem;
    font-weight: 700;
}

.single-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-choose-card {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.25);
    transition: var(--transition);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(2, 132, 199, 0.4);
}

.why-choose-card h4 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.why-choose-card p {
    font-size: 0.85rem;
    color: #e0f2fe;
}

.single-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    background: #fff7ed;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid #ffedd5;
}

.single-advantage-list li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-dark);
}

.single-advantage-list li i {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* 5-Step Trust & Safety Icon Bar (Image 2) */
.trust-safety-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    text-align: center;
    margin-top: 2.5rem;
}

.trust-step-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.trust-step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.trust-step-icon {
    width: 60px;
    height: 60px;
    background: #fff0e6;
    color: var(--accent-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 0.8rem;
    transition: var(--transition);
}

.trust-step-item:hover .trust-step-icon {
    background: var(--accent-orange);
    color: #ffffff;
    transform: scale(1.1);
}

.trust-step-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

/* Calculator Section */
.calculator-section {
    background: var(--primary-dark);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.calc-info h2 {
    color: #ffffff;
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.calc-info p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.calc-box {
    background: #ffffff;
    color: var(--text-dark);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.calc-field {
    margin-bottom: 1.5rem;
}

.calc-field label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.calc-field select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 600;
}

.calc-result-box {
    background: #f0f7ff;
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

/* Process Timeline (How It Works) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    box-shadow: var(--card-shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-step-num {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #004bb5 0%, #ff6600 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.process-card:hover .process-step-num {
    transform: scale(1.15) rotate(360deg);
}

.process-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

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

/* City Network Grid */
.city-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
}

.city-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.2rem 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.city-card:hover {
    border-color: var(--accent-orange);
    box-shadow: var(--card-shadow);
    transform: translateY(-4px);
}

.city-icon {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.city-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.city-count {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-dark);
}

.client-details h5 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.client-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Accordion Section */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-header {
    padding: 1.4rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.faq-header:hover {
    color: var(--accent-orange);
}

.faq-icon {
    font-size: 1.1rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0 1.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding: 0 1.8rem 1.4rem;
}

/* CTA Banner Section */
.cta-banner {
    background: linear-gradient(135deg, #004bb5 0%, #071b38 100%);
    color: #ffffff;
    padding: 4.5rem 0;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 75, 181, 0.25);
    margin: 2rem 0;
}

.cta-banner h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: #94a3b8;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-about p {
    margin-top: 1.2rem;
    font-size: 0.925rem;
    line-height: 1.6;
}

.footer-title {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

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

.footer-links a {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.footer-contact i {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

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

/* Floating Action Hub */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
    cursor: pointer;
}

.float-btn:hover {
    transform: scale(1.12);
}

.float-whatsapp {
    background-color: #25d366;
    animation: pulseGlow 3s infinite;
}

.float-call {
    background: linear-gradient(135deg, #ff6600 0%, #d95300 100%);
    animation: pulseCallGlow 3s infinite 1.5s;
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 27, 56, 0.8);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 550px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--bg-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.modal-close:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Page Header Banner for Inner Pages */
.page-banner {
    background: linear-gradient(135deg, rgba(7, 27, 56, 0.92) 0%, rgba(0, 75, 181, 0.88) 100%),
                url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #ffffff;
    padding: 4.5rem 0;
    text-align: center;
}

.page-banner h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease;
}

.page-banner p {
    color: #cbd5e1;
    font-size: 1.1rem;
    animation: fadeInUp 1s ease;
}

/* Mobile App Bottom Bar Dock & Touch UI */
.mobile-app-dock {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    z-index: 1500;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.08);
    padding: 0.4rem 0.5rem 0.6rem;
}

.mobile-dock-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    color: var(--text-muted);
    font-size: 0.725rem;
    font-weight: 700;
    padding: 0.3rem 0.5rem;
    border-radius: 10px;
    transition: var(--transition);
    flex: 1;
    text-align: center;
}

.dock-item i {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.dock-item.active,
.dock-item:hover {
    color: var(--primary);
}

.dock-item:active i {
    transform: scale(0.85);
}

.dock-item.dock-whatsapp {
    color: #25d366;
}

.dock-item.dock-call {
    color: #ff6600;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .booking-horizontal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .square-image-card {
        width: 320px;
        height: 410px;
        max-width: 320px;
        aspect-ratio: 3 / 4;
        border-radius: 24px;
    }

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

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

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

    .trust-safety-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
    }

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

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

    .city-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    body {
        padding-bottom: 70px; /* Space for Mobile App Bottom Dock */
    }

    .container {
        padding: 0 1.2rem; /* Clean average left & right mobile spacing */
    }

    .mobile-app-dock {
        display: block;
    }

    .floating-actions {
        display: none;
    }

    .top-bar {
        display: none;
    }

    .header .container {
        height: 64px;
        padding: 0 1rem;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: var(--bg-light);
        border-radius: 12px;
        color: var(--primary);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        gap: 1rem;
        transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        box-shadow: 10px 0 30px rgba(0,0,0,0.15);
        z-index: 2000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        padding: 0.8rem 1rem;
        border-radius: 12px;
        background: var(--bg-light);
        font-size: 1rem;
    }

    .nav-link.active {
        background: #e8f1fd;
        color: var(--primary);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        width: 100%;
        padding-left: 1rem;
    }

    .header-cta {
        display: none;
    }

    /* Mobile Hero Layout: Image on top, centered text with optimized spacing */
    .hero {
        padding: 1.8rem 0 2.4rem;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 1.1rem;
    }

    .hero-image-wrapper {
        order: -1; /* Image appears at top on mobile */
        margin-bottom: 0.2rem;
        width: 100%;
    }

    .square-image-card {
        width: 290px;
        height: 370px;
        max-width: 290px;
        aspect-ratio: 3 / 4;
        border-radius: 22px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }

    .hero-image-wrapper img,
    .square-image-card img {
        max-height: none !important;
    }

    .verified-pill-badge {
        bottom: 0.8rem;
        padding: 0.5rem 1.1rem;
        gap: 0.5rem;
    }

    .verified-pill-badge i {
        font-size: 1.05rem;
    }

    .verified-pill-badge span {
        font-size: 0.82rem;
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.65rem;
        line-height: 1.22;
        text-align: center;
        margin-top: 0.2rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.92rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
    }

    .hero-content div {
        justify-content: center;
    }

    .horizontal-booking-bar {
        padding: 1.1rem;
        border-radius: 16px;
        margin-top: -1.5rem;
    }

    .booking-horizontal-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    /* Single Service Page & General Page Mobile Typography */
    .single-service-hero {
        padding: 2.5rem 0;
    }

    .single-service-hero h1,
    .page-banner h1 {
        font-size: 1.8rem;
    }

    .single-service-hero p,
    .page-banner p {
        font-size: 0.95rem;
    }

    .single-highlight-grid,
    .single-why-grid,
    .trust-safety-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .single-details-grid {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
    }

    .single-details-grid h3 {
        font-size: 1.3rem;
    }

    .stats-bar {
        margin-top: -1.5rem;
        padding: 1.2rem;
        border-radius: 16px;
    }

    .section {
        padding: 2.8rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .services-grid,
    .verification-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-card {
        border-radius: 20px;
    }

    .city-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .cta-banner {
        padding: 2.2rem 1.2rem;
        border-radius: 20px;
    }

    .cta-banner h2 {
        font-size: 1.65rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.4rem 0 2.1rem;
    }

    .hero-grid {
        gap: 0.9rem;
    }

    .square-image-card {
        width: 240px;
        height: 310px;
        max-width: 240px;
        aspect-ratio: 3 / 4;
        border-radius: 18px;
    }

    .verified-pill-badge {
        bottom: 0.65rem;
        padding: 0.45rem 0.95rem;
        gap: 0.45rem;
    }

    .verified-pill-badge i {
        font-size: 0.95rem;
    }

    .verified-pill-badge span {
        font-size: 0.78rem;
    }

    .booking-horizontal-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.48rem;
    }

    .hero-description {
        font-size: 0.88rem;
        margin-bottom: 0.85rem;
    }

    .single-highlight-grid,
    .single-why-grid,
    .trust-safety-grid {
        grid-template-columns: 1fr;
    }

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

    .city-grid {
        grid-template-columns: 1fr;
    }

    .service-footer {
        flex-direction: column;
        gap: 0.6rem;
    }

    .btn {
        width: 100%;
        min-height: 48px; /* Native touch target height */
    }
}

/* Middle Promo Callout Banner (Matching Reference Screenshots) */
.middle-promo-banner {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%), 
                url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    background-blend-mode: overlay;
    color: #ffffff;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.middle-promo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 650px;
}

.middle-promo-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fde047;
    margin-bottom: 0.5rem;
}

.middle-promo-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.middle-promo-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-yellow {
    background: #eab308;
    color: #0f172a;
    font-weight: 700;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-yellow:hover {
    background: #facc15;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 179, 8, 0.4);
    color: #0f172a;
}

/* Additional Responsive Tweaks for Mobile & Small Displays */
@media (max-width: 768px) {
    .middle-promo-banner {
        padding: 2.2rem 1rem;
        text-align: center;
    }

    .middle-promo-content {
        align-items: center;
        text-align: center;
    }

    .middle-promo-title {
        font-size: 1.45rem;
        margin-bottom: 1.2rem;
    }

    .middle-promo-buttons {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .middle-promo-buttons .btn-yellow {
        width: 100%;
        justify-content: center;
    }

    .single-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .trust-safety-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .single-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .trust-safety-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .single-highlight-card {
        padding: 0.85rem 0.5rem;
    }

    .single-highlight-icon {
        font-size: 1.6rem;
    }

    .single-highlight-title {
        font-size: 0.82rem;
    }
}

/* FAQ Accordion Styling (Matching Modern Responsive UI) */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 75, 181, 0.04);
}

.faq-item:hover {
    border-color: #0284c7;
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.1);
}

.faq-item.active {
    border-color: #0284c7;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.12);
}

.faq-question,
.faq-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 1.6rem;
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.faq-question:hover,
.faq-header:hover {
    color: #0284c7;
}

.faq-icon {
    font-size: 0.95rem;
    color: #0284c7;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: #0284c7;
    color: #ffffff;
}

.faq-answer {
    padding: 0 1.6rem 1.4rem 1.6rem;
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--text-muted);
    display: none;
    border-top: 1px dashed #e2e8f0;
    margin-top: 0.2rem;
    padding-top: 1.1rem;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.35s ease;
}

/* Maid & Service Related Light SVG Background Decorative Elements */
.bg-svg-decor {
    position: relative;
    overflow: hidden;
}

.bg-svg-decor::before,
.bg-svg-decor::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    opacity: 0.05;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.bg-svg-decor::before {
    top: 5%;
    left: 2%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%230284c7' d='M256 0c141.4 0 256 114.6 256 256S397.4 512 256 512 0 397.4 0 256 114.6 0 256 0zm0 96c-88.4 0-160 71.6-160 160s71.6 160 160 160 160-71.6 160-160S344.4 96 256 96z'/%3E%3C/svg%3E");
}

.bg-svg-decor::after {
    bottom: 5%;
    right: 2%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23eab308' d='M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z'/%3E%3C/svg%3E");
}

/* Maid & Service Light Colored Floating Background Icons */
.hero::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 2.5%;
    width: 70px;
    height: 70px;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230284c7' viewBox='0 0 512 512'%3E%3Cpath d='M256 32c14.2 0 27.3 7.5 34.5 19.8l128 216c8.5 14.3 8.3 32.2-.6 46.4S392.8 336 376 336H136c-16.8 0-32-8.3-40.4-22.5s-9.1-32.1-.6-46.4l128-216C228.7 39.5 241.8 32 256 32z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    animation: floatIcon 7s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 6%;
    right: 3%;
    width: 80px;
    height: 80px;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff6600' viewBox='0 0 512 512'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    animation: floatIcon 9s ease-in-out infinite alternate-reverse;
}

@keyframes floatIcon {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-18px) rotate(12deg); }
}

/* ==========================================================================
   Customer Reviews Widget (Exact Screenshot Replica)
   ========================================================================== */
.customer-reviews-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 2.5rem;
    margin: 2.5rem 0 3.5rem 0;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviews-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
}

.btn-write-review {
    background: #facc15;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.65rem 1.3rem;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-write-review:hover {
    background: #eab308;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(234, 179, 8, 0.3);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: center;
}

.reviews-summary {
    text-align: center;
    padding-right: 2rem;
    border-right: 1px solid #f1f5f9;
}

.reviews-sublabel {
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.6rem;
}

.reviews-score {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.reviews-score span {
    font-size: 1.6rem;
    font-weight: 700;
    color: #64748b;
}

.reviews-stars {
    color: #f59e0b;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.6rem;
}

.reviews-count-text {
    font-size: 0.82rem;
    color: #94a3b8;
    font-weight: 500;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-bar-row {
    display: grid;
    grid-template-columns: 110px 1fr 40px;
    align-items: center;
    gap: 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
}

.rating-progress-bg {
    height: 9px;
    background: #f1f5f9;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.rating-progress-fill {
    height: 100%;
    background: #facc15;
    border-radius: 50px;
}

.rating-count {
    text-align: right;
    font-weight: 700;
    color: #1e293b;
}

@media (max-width: 768px) {
    .customer-reviews-card {
        padding: 1.5rem;
        margin: 2rem 0;
    }

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

    .reviews-summary {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 1.8rem;
    }

    .rating-bar-row {
        grid-template-columns: 95px 1fr 30px;
        gap: 0.6rem;
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   Blog Section & Single Blog Page Styling (Compact Spacing)
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.1);
    border-color: #e0f2fe;
}

.blog-img-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #ff6600;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.28rem 0.7rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.blog-body {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.blog-meta i {
    color: #ff6600;
}

.blog-card-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.35;
    margin-bottom: 0.4rem;
    transition: var(--transition);
}

.blog-card:hover .blog-card-title {
    color: #ff6600;
}

.blog-excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-read-more {
    color: #ff6600;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
}

.blog-card:hover .blog-read-more {
    gap: 0.6rem;
}

/* Dark Blog Header Banner (Compact) */
.dark-blog-hero {
    background: #0f172a;
    padding: 2.2rem 1rem;
    border-bottom: 4px solid #ff6600;
    text-align: center;
    color: #ffffff;
}

.dark-blog-hero h1 {
    font-size: 2.1rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.3rem;
    letter-spacing: -0.5px;
}

.dark-blog-breadcrumbs {
    font-size: 0.88rem;
    font-weight: 700;
    color: #94a3b8;
}

.dark-blog-breadcrumbs a {
    color: #ffffff;
    transition: var(--transition);
}

.dark-blog-breadcrumbs a:hover {
    color: #ff6600;
}

.dark-blog-breadcrumbs span.active-crumb {
    color: #ff6600;
}

/* Category Filter Tabs (Compact) */
.blog-filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0 0.5rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    background: #ffffff;
    color: #334155;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.45rem 1.1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.tab-btn:hover {
    border-color: #ff6600;
    color: #ff6600;
}

.tab-btn.active {
    background: #ff6600;
    color: #ffffff;
    border-color: #ff6600;
    box-shadow: 0 3px 10px rgba(255, 102, 0, 0.25);
}

/* Single Blog 2-Column Grid Layout (Compact) */
.single-blog-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: flex-start;
    margin: 1.8rem 0;
}

.blog-main-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.6rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

.blog-main-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1.1rem;
}

.blog-meta-pill-bar {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.55rem 1rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.blog-meta-pill-bar i {
    color: #ff6600;
}

.blog-quote-callout {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.3rem;
    font-style: italic;
    font-weight: 700;
    font-size: 0.98rem;
    color: #92400e;
    border-radius: 0 10px 10px 0;
    margin: 1.4rem 0;
    line-height: 1.55;
}

.blog-tags-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.8rem 0 1.2rem 0;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    flex-wrap: wrap;
}

.tag-label {
    font-weight: 800;
    font-size: 0.84rem;
    color: #d97706;
}

.tag-pill {
    background: #fef3c7;
    color: #92400e;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.28rem 0.75rem;
    border-radius: 50px;
}

.btn-back-articles {
    background: #064e3b;
    color: #ffffff;
    font-weight: 800;
    padding: 0.6rem 1.4rem;
    font-size: 0.88rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.btn-back-articles:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 78, 59, 0.25);
    color: #ffffff;
}

/* Sidebar Widgets (Compact) */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.2rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
}

.widget-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #f1f5f9;
}

.widget-title i {
    color: #ff6600;
}

.recent-post-item {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed #f1f5f9;
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-thumb {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.recent-post-title {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
    transition: var(--transition);
}

.recent-post-title:hover {
    color: #ff6600;
}

.recent-post-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.category-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    padding: 0.6rem 0.85rem;
    border-radius: 10px;
    margin-bottom: 0.45rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: #334155;
    transition: var(--transition);
}

.category-list-item:hover {
    background: #fff7ed;
    color: #ff6600;
}

/* Sidebar Dark CTA Box (Compact) */
.sidebar-cta-box {
    background: #1c1917;
    color: #ffffff;
    border-radius: 18px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sidebar-cta-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 102, 0, 0.15);
    color: #ff6600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 0.9rem auto;
}

.sidebar-cta-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
    line-height: 1.25;
}

.sidebar-cta-desc {
    font-size: 0.84rem;
    color: #d6d3d1;
    margin-bottom: 1.1rem;
    line-height: 1.45;
}

.btn-sidebar-cta {
    background: #ff6600;
    color: #ffffff;
    font-weight: 800;
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    border-radius: 50px;
    display: block;
    margin-bottom: 0.9rem;
    transition: var(--transition);
}

.btn-sidebar-cta:hover {
    background: #ea580c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.35);
}

.sidebar-cta-phone {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

@media (max-width: 1024px) {
    .single-blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .dark-blog-hero h1 {
        font-size: 1.8rem;
    }

    .blog-main-card {
        padding: 1.5rem;
    }

    .blog-main-img {
        height: 260px;
    }
}
