/* ==========================================================================
   Pro Master Pest Control - MAIN STYLESHEET
   Brand Colors: Orange (#f15a24), Deep Charcoal (#111827), White (#ffffff)
   Optimized for Dubai Local SEO & Mobile Performance
   ========================================================================== */

/* --- Reset & Global Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #334155;
    background-color: #ffffff;
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.site-wrapper {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 85px 0;
}

.bg-light {
    background-color: #f8fafc;
}

.text-center {
    text-align: center;
}

/* Badges & Section Titles */
.sub-badge {
    display: inline-block;
    background: #fff2ed;
    color: #f15a24;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(241, 90, 36, 0.2);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.section-desc {
    font-size: 16px;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto 50px;
}

/* ==========================================================================
   1. TOP BAR & BRANDING (CLEANED UP - TASK 3)
   ========================================================================== */
.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.top-bar {
    padding: 12px 0;
    background: #ffffff;
}

.top-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-branding .site-logo {
    max-height: 58px;
    width: auto;
    object-fit: contain;
}

.top-contact-info {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.top-info-icon.whatsapp-icon {
    background: #e8f9ee;
    color: #25d366;
    font-size: 17px;
}

.top-info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-val {
    font-size: 13.5px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.info-link:hover {
    color: #f15a24;
}

.top-phone-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff5f0;
    border: 1px solid rgba(241, 90, 36, 0.2);
    border-radius: 30px;
    padding: 6px 18px 6px 10px;
}

.phone-circle-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f15a24;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.phone-details {
    display: flex;
    flex-direction: column;
}

.tollfree-number {
    font-size: 18px;
    font-weight: 900;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.3px;
}

.tollfree-number:hover {
    color: #f15a24;
}

.tollfree-sub {
    font-size: 10.5px;
    color: #f15a24;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Mobile Top Actions (Hidden on Desktop) */
.mobile-top-actions {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-quick-call {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f15a24;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.mobile-side-toggle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #111827;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

/* ==========================================================================
   2. MAIN NAVIGATION (FIXED POSITION & ALIGNMENT - TASK 4)
   ========================================================================== */
.main-navigation-bar {
    background: #f15a24;
    position: relative;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(241, 90, 36, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
}

.nav-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-social-icons a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.2s;
}

.nav-social-icons a:hover {
    background: #ffffff;
    color: #f15a24;
    transform: translateY(-2px);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-item > a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 16px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    text-transform: uppercase;
}

.nav-item > a:hover {
    color: #fff2ed;
}

.nav-arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 280px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 3px solid #f15a24;
    z-index: 200;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
    transition: all 0.2s;
}

.dropdown-menu li a i {
    width: 18px;
    color: #f15a24;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #fff5f0;
    color: #f15a24;
    padding-left: 24px;
}

/* Book Now CTA Pill */
.btn-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.5px;
    padding: 9px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.2s;
    text-transform: uppercase;
}

.btn-book-now:hover {
    background: #111827;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: 75% center;
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: 75px 0 95px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.84) 48%, rgba(17, 24, 39, 0.25) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-content {
    max-width: 660px;
}

.hero-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 6px 18px;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f15a24;
    box-shadow: 0 0 10px #f15a24;
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-highlight {
    color: #f59e0b; /* Golden Yellow */
}

.hero-subtitle {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f15a24;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 15px 36px;
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(241, 90, 36, 0.45);
    transition: all 0.25s ease;
}

.btn-hero-cta:hover {
    background: #d94814;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(241, 90, 36, 0.6);
}

.btn-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    padding: 15px 28px;
    border-radius: 40px;
    transition: all 0.2s;
}

.btn-hero-phone:hover {
    background: #ffffff;
    color: #111827;
}

/* Floating Google Review Card */
.hero-google-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
}

.google-icon-wrapper {
    background: #ffffff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.google-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.star-filled,
.google-stars i {
    color: #f59e0b;
    font-size: 14px;
}

.rating-number,
.score-bold {
    font-size: 13.5px;
    font-weight: 800;
    color: #ffffff;
}

.score-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.google-rating-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.google-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.google-score-line {
    display: flex;
    align-items: center;
    gap: 6px;
}

.google-avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -8px;
    object-fit: cover;
}

.avatar-img:first-child {
    margin-left: 0;
}

.avatar-plus-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f15a24;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-left: -8px;
    border: 2px solid #ffffff;
}

/* ==========================================================================
   4. TRUST BADGES BAR (REPLACES OLD FORM - TASK 1)
   ========================================================================== */
.trust-badges-bar-section {
    position: relative;
    z-index: 10;
    margin-top: -35px;
    margin-bottom: 20px;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trust-badge-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.25s ease;
}

.trust-badge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(241, 90, 36, 0.12);
    border-color: rgba(241, 90, 36, 0.3);
}

.trust-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f15a24;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(241, 90, 36, 0.35);
}

.trust-card-body h4 {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.25;
}

.trust-card-body p {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.45;
}

/* ==========================================================================
   5. OUR SERVICES SECTION (10 SERVICES)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(241, 90, 36, 0.3);
}

.service-image-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image-box img {
    transform: scale(1.06);
}

.service-icon-badge {
    position: absolute;
    bottom: -18px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f15a24;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(241, 90, 36, 0.35);
    border: 3px solid #ffffff;
}

.service-body {
    padding: 28px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.service-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.service-link {
    font-size: 13.5px;
    font-weight: 700;
    color: #f15a24;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 10px;
    color: #d94814;
}

/* ==========================================================================
   5.5 HOW IT WORKS / OUR PROVEN PROCESS
   ========================================================================== */
.how-it-works-section {
    background-color: #ea580c;
    background-image: 
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 88% 82%, rgba(0, 0, 0, 0.14) 0%, transparent 45%),
        linear-gradient(135deg, #f15a24 0%, #ea580c 50%, #c2410c 100%);
    position: relative;
    padding: 85px 0 95px 0;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    background-position: 0 0;
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
}

.how-it-works-section > .container {
    position: relative;
    z-index: 2;
}

.how-it-works-section .section-title-wrap {
    margin-bottom: 45px;
}

.how-it-works-section .sub-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.how-it-works-section .section-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
}

.how-it-works-section .section-title .highlight-orange {
    color: #ffedd5;
}

.how-it-works-section .section-desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 50px;
    align-items: stretch;
    margin-bottom: 45px;
}

/* Left: Visual Column */
.how-visual-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.how-visual-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    border: 3px solid rgba(255, 255, 255, 0.35);
    height: 100%;
    min-height: 480px;
}

.how-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.how-visual-wrapper:hover .how-main-img {
    transform: scale(1.03);
}

/* Floating Badges on Image */
.how-float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    z-index: 2;
    transition: transform 0.3s ease;
}

.how-float-badge:hover {
    transform: translateY(-3px);
}

.how-float-badge.badge-top {
    top: 24px;
    left: 24px;
}

.how-float-badge.badge-bottom {
    bottom: 24px;
    right: 24px;
}

.how-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.how-badge-icon.shield-icon {
    background: #e8f9ee;
    color: #16a34a;
}

.how-badge-info {
    display: flex;
    flex-direction: column;
}

.how-badge-title {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.how-badge-sub {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 600;
    margin-top: 2px;
}

/* Quick Direct Call Strip below Image */
.how-direct-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.how-direct-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f15a24;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(241, 90, 36, 0.35);
}

.how-direct-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.how-direct-label {
    font-size: 11.5px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.how-direct-phone {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    transition: color 0.2s;
    text-decoration: none;
}

.how-direct-phone strong {
    color: #f15a24;
}

.how-direct-phone:hover {
    color: #f15a24;
}

.how-direct-wa {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.2s;
    text-decoration: none;
}

.how-direct-wa:hover {
    transform: scale(1.1);
}

/* Right: Steps Timeline */
.how-steps-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.how-steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.how-step-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.how-step-card:hover {
    transform: translateX(6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.step-badge-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f15a24;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(241, 90, 36, 0.35);
}

.how-step-card:hover .step-number {
    background: #ea580c;
    transform: scale(1.05);
}

.step-connector {
    width: 2px;
    height: 40px;
    background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8) 4px, transparent 4px, transparent 8px);
    margin-top: 10px;
    opacity: 0.8;
}

.step-card-content {
    flex-grow: 1;
}

.step-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.step-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.step-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.step-phase-pill {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 12px;
    background: #fff5f0;
    color: #f15a24;
    flex-shrink: 0;
}

.step-text {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 12px;
}

.step-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.step-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 3px 10px;
    border-radius: 6px;
}

.step-tag i {
    color: #f15a24;
    font-size: 11px;
}

/* Bottom Action Banner */
.how-bottom-banner {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.how-bottom-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.how-bottom-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(241, 90, 36, 0.2);
    color: #f15a24;
    border: 1px solid rgba(241, 90, 36, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.how-bottom-copy h4 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.25;
}

.how-bottom-copy p {
    font-size: 13.5px;
    color: #cbd5e1;
    margin: 0;
}

.how-bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-how-primary {
    background: #f15a24;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(241, 90, 36, 0.35);
    transition: all 0.2s;
    text-decoration: none;
}

.btn-how-primary:hover {
    background: #d94814;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(241, 90, 36, 0.45);
}

.btn-how-wa {
    background: #25d366;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-how-wa:hover {
    background: #20ba5a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive adjustments for How It Works */
@media (max-width: 1024px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .how-visual-wrapper {
        min-height: 380px;
        max-height: 420px;
    }

    .how-bottom-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .how-bottom-left {
        flex-direction: column;
        text-align: center;
    }

    .how-bottom-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .how-it-works-section {
        padding: 55px 0 65px 0;
    }

    .how-it-works-section .section-title {
        font-size: 26px;
    }

    .how-visual-wrapper {
        min-height: 280px;
    }

    .how-float-badge {
        padding: 8px 12px;
        gap: 8px;
    }

    .how-float-badge.badge-top {
        top: 14px;
        left: 14px;
    }

    .how-float-badge.badge-bottom {
        bottom: 14px;
        right: 14px;
    }

    .how-badge-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .how-badge-title {
        font-size: 12px;
    }

    .how-badge-sub {
        font-size: 10px;
    }

    .how-step-card {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }

    .step-connector {
        display: none;
    }

    .step-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .how-direct-card {
        flex-direction: column;
        text-align: center;
    }

    .how-bottom-right {
        flex-direction: column;
    }

    .btn-how-primary,
    .btn-how-wa {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   6. ABOUT US & TRUST PILLARS
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 55px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-main-img {
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-floating-card {
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: #f15a24;
    color: #ffffff;
    border-radius: 14px;
    padding: 20px 24px;
    max-width: 240px;
    box-shadow: 0 15px 35px rgba(241, 90, 36, 0.4);
}

.exp-number {
    display: block;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.exp-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.about-description {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 28px;
}

.trust-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.pillar-info h4 {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.pillar-info p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.about-cta-box {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-call-direct,
.btn-whatsapp-direct {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-call-direct {
    background: #111827;
    color: #ffffff;
}

.btn-call-direct:hover {
    background: #1f2937;
    transform: translateY(-2px);
}

.btn-whatsapp-direct {
    background: #25d366;
    color: #ffffff;
}

.btn-whatsapp-direct:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

/* ==========================================================================
   7. PROJECTS SECTION
   ========================================================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.project-img-box {
    height: 220px;
    overflow: hidden;
}

.project-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    padding: 24px;
}

.project-category {
    font-size: 12px;
    font-weight: 800;
    color: #f15a24;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.project-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.project-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ==========================================================================
   8. REVIEWS & TESTIMONIALS
   ========================================================================== */
.google-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 13.5px;
    color: #111827;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.google-badge-pill i {
    color: #4285f4;
    font-size: 16px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}

.review-comment {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 22px;
    flex-grow: 1;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
}

.reviewer-loc {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.reviewer-loc i {
    color: #f15a24;
}

/* ==========================================================================
   9. FAQ ACCORDION
   ========================================================================== */
.faq-container {
    max-width: 860px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s;
}

.faq-question {
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    user-select: none;
}

.faq-question:hover {
    color: #f15a24;
}

.faq-chevron {
    font-size: 13px;
    color: #64748b;
    transition: transform 0.25s;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: #f15a24;
}

.faq-answer {
    padding: 0 22px 20px;
    font-size: 14.5px;
    color: #475569;
    line-height: 1.65;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================================================
   10. 2-COLUMN CONTACT & BOOKING SECTION (SLEEK MINIMAL MODERN DESIGN)
   ========================================================================== */
.contact-booking-section {
    background: #f8fafc;
    position: relative;
    padding: 85px 0 95px;
    border-top: 1px solid #e2e8f0;
}

.sleek-booking-wrap {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.07), 0 0 1px 1px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    max-width: 1120px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Left Pane: Sleek Direct Information & Contact Channels
   -------------------------------------------------------------------------- */
.sleek-info-pane {
    background: #f8fafc;
    padding: 44px 40px;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.sleek-info-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sleek-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 800;
    color: #0284c7;
    background: #e0f2fe;
    padding: 5px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.sleek-badge i {
    font-size: 12px;
}

.sleek-info-title {
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.25;
    letter-spacing: -0.4px;
}

.sleek-info-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Channels */
.sleek-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sleek-channel-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.sleek-channel-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.channel-phone:hover {
    border-color: #f15a24;
}

.channel-whatsapp:hover {
    border-color: #10b981;
}

.channel-phone .channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.channel-whatsapp .channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ecfdf5;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.channel-meta .channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.channel-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.channel-tag {
    font-size: 10.5px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.channel-main {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
}

.channel-phone:hover .channel-main {
    color: #f15a24;
}

.channel-whatsapp:hover .channel-main {
    color: #10b981;
}

.channel-text {
    font-size: 12.5px;
    color: #475569;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.channel-arrow {
    color: #cbd5e1;
    font-size: 12px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.channel-phone:hover .channel-arrow {
    color: #f15a24;
    transform: translate(2px, -2px);
}

.channel-whatsapp:hover .channel-arrow {
    color: #10b981;
    transform: translate(2px, -2px);
}

/* Trust Strip */
.sleek-trust-strip {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.trust-strip-item i {
    color: #16a34a;
    font-size: 13px;
}

/* --------------------------------------------------------------------------
   Right Pane: Sleek Booking Form
   -------------------------------------------------------------------------- */
.sleek-form-pane {
    background: #ffffff;
    padding: 44px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sleek-form-header {
    margin-bottom: 22px;
}

.sleek-form-header h4 {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.4px;
    margin: 0 0 6px 0;
}

.sleek-form-header p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

.main-booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 12.5px;
    font-weight: 700;
    color: #334155;
    letter-spacing: 0.1px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required-star {
    color: #ef4444;
    font-weight: 800;
}

.form-field input,
.form-field select {
    width: 100%;
    height: 46px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 13.5px;
    color: #0f172a;
    font-weight: 500;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-field input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-field input:hover,
.form-field select:hover {
    border-color: #94a3b8;
    background: #ffffff;
}

.form-field input:focus,
.form-field select:focus {
    background: #ffffff;
    border-color: #f15a24;
    outline: none;
    box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.12);
}

.form-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.41 0L6 4.58L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.btn-submit-booking {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #f15a24 0%, #ea580c 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px -3px rgba(241, 90, 36, 0.35);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 4px;
}

.btn-submit-booking:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -3px rgba(241, 90, 36, 0.45);
}

.btn-submit-booking:active {
    transform: translateY(0);
}

.btn-submit-booking i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.btn-submit-booking:hover i {
    transform: translateX(4px);
}

.form-privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 2px;
}

.form-privacy-note i {
    font-size: 11px;
}

.form-status-message {
    font-size: 13.5px;
    font-weight: 700;
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 10px;
    display: none;
    text-align: center;
}

.form-status-message.success {
    display: block;
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.form-status-message.error {
    display: block;
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* ==========================================================================
   11. CTA BANNER SECTION (Template Design)
   ========================================================================== */
.cta-banner-section {
    position: relative;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 85px 0;
    color: #ffffff;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.88) 40%, rgba(15, 23, 42, 0.52) 70%, rgba(15, 23, 42, 0.15) 100%);
    z-index: 1;
}

.cta-banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.cta-banner-content {
    max-width: 620px;
    text-align: left;
}

.cta-banner-title {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin: 0 0 16px 0;
}

.cta-banner-title .highlight-orange {
    color: #f15a24;
}

.cta-banner-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0 0 28px 0;
    max-width: 520px;
    font-weight: 500;
}

.cta-banner-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-appointment {
    background: #d9381e;
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 9999px;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(217, 56, 30, 0.35);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-appointment:hover {
    background: #c52f16;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(217, 56, 30, 0.45);
    color: #ffffff;
}

.btn-cta-white-call {
    background: #ffffff;
    color: #1e293b;
    padding: 13px 26px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
}

.btn-cta-white-call i {
    font-size: 13px;
    color: #1e293b;
    transition: color 0.2s;
}

.btn-cta-white-call:hover {
    background: #f8fafc;
    color: #d9381e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-white-call:hover i {
    color: #d9381e;
}

/* ==========================================================================
   12. FOOTER (Light 5-Column Template Design)
   ========================================================================== */
.site-footer {
    background: #f7f6f2;
    color: #475569;
    font-size: 14px;
    border-top: 1px solid #eae8e1;
}

.footer-top {
    padding: 70px 0 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.95fr 0.95fr 1.1fr 1.35fr;
    gap: 36px;
}

.footer-col-about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-height: 58px;
    width: auto;
    margin-bottom: 16px;
    object-fit: contain;
    display: block;
}

.footer-about-bio {
    font-size: 13px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 22px 0;
    max-width: 320px;
}

.footer-social-circles {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fae7de;
    color: #d9381e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-circle.social-filled {
    background: #d9381e;
    color: #ffffff;
}

.social-circle:hover {
    background: #d9381e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(217, 56, 30, 0.25);
}

.footer-heading {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.footer-heading-line {
    width: 26px;
    height: 2.5px;
    background: #d9381e;
    border-radius: 2px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-link-list li a {
    color: #475569;
    font-size: 13.5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-link-list li a:hover {
    color: #d9381e;
    padding-left: 3px;
}

.see-more-link {
    color: #d9381e !important;
    font-weight: 700 !important;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fae7de;
    color: #d9381e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-pill-text {
    font-size: 13px;
    line-height: 1.45;
    color: #334155;
    font-weight: 500;
}

.contact-pill-text a {
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-pill-text a:hover {
    color: #d9381e;
}

.footer-hours-wrap {
    margin-top: 4px;
}

.footer-hours-heading {
    font-size: 14.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.operating-hours-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 250px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.operating-hours-pill .hours-label {
    color: #d9381e;
    font-weight: 800;
    font-size: 13px;
}

.operating-hours-pill .hours-val {
    color: #334155;
    font-weight: 700;
    font-size: 13px;
}

.footer-bottom {
    background: #ecebe5;
    border-top: 1px solid #dfded6;
    padding: 20px 0;
    font-size: 13px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy-text {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.footer-copy-text strong {
    color: #334155;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #d9381e;
}

.legal-sep {
    color: #cbd5e1;
}

/* ==========================================================================
   13. OFF-CANVAS MOBILE SIDE DRAWER (TASK 6)
   ========================================================================== */
.side-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 86vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    visibility: hidden;
    box-shadow: none;
    border-left: 1px solid #e2e8f0;
}

.mobile-side-drawer.open {
    transform: translateX(0);
    visibility: visible;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.16);
}

.side-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 5;
}

.side-drawer-logo {
    max-height: 40px;
    width: auto;
}

.side-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.side-drawer-close:hover {
    background: #f15a24;
    color: #ffffff;
    border-color: #f15a24;
    transform: rotate(90deg);
}

.side-drawer-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: #ffffff;
}

.side-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.side-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    color: #1e293b;
    font-size: 13.5px;
    font-weight: 800;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.side-nav-link i {
    width: 20px;
    color: #f15a24;
    font-size: 15px;
    text-align: center;
}

.side-nav-link:hover {
    background: #fff5f0;
    color: #f15a24;
}

.side-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    color: #1e293b;
    font-size: 13.5px;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.side-dropdown-trigger span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.side-dropdown-trigger i:first-child {
    width: 20px;
    color: #f15a24;
    font-size: 15px;
    text-align: center;
}

.side-dropdown-trigger:hover {
    background: #fff5f0;
    color: #f15a24;
}

.side-arrow {
    font-size: 11px;
    color: #94a3b8;
    transition: transform 0.25s ease, color 0.2s;
}

.side-dropdown-item.open .side-dropdown-trigger {
    background: #fff5f0;
    color: #f15a24;
}

.side-dropdown-item.open .side-arrow {
    transform: rotate(180deg);
    color: #f15a24;
}

.side-submenu {
    list-style: none;
    padding: 8px 12px 8px 36px;
    display: none;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 2px solid #f15a24;
}

.side-dropdown-item.open .side-submenu {
    display: flex;
}

.side-submenu a {
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 0;
    display: block;
    transition: all 0.2s ease;
}

.side-submenu a:hover {
    color: #f15a24;
    padding-left: 4px;
}

.side-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
}

.side-btn-book {
    background: #f15a24;
    color: #ffffff;
    font-weight: 800;
    font-size: 13.5px;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(241, 90, 36, 0.25);
    transition: all 0.2s ease;
}

.side-btn-book:hover {
    background: #d94815;
    color: #ffffff;
    transform: translateY(-1px);
}

.side-btn-call {
    background: #0f172a;
    color: #ffffff;
    font-weight: 800;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
    transition: all 0.2s ease;
}

.side-btn-call:hover {
    background: #1e293b;
    color: #ffffff;
}

.side-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    font-weight: 800;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: all 0.2s ease;
}

.side-btn-whatsapp:hover {
    background: #1ebc59;
    color: #ffffff;
}

.side-drawer-contact {
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-drawer-contact p {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.side-drawer-contact p i {
    color: #f15a24;
    width: 16px;
    text-align: center;
}

/* ==========================================================================
   14. SIDE FLOATING BUTTONS (ICON ONLY - TASK 7)
   ========================================================================== */
.floating-quick-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.float-whatsapp {
    background: #25d366;
}

.float-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.4);
}

.float-call {
    background: #f15a24;
}

.float-call:hover {
    background: #d94814;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 14px 28px rgba(241, 90, 36, 0.4);
}

/* ==========================================================================
   REAL OPERATIONS GALLERY STYLES
   ========================================================================== */
.real-gallery-section {
    padding: 75px 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.real-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.real-gallery-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.real-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(241, 90, 36, 0.12);
    border-color: rgba(241, 90, 36, 0.3);
}

.gallery-img-wrap {
    position: relative;
    height: 195px;
    overflow: hidden;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.real-gallery-card:hover .gallery-img-wrap img {
    transform: scale(1.07);
}

.gallery-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.gallery-badge i {
    color: #f15a24;
}

.gallery-card-info {
    padding: 16px;
    flex-grow: 1;
}

.gallery-card-info h4 {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 5px;
    line-height: 1.3;
}

.gallery-card-info p {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.45;
}

@media (max-width: 1200px) {
    .real-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 860px) {
    .real-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .gallery-img-wrap {
        height: 180px;
    }
}

@media (max-width: 580px) {
    .real-gallery-section {
        padding: 45px 0;
    }
    .real-gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .gallery-img-wrap {
        height: 220px;
    }
    .gallery-card-info {
        padding: 18px 16px;
    }
    .gallery-card-info h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .gallery-card-info p {
        font-size: 13.5px;
        line-height: 1.5;
    }
}

/* ==========================================================================
   15. RESPONSIVE BREAKPOINTS (TASK 6)
   ========================================================================== */
@media (max-width: 1140px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        gap: 18px;
    }
    
    .hero-title {
        font-size: 46px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .cta-banner-title {
        font-size: 36px;
    }

    .sleek-booking-wrap {
        grid-template-columns: 1fr;
    }
    .sleek-info-pane {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
}

@media (max-width: 900px) {
    .top-info-item.loc-item,
    .top-info-item.whatsapp-item,
    .top-phone-cta {
        display: none;
    }

    .mobile-top-actions {
        display: flex;
    }
    
    .main-navigation-bar {
        display: none; /* Desktop menu hidden, replaced by off-canvas side drawer */
    }
    
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .services-grid,
    .projects-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-floating-card {
        right: 20px;
        bottom: 20px;
    }

    .trust-badges-bar-section {
        margin-top: 20px;
    }
}

@media (max-width: 640px) {
    .about-floating-card {
        right: 12px;
        bottom: 12px;
        padding: 8px 14px;
        max-width: 145px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    .about-floating-card .exp-number {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .about-floating-card .exp-text {
        font-size: 10px;
        line-height: 1.25;
    }

    .trust-badges-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .projects-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-banner-section {
        padding: 55px 0;
        min-height: auto;
    }

    .cta-banner-title {
        font-size: 28px;
    }

    .cta-banner-desc {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .cta-banner-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-appointment,
    .btn-cta-white-call {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .trust-pillars-grid {
        grid-template-columns: 1fr;
    }

    .sleek-info-pane,
    .sleek-form-pane {
        padding: 24px 18px;
    }

    .floating-quick-actions {
        bottom: 18px;
        right: 18px;
    }

    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}

/* ==========================================================================
   CUSTOMER REVIEWS SECTION (Exact Design from Template)
   ========================================================================== */
.reviews-section {
    background-color: #f15a24;
    background-image: 
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 88% 82%, rgba(0, 0, 0, 0.14) 0%, transparent 45%),
        linear-gradient(135deg, #f15a24 0%, #ea580c 50%, #c2410c 100%);
    position: relative;
    padding: 85px 0 95px 0;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    background-position: 0 0;
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
}

.reviews-section > .container {
    position: relative;
    z-index: 2;
}

.reviews-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 42px;
    gap: 24px;
    flex-wrap: wrap;
}

.reviews-header-left {
    max-width: 650px;
}

.reviews-sub-pill,
.reviews-section .sub-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.reviews-sub-pill .pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    display: inline-block;
}

.reviews-main-heading,
.reviews-section .section-title {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.6px;
    margin: 0;
}

.reviews-main-heading .highlight-orange,
.reviews-section .section-title .highlight-orange {
    color: #ffedd5;
}

.reviews-section .section-desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.6;
}

/* Header Google Rating Pill */
.google-rating-pill-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    padding: 10px 22px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.google-rating-pill-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.google-g-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pill-circles {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    font-size: 13px;
}

.pill-rating-text {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
}

.pill-rating-text strong {
    color: #0f172a;
}

/* Review Cards Grid */
.reviews-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.review-card-modern {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 28px 26px 24px 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.review-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.card-stars-row {
    color: #f59e0b;
    font-size: 15px;
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.card-quote-box {
    position: relative;
    padding-right: 18px;
    flex-grow: 1;
    margin-bottom: 22px;
}

.card-quote-text {
    font-size: 13.5px;
    line-height: 1.65;
    color: #334155;
    font-weight: 500;
    margin: 0;
}

/* The vertical red/orange accent bar from the screenshot */
.card-accent-bar {
    position: absolute;
    top: 3px;
    right: 0;
    width: 3.5px;
    height: 44px;
    background: #f15a24;
    border-radius: 4px;
}

.card-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.author-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.author-initial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0284c7;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.author-meta {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 14.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.author-role {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.author-right-google {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 8px;
}

/* Bottom Action Button */
.reviews-bottom-action {
    margin-top: 20px;
}

.btn-outline-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #ffffff;
    color: #f15a24;
    font-size: 14px;
    font-weight: 800;
    padding: 14px 34px;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-google:hover {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.btn-outline-google:hover svg path {
    fill: #ffffff;
}

@media (max-width: 1200px) {
    .reviews-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 55px 0 65px 0;
    }

    .reviews-header-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .reviews-main-heading,
    .reviews-section .section-title {
        font-size: 26px;
    }

    .reviews-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .btn-outline-google {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   SERVICE PAGE SPECIFIC STYLES (COCKROACH CONTROL & SERVICE TEMPLATES)
   ========================================================================== */

/* --- Breadcrumb Bar --- */
.service-breadcrumb-bar {
    background: #f8fafc;
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.service-breadcrumb a {
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.service-breadcrumb a:hover {
    color: #f15a24;
}

.service-breadcrumb .separator {
    font-size: 10px;
    color: #94a3b8;
}

.service-breadcrumb .current {
    color: #f15a24;
    font-weight: 700;
}

/* --- Service Hero Modifiers --- */
.hero-section.service-hero {
    min-height: 520px;
    padding: 70px 0 85px;
}

.hero-subtitle strong {
    color: #ffffff;
}

.hero-badge-warranty {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 30px;
    letter-spacing: 0.3px;
}

.hero-badge-warranty i {
    color: #25d366;
    font-size: 14px;
}

/* --- Cockroach Species Guide Grid --- */
.species-section {
    background: #ffffff;
}

.species-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.species-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.species-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
    border-color: #f15a24;
}

.species-card-img-wrap {
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
}

.species-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.species-card:hover .species-card-img {
    transform: scale(1.05);
}

.species-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.species-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.species-threat-pill {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.threat-high {
    background: #fee2e2;
    color: #dc2626;
}

.threat-critical {
    background: #ffedd5;
    color: #c2410c;
}

.threat-medium {
    background: #fef3c7;
    color: #b45309;
}

.species-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.3;
}

.species-latin {
    font-size: 12px;
    font-style: italic;
    color: #64748b;
    margin-bottom: 14px;
}

.species-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: #475569;
    flex-grow: 1;
}

.species-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
}

.species-info-list li strong {
    color: #1e293b;
    min-width: 65px;
    flex-shrink: 0;
}

.species-footer-tag {
    background: #f8fafc;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 12px;
    color: #0284c7;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border-left: 3px solid #0284c7;
}

/* --- Comparison Section (DIY Sprays vs Pro Master Gel) --- */
.diy-vs-pro-section {
    background: #f8fafc;
}

.vs-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1080px;
    margin: 40px auto 0;
}

.vs-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 34px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    border: 2px solid transparent;
}

.vs-card-diy {
    border-color: #fecaca;
    background: #fffafa;
}

.vs-card-pro {
    border-color: #f15a24;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(241, 90, 36, 0.08);
}

.vs-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
}

.vs-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.vs-card-diy .vs-header-icon {
    background: #fee2e2;
    color: #ef4444;
}

.vs-card-pro .vs-header-icon {
    background: #fff5f0;
    color: #f15a24;
}

.vs-header-text h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 3px;
}

.vs-header-text span {
    font-size: 12.5px;
    color: #64748b;
    font-weight: 600;
}

.vs-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.vs-card-diy .vs-card-badge {
    background: #fee2e2;
    color: #dc2626;
}

.vs-card-pro .vs-card-badge {
    background: #f15a24;
    color: #ffffff;
}

.vs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    line-height: 1.5;
    color: #334155;
}

.vs-icon-cross {
    color: #ef4444;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.vs-icon-check {
    color: #10b981;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* --- Residential vs Commercial Cards --- */
.audience-section {
    background: #ffffff;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.audience-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 38px 34px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.audience-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    transform: translateY(-4px);
}

.audience-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.audience-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.audience-icon.icon-comm {
    background: #f0fdf4;
    color: #16a34a;
}

.audience-card-header h3 {
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.audience-card-header p {
    font-size: 13px;
    color: #64748b;
    margin: 2px 0 0 0;
}

.audience-desc {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 22px;
}

.audience-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.audience-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #334155;
    font-weight: 600;
}

.audience-features li i {
    color: #10b981;
    font-size: 15px;
    flex-shrink: 0;
}

.audience-btn-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-audience-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    background: #f15a24;
    color: #ffffff !important;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(241, 90, 36, 0.28);
    border: none;
    text-decoration: none;
}

.btn-audience-primary:hover {
    background: #d94b18;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(241, 90, 36, 0.38);
    color: #ffffff !important;
}

.btn-audience-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    background: #25d366;
    color: #ffffff !important;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    text-decoration: none;
}

.btn-audience-wa:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
    color: #ffffff !important;
}

/* --- Service Page Responsive Rules --- */
@media (max-width: 1024px) {
    .species-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vs-comparison-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    .species-grid {
        grid-template-columns: 1fr;
    }
    .hero-section.service-hero {
        padding: 50px 0 70px;
    }
    .species-card,
    .vs-card,
    .audience-card {
        padding: 26px 20px;
    }
}

/* --- Infestation Signs Section --- */
.infestation-signs-section {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.signs-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 55px;
    align-items: center;
}

.signs-image-wrapper {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    border: 4px solid #ffffff;
}

.signs-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.signs-image-wrapper:hover .signs-main-img {
    transform: scale(1.03);
}

.signs-badge-alert {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(17, 24, 39, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(241, 90, 36, 0.4);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.signs-badge-alert i {
    font-size: 26px;
    color: #f15a24;
    flex-shrink: 0;
}

.signs-badge-alert strong {
    display: block;
    font-size: 14.5px;
    color: #ffffff;
    margin-bottom: 2px;
}

.signs-badge-alert span {
    display: block;
    font-size: 12px;
    color: #94a3b8;
}

.signs-content-col .section-desc-left {
    font-size: 15.5px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 28px;
}

.signs-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.sign-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px;
    transition: all 0.25s ease;
}

.sign-item:hover {
    border-color: #f15a24;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(241, 90, 36, 0.06);
    transform: translateX(4px);
}

.sign-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.sign-text h4 {
    font-size: 15.5px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.sign-text p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.signs-action-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .signs-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .signs-main-img {
        height: 380px;
    }
}

/* ==========================================================================
   ABOUT US & CONTACT US PAGE STYLES
   Brand Colors: Orange (#f15a24), Dark Slate (#0f172a), Warm Light (#f8fafc)
   ========================================================================== */

/* --- Values & Principles Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px 30px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.value-card.active-card {
    border-color: #f15a24;
    box-shadow: 0 12px 30px rgba(241, 90, 36, 0.1);
    background: linear-gradient(180deg, #ffffff 0%, #fffbf8 100%);
}

.value-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.value-card.active-card .value-icon-box {
    background: #f15a24;
    color: #ffffff;
}

.value-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.value-text {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.value-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
}

.value-checklist li {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-checklist li i {
    color: #10b981;
    font-size: 13px;
    flex-shrink: 0;
}

/* --- Real Operations Showcase Grid --- */
.operations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.operation-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.operation-card:hover {
    transform: translateY(-5px);
    border-color: #f15a24;
    box-shadow: 0 14px 30px rgba(241, 90, 36, 0.12);
}

.operation-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.operation-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.operation-card:hover .operation-img-box img {
    transform: scale(1.06);
}

.operation-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    border-left: 3px solid #f15a24;
}

.operation-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.operation-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.35;
}

.operation-text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* --- Stats Counter Bar --- */
.about-stats-bar {
    background: #0f172a;
    padding: 60px 0;
    color: #ffffff;
    position: relative;
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-counter-item {
    padding: 10px 15px;
    position: relative;
}

.stat-counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.stat-number {
    font-size: 44px;
    font-weight: 900;
    color: #f15a24;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.45;
    margin: 0;
}

/* --- New Why Choose Us (Dual Split Layout with Real Image) --- */
.why-choose-dual-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 48px;
    align-items: center;
}

.why-choose-visual-col {
    position: relative;
}

.why-visual-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
    border: 1px solid rgba(226, 232, 240, 0.8);
    min-height: 520px;
    height: 100%;
}

.why-main-img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-visual-wrapper:hover .why-main-img {
    transform: scale(1.04);
}

.why-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 12px 18px;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    z-index: 2;
    transition: transform 0.3s ease;
}

.why-float-badge:hover {
    transform: translateY(-3px);
}

.why-float-badge.badge-top-left {
    top: 24px;
    left: 24px;
}

.why-float-badge.badge-bottom-right {
    bottom: 24px;
    right: 24px;
}

.why-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.badge-icon-orange {
    background: rgba(241, 90, 36, 0.2);
    color: #f15a24;
    border: 1px solid rgba(241, 90, 36, 0.4);
}

.badge-icon-green {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.why-badge-info {
    display: flex;
    flex-direction: column;
}

.why-badge-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.why-badge-sub {
    font-size: 11px;
    color: #cbd5e1;
    font-weight: 500;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 28px;
}

.why-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.25s ease;
}

.why-feature-card:hover {
    border-color: #f15a24;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(241, 90, 36, 0.08);
}

.why-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.why-feature-text h4 {
    font-size: 14.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.why-feature-text p {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.why-action-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Fallback for legacy why-choose-grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    transition: all 0.25s ease;
}

.why-item:hover {
    border-color: #f15a24;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(241, 90, 36, 0.08);
}

.why-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.why-text h4 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.why-text p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* --- Coverage Areas Grid (Contact Page) --- */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.coverage-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.coverage-pill i {
    color: #f15a24;
    font-size: 15px;
}

.coverage-pill:hover {
    background: #fff5f0;
    border-color: #f15a24;
    color: #f15a24;
    transform: translateX(4px);
}

/* --- Map Embed Wrapper --- */
.map-embed-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    background: #e2e8f0;
}

.map-embed-wrapper iframe {
    display: block;
    width: 100%;
    height: 460px;
}

.map-overlay-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 20px 24px;
    max-width: 380px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.map-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff5f0;
    color: #f15a24;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.map-overlay-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.map-overlay-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 12px;
}

.map-card-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: #f15a24;
}

.map-card-phone a {
    color: #f15a24;
}

/* --- Responsive Adjustments for About & Contact Pages --- */
@media (max-width: 1100px) {
    .operations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-counter-item:not(:last-child)::after {
        display: none;
    }
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .operations-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .about-stats-bar {
        padding: 40px 0;
    }
    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    .stat-counter-item {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 16px 10px;
        text-align: center;
    }
    .stat-number {
        font-size: 26px;
        margin-bottom: 4px;
    }
    .stat-title {
        font-size: 13.5px;
        margin-bottom: 4px;
    }
    .stat-desc {
        font-size: 11px;
        line-height: 1.35;
    }
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .coverage-pill {
        padding: 10px 12px;
        font-size: 12.5px;
        border-radius: 10px;
        gap: 8px;
    }
    .coverage-pill i {
        font-size: 13px;
    }
    .map-overlay-card {
        position: static;
        max-width: 100%;
        margin-top: 15px;
        border-radius: 12px;
    }
}

@media (max-width: 360px) {
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}





/* ==========================================================================
   16. DEDICATED PROJECTS & CASE STUDIES PAGE
   ========================================================================== */
.projects-page-content {
    background: #ffffff;
}

/* Spotlight Section (Featuring User Images) */
.project-spotlight-section {
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.spotlight-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.spotlight-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
    border-color: #cbd5e1;
}

.spotlight-img-wrap {
    height: 320px;
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
}

.spotlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.spotlight-card:hover .spotlight-img {
    transform: scale(1.05);
}

.spotlight-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.spotlight-badge i {
    color: #f15a24;
}

.spotlight-content {
    padding: 32px 30px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.spotlight-content h3 {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.spotlight-content p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.65;
    margin: 0 0 22px 0;
}

.spotlight-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.sp-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 20px;
}

.sp-pill i {
    color: #16a34a;
    font-size: 13px;
}

/* Stats Strip */
.project-stats-strip {
    background: #0f172a;
    padding: 36px 0;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.project-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 20px;
    transition: all 0.25s ease;
}

.project-stat-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(241, 90, 36, 0.4);
    transform: translateY(-2px);
}

.stat-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(241, 90, 36, 0.15);
    border: 1.5px solid rgba(241, 90, 36, 0.35);
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-big-number {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    display: block;
    letter-spacing: -0.3px;
}

.stat-label-text {
    font-size: 12.5px;
    color: #94a3b8;
    font-weight: 500;
    line-height: 1.35;
    margin-top: 3px;
    display: block;
}

/* Filter Tabs */
.project-filters-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.project-filter-btn {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.project-filter-btn:hover {
    border-color: #f15a24;
    color: #f15a24;
}

.project-filter-btn.active {
    background: #f15a24;
    border-color: #f15a24;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(241, 90, 36, 0.35);
}

/* Clean Project Operations Gallery (Showcases Real Project Images) */
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.project-gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.project-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
    border-color: #f15a24;
}

.gallery-img-box {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #1e293b;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.project-gallery-card:hover .gallery-img-box img {
    transform: scale(1.08);
}

.gallery-tag-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 2;
}

.gallery-tag-pill i {
    color: #f15a24;
}

.gallery-tag-pill.tag-commercial i {
    color: #34d399;
}

.gallery-tag-pill.tag-grounds i {
    color: #fbbf24;
}

.gallery-tag-pill.tag-fleet i {
    color: #38bdf8;
}

.gallery-overlay-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.72) 60%, transparent 100%);
    padding: 30px 18px 16px;
    color: #ffffff;
    z-index: 2;
}

.gallery-operation-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.gallery-operation-sub {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    margin: 0;
}

.gallery-operation-sub i {
    color: #22c55e;
}

/* Fallback for legacy project-cases-grid */
.project-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-case-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.project-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}

.case-img-box {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #f1f5f9;
}

.case-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.project-case-card:hover .case-img-box img {
    transform: scale(1.06);
}

/* Protocol Section */
.project-protocol-section {
    background-color: #ea580c;
    background-image: 
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 88% 82%, rgba(0, 0, 0, 0.14) 0%, transparent 45%),
        linear-gradient(135deg, #f15a24 0%, #ea580c 50%, #c2410c 100%);
    position: relative;
    padding: 85px 0 95px 0;
    overflow: hidden;
}

.project-protocol-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    background-position: 0 0;
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
}

.project-protocol-section > .container {
    position: relative;
    z-index: 2;
}

.project-protocol-section .sub-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.project-protocol-section .section-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
}

.project-protocol-section .section-desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    max-width: 680px;
    margin: 0 auto 45px;
    line-height: 1.6;
}

.protocol-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.protocol-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 32px 24px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.protocol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.protocol-num {
    font-size: 42px;
    font-weight: 900;
    color: rgba(241, 90, 36, 0.15);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
}

.protocol-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.protocol-card h4 {
    font-size: 16.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.protocol-card p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Rules for Projects Page & Why Choose Layout */
@media (max-width: 992px) {
    .why-choose-dual-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .why-visual-wrapper {
        min-height: 380px;
        max-height: 440px;
    }
    .spotlight-dual-grid {
        grid-template-columns: 1fr;
    }
    .project-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .project-gallery-grid,
    .project-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .protocol-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .why-visual-wrapper {
        min-height: 280px;
    }
    .why-float-badge {
        padding: 8px 12px;
    }
    .why-badge-title {
        font-size: 12px;
    }
    .why-badge-sub {
        font-size: 10px;
    }
    .spotlight-img-wrap {
        height: 240px;
    }
    .spotlight-content {
        padding: 24px 20px;
    }
    .project-stats-strip {
        padding: 26px 0;
    }
    .project-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .project-stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 12px;
        border-radius: 12px;
    }
    .stat-icon-circle {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 10px;
    }
    .stat-big-number {
        font-size: 19px;
    }
    .stat-label-text {
        font-size: 11px;
        line-height: 1.3;
    }
    .project-gallery-grid,
    .project-cases-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .gallery-img-box {
        height: 240px;
    }
    .protocol-steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .project-stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .project-stat-item {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
    }
}

/* ==========================================================================
   16. SERVICES HUB ARCHIVE PAGE STYLES (TASK: DEDICATED SERVICES PAGE)
   ========================================================================== */
.services-hero-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.s-hero-badge-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.s-hero-badge-item i {
    color: #f15a24;
    font-size: 14px;
}

/* Services Stats Bar */
.services-stats-bar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.services-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.s-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.25s ease;
}

.s-stat-card:hover {
    transform: translateY(-2px);
    border-color: #e2e8f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.s-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.s-stat-number {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.s-stat-label {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
}

/* Category Filter Tabs */
.services-filter-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.filter-btn {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: #f15a24;
    color: #f15a24;
    background: #fff5f0;
}

.filter-btn.active {
    background: #f15a24;
    border-color: #f15a24;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(241, 90, 36, 0.3);
}

/* Services Hub Cards Grid */
.services-hub-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-hub-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.service-hub-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(241, 90, 36, 0.35);
}

.service-hub-media {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.service-hub-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-hub-card:hover .service-hub-media img {
    transform: scale(1.08);
}

.service-hub-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.badge-orange { background: #f15a24; color: #ffffff; }
.badge-blue { background: #0284c7; color: #ffffff; }
.badge-red { background: #dc2626; color: #ffffff; }
.badge-green { background: #16a34a; color: #ffffff; }
.badge-purple { background: #7c3aed; color: #ffffff; }

.service-hub-icon {
    position: absolute;
    bottom: -18px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0f172a;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    border: 3px solid #ffffff;
    z-index: 3;
    transition: all 0.3s ease;
}

.service-hub-card:hover .service-hub-icon {
    background: #f15a24;
    color: #ffffff;
    transform: rotate(10deg) scale(1.08);
}

.service-hub-body {
    padding: 26px 22px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-hub-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.service-hub-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.service-hub-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-hub-title a:hover {
    color: #f15a24;
}

.service-hub-warranty {
    font-size: 11.5px;
    font-weight: 700;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-hub-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-hub-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.service-hub-features li {
    font-size: 12.8px;
    color: #334155;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-hub-features li i {
    color: #f15a24;
    font-size: 12px;
    flex-shrink: 0;
}

.service-hub-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.btn-service-view {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #0f172a;
    font-size: 13.5px;
    font-weight: 700;
    padding: 11px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-service-view:hover {
    background: #f15a24;
    border-color: #f15a24;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(241, 90, 36, 0.25);
}

/* Residential vs Commercial Dual Focus */
.services-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.services-dual-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 6px 25px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.services-dual-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.services-dual-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.s-dual-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.commercial-icon {
    background: #eff6ff;
    color: #0284c7;
}

.s-dual-tag {
    font-size: 11.5px;
    font-weight: 800;
    color: #f15a24;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.commercial-tag {
    color: #0284c7;
}

.s-dual-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.s-dual-desc {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 20px;
}

.s-dual-property-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.s-dual-property-tags span {
    font-size: 12px;
    font-weight: 700;
    background: #f1f5f9;
    color: #334155;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.s-dual-property-tags span i {
    color: #16a34a;
    font-size: 10px;
}

.s-dual-points {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.s-dual-points li {
    font-size: 13.8px;
    color: #334155;
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.s-dual-points li i {
    color: #16a34a;
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.btn-dual-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f15a24;
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    width: 100%;
    box-shadow: 0 6px 18px rgba(241, 90, 36, 0.25);
}

.btn-dual-action:hover {
    background: #d94814;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(241, 90, 36, 0.35);
}

.commercial-btn {
    background: #0f172a;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
}

.commercial-btn:hover {
    background: #1e293b;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.35);
}

/* 4-Step Protocol Grid & Section */
.services-protocol-section {
    background-color: #ea580c;
    background-image: 
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 88% 82%, rgba(0, 0, 0, 0.14) 0%, transparent 45%),
        linear-gradient(135deg, #f15a24 0%, #ea580c 50%, #c2410c 100%);
    position: relative;
    padding: 85px 0 95px 0;
    overflow: hidden;
}

.services-protocol-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    background-position: 0 0;
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
}

.services-protocol-section > .container {
    position: relative;
    z-index: 2;
}

.services-protocol-section .sub-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.services-protocol-section .section-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
}

.services-protocol-section .section-desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    max-width: 680px;
    margin: 0 auto 45px;
    line-height: 1.6;
}

.services-protocol-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.protocol-card-item {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 30px 22px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.protocol-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.protocol-step-num {
    font-size: 42px;
    font-weight: 900;
    color: rgba(241, 90, 36, 0.15);
    position: absolute;
    top: 14px;
    right: 18px;
    line-height: 1;
    pointer-events: none;
}

.protocol-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff5f0;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
}

.protocol-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.protocol-text {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Team Spotlight in Services */
.services-team-spotlight {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 36px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    overflow: hidden;
    align-items: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    color: #ffffff;
}

.s-team-spotlight-img {
    height: 100%;
    min-height: 320px;
}

.s-team-spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s-team-spotlight-content {
    padding: 36px 36px 36px 0;
}

.spotlight-badge {
    font-size: 11.5px;
    font-weight: 800;
    background: rgba(241, 90, 36, 0.2);
    color: #f15a24;
    border: 1px solid rgba(241, 90, 36, 0.35);
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.spotlight-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px 0;
    line-height: 1.3;
}

.spotlight-desc {
    font-size: 14.5px;
    color: #cbd5e1;
    line-height: 1.65;
    margin: 0 0 20px 0;
}

.spotlight-points {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.s-point {
    font-size: 13.8px;
    font-weight: 700;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.s-point i {
    color: #22c55e;
    font-size: 14px;
}

/* Dubai Areas Badges */
.services-areas-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.area-badge-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f8fafc;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s ease;
}

.area-badge-pill i {
    color: #f15a24;
    font-size: 12px;
}

.area-badge-pill:hover {
    background: rgba(241, 90, 36, 0.2);
    border-color: #f15a24;
    transform: translateY(-2px);
}

/* Responsive Rules for Services Hub */
@media (max-width: 1024px) {
    .services-hub-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .services-protocol-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .services-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .services-team-spotlight {
        grid-template-columns: 1fr;
    }
    .s-team-spotlight-img {
        height: 280px;
    }
    .s-team-spotlight-content {
        padding: 30px 24px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .hero-google-card {
        margin-top: 10px;
        width: auto;
        max-width: 100%;
    }
    .hero-badge-warranty {
        font-size: 11px;
        padding: 6px 13px;
        line-height: 1.4;
    }
    .services-dual-grid {
        grid-template-columns: 1fr;
    }
    .services-hub-cards-grid {
        grid-template-columns: 1fr;
    }
    .services-stats-grid {
        grid-template-columns: 1fr;
    }
    .services-protocol-grid {
        grid-template-columns: 1fr;
    }
    .services-hero-badges-row {
        gap: 8px;
    }
    .s-hero-badge-item {
        font-size: 12px;
        padding: 6px 12px;
    }
    .services-filter-nav {
        gap: 8px;
    }
    .filter-btn {
        font-size: 12.5px;
        padding: 7px 14px;
    }
}

@media (max-width: 767px) {
    .spotlight-badge {
        margin-bottom: 44rem;
        margin-left: 1rem;
    }
}



