/* ==============================================
   CSS VARIABLES (Strict Color Scheme)
   ============================================== */
:root {
    --primary-dark: #011117;
    --secondary-dark: #161C24;
    --white: #FFFFFF;
    --light-gray: #E5E7EB;
    --muted-text: #9CA3AF;
    --border-color: #2A313C;
    --font-primary: 'Inter', sans-serif;
    
    --header-height: 80px;
    --header-shrink-height: 60px;
}

/* ==============================================
   RESET & BASE
   ============================================== */
body {
    font-family: var(--font-primary);
    padding-top: 0; /* Handled by sticky */
}

/* ==============================================
   TOP HEADER BAR (Dark)
   ============================================== */
.top-header-bar {
    background: var(--primary-dark);
    color: var(--muted-text);
    font-size: 0.8rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.top-header-bar .top-header-item {
    display: inline-block;
    margin-right: 1.5rem;
}

.top-header-bar .top-header-item i {
    color: var(--white);
    margin-right: 6px;
    font-size: 0.75rem;
}

.top-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.2rem;
}

.top-header-phone {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.top-header-phone:hover {
    color: var(--muted-text);
}

.top-header-social {
    display: flex;
    gap: 0.8rem;
}

.top-header-social a {
    color: var(--muted-text);
    font-size: 1rem;
    transition: 0.3s;
    line-height: 1;
}

.top-header-social a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

/* ==============================================
   STICKY MAIN NAVBAR (White/Dark two-tone)
   ============================================== */
.main-navbar {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1040;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 20px rgba(1, 17, 23, 0.04);
    border-bottom: 1px solid rgba(42, 49, 60, 0.06);
}

/* Shrink effect on scroll (JS ke saath) */
.main-navbar.scrolled {
    box-shadow: 0 8px 30px rgba(1, 17, 23, 0.12);
    border-bottom-color: var(--border-color);
}

.main-navbar.scrolled .navbar-logo {
    height: 50px; /* Logo thora chhota */
}

.main-navbar.scrolled .navbar-brand .brand-text {
    font-size: 1.2rem;
}

.main-navbar.scrolled .nav-link {
    padding: 0.8rem 0 !important;
}

/* ==============================================
   NAVBAR BRAND / LOGO (Bara size)
   ============================================== */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-logo {
    height: 70px;  /* ★ Bara logo ★ */
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: height 0.3s ease;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    transition: font-size 0.3s ease;
}

.brand-highlight {
    color: var(--primary-dark);
    background: linear-gradient(135deg, #011117 60%, #2A313C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--muted-text);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    -webkit-text-fill-color: var(--muted-text); /* Override gradient */
}

/* ==============================================
   DESKTOP NAVIGATION (Center Aligned)
   ============================================== */
.nav-links-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 700; /* ★ Bold ★ */
    color: var(--secondary-dark);
    font-size: 0.9rem;
    padding: 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    background: transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.nav-link.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    font-size: 0.6rem;
}

/* ==============================================
   DROPDOWN MENU (Professional Dark/Light mix)
   ============================================== */
.dropdown-menu {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 0.5rem 0;
    box-shadow: 0 20px 40px rgba(1, 17, 23, 0.12);
    min-width: 240px;
    margin-top: 0;
}

.dropdown-item {
    font-weight: 600;
    color: var(--secondary-dark);
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    transition: 0.2s;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--primary-dark);
    border-left-color: var(--primary-dark);
}

.dropdown-divider {
    border-color: var(--light-gray);
    opacity: 0.5;
}

/* ==============================================
   NAV CTA BUTTON (Strict color scheme)
   ============================================== */
.nav-cta {
    flex-shrink: 0;
    margin-left: 1.5rem;
}

.btn-nav {
    background: var(--primary-dark);
    color: var(--white);
    border: 2px solid var(--primary-dark);
    border-radius: 50px;
    padding: 0.5rem 1.6rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-nav:hover {
    background: var(--secondary-dark);
    border-color: var(--white); /* ★ Per color guide ★ */
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 17, 23, 0.2);
}

/* ==============================================
   CUSTOM HAMBURGER ICON (Professional)
   ============================================== */
.hamburger-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 10px 8px;
    cursor: pointer;
    transition: 0.3s;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

/* Hamburger to 'X' animation when menu is open */
.hamburger-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==============================================
   MOBILE NAVIGATION (Collapsible)
   ============================================== */
.mobile-nav {
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    max-height: 80vh;
    overflow-y: auto;
    padding: 1rem 0 2rem 0;
}

.mobile-nav .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav .nav-item {
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.mobile-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.9rem 0;
    font-weight: 700;
    color: var(--secondary-dark);
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: none;
    text-decoration: none;
}

.mobile-nav .nav-link i {
    width: 24px;
    font-size: 1.2rem;
    color: var(--muted-text);
}

.mobile-nav .nav-link.active,
.mobile-nav .nav-link:hover {
    color: var(--primary-dark);
    border-bottom: none;
}

.mobile-nav .nav-link.active i {
    color: var(--primary-dark);
}

/* Mobile Dropdown inside Mobile */
.mobile-nav .dropdown-menu {
    position: static !important;
    float: none !important;
    inset: auto !important;
    display: none !important;
    width: 100%;
    margin: 0.35rem 0 0.5rem 0;
    border: none;
    box-shadow: none;
    padding: 0.5rem 0 0.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 0 12px 12px 0;
}

.mobile-nav .dropdown-item {
    display: block;
    padding: 0.5rem 0;
    font-weight: 600;
    color: var(--muted-text);
    border-left: none;
    font-size: 0.9rem;
}

.mobile-nav .dropdown-item:hover {
    background: transparent;
    color: var(--primary-dark);
    border-left: none;
}

.mobile-nav .dropdown-divider {
    margin: 0.3rem 0;
}

/* Mobile CTA Button */
.btn-mobile-cta {
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    border: 2px solid var(--primary-dark);
    transition: 0.3s;
}

.btn-mobile-cta:hover {
    background: var(--secondary-dark);
    border-color: var(--white);
    color: var(--white);
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Large Screens */
@media (max-width: 1199.98px) {
    .nav-links {
        gap: 1.2rem;
    }
    .nav-link {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
}

/* Tablet / Desktop Breakpoint (Hide desktop nav) */
@media (max-width: 991.98px) {
    .nav-links-wrapper,
    .nav-cta {
        display: none !important;
    }
    
    .navbar-brand .brand-tagline {
        display: none !important;
    }
    
    .navbar-logo {
        height: 55px;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    .top-header-bar .top-header-item {
        margin-right: 0.8rem;
        font-size: 0.7rem;
    }
    
    .top-header-phone {
        font-size: 0.8rem;
    }

    .main-navbar .container {
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
    }

    .navbar-brand {
        gap: 10px;
        max-width: calc(100% - 64px);
    }

    .navbar-logo {
        height: 48px;
        max-width: 120px;
    }

    .brand-text {
        font-size: 1.08rem;
        line-height: 1;
    }

    .hamburger-toggle {
        width: 44px;
        height: 44px;
        justify-content: center;
        align-items: center;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.06);
    }

    .hamburger-line {
        width: 22px;
    }

    .mobile-nav {
        padding: 0.75rem 0 1.25rem 0;
    }

    .mobile-nav .dropdown-toggle {
        width: 100%;
        justify-content: flex-start;
        appearance: none;
        -webkit-appearance: none;
        border: 0;
        background: transparent;
        text-align: left;
        padding-left: 0;
    }

    .mobile-nav .nav-item.dropdown {
        display: flex;
        flex-direction: column;
    }

    .mobile-nav .dropdown-toggle::after {
        margin-left: auto;
    }

    .mobile-nav .dropdown-menu {
        padding-left: 1.5rem;
    }
}

/* Mobile Small Screens */
@media (max-width: 575.98px) {
    .top-header-bar .top-header-item {
        display: none; /* Hide address on very small screens */
    }
    .top-header-bar .top-header-item:first-child {
        display: none;
    }
    .top-header-right {
        gap: 0.6rem;
        justify-content: space-between;
        width: 100%;
    }
    .top-header-social a {
        font-size: 0.9rem;
    }
    
    .navbar-logo {
        height: 45px;
    }
    .brand-text {
        font-size: 0.98rem;
    }
    
    .hamburger-toggle {
        padding: 5px;
    }
    .hamburger-line {
        width: 24px;
        height: 2.5px;
    }

    .mobile-nav .nav-link {
        padding: 0.85rem 0;
        font-size: 0.98rem;
    }

    .mobile-nav .dropdown-item {
        font-size: 0.88rem;
    }
}
/* ==============================================
   OVERRIDE: DARK BACKGROUND FOR HEADER (Strict Color Scheme)
   ============================================== */

/* --- Main Navbar Dark --- */
.main-navbar {
    background: var(--primary-dark) !important; /* #011117 */
    border-bottom: 1px solid var(--border-color); /* #2A313C */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.main-navbar.scrolled {
    background: var(--primary-dark) !important;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.5);
    border-bottom-color: var(--border-color);
}

/* --- Brand Text (Logo ke saath) --- */
.brand-text {
    color: var(--white); /* White text on dark bg */
}
.brand-highlight {
    background: linear-gradient(135deg, #FFFFFF 60%, #9CA3AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-tagline {
    -webkit-text-fill-color: var(--muted-text); /* Muted gray */
}

/* --- Nav Links (White / Light Gray on Dark) --- */
.nav-link {
    color: var(--light-gray) !important; /* #E5E7EB */
    font-weight: 700;
    border-bottom-color: transparent !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
    border-bottom-color: var(--white) !important;
}

/* --- Dropdown Toggle Arrow --- */
.nav-link.dropdown-toggle::after {
    color: var(--muted-text);
}

/* --- Hamburger Icon (White lines on dark) --- */
.hamburger-line {
    background: var(--white) !important;
}

/* ==============================================
   DROPDOWN (Services & Areas Subpages)
   DARK THEME + MOUSE-OVER SLIDE EFFECT
   ============================================== */
.dropdown-menu {
    background: var(--secondary-dark) !important; /* #161C24 */
    border: 1px solid var(--border-color) !important; /* #2A313C */
    border-radius: 0px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    padding: 0.4rem 0;
}

.dropdown-item {
    font-weight: 600;
    color: var(--light-gray) !important; /* #E5E7EB */
    padding: 0.65rem 1.8rem;
    font-size: 0.85rem;
    border-left: 3px solid transparent !important;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

/* ★★★ MAIN MOUSE-OVER EFFECT FOR SUBPAGES ★★★ */
.dropdown-item:hover {
    background: var(--primary-dark) !important; /* #011117 */
    color: var(--white) !important;
    border-left-color: var(--white) !important; /* White left border highlight */
    transform: translateX(6px) scale(1.02); /* Smooth slide + slight pop */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dropdown-divider {
    border-color: var(--border-color);
    opacity: 0.6;
}

/* --- Nav CTA Button (Dark theme ke hisaab se white button) --- */
.btn-nav {
    background: var(--white) !important;
    color: var(--primary-dark) !important;
    border: 2px solid var(--white) !important;
}

.btn-nav:hover {
    background: var(--secondary-dark) !important;
    color: var(--white) !important;
    border-color: var(--white) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* ==============================================
   MOBILE NAVIGATION (Dark Theme)
   ============================================== */
.mobile-nav {
    background: var(--primary-dark) !important; /* #011117 */
    border-top: 1px solid var(--border-color);
}

.mobile-nav .nav-link {
    color: var(--light-gray) !important;
    border-bottom: none !important;
}

.mobile-nav .nav-link i {
    color: var(--muted-text);
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    color: var(--white) !important;
}

.mobile-nav .nav-link.active i {
    color: var(--white);
}

/* Mobile Dropdown Items */
.mobile-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.04) !important;
    border-left: 2px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 0 12px 12px 0;
    margin: 0.35rem 0 0.5rem 0;
    padding: 0.5rem 0 0.25rem 1.5rem;
}

.mobile-nav .dropdown-item {
    color: var(--muted-text) !important;
    border-left: none !important;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    transform: none !important; /* Reset slide on mobile for better touch UX */
    white-space: normal;
}

.mobile-nav .dropdown-item:hover {
    background: transparent !important;
    color: var(--white) !important;
    border-left: none !important;
    transform: none !important;
}

/* Mobile CTA */
.btn-mobile-cta {
    background: var(--white) !important;
    color: var(--primary-dark) !important;
    border: 2px solid var(--white) !important;
}

.btn-mobile-cta:hover {
    background: var(--secondary-dark) !important;
    color: var(--white) !important;
    border-color: var(--white) !important;
}
/* ==============================================
   DROPDOWN HOVER SMOOTH TRANSITIONS
   ============================================== */
.dropdown-menu {
    display: block !important; /* Opacity transition ke liye display:block zaroori hai */
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    /* Baaki styling (background, border) pehle se set hai */
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Mobile par dropdowns ke liye reset (kyunki mobile par click se khulein) */
.mobile-nav .dropdown-menu {
    display: none !important; /* Mobile par default hide */
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: none;
}
.mobile-nav .dropdown-menu.show {
    display: block !important;
}
/* ==============================================
   FOOTER - Professional Dark Theme
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.footer-main {
    background: var(--primary-dark); /* #011117 */
    color: var(--muted-text); /* #9CA3AF */
    padding: 0;
    margin: 0;
    border-top: 3px solid var(--border-color); /* #2A313C */
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern/glow (optional premium touch) */
.footer-main::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ==============================================
   FOOTER TOP SECTION
   ============================================== */
.footer-top {
    padding: 70px 0 50px 0;
    border-bottom: 1px solid var(--border-color);
}

/* --- Brand / Logo --- */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo {
    height: 65px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.footer-brand-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.1;
}

.footer-brand-title .brand-highlight {
    background: linear-gradient(135deg, #FFFFFF 60%, #9CA3AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-title small {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--muted-text);
    letter-spacing: 3px;
    -webkit-text-fill-color: var(--muted-text);
    text-transform: uppercase;
    margin-top: -2px;
}

/* --- About Text --- */
.footer-about {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted-text);
    margin-bottom: 20px;
    max-width: 380px;
    opacity: 0.85;
}

/* --- Contact Info --- */
.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-contact p i {
    color: var(--white);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact p a {
    color: var(--muted-text);
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact p a:hover {
    color: var(--white);
}

/* --- Social Icons --- */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--secondary-dark); /* #161C24 */
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
}

.footer-social a:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--white);
}

/* ==============================================
   FOOTER HEADINGS & LINKS
   ============================================== */
.footer-heading {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

/* Underline effect for headings */
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

/* Hover effect with slide + underline */
.footer-links li a::before {
    content: '›';
    color: var(--white);
    margin-right: 0;
    opacity: 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--white);
    transform: translateX(6px);
}

.footer-links li a:hover::before {
    opacity: 1;
    margin-right: 6px;
}

/* ==============================================
   SERVICE AREAS - Grid Layout (2 columns)
   ============================================== */
.footer-areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
}

.footer-areas li {
    margin-bottom: 8px;
}

.footer-areas li a {
    font-size: 0.85rem;
}

/* ==============================================
   FOOTER BOTTOM
   ============================================== */
.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin: 0;
    opacity: 0.8;
}

.footer-copyright strong {
    color: var(--white);
    font-weight: 700;
}

.footer-license {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin: 0;
    opacity: 0.8;
}

.footer-license i {
    color: #4CAF50; /* Green check - yeh exception hai kyunki license badge hai */
    margin-right: 4px;
}

/* ==============================================
   CHATBOT WIDGET - Professional Dark Theme
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    font-family: var(--font-primary, 'Inter', sans-serif);
}

/* ==============================================
   CHATBOT TOGGLE BUTTON
   ============================================== */
.chatbot-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 8px 35px rgba(1, 17, 23, 0.4);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.08);
    background: var(--secondary-dark);
    border-color: var(--white);
    box-shadow: 0 12px 50px rgba(1, 17, 23, 0.5);
}

.chatbot-toggle i {
    font-size: 2.2rem;
    transition: 0.3s;
}

.chatbot-toggle:hover i {
    transform: rotate(-10deg);
}

/* Notification Badge */
.chatbot-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #EF4444;
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Pulse ring animation */
.chatbot-toggle::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--white);
    opacity: 0;
    animation: togglePulse 2.5s ease-in-out infinite;
}

@keyframes togglePulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==============================================
   CHATBOT WINDOW
   ============================================== */
.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 600px;
    max-height: 75vh;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: chatbotSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
}

@keyframes chatbotSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==============================================
   CHATBOT HEADER
   ============================================== */
.chatbot-header {
    background: var(--primary-dark);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.chatbot-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1.2;
}

.chatbot-status {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    display: inline-block;
    animation: statusBlink 1.5s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--muted-text);
    font-size: 1rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: rotate(90deg);
}

/* ==============================================
   CHATBOT MESSAGES
   ============================================== */
.chatbot-messages {
    flex: 1;
    padding: 20px 20px 12px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--light-gray);
}

/* Custom Scrollbar */
.chatbot-messages::-webkit-scrollbar {
    width: 5px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

/* ==============================================
   CHATBOT MESSAGE
   ============================================== */
.chatbot-message {
    display: flex;
    gap: 10px;
    max-width: 85%;
    animation: messageFade 0.3s ease;
}

@keyframes messageFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-message.bot {
    align-self: flex-start;
}

.chatbot-message.user {
    align-self: flex-end;
}

/* Message Avatar */
.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--white);
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.chatbot-message.user .message-avatar {
    background: var(--secondary-dark);
}

/* Message Bubble */
.message-bubble {
    padding: 12px 18px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
    word-wrap: break-word;
    box-shadow: 0 2px 8px rgba(1, 17, 23, 0.04);
}

.chatbot-message.bot .message-bubble {
    background: var(--white);
    color: var(--secondary-dark);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--light-gray);
}

.chatbot-message.user .message-bubble {
    background: var(--primary-dark);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

/* ==============================================
   SUGGESTED QUESTIONS
   ============================================== */
.chatbot-suggestions {
    margin-top: 8px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--light-gray);
    box-shadow: 0 2px 8px rgba(1, 17, 23, 0.04);
}

.suggestions-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 8px 0;
}

.suggestions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.suggestion-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-gray);
    color: var(--secondary-dark);
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: var(--font-primary, 'Inter', sans-serif);
}

.suggestion-btn i {
    font-size: 0.7rem;
    color: var(--muted-text);
}

.suggestion-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 15px rgba(1, 17, 23, 0.15);
}

.suggestion-btn:hover i {
    color: var(--white);
}

.suggestion-btn:active {
    transform: scale(0.95);
}

/* ==============================================
   CHATBOT INPUT
   ============================================== */
.chatbot-input {
    display: flex;
    gap: 10px;
    padding: 14px 18px;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    flex-shrink: 0;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    background: var(--light-gray);
    color: var(--secondary-dark);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: var(--font-primary, 'Inter', sans-serif);
}

.chatbot-input input::placeholder {
    color: var(--muted-text);
    font-size: 0.85rem;
}

.chatbot-input input:focus {
    border-color: var(--primary-dark);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(1, 17, 23, 0.06);
}

.chatbot-input input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chatbot-input button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(1, 17, 23, 0.15);
}

.chatbot-input button:hover {
    background: var(--secondary-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(1, 17, 23, 0.2);
}

.chatbot-input button:active {
    transform: scale(0.92);
}

.chatbot-input button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ==============================================
   CHATBOT FOOTER
   ============================================== */
.chatbot-footer {
    padding: 8px 20px;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    text-align: center;
    flex-shrink: 0;
}

.chatbot-footer span {
    font-size: 0.65rem;
    color: var(--muted-text);
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ==============================================
   TYPING INDICATOR (Optional)
   ============================================== */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--light-gray);
    align-self: flex-start;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--muted-text);
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .chatbot-widget {
        bottom: 24px;
        right: 24px;
    }

    .chatbot-toggle {
        width: 58px;
        height: 58px;
        font-size: 1.6rem;
    }

    .chatbot-toggle i {
        font-size: 1.8rem;
    }

    .chatbot-badge {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }

    .chatbot-window {
        width: 380px;
        height: 540px;
        bottom: 76px;
        right: 0;
        border-radius: 20px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .chatbot-widget {
        bottom: 16px;
        right: 16px;
    }

    .chatbot-toggle {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .chatbot-toggle i {
        font-size: 1.6rem;
    }

    .chatbot-badge {
        width: 18px;
        height: 18px;
        font-size: 0.55rem;
    }

    .chatbot-window {
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
        bottom: 0;
        right: 0;
        border-radius: 0;
        border: none;
        animation: chatbotSlideUpMobile 0.3s ease;
    }

    @keyframes chatbotSlideUpMobile {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .chatbot-header {
        padding: 14px 16px;
        border-radius: 0;
    }

    .chatbot-avatar {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .chatbot-name {
        font-size: 0.9rem;
    }

    .chatbot-messages {
        padding: 16px 14px 10px 14px;
    }

    .message-bubble {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .chatbot-suggestions {
        padding: 10px 14px;
    }

    .suggestions-title {
        font-size: 0.65rem;
    }

    .suggestion-btn {
        font-size: 0.72rem;
        padding: 5px 12px;
        gap: 4px;
    }

    .suggestion-btn i {
        font-size: 0.65rem;
    }

    .chatbot-input {
        padding: 10px 14px;
        gap: 8px;
    }

    .chatbot-input input {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .chatbot-input button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .chatbot-footer {
        padding: 6px 16px;
    }

    .chatbot-footer span {
        font-size: 0.6rem;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .chatbot-widget {
        bottom: 12px;
        right: 12px;
    }

    .chatbot-toggle {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .chatbot-toggle i {
        font-size: 1.4rem;
    }

    .chatbot-badge {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
        top: -2px;
        right: -2px;
    }

    .chatbot-window {
        height: 100vh;
        max-height: 100vh;
    }

    .chatbot-messages {
        padding: 12px 12px 8px 12px;
        gap: 10px;
    }

    .chatbot-message {
        max-width: 92%;
    }

    .message-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .message-bubble {
        font-size: 0.82rem;
        padding: 8px 12px;
        border-radius: 14px;
    }

    .chatbot-suggestions {
        padding: 8px 12px;
    }

    .suggestions-title {
        font-size: 0.6rem;
        margin-bottom: 6px;
    }

    .suggestions-grid {
        gap: 4px;
    }

    .suggestion-btn {
        font-size: 0.68rem;
        padding: 4px 10px;
        gap: 4px;
        border-radius: 16px;
    }

    .chatbot-input {
        padding: 8px 12px;
        gap: 6px;
    }

    .chatbot-input input {
        padding: 6px 12px;
        font-size: 0.82rem;
        border-radius: 40px;
    }

    .chatbot-input button {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}
/* ==============================================
   WHY CHOOSE US SECTION
   Professional Cards with Rounded Corners
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.why-choose-us {
    padding: 80px 0 70px 0;
    background: var(--white); /* #FFFFFF - Light background for contrast */
    position: relative;
    overflow: hidden;
}

/* Subtle decorative top border */
.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--border-color), var(--primary-dark));
}

/* ==============================================
   SECTION HEADER
   ============================================== */
.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-title span {
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-text);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==============================================
   WHY CARDS - Rounded, Shadow, Professional
   ============================================== */
.why-card {
    background: var(--white);
    border-radius: 20px; /* ★ Rounded corners ★ */
    padding: 32px 24px 28px 24px;
    text-align: center;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(1, 17, 23, 0.04);
}

/* Card Hover Effect - Lift + Shadow + Border */
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(1, 17, 23, 0.12);
    border-color: var(--primary-dark);
}

/* Card accent line on top (visible on hover) */
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-dark);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why-card:hover::before {
    opacity: 1;
}

/* ==============================================
   CARD ICONS - Each with unique color
   ============================================== */
.why-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    font-size: 2.2rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Individual Icon Styles */
.why-icon.experience {
    background: rgba(1, 17, 23, 0.08);
    color: var(--primary-dark);
}

.why-card:hover .why-icon.experience {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.05) rotate(-5deg);
}

.why-icon.licensed {
    background: rgba(22, 28, 36, 0.08);
    color: var(--secondary-dark);
}

.why-card:hover .why-icon.licensed {
    background: var(--secondary-dark);
    color: var(--white);
    transform: scale(1.05) rotate(5deg);
}

.why-icon.emergency {
    background: rgba(42, 49, 60, 0.08);
    color: var(--border-color);
}

.why-card:hover .why-icon.emergency {
    background: var(--border-color);
    color: var(--white);
    transform: scale(1.05) rotate(-5deg);
}

.why-icon.pricing {
    background: rgba(156, 163, 175, 0.15);
    color: var(--muted-text);
}

.why-card:hover .why-icon.pricing {
    background: var(--muted-text);
    color: var(--white);
    transform: scale(1.05) rotate(5deg);
}

/* ==============================================
   CARD TEXT
   ============================================== */
.why-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.why-card:hover .why-title {
    color: var(--primary-dark);
}

.why-text {
    font-size: 0.9rem;
    color: var(--muted-text);
    line-height: 1.6;
    margin: 0;
}

/* ==============================================
   WHY LIST (Full Reasons) - 3 Columns
   ============================================== */
.why-list {
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
    margin-top: 30px;
}

.why-list ul li {
    font-size: 0.9rem;
    color: var(--secondary-dark);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: 0.3s;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
}

.why-list ul li:last-child {
    border-bottom: none;
}

.why-list ul li i {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Hover effect on list items */
.why-list ul li:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.why-list ul li:hover i {
    transform: scale(1.15);
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .why-choose-us {
        padding: 60px 0 50px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .why-card {
        padding: 26px 20px 22px 20px;
    }

    .why-icon {
        width: 66px;
        height: 66px;
        font-size: 1.8rem;
    }

    .why-title {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .why-choose-us {
        padding: 40px 0 30px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .why-card {
        padding: 22px 16px 18px 16px;
        border-radius: 16px;
    }

    .why-card:hover {
        transform: translateY(-6px);
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .why-title {
        font-size: 0.95rem;
    }

    .why-text {
        font-size: 0.85rem;
    }

    .why-list ul li {
        font-size: 0.85rem;
        padding: 5px 0;
    }

    .why-list ul li i {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .why-choose-us {
        padding: 30px 0 20px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
    }

    .why-card {
        padding: 18px 14px 16px 14px;
        border-radius: 14px;
    }

    .why-icon {
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .why-title {
        font-size: 0.9rem;
    }

    .why-text {
        font-size: 0.8rem;
    }

    .why-list ul li {
        font-size: 0.82rem;
        gap: 8px;
    }
}
/* ==============================================
   TESTIMONIALS SECTION
   Professional Cards with Dark Theme
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.testimonials-section {
    padding: 80px 0 70px 0;
    background: var(--primary-dark); /* #011117 - Dark Theme */
    position: relative;
    overflow: hidden;
}

/* Subtle background glow effect */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ==============================================
   SECTION HEADER (Dark Theme)
   ============================================== */
.testimonials-section .section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.testimonials-section .section-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary-dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.testimonials-section .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
}

.testimonials-section .section-title span {
    background: linear-gradient(135deg, #FFFFFF 60%, #9CA3AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-text);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==============================================
   TESTIMONIAL CARDS (Dark Theme)
   ============================================== */
.testimonial-card {
    background: var(--secondary-dark); /* #161C24 */
    border-radius: 20px;
    padding: 32px 28px 28px 28px;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Card Hover Effect */
.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Decorative quote mark */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--border-color);
    opacity: 0.3;
    line-height: 1;
    pointer-events: none;
}

/* ==============================================
   TESTIMONIAL HEADER (Avatar + User)
   ============================================== */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    border: 2px solid var(--border-color);
    transition: 0.3s;
}

.testimonial-card:hover .testimonial-avatar {
    border-color: var(--white);
    transform: scale(1.05);
}

.testimonial-user {
    flex: 1;
}

.user-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.user-location {
    font-size: 0.8rem;
    color: var(--muted-text);
}

/* ==============================================
   TESTIMONIAL STARS
   ============================================== */
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.testimonial-stars i {
    color: #F59E0B; /* Gold color for stars */
    font-size: 1rem;
}

/* ==============================================
   TESTIMONIAL TEXT
   ============================================== */
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--light-gray);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* ==============================================
   VERIFIED BADGE
   ============================================== */
.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-text);
    padding: 4px 14px;
    background: var(--primary-dark);
    border-radius: 50px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.testimonial-badge i {
    color: #4CAF50;
    font-size: 0.8rem;
}

/* ==============================================
   TRUST BADGES (4 columns)
   ============================================== */
.trust-badges {
    margin-top: 40px !important;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.trust-badge {
    background: var(--secondary-dark);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-badge:hover {
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.trust-badge i {
    font-size: 2rem;
    color: var(--white);
}

.trust-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-gray);
}

/* ==============================================
   CTA BUTTON (Dark Theme)
   ============================================== */
.testimonials-section .btn-primary {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--white);
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.testimonials-section .btn-primary:hover {
    background: var(--secondary-dark);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

.testimonials-section .btn-primary i {
    font-size: 1.1rem;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 60px 0 50px 0;
    }

    .testimonials-section .section-title {
        font-size: 2.2rem;
    }

    .testimonials-section .section-subtitle {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 26px 22px 22px 22px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .trust-badge {
        padding: 14px 10px;
    }

    .trust-badge i {
        font-size: 1.6rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 40px 0 30px 0;
    }

    .testimonials-section .section-header {
        margin-bottom: 30px;
    }

    .testimonials-section .section-title {
        font-size: 1.8rem;
    }

    .testimonials-section .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .testimonial-card {
        padding: 22px 18px 18px 18px;
        border-radius: 16px;
    }

    .testimonial-card::before {
        font-size: 4rem;
        top: 8px;
        right: 14px;
    }

    .testimonial-avatar {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }

    .user-name {
        font-size: 0.95rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .trust-badges {
        margin-top: 30px !important;
        padding-top: 30px;
    }

    .trust-badge {
        padding: 12px 8px;
        border-radius: 12px;
    }

    .trust-badge i {
        font-size: 1.4rem;
    }

    .trust-badge span {
        font-size: 0.78rem;
    }

    .testimonials-section .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .testimonials-section {
        padding: 30px 0 20px 0;
    }

    .testimonials-section .section-title {
        font-size: 1.5rem;
    }

    .testimonials-section .section-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
    }

    .testimonial-card {
        padding: 18px 14px 16px 14px;
        border-radius: 14px;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-header {
        gap: 10px;
    }

    .user-name {
        font-size: 0.9rem;
    }

    .user-location {
        font-size: 0.7rem;
    }

    .testimonial-stars i {
        font-size: 0.85rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    .testimonial-badge {
        font-size: 0.7rem;
        padding: 3px 12px;
    }

    .trust-badges {
        margin-top: 20px !important;
        padding-top: 20px;
    }

    .trust-badge {
        padding: 10px 6px;
        border-radius: 10px;
    }

    .trust-badge i {
        font-size: 1.2rem;
    }

    .trust-badge span {
        font-size: 0.7rem;
    }

    .testimonials-section .btn-primary {
        padding: 10px 24px;
        font-size: 0.85rem;
        width: 100%;
    }
}
/* ==============================================
   ABOUT US SECTION - Homepage
   Image Right | Strict Color Scheme
   ============================================== */

.about-section {
    padding: 80px 0 70px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative top accent line */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--border-color), var(--primary-dark));
}

/* ==============================================
   WRAPPER - Flex layout for image right
   ============================================== */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row-reverse; /* Image right side par */
}

/* ==============================================
   CONTENT COLUMN (Left)
   ============================================== */
.about-content-col {
    flex: 1;
    min-width: 0;
}

.about-content {
    max-width: 640px;
}

/* Badge */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.about-badge i {
    font-size: 0.9rem;
}

/* Heading */
.about-heading {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Decorative underline on heading */
.about-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-dark);
    margin-top: 14px;
    border-radius: 10px;
}

/* Text */
.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted-text);
    margin-bottom: 16px;
}

.about-text:last-of-type {
    margin-bottom: 24px;
}

/* ==============================================
   STATS (4 columns)
   ============================================== */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
}

.about-stat:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(1, 17, 23, 0.15);
}

.about-stat:hover .stat-icon i {
    color: var(--white);
}

.about-stat:hover .stat-number {
    color: var(--white);
}

.about-stat:hover .stat-label {
    color: var(--light-gray);
}

.stat-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--primary-dark);
    transition: 0.3s;
}

.stat-info {
    flex: 1;
    min-width: 0;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.2;
    transition: 0.3s;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--muted-text);
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

/* ==============================================
   CTA BUTTON
   ============================================== */
.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--primary-dark);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(1, 17, 23, 0.15);
}

.btn-about:hover {
    background: var(--secondary-dark);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(1, 17, 23, 0.25);
}

.btn-about i {
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-about:hover i {
    transform: translateX(6px);
}

/* ==============================================
   IMAGE COLUMN (Right)
   ============================================== */
.about-image-col {
    flex: 1;
    min-width: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(1, 17, 23, 0.12);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

/* Image Badge */
.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--white);
    backdrop-filter: blur(4px);
}

.about-image-badge i {
    font-size: 1.2rem;
}

/* Decorative corner ornament on image */
.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-dark);
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Large Tablet */
@media (max-width: 1199.98px) {
    .about-wrapper {
        gap: 40px;
    }

    .about-heading {
        font-size: 2.2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .about-section {
        padding: 60px 0 50px 0;
    }

    .about-wrapper {
        flex-direction: column-reverse; /* Image upar, content neechay */
        gap: 40px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-heading {
        font-size: 2rem;
    }

    .about-heading::after {
        width: 50px;
    }

    .about-image-badge {
        bottom: 18px;
        left: 18px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .about-image-wrapper::after {
        width: 60px;
        height: 60px;
        top: -8px;
        right: -8px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .about-section {
        padding: 40px 0 30px 0;
    }

    .about-wrapper {
        gap: 30px;
    }

    .about-heading {
        font-size: 1.7rem;
    }

    .about-heading::after {
        width: 40px;
        height: 3px;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-stat {
        padding: 12px 14px;
        border-radius: 10px;
    }

    .stat-icon i {
        font-size: 1.4rem;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .btn-about {
        padding: 12px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .about-image-badge {
        bottom: 14px;
        left: 14px;
        padding: 8px 16px;
        font-size: 0.7rem;
    }

    .about-image-badge i {
        font-size: 0.9rem;
    }

    .about-image-wrapper::after {
        width: 40px;
        height: 40px;
        top: -6px;
        right: -6px;
        border-width: 2px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .about-section {
        padding: 30px 0 20px 0;
    }

    .about-wrapper {
        gap: 24px;
    }

    .about-heading {
        font-size: 1.4rem;
    }

    .about-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
    }

    .about-text {
        font-size: 0.88rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .about-stat {
        padding: 10px 12px;
        border-radius: 8px;
    }

    .stat-icon i {
        font-size: 1.2rem;
    }

    .stat-icon {
        width: 28px;
        height: 28px;
    }

    .stat-number {
        font-size: 0.95rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .btn-about {
        padding: 10px 20px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .btn-about i {
        font-size: 1rem;
    }

    .about-image-badge {
        bottom: 10px;
        left: 10px;
        padding: 6px 14px;
        font-size: 0.65rem;
        gap: 6px;
    }

    .about-image-badge i {
        font-size: 0.8rem;
    }

    .about-image-wrapper {
        border-radius: 14px;
    }
}
/* ==============================================
   FAQ SECTION - Professional Dark Theme
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.faq-section {
    padding: 80px 0 70px 0;
    background: var(--primary-dark); /* #011117 */
    position: relative;
    overflow: hidden;
}

/* Subtle background glow */
.faq-section::before {
    content: '';
    position: absolute;
    top: -250px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ==============================================
   SECTION HEADER (Dark Theme)
   ============================================== */
.faq-section .section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.faq-section .section-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary-dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.faq-section .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
}

.faq-section .section-title span {
    background: linear-gradient(135deg, #FFFFFF 60%, #9CA3AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-text);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==============================================
   FAQ ACCORDION
   ============================================== */
.faq-accordion {
    position: relative;
    z-index: 1;
}

/* ==============================================
   FAQ ITEM
   ============================================== */
.faq-item {
    background: var(--secondary-dark); /* #161C24 */
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

/* Hover effect on item */
.faq-item:hover {
    border-color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ==============================================
   FAQ HEADER / BUTTON
   ============================================== */
.faq-header {
    margin: 0;
}

.faq-button {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.faq-button:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* FAQ Number */
.faq-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--muted-text);
    background: var(--primary-dark);
    padding: 4px 10px;
    border-radius: 8px;
    min-width: 36px;
    text-align: center;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    transition: 0.3s;
}

.faq-button:not(.collapsed) .faq-number {
    background: var(--white);
    color: var(--primary-dark);
}

/* FAQ Question */
.faq-question {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: var(--light-gray);
    transition: 0.3s;
    line-height: 1.4;
}

.faq-button:hover .faq-question {
    color: var(--white);
}

.faq-button:not(.collapsed) .faq-question {
    color: var(--white);
}

/* FAQ Icon (Chevron) */
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-icon i {
    color: var(--muted-text);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-button:not(.collapsed) .faq-icon {
    background: var(--white);
    transform: rotate(180deg);
}

.faq-button:not(.collapsed) .faq-icon i {
    color: var(--primary-dark);
}

.faq-button:hover .faq-icon {
    background: var(--border-color);
}

.faq-button:not(.collapsed):hover .faq-icon {
    background: var(--white);
}

/* ==============================================
   FAQ BODY (Collapsible Content)
   ============================================== */
.faq-collapse {
    transition: all 0.35s ease;
}

.faq-body {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted-text);
    padding-left: 76px; /* Number + gap ke hisaab se */
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .faq-section {
        padding: 60px 0 50px 0;
    }

    .faq-section .section-title {
        font-size: 2.2rem;
    }

    .faq-section .section-subtitle {
        font-size: 1rem;
    }

    .faq-button {
        padding: 18px 20px;
        gap: 14px;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-body {
        padding: 0 20px 20px 20px;
        padding-left: 68px;
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .faq-section {
        padding: 40px 0 30px 0;
    }

    .faq-section .section-header {
        margin-bottom: 30px;
    }

    .faq-section .section-title {
        font-size: 1.8rem;
    }

    .faq-section .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .faq-item {
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .faq-button {
        padding: 16px 16px;
        gap: 12px;
    }

    .faq-number {
        font-size: 0.65rem;
        min-width: 30px;
        padding: 3px 8px;
    }

    .faq-question {
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-icon i {
        font-size: 0.85rem;
    }

    .faq-body {
        padding: 0 16px 16px 16px;
        padding-left: 58px;
        font-size: 0.88rem;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .faq-section {
        padding: 30px 0 20px 0;
    }

    .faq-section .section-title {
        font-size: 1.5rem;
    }

    .faq-section .section-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
    }

    .faq-item {
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .faq-button {
        padding: 14px 14px;
        gap: 10px;
    }

    .faq-number {
        font-size: 0.6rem;
        min-width: 26px;
        padding: 2px 6px;
        border-radius: 6px;
    }

    .faq-question {
        font-size: 0.85rem;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
    }

    .faq-icon i {
        font-size: 0.75rem;
    }

    .faq-body {
        padding: 0 14px 14px 14px;
        padding-left: 48px;
        font-size: 0.82rem;
        line-height: 1.6;
    }
}

/* ==============================================
   ACTIVE / COLLAPSED STATE STYLES
   ============================================== */
.faq-item.active {
    border-color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ==============================================
   ANIMATION FOR SMOOTH EXPAND
   ============================================== */
.faq-collapse.collapsing {
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==============================================
   CUSTOM SCROLLBAR (Optional)
   ============================================== */
.faq-body::-webkit-scrollbar {
    width: 4px;
}

.faq-body::-webkit-scrollbar-track {
    background: transparent;
}

.faq-body::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}
/* ==============================================
   CTA SECTION - Professional Dark Theme
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.cta-section {
    padding: 80px 0 70px 0;
    background: var(--primary-dark); /* #011117 */
    position: relative;
    overflow: hidden;
}

/* Animated gradient overlay for depth */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaGlow 10s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes ctaGlow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(30px, -20px) scale(1.2);
        opacity: 1;
    }
}

/* Decorative top border */
.cta-section::before {
    /* Override: decorative border instead of glow for before */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    opacity: 0.3;
    animation: none;
    border-radius: 0;
}

/* ==============================================
   CTA WRAPPER - Flex Layout
   ============================================== */
.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* ==============================================
   CTA CONTENT (Left Column)
   ============================================== */
.cta-content {
    flex: 1;
}

.cta-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

/* Decorative underline on heading */
.cta-heading::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--white);
    margin-top: 14px;
    border-radius: 10px;
    opacity: 0.6;
}

.cta-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--muted-text);
    max-width: 600px;
    margin-bottom: 20px;
}

/* ==============================================
   CTA FEATURES (Checkmark badges)
   ============================================== */
.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light-gray);
    background: var(--secondary-dark);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-features span:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.cta-features span i {
    color: #4CAF50; /* Green check - exception for trust signal */
    font-size: 1rem;
}

.cta-features span:hover i {
    color: var(--primary-dark);
}

/* ==============================================
   CTA ACTION (Right Column - Button)
   ============================================== */
.cta-action {
    flex-shrink: 0;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary-dark);
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid var(--white);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

/* Button shine effect on hover */
.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.cta-button:hover::before {
    opacity: 1;
    left: 60%;
}

.cta-button:hover {
    background: var(--secondary-dark);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(255, 255, 255, 0.2);
}

.cta-button i {
    font-size: 1.3rem;
    transition: 0.3s;
}

.cta-button:hover i {
    transform: rotate(-10deg) scale(1.1);
}

.cta-subtext {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin-top: 14px;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .cta-section {
        padding: 60px 0 50px 0;
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-heading {
        font-size: 2.2rem;
        text-align: center;
    }

    .cta-heading::after {
        margin: 14px auto 0 auto;
        width: 60px;
    }

    .cta-text {
        max-width: 100%;
        text-align: center;
        font-size: 1.05rem;
    }

    .cta-features {
        justify-content: center;
    }

    .cta-action {
        width: 100%;
    }

    .cta-button {
        padding: 16px 36px;
        font-size: 1rem;
        justify-content: center;
        width: 100%;
        max-width: 400px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .cta-section {
        padding: 40px 0 30px 0;
    }

    .cta-wrapper {
        gap: 24px;
    }

    .cta-heading {
        font-size: 1.8rem;
    }

    .cta-heading::after {
        width: 50px;
        height: 3px;
    }

    .cta-text {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .cta-features {
        gap: 12px;
    }

    .cta-features span {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
        gap: 10px;
    }

    .cta-button i {
        font-size: 1.1rem;
    }

    .cta-subtext {
        font-size: 0.8rem;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .cta-section {
        padding: 30px 0 20px 0;
    }

    .cta-heading {
        font-size: 1.5rem;
    }

    .cta-heading::after {
        width: 40px;
        height: 3px;
    }

    .cta-text {
        font-size: 0.88rem;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .cta-features span {
        font-size: 0.78rem;
        padding: 5px 14px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.88rem;
        gap: 8px;
        max-width: 100%;
    }

    .cta-button i {
        font-size: 1rem;
    }

    .cta-subtext {
        font-size: 0.75rem;
        margin-top: 10px;
    }
}
/* ==============================================
   SERVICE AREAS SECTION - Image Cards
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.service-areas-section {
    padding: 80px 0 70px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative top accent */
.service-areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--border-color), var(--primary-dark));
}

/* ==============================================
   SECTION HEADER
   ============================================== */
.service-areas-section .section-header {
    margin-bottom: 50px;
}

.service-areas-section .section-badge {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.service-areas-section .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.service-areas-section .section-title span {
    color: var(--primary-dark);
}

.service-areas-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-text);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==============================================
   AREA CARD LINK
   ============================================== */
.area-card-link {
    text-decoration: none;
    display: block;
}

/* ==============================================
   AREA CARD
   ============================================== */
.area-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(1, 17, 23, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    background: var(--white);
    height: 100%;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(1, 17, 23, 0.15);
    border-color: var(--primary-dark);
}

/* ==============================================
   AREA CARD IMAGE
   ============================================== */
.area-card-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

/* Zoom effect on hover */
.area-card:hover .area-card-image {
    transform: scale(1.05);
}

/* ==============================================
   OVERLAY - Light gradient at bottom only
   ============================================== */
.area-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 16px 16px 16px;
    background: linear-gradient(to top, rgba(1, 17, 23, 0.85) 0%, rgba(1, 17, 23, 0.4) 60%, transparent 100%);
    transition: all 0.4s ease;
}

/* Overlay darkens slightly on hover */
.area-card:hover .area-card-overlay {
    background: linear-gradient(to top, rgba(1, 17, 23, 0.95) 0%, rgba(1, 17, 23, 0.5) 60%, transparent 100%);
}

/* ==============================================
   AREA CARD TITLE
   ============================================== */
.area-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

/* Small location icon before title */
.area-card-title::before {
    content: '\f3c5'; /* Bootstrap geo-alt icon */
    font-family: 'bootstrap-icons';
    margin-right: 8px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Underline animation on hover */
.area-card-title::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--white);
    margin-top: 4px;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 10px;
}

.area-card:hover .area-card-title::after {
    width: 30px;
}

/* ==============================================
   VIEW ALL BUTTON
   ============================================== */
.btn-areas {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-dark);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--primary-dark);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(1, 17, 23, 0.06);
}

.btn-areas:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(1, 17, 23, 0.2);
}

.btn-areas i {
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-areas:hover i {
    transform: translateX(4px);
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .service-areas-section {
        padding: 60px 0 50px 0;
    }

    .service-areas-section .section-title {
        font-size: 2.2rem;
    }

    .service-areas-section .section-subtitle {
        font-size: 1rem;
    }

    .area-card-image {
        padding-bottom: 85%;
    }

    .area-card-title {
        font-size: 0.95rem;
    }

    .area-card-overlay {
        padding: 24px 14px 14px 14px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .service-areas-section {
        padding: 40px 0 30px 0;
    }

    .service-areas-section .section-header {
        margin-bottom: 30px;
    }

    .service-areas-section .section-title {
        font-size: 1.8rem;
    }

    .service-areas-section .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .service-areas-section .section-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
    }

    .area-card {
        border-radius: 12px;
    }

    .area-card-image {
        padding-bottom: 100%; /* Square on mobile for better view */
    }

    .area-card-title {
        font-size: 0.85rem;
    }

    .area-card-title::before {
        font-size: 0.75rem;
    }

    .area-card-overlay {
        padding: 18px 12px 12px 12px;
    }

    .btn-areas {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .service-areas-section {
        padding: 30px 0 20px 0;
    }

    .service-areas-section .section-title {
        font-size: 1.5rem;
    }

    .area-card {
        border-radius: 10px;
    }

    .area-card-image {
        padding-bottom: 100%;
    }

    .area-card-title {
        font-size: 0.78rem;
    }

    .area-card-title::before {
        font-size: 0.7rem;
        margin-right: 5px;
    }

    .area-card-overlay {
        padding: 14px 10px 10px 10px;
    }

    .area-card-title::after {
        height: 1.5px;
    }

    .area-card:hover .area-card-title::after {
        width: 20px;
    }

    .btn-areas {
        padding: 10px 24px;
        font-size: 0.82rem;
        gap: 8px;
    }

    .btn-areas i {
        font-size: 0.95rem;
    }

    .row.g-4 {
        --bs-gutter-y: 12px;
        --bs-gutter-x: 12px;
    }
}
/* ==============================================
   SERVICES HOME SECTION - Icons Removed, Content Bottom
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.services-home-section {
    padding: 80px 0 70px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative top accent */
.services-home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--border-color), var(--primary-dark));
}

/* ==============================================
   SECTION HEADER
   ============================================== */
.services-home-section .section-header {
    margin-bottom: 50px;
}

.services-home-section .section-badge {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.services-home-section .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.services-home-section .section-title span {
    color: var(--primary-dark);
}

.services-home-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-text);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==============================================
   SERVICES GRID
   ============================================== */
.services-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ==============================================
   SERVICE ITEM
   ============================================== */
.service-home-item {
    position: relative;
}

.service-home-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

/* ==============================================
   SERVICE CARD
   ============================================== */
.service-home-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    height: 100%;
    min-height: 400px;
}

.service-home-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(1, 17, 23, 0.18);
    border-color: var(--primary-dark);
}

/* ==============================================
   CARD IMAGE - Full Card
   ============================================== */
.service-home-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-home-card:hover .service-home-image {
    transform: scale(1.06);
}

/* ==============================================
   OVERLAY - Gradient from top (transparent) to bottom (dark)
   Content is pushed to bottom using flex
   ============================================== */
.service-home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(1, 17, 23, 0.10) 0%,
        rgba(1, 17, 23, 0.40) 35%,
        rgba(1, 17, 23, 0.85) 70%,
        rgba(1, 17, 23, 0.95) 100%
    );
    display: flex;
    align-items: flex-end;  /* ★ Content ko bottom par align karo ★ */
    padding: 30px 28px 28px 28px;
    transition: all 0.4s ease;
}

/* Overlay darkens on hover */
.service-home-card:hover .service-home-overlay {
    background: linear-gradient(
        to bottom,
        rgba(1, 17, 23, 0.15) 0%,
        rgba(1, 17, 23, 0.50) 35%,
        rgba(1, 17, 23, 0.90) 70%,
        rgba(1, 17, 23, 0.97) 100%
    );
}

/* ==============================================
   CARD CONTENT - Bottom aligned
   ============================================== */
.service-home-content {
    color: var(--white);
    width: 100%;
    position: relative;
    z-index: 1;
    padding-bottom: 6px;
}

/* ==============================================
   CARD TITLE
   ============================================== */
.service-home-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
    transition: 0.3s;
}

/* Decorative underline on title */
.service-home-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--white);
    margin-top: 8px;
    border-radius: 10px;
    opacity: 0.6;
    transition: width 0.4s ease;
}

.service-home-card:hover .service-home-title::after {
    width: 60px;
    opacity: 1;
}

/* ==============================================
   CARD TEXT
   ============================================== */
.service-home-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==============================================
   CARD BUTTON
   ============================================== */
.service-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.service-home-card:hover .service-home-btn {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.service-home-btn i {
    transition: 0.3s;
}

.service-home-card:hover .service-home-btn i {
    transform: translateX(4px);
}

/* ==============================================
   VIEW ALL SERVICES BUTTON
   ============================================== */
.btn-services-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid var(--primary-dark);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.15);
}

.btn-services-home:hover {
    background: var(--secondary-dark);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 45px rgba(1, 17, 23, 0.25);
}

.btn-services-home i {
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-services-home:hover i {
    transform: translateX(4px);
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .services-home-section {
        padding: 60px 0 50px 0;
    }

    .services-home-section .section-title {
        font-size: 2.2rem;
    }

    .services-home-section .section-subtitle {
        font-size: 1rem;
    }

    .services-home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-home-card {
        min-height: 340px;
    }

    .service-home-image {
        min-height: 340px;
    }

    .service-home-title {
        font-size: 1.05rem;
    }

    .service-home-text {
        font-size: 0.87rem;
        -webkit-line-clamp: 2;
    }

    .service-home-overlay {
        padding: 24px 22px 22px 22px;
    }

    .btn-services-home {
        padding: 14px 36px;
        font-size: 0.95rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .services-home-section {
        padding: 40px 0 30px 0;
    }

    .services-home-section .section-header {
        margin-bottom: 30px;
    }

    .services-home-section .section-title {
        font-size: 1.8rem;
    }

    .services-home-section .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .services-home-section .section-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
    }

    .services-home-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 420px;
        margin: 0 auto;
    }

    .service-home-card {
        border-radius: 16px;
        min-height: 300px;
    }

    .service-home-image {
        min-height: 300px;
    }

    .service-home-overlay {
        padding: 20px 18px 18px 18px;
    }

    .service-home-title {
        font-size: 1rem;
    }

    .service-home-title::after {
        width: 30px;
        height: 2px;
        margin-top: 6px;
    }

    .service-home-card:hover .service-home-title::after {
        width: 45px;
    }

    .service-home-text {
        font-size: 0.83rem;
        -webkit-line-clamp: 2;
        margin-bottom: 12px;
    }

    .service-home-btn {
        font-size: 0.8rem;
        padding: 6px 18px;
    }

    .btn-services-home {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .services-home-section {
        padding: 30px 0 20px 0;
    }

    .services-home-section .section-title {
        font-size: 1.5rem;
    }

    .services-home-grid {
        gap: 14px;
        max-width: 100%;
    }

    .service-home-card {
        border-radius: 14px;
        min-height: 260px;
    }

    .service-home-image {
        min-height: 260px;
    }

    .service-home-overlay {
        padding: 16px 14px 14px 14px;
    }

    .service-home-title {
        font-size: 0.9rem;
    }

    .service-home-title::after {
        width: 25px;
        margin-top: 5px;
    }

    .service-home-card:hover .service-home-title::after {
        width: 35px;
    }

    .service-home-text {
        font-size: 0.78rem;
        -webkit-line-clamp: 2;
        margin-bottom: 10px;
    }

    .service-home-btn {
        font-size: 0.75rem;
        padding: 5px 16px;
        gap: 6px;
    }

    .service-home-btn i {
        font-size: 0.7rem;
    }

    .btn-services-home {
        padding: 10px 24px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .btn-services-home i {
        font-size: 1rem;
    }
}

/* ==============================================
   HERO SECTION - Background Image + Left Content
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 60px 0;
}

/* ==============================================
   BACKGROUND IMAGE (Full Width)
   ============================================== */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('<?php echo SITE_URL; ?>/assets/images/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* ==============================================
   OVERLAY - Only on the left content area
   NOT on the entire image
   ============================================== */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(1, 17, 23, 0.92) 0%,
        rgba(1, 17, 23, 0.85) 40%,
        rgba(1, 17, 23, 0.50) 70%,
        transparent 100%
    );
    z-index: 1;
}

/* ==============================================
   CONTAINER
   ============================================== */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ==============================================
   HERO CONTENT (Left Side)
   ============================================== */
.hero-content {
    max-width: 620px;
    padding: 20px 0;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
}

.hero-badge i {
    color: #F59E0B;
    font-size: 0.9rem;
}

/* Heading */
.hero-heading {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}

/* Heading underline decoration */
.hero-heading::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--white);
    margin-top: 16px;
    border-radius: 10px;
    opacity: 0.5;
}

/* Text */
.hero-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    max-width: 520px;
}

/* ==============================================
   HERO BUTTONS
   ============================================== */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

/* Primary Button */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-dark);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--white);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.btn-hero-primary:hover {
    background: var(--secondary-dark);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(255, 255, 255, 0.2);
}

.btn-hero-primary i {
    font-size: 1.1rem;
}

/* Secondary Button */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.btn-hero-secondary i {
    font-size: 1.1rem;
}

/* ==============================================
   HERO FEATURES
   ============================================== */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.hero-features span i {
    color: #4CAF50;
    font-size: 1rem;
}

/* ==============================================
   HERO FORM (Right Side)
   ============================================== */
.hero-form {
    background: var(--white);
    padding: 32px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-form-title i {
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.hero-form .form-group {
    margin-bottom: 14px;
}

.hero-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--secondary-dark);
    transition: all 0.3s ease;
    background: var(--white);
}

.hero-form .form-control:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 4px rgba(1, 17, 23, 0.06);
    outline: none;
}

.hero-form .form-control::placeholder {
    color: var(--muted-text);
}

.hero-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.btn-form-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary-dark);
    color: var(--white);
    border: 2px solid var(--primary-dark);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.btn-form-submit:hover {
    background: var(--secondary-dark);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(1, 17, 23, 0.2);
}

/* ==============================================
   WAVE DIVIDER
   ============================================== */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

.hero-wave svg path {
    fill: var(--white);
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Large Screens */
@media (max-width: 1199.98px) {
    .hero-heading {
        font-size: 2.8rem;
    }

    .hero-overlay {
        width: 70%;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 500px;
        padding: 60px 0 40px 0;
    }

    .hero-overlay {
        width: 100%;
        background: linear-gradient(
            to bottom,
            rgba(1, 17, 23, 0.92) 0%,
            rgba(1, 17, 23, 0.85) 60%,
            rgba(1, 17, 23, 0.70) 100%
        );
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0;
    }

    .hero-heading {
        font-size: 2.4rem;
    }

    .hero-heading::after {
        margin: 14px auto 0 auto;
    }

    .hero-text {
        max-width: 100%;
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-form {
        margin: 30px auto 0 auto;
        max-width: 420px;
    }

    .hero-wave svg {
        height: 40px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 450px;
        padding: 40px 0 30px 0;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-heading::after {
        width: 50px;
        height: 3px;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .hero-features {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-features span {
        font-size: 0.8rem;
    }

    .hero-form {
        padding: 24px 20px;
        border-radius: 16px;
        max-width: 100%;
    }

    .hero-form-title {
        font-size: 1rem;
    }

    .hero-form .form-control {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .btn-form-submit {
        padding: 12px;
        font-size: 0.95rem;
    }

    .hero-wave svg {
        height: 30px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .hero-section {
        min-height: 400px;
        padding: 30px 0 20px 0;
    }

    .hero-heading {
        font-size: 1.6rem;
    }

    .hero-heading::after {
        width: 40px;
        height: 2px;
        margin-top: 10px;
    }

    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 5px 14px;
        gap: 6px;
    }

    .hero-badge i {
        font-size: 0.75rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 10px 24px;
        font-size: 0.88rem;
        max-width: 280px;
        gap: 8px;
    }

    .btn-hero-primary i,
    .btn-hero-secondary i {
        font-size: 0.95rem;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-features span {
        font-size: 0.75rem;
        gap: 4px;
    }

    .hero-features span i {
        font-size: 0.85rem;
    }

    .hero-form {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .hero-form .form-group {
        margin-bottom: 10px;
    }

    .hero-form .form-control {
        padding: 8px 12px;
        font-size: 0.82rem;
        border-radius: 10px;
    }

    .btn-form-submit {
        padding: 10px;
        font-size: 0.88rem;
        border-radius: 10px;
    }

    .hero-wave svg {
        height: 25px;
    }
}
/* ==============================================
   404 ERROR PAGE - Professional Dark Theme
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.error-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.error-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(1, 17, 23, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.error-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(1, 17, 23, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ==============================================
   ERROR CONTENT
   ============================================== */
.error-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ==============================================
   ERROR ICON
   ============================================== */
.error-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 40px rgba(1, 17, 23, 0.15);
    animation: errorPulse 3s ease-in-out infinite;
    position: relative;
}

/* Glow ring around icon */
.error-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--primary-dark);
    opacity: 0.15;
    animation: errorRing 3s ease-in-out infinite;
}

@keyframes errorPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

@keyframes errorRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* ==============================================
   ERROR NUMBER - 404
   ============================================== */
.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -4px;
    text-shadow: 0 8px 40px rgba(1, 17, 23, 0.08);
    position: relative;
}

/* Glitch effect on 404 */
.error-number::before {
    content: '404';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: var(--border-color);
    opacity: 0.08;
    transform: translate(4px, 4px);
    z-index: -1;
}

/* ==============================================
   ERROR HEADING
   ============================================== */
.error-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-dark);
    margin-bottom: 12px;
}

/* ==============================================
   ERROR TEXT
   ============================================== */
.error-text {
    font-size: 1.15rem;
    color: var(--muted-text);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ==============================================
   ERROR BUTTONS
   ============================================== */
.error-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* Primary Button - Go Home */
.btn-error-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--primary-dark);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.15);
}

.btn-error-primary:hover {
    background: var(--secondary-dark);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 45px rgba(1, 17, 23, 0.25);
}

.btn-error-primary i {
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-error-primary:hover i {
    transform: translateX(-3px);
}

/* Secondary Button - View Services */
.btn-error-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-dark);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--secondary-dark);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-error-secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 45px rgba(1, 17, 23, 0.2);
}

.btn-error-secondary i {
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-error-secondary:hover i {
    transform: translateX(-3px);
}

/* Outline Button - Contact Us */
.btn-error-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-dark);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--primary-dark);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-error-outline:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 45px rgba(1, 17, 23, 0.15);
}

.btn-error-outline i {
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-error-outline:hover i {
    transform: translateX(-3px);
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .error-number {
        font-size: 6.5rem;
        letter-spacing: -3px;
    }

    .error-heading {
        font-size: 1.8rem;
    }

    .error-icon {
        width: 80px;
        height: 80px;
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .error-text {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .error-section {
        min-height: 60vh;
        padding: 40px 0;
    }

    .error-number {
        font-size: 5rem;
        letter-spacing: -2px;
    }

    .error-heading {
        font-size: 1.5rem;
    }

    .error-icon {
        width: 68px;
        height: 68px;
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .error-text {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .error-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-error-primary,
    .btn-error-secondary,
    .btn-error-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .error-section {
        min-height: 55vh;
        padding: 30px 0;
    }

    .error-number {
        font-size: 4rem;
        letter-spacing: -1px;
    }

    .error-number::before {
        transform: translate(2px, 2px);
    }

    .error-heading {
        font-size: 1.3rem;
    }

    .error-icon {
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
        margin-bottom: 14px;
    }

    .error-icon::before {
        inset: -4px;
    }

    .error-text {
        font-size: 0.88rem;
    }

    .btn-error-primary,
    .btn-error-secondary,
    .btn-error-outline {
        padding: 10px 24px;
        font-size: 0.88rem;
        max-width: 280px;
        gap: 8px;
    }

    .btn-error-primary i,
    .btn-error-secondary i,
    .btn-error-outline i {
        font-size: 0.95rem;
    }
}
/* ==============================================
   PAGE HERO - Background Image with Overlay
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.page-hero {
    position: relative;
    padding: 80px 0 70px 0;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ==============================================
   BACKGROUND IMAGE (Full Width)
   ============================================== */
.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('<?php echo SITE_URL; ?>/assets/images/services/smart-thermostats.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Subtle zoom on load */
.page-hero:hover .page-hero-bg {
    transform: scale(1.03);
}

/* ==============================================
   OVERLAY - Dark gradient on full image
   ============================================== */
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(1, 17, 23, 0.88) 0%,
        rgba(1, 17, 23, 0.75) 50%,
        rgba(1, 17, 23, 0.50) 80%,
        rgba(1, 17, 23, 0.20) 100%
    );
    z-index: 1;
}

/* ==============================================
   CONTAINER
   ============================================== */
.page-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ==============================================
   PAGE HERO CONTENT
   ============================================== */
.page-hero-content {
    max-width: 700px;
}

/* ==============================================
   PAGE HERO TITLE
   ============================================== */
.page-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
}

/* Decorative underline */
.page-hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--white);
    margin-top: 14px;
    border-radius: 10px;
    opacity: 0.6;
}

/* ==============================================
   PAGE HERO SUBTITLE
   ============================================== */
.page-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    max-width: 550px;
}

/* ==============================================
   BREADCRUMB
   ============================================== */
.page-hero .breadcrumb {
    padding: 0;
    margin: 0;
    background: transparent;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.page-hero .breadcrumb-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255, 255, 255, 0.4);
    padding-right: 6px;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.page-hero .breadcrumb-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.page-hero .breadcrumb-item a:hover {
    color: var(--white);
}

.page-hero .breadcrumb-item a:hover::after {
    width: 100%;
}

.page-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Large Screens */
@media (max-width: 1199.98px) {
    .page-hero-title {
        font-size: 2.8rem;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .page-hero {
        padding: 60px 0 50px 0;
        min-height: 300px;
    }

    .page-hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(1, 17, 23, 0.90) 0%,
            rgba(1, 17, 23, 0.80) 60%,
            rgba(1, 17, 23, 0.50) 100%
        );
    }

    .page-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .page-hero-title {
        font-size: 2.4rem;
    }

    .page-hero-title::after {
        margin: 14px auto 0 auto;
        width: 50px;
    }

    .page-hero-subtitle {
        max-width: 100%;
        font-size: 1.05rem;
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero .breadcrumb {
        justify-content: center;
    }

    .page-hero .breadcrumb-item {
        font-size: 0.85rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .page-hero {
        padding: 50px 0 40px 0;
        min-height: 260px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-title::after {
        width: 40px;
        height: 3px;
        margin-top: 10px;
    }

    .page-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .page-hero .breadcrumb-item {
        font-size: 0.8rem;
    }

    .page-hero .breadcrumb-item a::after {
        height: 1.5px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .page-hero {
        padding: 40px 0 30px 0;
        min-height: 220px;
    }

    .page-hero-title {
        font-size: 1.6rem;
    }

    .page-hero-title::after {
        width: 30px;
        height: 2px;
        margin-top: 8px;
    }

    .page-hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 14px;
    }

    .page-hero .breadcrumb-item {
        font-size: 0.75rem;
    }

    .page-hero .breadcrumb-item + .breadcrumb-item::before {
        font-size: 0.75rem;
    }

    .page-hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(1, 17, 23, 0.92) 0%,
            rgba(1, 17, 23, 0.85) 70%,
            rgba(1, 17, 23, 0.60) 100%
        );
    }
}
/* ==============================================
   ABOUT MAIN SECTION - Image Right
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.about-main-section {
    padding: 70px 0 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative top accent */
.about-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--border-color), var(--primary-dark));
}

/* ==============================================
   WRAPPER - Flex layout for image right
   ============================================== */
.about-main-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
}

/* ==============================================
   CONTENT COLUMN (Left)
   ============================================== */
.about-main-content {
    flex: 1;
    min-width: 0;
}

/* Badge */
.about-main-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.about-main-badge i {
    font-size: 0.9rem;
}

/* Heading */
.about-main-heading {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 18px;
}

/* Decorative underline */
.about-main-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-dark);
    margin-top: 14px;
    border-radius: 10px;
}

/* Lead Text */
.about-main-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-dark);
    margin-bottom: 18px;
    font-weight: 500;
}

/* Body Text */
.about-main-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted-text);
    margin-bottom: 14px;
}

.about-main-text:last-of-type {
    margin-bottom: 20px;
}

/* ==============================================
   FEATURES (Checkmarks)
   ============================================== */
.about-main-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.about-main-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-dark);
}

.about-main-features span i {
    color: var(--primary-dark);
    font-size: 1rem;
}

/* ==============================================
   CTA BUTTON
   ============================================== */
.btn-about-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--primary-dark);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.15);
}

.btn-about-main:hover {
    background: var(--secondary-dark);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 45px rgba(1, 17, 23, 0.25);
}

.btn-about-main i {
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-about-main:hover i {
    transform: rotate(-10deg);
}

/* ==============================================
   IMAGE COLUMN (Right)
   ============================================== */
.about-main-image-col {
    flex: 1;
    min-width: 0;
}

.about-main-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(1, 17, 23, 0.12);
}

.about-main-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-main-image-wrapper:hover .about-main-image {
    transform: scale(1.04);
}

/* Image Badge - Floating */
.about-main-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

.about-main-image-badge i {
    font-size: 1.2rem;
}

/* Decorative corner ornament */
.about-main-image-wrapper::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-dark);
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

/* ==============================================
   STATS ROW (Below)
   ============================================== */
.about-main-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 40px;
    border-top: 2px solid var(--light-gray);
    margin-top: 10px;
}

.about-main-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--light-gray);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
}

.about-main-stat:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(1, 17, 23, 0.12);
}

.about-main-stat:hover .stat-icon i {
    color: var(--white);
}

.about-main-stat:hover .stat-number {
    color: var(--white);
}

.about-main-stat:hover .stat-label {
    color: var(--light-gray);
}

.about-main-stat .stat-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-main-stat .stat-icon i {
    font-size: 1.8rem;
    color: var(--primary-dark);
    transition: 0.3s;
}

.about-main-stat .stat-info {
    flex: 1;
    min-width: 0;
}

.about-main-stat .stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.2;
    transition: 0.3s;
}

.about-main-stat .stat-label {
    font-size: 0.75rem;
    color: var(--muted-text);
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Large Screens */
@media (max-width: 1199.98px) {
    .about-main-wrapper {
        gap: 40px;
    }

    .about-main-heading {
        font-size: 2rem;
    }

    .about-main-image {
        min-height: 360px;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .about-main-section {
        padding: 50px 0 40px 0;
    }

    .about-main-wrapper {
        flex-direction: column-reverse;
        gap: 30px;
        margin-bottom: 30px;
    }

    .about-main-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    .about-main-heading::after {
        margin: 14px auto 0 auto;
        width: 50px;
    }

    .about-main-lead {
        text-align: center;
        font-size: 1rem;
    }

    .about-main-text {
        text-align: center;
        font-size: 0.92rem;
    }

    .about-main-features {
        justify-content: center;
    }

    .about-main-cta {
        text-align: center;
    }

    .about-main-image {
        min-height: 320px;
    }

    .about-main-image-wrapper::after {
        width: 60px;
        height: 60px;
        top: -8px;
        right: -8px;
    }

    .about-main-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding-top: 30px;
    }

    .about-main-stat {
        padding: 14px 16px;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .about-main-section {
        padding: 40px 0 30px 0;
    }

    .about-main-wrapper {
        gap: 24px;
    }

    .about-main-heading {
        font-size: 1.5rem;
    }

    .about-main-heading::after {
        width: 40px;
        height: 3px;
        margin-top: 10px;
    }

    .about-main-lead {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .about-main-text {
        font-size: 0.88rem;
        margin-bottom: 10px;
    }

    .about-main-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
        margin-bottom: 12px;
    }

    .about-main-features {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

    .about-main-features span {
        font-size: 0.85rem;
    }

    .btn-about-main {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .about-main-image {
        min-height: 260px;
        border-radius: 14px;
    }

    .about-main-image-wrapper {
        border-radius: 14px;
    }

    .about-main-image-badge {
        bottom: 16px;
        left: 16px;
        padding: 8px 18px;
        font-size: 0.8rem;
        gap: 8px;
    }

    .about-main-image-badge i {
        font-size: 1rem;
    }

    .about-main-image-wrapper::after {
        width: 40px;
        height: 40px;
        top: -6px;
        right: -6px;
        border-width: 2px;
    }

    .about-main-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding-top: 24px;
    }

    .about-main-stat {
        padding: 12px 14px;
        border-radius: 10px;
        gap: 12px;
    }

    .about-main-stat .stat-icon {
        width: 36px;
        height: 36px;
    }

    .about-main-stat .stat-icon i {
        font-size: 1.4rem;
    }

    .about-main-stat .stat-number {
        font-size: 1.1rem;
    }

    .about-main-stat .stat-label {
        font-size: 0.65rem;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .about-main-section {
        padding: 30px 0 20px 0;
    }

    .about-main-heading {
        font-size: 1.3rem;
    }

    .about-main-heading::after {
        width: 30px;
        height: 2px;
    }

    .about-main-lead {
        font-size: 0.9rem;
    }

    .about-main-text {
        font-size: 0.85rem;
    }

    .about-main-image {
        min-height: 200px;
    }

    .about-main-image-badge {
        bottom: 12px;
        left: 12px;
        padding: 6px 14px;
        font-size: 0.7rem;
        gap: 6px;
    }

    .about-main-image-badge i {
        font-size: 0.85rem;
    }

    .about-main-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding-top: 20px;
    }

    .about-main-stat {
        padding: 10px 12px;
        border-radius: 8px;
        gap: 10px;
    }

    .about-main-stat .stat-icon {
        width: 30px;
        height: 30px;
    }

    .about-main-stat .stat-icon i {
        font-size: 1.2rem;
    }

    .about-main-stat .stat-number {
        font-size: 0.95rem;
    }

    .about-main-stat .stat-label {
        font-size: 0.6rem;
    }

    .btn-about-main {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .about-main-features span {
        font-size: 0.8rem;
    }
}
/* ==============================================
   MISSION & VISION SECTION
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.mission-vision-section {
    padding: 70px 0 60px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

/* Decorative top accent */
.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--border-color), var(--primary-dark));
}

/* Subtle background pattern */
.mission-vision-section::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(1, 17, 23, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ==============================================
   MV CARD
   ============================================== */
.mv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px 32px 32px;
    height: 100%;
    border: 1px solid transparent;
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* Card hover effect */
.mv-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-dark);
    box-shadow: 0 20px 60px rgba(1, 17, 23, 0.12);
}

/* Decorative top line on hover */
.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.mv-card:hover::before {
    opacity: 1;
}

/* Mission card - different accent colors */
.mv-card:first-child::before {
    background: var(--primary-dark);
}

.mv-card:last-child::before {
    background: var(--secondary-dark);
}

/* ==============================================
   MV ICON
   ============================================== */
.mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mv-icon.mission {
    background: rgba(1, 17, 23, 0.08);
    color: var(--primary-dark);
}

.mv-card:hover .mv-icon.mission {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(1, 17, 23, 0.2);
}

.mv-icon.vision {
    background: rgba(22, 28, 36, 0.08);
    color: var(--secondary-dark);
}

.mv-card:hover .mv-icon.vision {
    background: var(--secondary-dark);
    color: var(--white);
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 30px rgba(22, 28, 36, 0.2);
}

/* ==============================================
   MV HEADING
   ============================================== */
.mv-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 6px;
    transition: color 0.3s;
}

.mv-card:hover .mv-heading {
    color: var(--primary-dark);
}

/* ==============================================
   MV SUBTITLE
   ============================================== */
.mv-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-dark);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-gray);
    transition: border-color 0.3s;
}

.mv-card:hover .mv-subtitle {
    border-bottom-color: var(--primary-dark);
}

/* ==============================================
   MV LIST
   ============================================== */
.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--muted-text);
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.mv-list li:last-child {
    border-bottom: none;
}

.mv-list li:hover {
    color: var(--secondary-dark);
    transform: translateX(4px);
}

.mv-list li i {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mv-list li:hover i {
    color: var(--primary-dark);
    transform: scale(1.15);
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .mission-vision-section {
        padding: 50px 0 40px 0;
    }

    .mv-card {
        padding: 28px 24px 24px 24px;
        border-radius: 16px;
    }

    .mv-heading {
        font-size: 1.3rem;
    }

    .mv-subtitle {
        font-size: 0.95rem;
    }

    .mv-icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
        border-radius: 14px;
    }

    .mv-list li {
        font-size: 0.88rem;
        padding: 6px 0;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .mission-vision-section {
        padding: 40px 0 30px 0;
    }

    .mv-card {
        padding: 24px 20px 20px 20px;
        border-radius: 14px;
    }

    .mv-card:hover {
        transform: translateY(-4px);
    }

    .mv-heading {
        font-size: 1.2rem;
    }

    .mv-subtitle {
        font-size: 0.9rem;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        border-radius: 12px;
        margin-bottom: 14px;
    }

    .mv-list li {
        font-size: 0.85rem;
        padding: 5px 0;
        gap: 10px;
    }

    .mv-list li i {
        font-size: 0.9rem;
        margin-top: 2px;
    }

    .row.g-4 {
        --bs-gutter-y: 16px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .mission-vision-section {
        padding: 30px 0 20px 0;
    }

    .mv-card {
        padding: 20px 16px 16px 16px;
        border-radius: 12px;
    }

    .mv-heading {
        font-size: 1.1rem;
    }

    .mv-subtitle {
        font-size: 0.85rem;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .mv-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .mv-list li {
        font-size: 0.82rem;
        padding: 4px 0;
        gap: 8px;
    }

    .mv-list li i {
        font-size: 0.8rem;
        margin-top: 2px;
    }

    .row.g-4 {
        --bs-gutter-y: 12px;
    }
}
/* ==============================================
   CORE VALUES SECTION
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.core-values-section {
    padding: 70px 0 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative top accent */
.core-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--border-color), var(--primary-dark));
}

/* Subtle background decoration */
.core-values-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(1, 17, 23, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ==============================================
   SECTION HEADER
   ============================================== */
.core-values-section .section-header {
    margin-bottom: 50px;
}

.core-values-section .section-badge {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.core-values-section .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 0;
}

/* ==============================================
   VALUES GRID - 5 Columns
   ============================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* ==============================================
   VALUE CARD
   ============================================== */
.value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 20px 28px 20px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(1, 17, 23, 0.04);
    position: relative;
    overflow: hidden;
}

/* Card hover effect */
.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-dark);
    box-shadow: 0 20px 60px rgba(1, 17, 23, 0.12);
}

/* Decorative top line on hover */
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.value-card:hover::before {
    opacity: 1;
}

/* Different colors for each value */
.value-card:nth-child(1)::before {
    background: var(--primary-dark);
}
.value-card:nth-child(2)::before {
    background: var(--secondary-dark);
}
.value-card:nth-child(3)::before {
    background: var(--border-color);
}
.value-card:nth-child(4)::before {
    background: var(--muted-text);
}
.value-card:nth-child(5)::before {
    background: var(--primary-dark);
}

/* ==============================================
   VALUE ICON
   ============================================== */
.value-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 16px auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Individual icon styles */
.value-icon.integrity {
    background: rgba(1, 17, 23, 0.08);
    color: var(--primary-dark);
}

.value-card:hover .value-icon.integrity {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(1, 17, 23, 0.2);
}

.value-icon.excellence {
    background: rgba(22, 28, 36, 0.08);
    color: var(--secondary-dark);
}

.value-card:hover .value-icon.excellence {
    background: var(--secondary-dark);
    color: var(--white);
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 30px rgba(22, 28, 36, 0.2);
}

.value-icon.professionalism {
    background: rgba(42, 49, 60, 0.08);
    color: var(--border-color);
}

.value-card:hover .value-icon.professionalism {
    background: var(--border-color);
    color: var(--white);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(42, 49, 60, 0.2);
}

.value-icon.reliability {
    background: rgba(156, 163, 175, 0.12);
    color: var(--muted-text);
}

.value-card:hover .value-icon.reliability {
    background: var(--muted-text);
    color: var(--white);
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 30px rgba(156, 163, 175, 0.2);
}

.value-icon.commitment {
    background: rgba(1, 17, 23, 0.08);
    color: var(--primary-dark);
}

.value-card:hover .value-icon.commitment {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(1, 17, 23, 0.2);
}

/* ==============================================
   VALUE TITLE
   ============================================== */
.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.value-card:hover .value-title {
    color: var(--primary-dark);
}

/* ==============================================
   VALUE TEXT
   ============================================== */
.value-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--muted-text);
    margin: 0;
    transition: color 0.3s;
}

.value-card:hover .value-text {
    color: var(--secondary-dark);
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Large Screens */
@media (max-width: 1199.98px) {
    .values-grid {
        gap: 20px;
    }

    .value-card {
        padding: 28px 16px 24px 16px;
    }

    .value-icon {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
    }

    .value-title {
        font-size: 1rem;
    }

    .value-text {
        font-size: 0.85rem;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .core-values-section {
        padding: 50px 0 40px 0;
    }

    .core-values-section .section-title {
        font-size: 2.2rem;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .value-card {
        padding: 24px 16px 20px 16px;
        border-radius: 16px;
    }

    .value-icon {
        width: 58px;
        height: 58px;
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .value-title {
        font-size: 0.95rem;
    }

    .value-text {
        font-size: 0.82rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .core-values-section {
        padding: 40px 0 30px 0;
    }

    .core-values-section .section-header {
        margin-bottom: 30px;
    }

    .core-values-section .section-title {
        font-size: 1.8rem;
    }

    .core-values-section .section-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .value-card {
        padding: 20px 14px 16px 14px;
        border-radius: 14px;
    }

    .value-card:hover {
        transform: translateY(-6px);
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .value-title {
        font-size: 0.9rem;
    }

    .value-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .value-card::before {
        height: 3px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .core-values-section {
        padding: 30px 0 20px 0;
    }

    .core-values-section .section-title {
        font-size: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .value-card {
        padding: 16px 12px 14px 12px;
        border-radius: 12px;
    }

    .value-card:hover {
        transform: translateY(-4px);
    }

    .value-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .value-title {
        font-size: 0.82rem;
        margin-bottom: 4px;
    }

    .value-text {
        font-size: 0.72rem;
        line-height: 1.4;
    }

    .value-card::before {
        height: 2px;
    }
}

/* Extra Small Mobile (very tiny screens) */
@media (max-width: 400px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .value-card {
        padding: 12px 8px 10px 8px;
        border-radius: 10px;
    }

    .value-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .value-title {
        font-size: 0.75rem;
    }

    .value-text {
        font-size: 0.65rem;
        line-height: 1.3;
    }
}
/* ==============================================
   GALLERY HERO - Background Image
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.gallery-hero .page-hero-bg {
    background-image: url('<?php echo SITE_URL; ?>/assets/images/page-hero-gallery.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-hero .page-hero-overlay {
    background: linear-gradient(
        to right,
        rgba(1, 17, 23, 0.88) 0%,
        rgba(1, 17, 23, 0.75) 50%,
        rgba(1, 17, 23, 0.40) 80%,
        rgba(1, 17, 23, 0.10) 100%
    );
}

/* ==============================================
   GALLERY SECTION
   ============================================== */
.gallery-section {
    padding: 70px 0 60px 0;
    background: var(--white);
    position: relative;
}

/* ==============================================
   GALLERY GRID
   ============================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ==============================================
   GALLERY ITEM
   ============================================== */
.gallery-item {
    position: relative;
}

.gallery-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

/* ==============================================
   GALLERY CARD
   ============================================== */
.gallery-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(1, 17, 23, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-dark);
    box-shadow: 0 20px 60px rgba(1, 17, 23, 0.14);
}

/* ==============================================
   GALLERY IMAGE WRAPPER
   ============================================== */
.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--light-gray);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card:hover .gallery-image {
    transform: scale(1.08);
}

/* ==============================================
   GALLERY IMAGE OVERLAY (Appears on hover)
   ============================================== */
.gallery-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 17, 23, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(4px);
}

.gallery-card:hover .gallery-image-overlay {
    opacity: 1;
}

.gallery-image-overlay i {
    font-size: 2.5rem;
    color: var(--white);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card:hover .gallery-image-overlay i {
    transform: scale(1);
}

.gallery-image-overlay span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card:hover .gallery-image-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================================
   GALLERY BODY
   ============================================== */
.gallery-body {
    padding: 18px 20px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gallery-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.gallery-tag {
    font-size: 0.8rem;
    color: var(--muted-text);
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-tag i {
    font-size: 0.75rem;
}

.gallery-description {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

/* ==============================================
   GALLERY EMPTY STATE
   ============================================== */
.gallery-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--light-gray);
    border-radius: 20px;
    border: 2px dashed var(--border-color);
}

.empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--white);
    color: var(--border-color);
    font-size: 3.5rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(1, 17, 23, 0.06);
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 8px;
}

.empty-text {
    font-size: 1rem;
    color: var(--muted-text);
    margin: 0;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .gallery-section {
        padding: 50px 0 40px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-hero .page-hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(1, 17, 23, 0.90) 0%,
            rgba(1, 17, 23, 0.80) 60%,
            rgba(1, 17, 23, 0.50) 100%
        );
    }

    .gallery-card {
        border-radius: 16px;
    }

    .gallery-body {
        padding: 14px 16px 16px 16px;
    }

    .gallery-title {
        font-size: 0.95rem;
    }

    .gallery-empty {
        padding: 60px 20px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .gallery-section {
        padding: 40px 0 30px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .gallery-card {
        border-radius: 14px;
    }

    .gallery-image-wrapper {
        aspect-ratio: 1 / 1;
    }

    .gallery-body {
        padding: 12px 14px 14px 14px;
    }

    .gallery-title {
        font-size: 0.85rem;
    }

    .gallery-tag {
        font-size: 0.7rem;
    }

    .gallery-description {
        font-size: 0.78rem;
    }

    .gallery-image-overlay i {
        font-size: 1.8rem;
    }

    .gallery-image-overlay span {
        font-size: 0.75rem;
    }

    .gallery-empty {
        padding: 40px 16px;
        border-radius: 14px;
    }

    .empty-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .empty-title {
        font-size: 1.2rem;
    }

    .empty-text {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .gallery-section {
        padding: 30px 0 20px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-card {
        border-radius: 12px;
    }

    .gallery-body {
        padding: 10px 10px 12px 10px;
    }

    .gallery-title {
        font-size: 0.78rem;
    }

    .gallery-tag {
        font-size: 0.65rem;
        gap: 4px;
    }

    .gallery-tag i {
        font-size: 0.65rem;
    }

    .gallery-description {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .gallery-image-overlay i {
        font-size: 1.4rem;
    }

    .gallery-image-overlay span {
        font-size: 0.65rem;
    }

    .gallery-empty {
        padding: 30px 14px;
        border-radius: 12px;
    }

    .empty-icon {
        width: 56px;
        height: 56px;
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .empty-title {
        font-size: 1rem;
    }

    .empty-text {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .gallery-grid {
        gap: 8px;
    }

    .gallery-card {
        border-radius: 10px;
    }

    .gallery-body {
        padding: 8px 8px 10px 8px;
    }

    .gallery-title {
        font-size: 0.72rem;
    }

    .gallery-tag {
        font-size: 0.6rem;
    }

    .gallery-description {
        font-size: 0.65rem;
    }

    .gallery-image-overlay i {
        font-size: 1.2rem;
    }

    .gallery-image-overlay span {
        font-size: 0.6rem;
    }
}
/* ==============================================
   BLOG HERO - Background Image
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.blog-hero .page-hero-bg {
    background-image: url('<?php echo SITE_URL; ?>/assets/images/page-hero-blog.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-hero .page-hero-overlay {
    background: linear-gradient(
        to right,
        rgba(1, 17, 23, 0.88) 0%,
        rgba(1, 17, 23, 0.75) 50%,
        rgba(1, 17, 23, 0.40) 80%,
        rgba(1, 17, 23, 0.10) 100%
    );
}

/* ==============================================
   BLOG SECTION
   ============================================== */
.blog-section {
    padding: 70px 0 60px 0;
    background: var(--white);
    position: relative;
}

/* ==============================================
   BLOG GRID
   ============================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ==============================================
   BLOG ITEM
   ============================================== */
.blog-item {
    position: relative;
}

/* ==============================================
   BLOG CARD
   ============================================== */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(1, 17, 23, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-dark);
    box-shadow: 0 20px 60px rgba(1, 17, 23, 0.14);
}

/* ==============================================
   BLOG IMAGE WRAPPER
   ============================================== */
.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--light-gray);
    flex-shrink: 0;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-image {
    transform: scale(1.08);
}

/* ==============================================
   BLOG IMAGE PLACEHOLDER
   ============================================== */
.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    opacity: 0.6;
}

.blog-image-placeholder i {
    font-size: 3.5rem;
}

/* ==============================================
   BLOG IMAGE OVERLAY
   ============================================== */
.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 17, 23, 0.70);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(3px);
}

.blog-card:hover .blog-image-overlay {
    opacity: 1;
}

.blog-image-overlay i {
    font-size: 2.2rem;
    color: var(--white);
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-image-overlay i {
    transform: translateX(0);
}

.blog-image-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-image-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================================
   BLOG BODY
   ============================================== */
.blog-body {
    padding: 20px 22px 24px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Blog Date */
.blog-date {
    font-size: 0.8rem;
    color: var(--muted-text);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.blog-date i {
    font-size: 0.8rem;
}

/* Blog Title */
.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 10px 0;
    line-height: 1.4;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-title {
    color: var(--primary-dark);
}

/* Blog Excerpt */
.blog-excerpt {
    font-size: 0.9rem;
    color: var(--muted-text);
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Button */
.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    align-self: flex-start;
}

.blog-readmore i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.blog-readmore:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.blog-readmore:hover i {
    transform: translateX(6px);
}

/* ==============================================
   BLOG PAGINATION
   ============================================== */
.blog-pagination {
    margin-top: 40px;
}

.blog-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination .page-item {
    display: inline-block;
}

.blog-pagination .page-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    background: var(--white);
    color: var(--secondary-dark);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-pagination .page-link:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 17, 23, 0.15);
}

.blog-pagination .page-item.active .page-link {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(1, 17, 23, 0.2);
}

.blog-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.blog-pagination .page-link i {
    font-size: 0.8rem;
}

/* ==============================================
   BLOG EMPTY STATE
   ============================================== */
.blog-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--light-gray);
    border-radius: 20px;
    border: 2px dashed var(--border-color);
}

.blog-empty .empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--white);
    color: var(--border-color);
    font-size: 3.5rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(1, 17, 23, 0.06);
}

.blog-empty .empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 8px;
}

.blog-empty .empty-text {
    font-size: 1rem;
    color: var(--muted-text);
    margin: 0;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .blog-section {
        padding: 50px 0 40px 0;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .blog-hero .page-hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(1, 17, 23, 0.90) 0%,
            rgba(1, 17, 23, 0.80) 60%,
            rgba(1, 17, 23, 0.50) 100%
        );
    }

    .blog-card {
        border-radius: 16px;
    }

    .blog-image-wrapper {
        height: 200px;
    }

    .blog-body {
        padding: 16px 18px 18px 18px;
    }

    .blog-title {
        font-size: 1rem;
    }

    .blog-empty {
        padding: 60px 20px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .blog-section {
        padding: 40px 0 30px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 480px;
        margin: 0 auto;
    }

    .blog-card {
        border-radius: 14px;
    }

    .blog-image-wrapper {
        height: 200px;
    }

    .blog-body {
        padding: 14px 16px 16px 16px;
    }

    .blog-title {
        font-size: 0.95rem;
    }

    .blog-excerpt {
        font-size: 0.85rem;
    }

    .blog-date {
        font-size: 0.75rem;
    }

    .blog-image-overlay i {
        font-size: 1.8rem;
    }

    .blog-image-overlay span {
        font-size: 0.75rem;
    }

    .blog-pagination .page-link {
        padding: 8px 14px;
        font-size: 0.8rem;
        border-radius: 10px;
    }

    .blog-empty {
        padding: 40px 16px;
        border-radius: 14px;
    }

    .blog-empty .empty-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .blog-empty .empty-title {
        font-size: 1.2rem;
    }

    .blog-empty .empty-text {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .blog-section {
        padding: 30px 0 20px 0;
    }

    .blog-grid {
        gap: 14px;
        max-width: 100%;
    }

    .blog-card {
        border-radius: 12px;
    }

    .blog-image-wrapper {
        height: 180px;
    }

    .blog-body {
        padding: 12px 14px 14px 14px;
    }

    .blog-title {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }

    .blog-excerpt {
        font-size: 0.82rem;
        -webkit-line-clamp: 3;
    }

    .blog-readmore {
        font-size: 0.8rem;
    }

    .blog-pagination {
        margin-top: 30px;
    }

    .blog-pagination .page-link {
        padding: 6px 12px;
        font-size: 0.75rem;
        border-radius: 8px;
        gap: 2px;
    }

    .blog-pagination .page-link i {
        font-size: 0.7rem;
    }

    .blog-empty {
        padding: 30px 14px;
        border-radius: 12px;
    }

    .blog-empty .empty-icon {
        width: 56px;
        height: 56px;
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .blog-empty .empty-title {
        font-size: 1rem;
    }

    .blog-empty .empty-text {
        font-size: 0.8rem;
    }

    .blog-image-placeholder i {
        font-size: 2.5rem;
    }
}
/* ==============================================
   BLOG SINGLE HERO - Background Image
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.blog-single-hero .page-hero-bg {
    background-image: url('<?php echo SITE_URL; ?>/assets/images/page-hero-blog-single.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-single-hero .page-hero-overlay {
    background: linear-gradient(
        to right,
        rgba(1, 17, 23, 0.88) 0%,
        rgba(1, 17, 23, 0.75) 50%,
        rgba(1, 17, 23, 0.40) 80%,
        rgba(1, 17, 23, 0.10) 100%
    );
}

/* ==============================================
   BLOG SINGLE META
   ============================================== */
.blog-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
}

.blog-single-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.blog-single-meta span i {
    font-size: 0.9rem;
}

/* ==============================================
   BLOG SINGLE SECTION
   ============================================== */
.blog-single-section {
    padding: 60px 0 50px 0;
    background: var(--white);
}

/* ==============================================
   FEATURED IMAGE
   ============================================== */
.blog-single-featured {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 40px rgba(1, 17, 23, 0.10);
}

.blog-single-featured-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* ==============================================
   BLOG SINGLE CARD
   ============================================== */
.blog-single-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 44px;
    border: 1px solid var(--light-gray);
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.06);
}

/* ==============================================
   BLOG CONTENT (Dynamic)
   ============================================== */
.blog-single-content {
    color: var(--secondary-dark);
    line-height: 1.8;
}

.blog-single-content h1,
.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4,
.blog-single-content h5,
.blog-single-content h6 {
    color: var(--primary-dark);
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 700;
}

.blog-single-content h1 {
    font-size: 2.2rem;
}

.blog-single-content h2 {
    font-size: 1.8rem;
}

.blog-single-content h3 {
    font-size: 1.4rem;
}

.blog-single-content p {
    margin-bottom: 18px;
    color: var(--muted-text);
    font-size: 1.05rem;
}

.blog-single-content ul,
.blog-single-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.blog-single-content ul li,
.blog-single-content ol li {
    margin-bottom: 8px;
    color: var(--muted-text);
    font-size: 1.02rem;
}

.blog-single-content ul li::marker {
    color: var(--primary-dark);
}

.blog-single-content blockquote {
    border-left: 4px solid var(--primary-dark);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--light-gray);
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

.blog-single-content blockquote p {
    margin: 0;
    color: var(--secondary-dark);
}

.blog-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.blog-single-content a {
    color: var(--primary-dark);
    text-decoration: underline;
    transition: 0.3s;
}

.blog-single-content a:hover {
    color: var(--secondary-dark);
}

/* ==============================================
   BACK BUTTON
   ============================================== */
.blog-single-back {
    margin-top: 30px;
}

.btn-blog-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-blog-back:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(1, 17, 23, 0.15);
}

.btn-blog-back i {
    font-size: 1rem;
    transition: 0.3s;
}

.btn-blog-back:hover i {
    transform: translateX(-4px);
}

/* ==============================================
   SIDEBAR - Recent Posts
   ============================================== */
.blog-sidebar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 24px 24px 24px;
    border: 1px solid var(--light-gray);
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.06);
    margin-bottom: 24px;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px 0;
}

.sidebar-title i {
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.sidebar-divider {
    border: none;
    border-top: 2px solid var(--light-gray);
    margin: 0 0 16px 0;
    opacity: 1;
}

.sidebar-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-posts li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.sidebar-posts li:last-child {
    border-bottom: none;
}

.sidebar-posts li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--muted-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-posts li a i {
    font-size: 0.7rem;
    color: var(--primary-dark);
    transition: 0.3s;
}

.sidebar-posts li a:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.sidebar-posts li a:hover i {
    transform: translateX(4px);
}

/* ==============================================
   SIDEBAR - CTA
   ============================================== */
.blog-sidebar-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    border-radius: 20px;
    padding: 30px 24px 28px 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

/* Subtle glow effect */
.blog-sidebar-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 6px 0;
    position: relative;
    z-index: 1;
}

.cta-sidebar-title i {
    font-size: 1.2rem;
}

.cta-sidebar-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 18px 0;
    position: relative;
    z-index: 1;
}

.cta-sidebar-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.cta-sidebar-phone:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.cta-sidebar-phone i {
    font-size: 1.1rem;
}

.cta-sidebar-estimate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.cta-sidebar-estimate:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .blog-single-hero .page-hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(1, 17, 23, 0.90) 0%,
            rgba(1, 17, 23, 0.80) 60%,
            rgba(1, 17, 23, 0.50) 100%
        );
    }

    .blog-single-section {
        padding: 40px 0 30px 0;
    }

    .blog-single-card {
        padding: 30px 28px;
        border-radius: 16px;
    }

    .blog-single-featured {
        border-radius: 16px;
    }

    .blog-single-featured-img {
        max-height: 350px;
    }

    .blog-single-content h1 {
        font-size: 1.8rem;
    }

    .blog-single-content h2 {
        font-size: 1.5rem;
    }

    .blog-single-content p {
        font-size: 0.98rem;
    }

    .blog-sidebar-card {
        padding: 24px 20px 20px 20px;
        border-radius: 16px;
    }

    .blog-sidebar-cta {
        border-radius: 16px;
        padding: 26px 20px 24px 20px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .blog-single-section {
        padding: 30px 0 20px 0;
    }

    .blog-single-meta {
        gap: 12px;
        justify-content: center;
    }

    .blog-single-meta span {
        font-size: 0.8rem;
    }

    .blog-single-card {
        padding: 20px 18px;
        border-radius: 14px;
    }

    .blog-single-featured {
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .blog-single-featured-img {
        max-height: 250px;
    }

    .blog-single-content h1 {
        font-size: 1.5rem;
        margin-top: 20px;
    }

    .blog-single-content h2 {
        font-size: 1.3rem;
    }

    .blog-single-content h3 {
        font-size: 1.1rem;
    }

    .blog-single-content p {
        font-size: 0.92rem;
        margin-bottom: 14px;
    }

    .blog-single-content ul li,
    .blog-single-content ol li {
        font-size: 0.9rem;
    }

    .blog-single-content blockquote {
        padding: 12px 18px;
        margin: 18px 0;
    }

    .blog-single-back {
        margin-top: 20px;
        text-align: center;
    }

    .btn-blog-back {
        padding: 10px 24px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .blog-sidebar-card {
        padding: 20px 16px 16px 16px;
        border-radius: 14px;
    }

    .blog-sidebar-cta {
        padding: 22px 16px 20px 16px;
        border-radius: 14px;
    }

    .cta-sidebar-title {
        font-size: 1rem;
    }

    .cta-sidebar-text {
        font-size: 0.85rem;
    }

    .cta-sidebar-phone {
        font-size: 0.95rem;
        padding: 12px 16px;
    }

    .cta-sidebar-estimate {
        font-size: 0.88rem;
        padding: 10px 16px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .blog-single-card {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .blog-single-featured-img {
        max-height: 200px;
    }

    .blog-single-content h1 {
        font-size: 1.3rem;
    }

    .blog-single-content h2 {
        font-size: 1.1rem;
    }

    .blog-single-content p {
        font-size: 0.88rem;
    }

    .blog-single-content ul li,
    .blog-single-content ol li {
        font-size: 0.85rem;
    }

    .blog-single-content blockquote {
        padding: 10px 14px;
        margin: 14px 0;
    }

    .btn-blog-back {
        font-size: 0.82rem;
        padding: 8px 20px;
    }

    .cta-sidebar-phone {
        font-size: 0.88rem;
        padding: 10px 14px;
    }

    .cta-sidebar-estimate {
        font-size: 0.82rem;
        padding: 8px 14px;
    }
}
/* ==============================================
   PAGE HERO - Base Styles
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.page-hero {
    position: relative;
    padding: 80px 0 70px 0;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ==============================================
   BACKGROUND IMAGE (Full Width)
   ============================================== */
.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-hero:hover .page-hero-bg {
    transform: scale(1.03);
}

/* ==============================================
   CONTACT HERO - Specific Background Image
   ============================================== */
.contact-hero .page-hero-bg {
    background-image: url('<?php echo SITE_URL; ?>/assets/images/page-hero-contact.jpg');
}

/* ==============================================
   OVERLAY - Dark gradient on full image
   ============================================== */
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(1, 17, 23, 0.88) 0%,
        rgba(1, 17, 23, 0.75) 50%,
        rgba(1, 17, 23, 0.40) 80%,
        rgba(1, 17, 23, 0.10) 100%
    );
    z-index: 1;
}

/* ==============================================
   CONTAINER
   ============================================== */
.page-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ==============================================
   PAGE HERO CONTENT
   ============================================== */
.page-hero-content {
    max-width: 700px;
}

/* ==============================================
   PAGE HERO TITLE
   ============================================== */
.page-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
}

/* Decorative underline */
.page-hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--white);
    margin-top: 14px;
    border-radius: 10px;
    opacity: 0.6;
}

/* ==============================================
   PAGE HERO SUBTITLE
   ============================================== */
.page-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    max-width: 550px;
}

/* ==============================================
   BREADCRUMB
   ============================================== */
.page-hero .breadcrumb {
    padding: 0;
    margin: 0;
    background: transparent;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.page-hero .breadcrumb-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255, 255, 255, 0.4);
    padding-right: 6px;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.page-hero .breadcrumb-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.page-hero .breadcrumb-item a:hover {
    color: var(--white);
}

.page-hero .breadcrumb-item a:hover::after {
    width: 100%;
}

.page-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Large Screens */
@media (max-width: 1199.98px) {
    .page-hero-title {
        font-size: 2.8rem;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .page-hero {
        padding: 60px 0 50px 0;
        min-height: 300px;
    }

    .page-hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(1, 17, 23, 0.90) 0%,
            rgba(1, 17, 23, 0.80) 60%,
            rgba(1, 17, 23, 0.50) 100%
        );
    }

    .page-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .page-hero-title {
        font-size: 2.4rem;
    }

    .page-hero-title::after {
        margin: 14px auto 0 auto;
        width: 50px;
    }

    .page-hero-subtitle {
        max-width: 100%;
        font-size: 1.05rem;
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero .breadcrumb {
        justify-content: center;
    }

    .page-hero .breadcrumb-item {
        font-size: 0.85rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .page-hero {
        padding: 50px 0 40px 0;
        min-height: 260px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-title::after {
        width: 40px;
        height: 3px;
        margin-top: 10px;
    }

    .page-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .page-hero .breadcrumb-item {
        font-size: 0.8rem;
    }

    .page-hero .breadcrumb-item a::after {
        height: 1.5px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .page-hero {
        padding: 40px 0 30px 0;
        min-height: 220px;
    }

    .page-hero-title {
        font-size: 1.6rem;
    }

    .page-hero-title::after {
        width: 30px;
        height: 2px;
        margin-top: 8px;
    }

    .page-hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 14px;
    }

    .page-hero .breadcrumb-item {
        font-size: 0.75rem;
    }

    .page-hero .breadcrumb-item + .breadcrumb-item::before {
        font-size: 0.75rem;
    }

    .page-hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(1, 17, 23, 0.92) 0%,
            rgba(1, 17, 23, 0.85) 70%,
            rgba(1, 17, 23, 0.60) 100%
        );
    }
}
/* ==============================================
   CONTACT SECTION
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.contact-section {
    padding: 60px 0 50px 0;
    background: var(--white);
    position: relative;
}

/* ==============================================
   CONTACT INFO CARD
   ============================================== */
.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px 28px 28px;
    border: 1px solid var(--light-gray);
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 8px 40px rgba(1, 17, 23, 0.10);
}

.contact-info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-info-title i {
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.contact-info-text {
    font-size: 0.95rem;
    color: var(--muted-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-divider {
    border: none;
    border-top: 2px solid var(--light-gray);
    margin: 0 0 18px 0;
    opacity: 1;
}

/* ==============================================
   CONTACT ITEM
   ============================================== */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    padding: 10px 14px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-item:hover {
    background: var(--light-gray);
    transform: translateX(4px);
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* Contact Icon */
.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(1, 17, 23, 0.08);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-item:hover .contact-icon {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.05);
}

/* Contact Item Content */
.contact-item-content {
    flex: 1;
    min-width: 0;
}

.contact-item-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-value {
    font-size: 0.95rem;
    color: var(--muted-text);
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-value a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-value a:hover {
    color: var(--primary-dark);
}

.contact-item:hover .contact-item-value {
    color: var(--secondary-dark);
}

/* ==============================================
   CONTACT FORM CARD
   ============================================== */
.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 36px 36px 36px;
    border: 1px solid var(--light-gray);
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.06);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 8px 40px rgba(1, 17, 23, 0.10);
}

.contact-form-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.contact-form-title i {
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--muted-text);
    margin-bottom: 16px;
}

/* ==============================================
   FORM ELEMENTS
   ============================================== */
.contact-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 5px;
}

.contact-form .form-label .text-danger {
    color: #dc3545;
}

.contact-form .form-control {
    width: 100%;
    padding: 11px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 0.92rem;
    color: var(--secondary-dark);
    background: var(--white);
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.contact-form .form-control:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 4px rgba(1, 17, 23, 0.06);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.contact-form .form-control:hover {
    border-color: var(--border-color);
}

/* Select Styling */
.contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.contact-form select.form-control option {
    color: var(--secondary-dark);
}

/* Textarea */
.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ==============================================
   SUBMIT BUTTON
   ============================================== */
.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.15);
    position: relative;
    overflow: hidden;
}

/* Button shine effect */
.btn-contact-submit::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.btn-contact-submit:hover::before {
    opacity: 1;
    left: 60%;
}

.btn-contact-submit:hover {
    background: var(--secondary-dark);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(1, 17, 23, 0.25);
}

.btn-contact-submit i {
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-contact-submit:hover i {
    transform: rotate(-10deg);
}

.btn-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* ==============================================
   FORM HINT
   ============================================== */
.contact-form-hint {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin-left: 14px;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 40px 0 30px 0;
    }

    .contact-info-card {
        padding: 28px 24px 24px 24px;
        border-radius: 16px;
    }

    .contact-form-card {
        padding: 28px 24px 30px 24px;
        border-radius: 16px;
    }

    .contact-item {
        padding: 8px 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .btn-contact-submit {
        padding: 12px 32px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .contact-form-hint {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .contact-section {
        padding: 30px 0 20px 0;
    }

    .contact-info-card {
        padding: 20px 18px 18px 18px;
        border-radius: 14px;
    }

    .contact-form-card {
        padding: 20px 16px 22px 16px;
        border-radius: 14px;
    }

    .contact-info-title {
        font-size: 1.05rem;
    }

    .contact-info-text {
        font-size: 0.88rem;
    }

    .contact-item {
        padding: 6px 10px;
        gap: 10px;
        margin-bottom: 12px;
        border-radius: 10px;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .contact-item-label {
        font-size: 0.7rem;
    }

    .contact-item-value {
        font-size: 0.85rem;
    }

    .contact-form-title {
        font-size: 1.05rem;
    }

    .contact-form-subtitle {
        font-size: 0.88rem;
    }

    .contact-form .form-label {
        font-size: 0.8rem;
    }

    .contact-form .form-control {
        padding: 9px 14px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .contact-form select.form-control {
        background-position: right 12px center;
    }

    .contact-form textarea.form-control {
        min-height: 100px;
    }

    .btn-contact-submit {
        padding: 12px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .btn-contact-submit i {
        font-size: 1rem;
    }

    .contact-form-hint {
        font-size: 0.78rem;
        display: block;
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .contact-section {
        padding: 20px 0 15px 0;
    }

    .contact-info-card {
        padding: 16px 14px 14px 14px;
        border-radius: 12px;
    }

    .contact-form-card {
        padding: 16px 12px 18px 12px;
        border-radius: 12px;
    }

    .contact-info-title {
        font-size: 0.95rem;
    }

    .contact-info-text {
        font-size: 0.82rem;
    }

    .contact-item {
        padding: 5px 8px;
        gap: 8px;
        margin-bottom: 8px;
        border-radius: 8px;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .contact-item-label {
        font-size: 0.65rem;
    }

    .contact-item-value {
        font-size: 0.8rem;
    }

    .contact-form-title {
        font-size: 0.95rem;
    }

    .contact-form-subtitle {
        font-size: 0.82rem;
    }

    .contact-form .form-label {
        font-size: 0.75rem;
    }

    .contact-form .form-control {
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 8px;
        border-width: 1.5px;
    }

    .contact-form .form-control:focus {
        box-shadow: 0 0 0 3px rgba(1, 17, 23, 0.06);
    }

    .contact-form textarea.form-control {
        min-height: 80px;
    }

    .btn-contact-submit {
        padding: 10px 24px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .btn-contact-submit i {
        font-size: 0.9rem;
    }

    .contact-form-hint {
        font-size: 0.72rem;
    }

    .contact-divider {
        margin: 0 0 12px 0;
    }
}
/* ==============================================
   MAP SECTION
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.map-section {
    padding: 60px 0 50px 0;
    background: var(--light-gray);
    position: relative;
}

/* Decorative top accent */
.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--border-color), var(--primary-dark));
}

/* ==============================================
   MAP HEADER
   ============================================== */
.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px 0;
}

.map-title i {
    font-size: 1.6rem;
    color: var(--primary-dark);
}

.map-subtitle {
    font-size: 1rem;
    color: var(--muted-text);
    margin: 0;
}

/* ==============================================
   MAP CARD
   ============================================== */
.map-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(1, 17, 23, 0.08);
    border: 1px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.map-card:hover {
    box-shadow: 0 12px 50px rgba(1, 17, 23, 0.14);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==============================================
   MAP CONTAINER
   ============================================== */
.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--light-gray);
}

/* Map loading placeholder */
.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--border-color) 100%);
    opacity: 0.3;
    z-index: 0;
}

/* ==============================================
   MAP IFRAME
   ============================================== */
.map-iframe {
    position: relative;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    z-index: 1;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .map-section {
        padding: 40px 0 30px 0;
    }

    .map-container {
        height: 350px;
    }

    .map-card {
        border-radius: 16px;
    }

    .map-title {
        font-size: 1.4rem;
    }

    .map-title i {
        font-size: 1.4rem;
    }

    .map-subtitle {
        font-size: 0.95rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .map-section {
        padding: 30px 0 20px 0;
    }

    .map-container {
        height: 280px;
    }

    .map-card {
        border-radius: 14px;
    }

    .map-title {
        font-size: 1.2rem;
    }

    .map-title i {
        font-size: 1.2rem;
    }

    .map-subtitle {
        font-size: 0.9rem;
    }

    .map-header {
        margin-bottom: 20px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .map-section {
        padding: 20px 0 15px 0;
    }

    .map-container {
        height: 220px;
    }

    .map-card {
        border-radius: 12px;
    }

    .map-title {
        font-size: 1rem;
    }

    .map-title i {
        font-size: 1rem;
    }

    .map-subtitle {
        font-size: 0.82rem;
    }

    .map-header {
        margin-bottom: 14px;
    }
}
/* ==============================================
   SERVICES PAGE - Full Image Cards
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.services-page-section {
    padding: 70px 0 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative top accent */
.services-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--border-color), var(--primary-dark));
}

/* ==============================================
   SECTION HEADER
   ============================================== */
.services-page-section .section-header {
    margin-bottom: 50px;
}

.services-page-section .section-badge {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.services-page-section .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.services-page-section .section-title span {
    color: var(--primary-dark);
}

.services-page-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-text);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==============================================
   SERVICES GRID
   ============================================== */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ==============================================
   SERVICES ITEM
   ============================================== */
.services-page-item {
    position: relative;
}

.services-page-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

/* ==============================================
   SERVICES CARD
   ============================================== */
.services-page-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    height: 100%;
    min-height: 380px;
}

.services-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(1, 17, 23, 0.18);
    border-color: var(--primary-dark);
}

/* ==============================================
   CARD IMAGE - Full Card
   ============================================== */
.services-page-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-page-card:hover .services-page-image {
    transform: scale(1.06);
}

/* ==============================================
   OVERLAY - Full dark gradient
   ============================================== */
.services-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(1, 17, 23, 0.30) 0%,
        rgba(1, 17, 23, 0.70) 40%,
        rgba(1, 17, 23, 0.92) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.4s ease;
}

.services-page-card:hover .services-page-overlay {
    background: linear-gradient(
        to bottom,
        rgba(1, 17, 23, 0.40) 0%,
        rgba(1, 17, 23, 0.80) 40%,
        rgba(1, 17, 23, 0.95) 100%
    );
}

/* ==============================================
   CARD CONTENT
   ============================================== */
.services-page-content {
    text-align: center;
    color: var(--white);
    max-width: 320px;
    position: relative;
    z-index: 1;
    padding: 10px 0;
}

/* ==============================================
   CARD TITLE
   ============================================== */
.services-page-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: 0.3s;
}

/* ==============================================
   CARD TEXT
   ============================================== */
.services-page-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==============================================
   CARD BUTTON
   ============================================== */
.services-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.services-page-card:hover .services-page-btn {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.services-page-btn i {
    transition: 0.3s;
}

.services-page-card:hover .services-page-btn i {
    transform: translateX(4px);
}

/* ==============================================
   EMPTY STATE
   ============================================== */
.services-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-gray);
    border-radius: 20px;
    border: 2px dashed var(--border-color);
}

.services-empty .empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    color: var(--border-color);
    font-size: 2.5rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(1, 17, 23, 0.06);
}

.services-empty .empty-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 4px;
}

.services-empty .empty-text {
    font-size: 0.95rem;
    color: var(--muted-text);
    margin: 0;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .services-page-section {
        padding: 50px 0 40px 0;
    }

    .services-page-section .section-title {
        font-size: 2.2rem;
    }

    .services-page-section .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-page-card {
        min-height: 320px;
    }

    .services-page-image {
        min-height: 320px;
    }

    .services-page-title {
        font-size: 1.1rem;
    }

    .services-page-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
    }

    .services-page-content {
        max-width: 280px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .services-page-section {
        padding: 40px 0 30px 0;
    }

    .services-page-section .section-header {
        margin-bottom: 30px;
    }

    .services-page-section .section-title {
        font-size: 1.8rem;
    }

    .services-page-section .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .services-page-section .section-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 480px;
        margin: 0 auto;
    }

    .services-page-card {
        border-radius: 16px;
        min-height: 280px;
    }

    .services-page-image {
        min-height: 280px;
    }

    .services-page-overlay {
        padding: 24px;
    }

    .services-page-title {
        font-size: 1rem;
    }

    .services-page-text {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
        margin-bottom: 14px;
    }

    .services-page-content {
        max-width: 240px;
    }

    .services-page-btn {
        font-size: 0.8rem;
        padding: 6px 18px;
    }

    .services-empty {
        padding: 40px 16px;
        border-radius: 14px;
    }

    .services-empty .empty-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .services-empty .empty-title {
        font-size: 1rem;
    }

    .services-empty .empty-text {
        font-size: 0.85rem;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .services-page-section {
        padding: 30px 0 20px 0;
    }

    .services-page-section .section-title {
        font-size: 1.5rem;
    }

    .services-page-grid {
        gap: 14px;
        max-width: 100%;
    }

    .services-page-card {
        border-radius: 14px;
        min-height: 240px;
    }

    .services-page-image {
        min-height: 240px;
    }

    .services-page-overlay {
        padding: 18px;
    }

    .services-page-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .services-page-text {
        font-size: 0.8rem;
        -webkit-line-clamp: 3;
        margin-bottom: 12px;
    }

    .services-page-content {
        max-width: 200px;
    }

    .services-page-btn {
        font-size: 0.75rem;
        padding: 5px 16px;
        gap: 6px;
    }

    .services-page-btn i {
        font-size: 0.7rem;
    }

    .services-empty {
        padding: 30px 14px;
        border-radius: 12px;
    }

    .services-empty .empty-icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .services-empty .empty-title {
        font-size: 0.9rem;
    }

    .services-empty .empty-text {
        font-size: 0.8rem;
    }
}
/* ==============================================
   SERVICE HERO - Background Image
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.service-hero .page-hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-hero .page-hero-overlay {
    background: linear-gradient(
        to right,
        rgba(1, 17, 23, 0.88) 0%,
        rgba(1, 17, 23, 0.75) 50%,
        rgba(1, 17, 23, 0.40) 80%,
        rgba(1, 17, 23, 0.10) 100%
    );
}

/* ==============================================
   SERVICE CONTENT SECTION
   ============================================== */
.service-content-section {
    padding: 60px 0 50px 0;
    background: var(--white);
}

/* ==============================================
   SERVICE CONTENT CARD
   ============================================== */
.service-content-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 44px;
    border: 1px solid var(--light-gray);
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.06);
    margin-bottom: 30px;
}

/* ==============================================
   SERVICE CONTENT (Dynamic)
   ============================================== */
.service-content {
    color: var(--secondary-dark);
    line-height: 1.8;
}

.service-content h1,
.service-content h2,
.service-content h3,
.service-content h4,
.service-content h5,
.service-content h6 {
    color: var(--primary-dark);
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-content h1 {
    font-size: 2.2rem;
}

.service-content h2 {
    font-size: 1.8rem;
}

.service-content h3 {
    font-size: 1.4rem;
}

.service-content p {
    margin-bottom: 18px;
    color: var(--muted-text);
    font-size: 1.05rem;
}

.service-content ul,
.service-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.service-content ul li,
.service-content ol li {
    margin-bottom: 8px;
    color: var(--muted-text);
    font-size: 1.02rem;
}

.service-content ul li::marker {
    color: var(--primary-dark);
}

.service-content blockquote {
    border-left: 4px solid var(--primary-dark);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--light-gray);
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

.service-content blockquote p {
    margin: 0;
    color: var(--secondary-dark);
}

.service-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.service-content a {
    color: var(--primary-dark);
    text-decoration: underline;
    transition: 0.3s;
}

.service-content a:hover {
    color: var(--secondary-dark);
}

/* ==============================================
   SERVICE FAQ CARD
   ============================================== */
.service-faq-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 36px 28px 36px;
    border: 1px solid var(--light-gray);
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.06);
}

.service-faq-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.service-faq-title i {
    font-size: 1.3rem;
    color: var(--primary-dark);
}

/* FAQ Accordion - Same as FAQ Section */
.faq-accordion .faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--light-gray);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion .faq-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .faq-item:hover {
    border-color: var(--border-color);
}

.faq-accordion .faq-button {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
}

.faq-accordion .faq-button:hover {
    background: rgba(1, 17, 23, 0.03);
}

.faq-accordion .faq-number {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--muted-text);
    background: var(--light-gray);
    padding: 3px 10px;
    border-radius: 6px;
    min-width: 32px;
    text-align: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.faq-accordion .faq-button:not(.collapsed) .faq-number {
    background: var(--primary-dark);
    color: var(--white);
}

.faq-accordion .faq-question {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-dark);
    transition: 0.3s;
}

.faq-accordion .faq-button:not(.collapsed) .faq-question {
    color: var(--primary-dark);
}

.faq-accordion .faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    transition: 0.4s;
}

.faq-accordion .faq-icon i {
    font-size: 0.85rem;
    color: var(--muted-text);
    transition: 0.4s;
}

.faq-accordion .faq-button:not(.collapsed) .faq-icon {
    background: var(--primary-dark);
    transform: rotate(180deg);
}

.faq-accordion .faq-button:not(.collapsed) .faq-icon i {
    color: var(--white);
}

.faq-accordion .faq-body {
    padding: 0 20px 20px 20px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--muted-text);
    padding-left: 66px;
}

/* ==============================================
   SIDEBAR CARDS
   ============================================== */
.service-sidebar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 26px 24px 24px 24px;
    border: 1px solid var(--light-gray);
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.06);
    margin-bottom: 24px;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px 0;
}

.sidebar-title i {
    font-size: 1.1rem;
}

.sidebar-divider {
    border: none;
    border-top: 2px solid var(--light-gray);
    margin: 0 0 14px 0;
    opacity: 1;
}

/* Services List */
.sidebar-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-services-list li {
    margin-bottom: 8px;
}

.sidebar-services-list li:last-child {
    margin-bottom: 0;
}

.sidebar-services-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--muted-text);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-services-list li a i {
    font-size: 0.7rem;
    color: var(--muted-text);
    transition: 0.3s;
}

.sidebar-services-list li a:hover {
    background: var(--light-gray);
    color: var(--primary-dark);
    transform: translateX(4px);
}

.sidebar-services-list li a:hover i {
    color: var(--primary-dark);
}

.sidebar-services-list li a.active {
    background: var(--primary-dark);
    color: var(--white);
    font-weight: 700;
}

.sidebar-services-list li a.active i {
    color: var(--white);
}

/* Areas List */
.sidebar-areas-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.sidebar-areas-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--muted-text);
    padding: 4px 0;
}

.sidebar-areas-list li i {
    font-size: 0.8rem;
    color: var(--primary-dark);
}

.sidebar-areas-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    transition: 0.3s;
}

.sidebar-areas-btn i {
    font-size: 0.8rem;
    transition: 0.3s;
}

.sidebar-areas-btn:hover {
    color: var(--primary-dark);
}

.sidebar-areas-btn:hover i {
    transform: translateX(4px);
}

/* ==============================================
   SIDEBAR CTA
   ============================================== */
.service-sidebar-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    border-radius: 20px;
    padding: 28px 24px 26px 24px;
    text-align: center;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-sidebar-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 4px 0;
    position: relative;
    z-index: 1;
}

.cta-sidebar-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
    position: relative;
    z-index: 1;
}

.cta-sidebar-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.cta-sidebar-phone:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.cta-sidebar-estimate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.cta-sidebar-estimate:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

/* ==============================================
   SERVICE CTA SECTION (Bottom)
   ============================================== */
.service-cta-section {
    padding: 60px 0 50px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.service-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-cta-content {
    flex: 1;
}

.service-cta-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}

.service-cta-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--white);
    margin-top: 10px;
    border-radius: 10px;
    opacity: 0.5;
}

.service-cta-text {
    font-size: 1.05rem;
    color: var(--muted-text);
    max-width: 500px;
    margin-bottom: 16px;
}

.service-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.service-cta-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--light-gray);
}

.service-cta-features span i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.service-cta-action {
    flex-shrink: 0;
}

.service-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-dark);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.15);
}

.service-cta-button:hover {
    background: var(--secondary-dark);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(255, 255, 255, 0.2);
}

.service-cta-button i {
    font-size: 1.1rem;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .service-content-section {
        padding: 40px 0 30px 0;
    }

    .service-hero .page-hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(1, 17, 23, 0.90) 0%,
            rgba(1, 17, 23, 0.80) 60%,
            rgba(1, 17, 23, 0.50) 100%
        );
    }

    .service-content-card {
        padding: 30px 28px;
        border-radius: 16px;
    }

    .service-faq-card {
        padding: 26px 24px 22px 24px;
        border-radius: 16px;
    }

    .service-content h1 {
        font-size: 1.8rem;
    }
    .service-content h2 {
        font-size: 1.5rem;
    }
    .service-content p {
        font-size: 0.98rem;
    }

    .service-sidebar-card {
        padding: 22px 20px 20px 20px;
        border-radius: 16px;
    }

    .service-sidebar-cta {
        border-radius: 16px;
        padding: 24px 20px 22px 20px;
    }

    .service-cta-section {
        padding: 50px 0 40px 0;
    }

    .service-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .service-cta-heading::after {
        margin: 10px auto 0 auto;
    }

    .service-cta-text {
        max-width: 100%;
    }

    .service-cta-features {
        justify-content: center;
    }

    .service-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .service-content-section {
        padding: 30px 0 20px 0;
    }

    .service-content-card {
        padding: 20px 18px;
        border-radius: 14px;
    }

    .service-content h1 {
        font-size: 1.5rem;
    }
    .service-content h2 {
        font-size: 1.3rem;
    }
    .service-content h3 {
        font-size: 1.1rem;
    }
    .service-content p {
        font-size: 0.92rem;
    }
    .service-content ul li,
    .service-content ol li {
        font-size: 0.9rem;
    }
    .service-content blockquote {
        padding: 12px 16px;
    }

    .service-faq-card {
        padding: 20px 16px 18px 16px;
        border-radius: 14px;
    }

    .service-faq-title {
        font-size: 1rem;
    }

    .faq-accordion .faq-button {
        padding: 12px 14px;
        gap: 10px;
    }
    .faq-accordion .faq-question {
        font-size: 0.88rem;
    }
    .faq-accordion .faq-body {
        padding: 0 14px 14px 14px;
        padding-left: 54px;
        font-size: 0.85rem;
    }

    .service-sidebar-card {
        padding: 18px 16px 16px 16px;
        border-radius: 14px;
    }

    .sidebar-services-list li a {
        font-size: 0.82rem;
        padding: 5px 8px;
    }

    .service-sidebar-cta {
        padding: 20px 16px 18px 16px;
        border-radius: 14px;
    }

    .cta-sidebar-phone {
        font-size: 0.92rem;
        padding: 10px 16px;
    }

    .service-cta-section {
        padding: 40px 0 30px 0;
    }

    .service-cta-heading {
        font-size: 1.8rem;
    }

    .service-cta-text {
        font-size: 0.95rem;
    }

    .service-cta-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .service-cta-button {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .service-content-card {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .service-content h1 {
        font-size: 1.3rem;
    }
    .service-content h2 {
        font-size: 1.1rem;
    }
    .service-content p {
        font-size: 0.88rem;
    }
    .service-content ul li,
    .service-content ol li {
        font-size: 0.85rem;
    }

    .faq-accordion .faq-number {
        font-size: 0.6rem;
        min-width: 26px;
        padding: 2px 8px;
    }
    .faq-accordion .faq-question {
        font-size: 0.82rem;
    }
    .faq-accordion .faq-body {
        padding-left: 46px;
        font-size: 0.8rem;
    }

    .service-sidebar-card {
        padding: 14px 12px 14px 12px;
        border-radius: 12px;
    }

    .sidebar-title {
        font-size: 0.9rem;
    }

    .service-cta-heading {
        font-size: 1.5rem;
    }

    .service-cta-text {
        font-size: 0.88rem;
    }

    .service-cta-button {
        padding: 12px 24px;
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
    }
}
/* ==============================================
   SERVICE CONTENT - Black Text
   ============================================== */

.service-content {
    color: var(--secondary-dark); /* #161C24 - Black/Dark */
    line-height: 1.8;
}

.service-content h1,
.service-content h2,
.service-content h3,
.service-content h4,
.service-content h5,
.service-content h6 {
    color: var(--primary-dark); /* #011117 - Dark for headings */
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-content h1 {
    font-size: 2.2rem;
}

.service-content h2 {
    font-size: 1.8rem;
}

.service-content h3 {
    font-size: 1.4rem;
}

.service-content p {
    margin-bottom: 18px;
    color: var(--secondary-dark); /* ★ BLACK text ★ */
    font-size: 1.05rem;
}

.service-content ul,
.service-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.service-content ul li,
.service-content ol li {
    margin-bottom: 8px;
    color: var(--secondary-dark); /* ★ BLACK text ★ */
    font-size: 1.02rem;
}

.service-content ul li::marker {
    color: var(--primary-dark);
}

.service-content blockquote {
    border-left: 4px solid var(--primary-dark);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--light-gray);
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

.service-content blockquote p {
    margin: 0;
    color: var(--secondary-dark);
}

.service-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.service-content a {
    color: var(--primary-dark);
    text-decoration: underline;
    transition: 0.3s;
}

.service-content a:hover {
    color: var(--secondary-dark);
}

/* ==============================================
   SERVICE FEATURED IMAGE
   ============================================== */
.service-featured-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.08);
}

.service-featured-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-featured-image:hover .service-featured-img {
    transform: scale(1.02);
}
/* ==============================================
   SERVICE AREA HERO - Background Image
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.service-area-hero {
    position: relative;
    padding: 80px 0 70px 0;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-area-hero .page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-area-hero:hover .page-hero-bg {
    transform: scale(1.03);
}

.service-area-hero .page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(1, 17, 23, 0.88) 0%,
        rgba(1, 17, 23, 0.75) 50%,
        rgba(1, 17, 23, 0.40) 80%,
        rgba(1, 17, 23, 0.10) 100%
    );
    z-index: 1;
}

.service-area-hero .page-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.service-area-hero .page-hero-content {
    max-width: 700px;
}

.service-area-hero .page-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
}

.service-area-hero .page-hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--white);
    margin-top: 14px;
    border-radius: 10px;
    opacity: 0.6;
}

.service-area-hero .page-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    max-width: 550px;
}

/* Breadcrumb */
.service-area-hero .breadcrumb {
    padding: 0;
    margin: 0;
    background: transparent;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.service-area-hero .breadcrumb-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-area-hero .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255, 255, 255, 0.4);
    padding-right: 6px;
}

.service-area-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.service-area-hero .breadcrumb-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.service-area-hero .breadcrumb-item a:hover {
    color: var(--white);
}

.service-area-hero .breadcrumb-item a:hover::after {
    width: 100%;
}

.service-area-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ==============================================
   SERVICE AREA CONTENT SECTION
   ============================================== */
.service-area-content-section {
    padding: 60px 0 50px 0;
    background: var(--white);
    position: relative;
}

/* ==============================================
   SERVICE AREA CONTENT CARD
   ============================================== */
.service-area-content-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 44px;
    border: 1px solid var(--light-gray);
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.06);
    transition: all 0.3s ease;
}

.service-area-content-card:hover {
    box-shadow: 0 8px 45px rgba(1, 17, 23, 0.10);
}

/* ==============================================
   FEATURED IMAGE
   ============================================== */
.service-area-featured-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.08);
}

.service-area-featured-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-area-featured-image:hover .service-area-featured-img {
    transform: scale(1.03);
}

/* ==============================================
   SERVICE AREA CONTENT - Black Text
   ============================================== */
.service-area-content {
    color: var(--secondary-dark);
    line-height: 1.8;
}

.service-area-content h1,
.service-area-content h2,
.service-area-content h3,
.service-area-content h4,
.service-area-content h5,
.service-area-content h6 {
    color: var(--primary-dark);
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-area-content h1 {
    font-size: 2.2rem;
}

.service-area-content h2 {
    font-size: 1.8rem;
}

.service-area-content h3 {
    font-size: 1.4rem;
}

.service-area-content p {
    margin-bottom: 18px;
    color: var(--secondary-dark);
    font-size: 1.05rem;
}

.service-area-content ul,
.service-area-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.service-area-content ul li,
.service-area-content ol li {
    margin-bottom: 8px;
    color: var(--secondary-dark);
    font-size: 1.02rem;
}

.service-area-content ul li::marker {
    color: var(--primary-dark);
}

.service-area-content blockquote {
    border-left: 4px solid var(--primary-dark);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--light-gray);
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

.service-area-content blockquote p {
    margin: 0;
    color: var(--secondary-dark);
}

.service-area-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.service-area-content a {
    color: var(--primary-dark);
    text-decoration: underline;
    transition: 0.3s;
}

.service-area-content a:hover {
    color: var(--secondary-dark);
}

/* ==============================================
   CONTENT DIVIDER
   ============================================== */
.content-divider {
    border: none;
    border-top: 2px solid var(--light-gray);
    margin: 28px 0 20px 0;
    opacity: 1;
}

/* ==============================================
   NEIGHBORHOODS
   ============================================== */
.service-area-neighborhoods-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.service-area-neighborhoods-title i {
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.service-area-neighborhoods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.neighborhood-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-gray);
    color: var(--secondary-dark);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--light-gray);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.neighborhood-badge i {
    font-size: 0.7rem;
    color: var(--primary-dark);
    transition: 0.3s;
}

.neighborhood-badge:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 25px rgba(1, 17, 23, 0.15);
}

.neighborhood-badge:hover i {
    color: var(--white);
}

/* ==============================================
   SIDEBAR CARDS
   ============================================== */
.service-area-sidebar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 24px 24px 24px;
    border: 1px solid var(--light-gray);
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.06);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-area-sidebar-card:hover {
    box-shadow: 0 8px 40px rgba(1, 17, 23, 0.10);
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px 0;
}

.sidebar-title i {
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.sidebar-divider {
    border: none;
    border-top: 2px solid var(--light-gray);
    margin: 0 0 14px 0;
    opacity: 1;
}

/* Info List */
.sidebar-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--muted-text);
    padding: 7px 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    transition: 0.3s;
}

.sidebar-info-list li:last-child {
    border-bottom: none;
}

.sidebar-info-list li i {
    font-size: 0.85rem;
    color: var(--primary-dark);
    flex-shrink: 0;
    transition: 0.3s;
}

.sidebar-info-list li:hover {
    color: var(--secondary-dark);
    transform: translateX(4px);
}

.sidebar-info-list li:hover i {
    transform: scale(1.1);
}

/* Services List */
.sidebar-services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.sidebar-services-list li {
    margin-bottom: 4px;
}

.sidebar-services-list li:last-child {
    margin-bottom: 0;
}

.sidebar-services-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--muted-text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 3px solid transparent;
}

.sidebar-services-list li a:hover {
    background: var(--light-gray);
    color: var(--primary-dark);
    transform: translateX(4px);
    border-left-color: var(--primary-dark);
}

.sidebar-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    padding: 6px 0;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.sidebar-services-btn i {
    font-size: 0.8rem;
    transition: 0.3s;
}

.sidebar-services-btn:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.sidebar-services-btn:hover i {
    transform: translateX(4px);
}

/* ==============================================
   SIDEBAR CTA - Premium Dark Gradient
   ============================================== */
.service-area-sidebar-cta {
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    border-radius: 20px;
    padding: 30px 26px 28px 26px;
    text-align: center;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-area-sidebar-cta:hover {
    box-shadow: 0 8px 40px rgba(1, 17, 23, 0.20);
    transform: translateY(-3px);
}

/* Animated glow effect */
.service-area-sidebar-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaGlow 6s ease-in-out infinite alternate;
    pointer-events: none;
}

.service-area-sidebar-cta::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaGlow 8s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes ctaGlow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(20px, -15px) scale(1.2);
        opacity: 1;
    }
}

.cta-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 4px 0;
    position: relative;
    z-index: 1;
}

.cta-sidebar-title i {
    font-size: 1.1rem;
}

.cta-sidebar-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 18px 0;
    position: relative;
    z-index: 1;
}

.cta-sidebar-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.10);
}

.cta-sidebar-phone:hover {
    background: var(--light-gray);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.20);
}

.cta-sidebar-phone i {
    font-size: 1.1rem;
    transition: 0.3s;
}

.cta-sidebar-phone:hover i {
    transform: rotate(-10deg);
}

.cta-sidebar-estimate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 11px 20px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.cta-sidebar-estimate:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Large Screens */
@media (max-width: 1199.98px) {
    .service-area-hero .page-hero-title {
        font-size: 2.8rem;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .service-area-hero {
        padding: 60px 0 50px 0;
        min-height: 320px;
    }

    .service-area-hero .page-hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(1, 17, 23, 0.90) 0%,
            rgba(1, 17, 23, 0.80) 60%,
            rgba(1, 17, 23, 0.50) 100%
        );
    }

    .service-area-hero .page-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .service-area-hero .page-hero-title {
        font-size: 2.4rem;
    }

    .service-area-hero .page-hero-title::after {
        margin: 14px auto 0 auto;
        width: 50px;
    }

    .service-area-hero .page-hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.05rem;
    }

    .service-area-hero .breadcrumb {
        justify-content: center;
    }

    .service-area-hero .breadcrumb-item {
        font-size: 0.85rem;
    }

    .service-area-content-section {
        padding: 40px 0 30px 0;
    }

    .service-area-content-card {
        padding: 30px 28px;
        border-radius: 16px;
    }

    .service-area-featured-img {
        max-height: 320px;
    }

    .service-area-content h1 {
        font-size: 1.8rem;
    }
    .service-area-content h2 {
        font-size: 1.5rem;
    }
    .service-area-content p {
        font-size: 0.98rem;
    }

    .service-area-sidebar-card {
        padding: 22px 20px 20px 20px;
        border-radius: 16px;
    }

    .service-area-sidebar-cta {
        border-radius: 16px;
        padding: 26px 22px 24px 22px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .service-area-hero {
        padding: 50px 0 40px 0;
        min-height: 280px;
    }

    .service-area-hero .page-hero-title {
        font-size: 2rem;
    }

    .service-area-hero .page-hero-title::after {
        width: 40px;
        height: 3px;
        margin-top: 10px;
    }

    .service-area-hero .page-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .service-area-hero .breadcrumb-item {
        font-size: 0.8rem;
    }

    .service-area-content-section {
        padding: 30px 0 20px 0;
    }

    .service-area-content-card {
        padding: 20px 18px;
        border-radius: 14px;
    }

    .service-area-featured-img {
        max-height: 240px;
    }

    .service-area-content h1 {
        font-size: 1.5rem;
    }
    .service-area-content h2 {
        font-size: 1.3rem;
    }
    .service-area-content h3 {
        font-size: 1.1rem;
    }
    .service-area-content p {
        font-size: 0.92rem;
    }
    .service-area-content ul li,
    .service-area-content ol li {
        font-size: 0.9rem;
    }

    .service-area-neighborhoods-title {
        font-size: 0.95rem;
    }

    .neighborhood-badge {
        font-size: 0.78rem;
        padding: 5px 14px;
    }

    .service-area-sidebar-card {
        padding: 18px 16px 16px 16px;
        border-radius: 14px;
    }

    .service-area-sidebar-cta {
        padding: 22px 18px 20px 18px;
        border-radius: 14px;
    }

    .cta-sidebar-phone {
        font-size: 0.92rem;
        padding: 12px 16px;
    }

    .cta-sidebar-estimate {
        font-size: 0.85rem;
        padding: 10px 16px;
    }

    .sidebar-info-list li {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .sidebar-services-list li a {
        font-size: 0.82rem;
        padding: 6px 10px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .service-area-hero {
        padding: 40px 0 30px 0;
        min-height: 240px;
    }

    .service-area-hero .page-hero-title {
        font-size: 1.6rem;
    }

    .service-area-hero .page-hero-title::after {
        width: 30px;
        height: 2px;
        margin-top: 8px;
    }

    .service-area-hero .page-hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 14px;
    }

    .service-area-hero .breadcrumb-item {
        font-size: 0.75rem;
    }

    .service-area-content-section {
        padding: 20px 0 15px 0;
    }

    .service-area-content-card {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .service-area-featured-img {
        max-height: 180px;
    }

    .service-area-content h1 {
        font-size: 1.3rem;
    }
    .service-area-content h2 {
        font-size: 1.1rem;
    }
    .service-area-content p {
        font-size: 0.88rem;
    }
    .service-area-content ul li,
    .service-area-content ol li {
        font-size: 0.85rem;
    }
    .service-area-content blockquote {
        padding: 12px 16px;
    }

    .service-area-neighborhoods {
        gap: 6px;
    }

    .neighborhood-badge {
        font-size: 0.72rem;
        padding: 4px 12px;
        gap: 4px;
    }

    .service-area-sidebar-card {
        padding: 14px 12px 14px 12px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .sidebar-title {
        font-size: 0.9rem;
    }

    .sidebar-info-list li {
        font-size: 0.82rem;
        padding: 5px 0;
    }

    .sidebar-services-list li a {
        font-size: 0.78rem;
        padding: 5px 8px;
        border-radius: 8px;
    }

    .sidebar-services-btn {
        font-size: 0.78rem;
    }

    .service-area-sidebar-cta {
        padding: 18px 14px 16px 14px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .cta-sidebar-title {
        font-size: 0.9rem;
    }

    .cta-sidebar-text {
        font-size: 0.78rem;
        margin-bottom: 14px;
    }

    .cta-sidebar-phone {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .cta-sidebar-estimate {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .content-divider {
        margin: 20px 0 14px 0;
    }
}
/* ==============================================
   SIDEBAR AREAS LIST - Links Styling
   ============================================== */
.sidebar-areas-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--muted-text);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sidebar-areas-list li a:hover {
    background: var(--light-gray);
    color: var(--primary-dark);
    transform: translateX(4px);
}

.sidebar-areas-list li a i {
    font-size: 0.8rem;
    color: var(--primary-dark);
    transition: 0.3s;
    flex-shrink: 0;
}

.sidebar-areas-list li a:hover i {
    color: var(--primary-dark);
    transform: scale(1.1);
}
/* ==============================================
   SERVICE AREAS OVERVIEW - Full Image Cards
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.service-areas-overview-section {
    padding: 70px 0 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative top accent */
.service-areas-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--border-color), var(--primary-dark));
}

/* ==============================================
   SECTION HEADER
   ============================================== */
.service-areas-overview-section .section-header {
    margin-bottom: 50px;
}

.service-areas-overview-section .section-badge {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.service-areas-overview-section .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.service-areas-overview-section .section-title span {
    color: var(--primary-dark);
}

.service-areas-overview-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-text);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==============================================
   AREAS GRID
   ============================================== */
.areas-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ==============================================
   AREAS ITEM
   ============================================== */
.areas-overview-item {
    position: relative;
}

.areas-overview-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

/* ==============================================
   AREAS CARD
   ============================================== */
.areas-overview-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    height: 100%;
    min-height: 360px;
}

.areas-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(1, 17, 23, 0.18);
    border-color: var(--primary-dark);
}

/* ==============================================
   CARD IMAGE - Full Card
   ============================================== */
.areas-overview-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.areas-overview-card:hover .areas-overview-image {
    transform: scale(1.06);
}

/* ==============================================
   OVERLAY - Full dark gradient
   ============================================== */
.areas-overview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(1, 17, 23, 0.25) 0%,
        rgba(1, 17, 23, 0.65) 40%,
        rgba(1, 17, 23, 0.92) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px 28px 28px 28px;
    transition: all 0.4s ease;
}

.areas-overview-card:hover .areas-overview-overlay {
    background: linear-gradient(
        to bottom,
        rgba(1, 17, 23, 0.35) 0%,
        rgba(1, 17, 23, 0.75) 40%,
        rgba(1, 17, 23, 0.95) 100%
    );
}

/* ==============================================
   CARD CONTENT - Bottom aligned
   ============================================== */
.areas-overview-content {
    color: var(--white);
    width: 100%;
    position: relative;
    z-index: 1;
    padding-bottom: 4px;
}

/* ==============================================
   CARD TITLE
   ============================================== */
.areas-overview-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
    transition: 0.3s;
}

/* Decorative underline on title */
.areas-overview-title::after {
    content: '';
    display: block;
    width: 35px;
    height: 3px;
    background: var(--white);
    margin-top: 8px;
    border-radius: 10px;
    opacity: 0.6;
    transition: width 0.4s ease;
}

.areas-overview-card:hover .areas-overview-title::after {
    width: 55px;
    opacity: 1;
}

/* ==============================================
   CARD TEXT
   ============================================== */
.areas-overview-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==============================================
   CARD BUTTON
   ============================================== */
.areas-overview-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.areas-overview-card:hover .areas-overview-btn {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.areas-overview-btn i {
    transition: 0.3s;
}

.areas-overview-card:hover .areas-overview-btn i {
    transform: translateX(4px);
}

/* ==============================================
   EMPTY STATE
   ============================================== */
.areas-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-gray);
    border-radius: 20px;
    border: 2px dashed var(--border-color);
}

.areas-empty .empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    color: var(--border-color);
    font-size: 2.5rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(1, 17, 23, 0.06);
}

.areas-empty .empty-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 4px;
}

.areas-empty .empty-text {
    font-size: 0.95rem;
    color: var(--muted-text);
    margin: 0;
}

/* ==============================================
   AREAS CTA SECTION
   ============================================== */
.areas-cta-section {
    padding: 60px 0 50px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.areas-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.areas-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.areas-cta-content {
    flex: 1;
}

.areas-cta-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}

.areas-cta-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--white);
    margin-top: 10px;
    border-radius: 10px;
    opacity: 0.5;
}

.areas-cta-text {
    font-size: 1.05rem;
    color: var(--muted-text);
    max-width: 500px;
    margin-bottom: 16px;
}

.areas-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.areas-cta-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--light-gray);
}

.areas-cta-features span i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.areas-cta-action {
    flex-shrink: 0;
}

.areas-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-dark);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid var(--white);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.15);
}

.areas-cta-button:hover {
    background: var(--secondary-dark);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(255, 255, 255, 0.2);
}

.areas-cta-button i {
    font-size: 1.1rem;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .service-areas-overview-section {
        padding: 50px 0 40px 0;
    }

    .service-areas-overview-section .section-title {
        font-size: 2.2rem;
    }

    .service-areas-overview-section .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .areas-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .areas-overview-card {
        min-height: 300px;
    }

    .areas-overview-image {
        min-height: 300px;
    }

    .areas-overview-title {
        font-size: 1.05rem;
    }

    .areas-overview-text {
        font-size: 0.88rem;
        -webkit-line-clamp: 2;
    }

    .areas-overview-overlay {
        padding: 24px 22px 22px 22px;
    }

    .areas-cta-section {
        padding: 50px 0 40px 0;
    }

    .areas-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .areas-cta-heading::after {
        margin: 10px auto 0 auto;
    }

    .areas-cta-text {
        max-width: 100%;
    }

    .areas-cta-features {
        justify-content: center;
    }

    .areas-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .service-areas-overview-section {
        padding: 40px 0 30px 0;
    }

    .service-areas-overview-section .section-header {
        margin-bottom: 30px;
    }

    .service-areas-overview-section .section-title {
        font-size: 1.8rem;
    }

    .service-areas-overview-section .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .service-areas-overview-section .section-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
    }

    .areas-overview-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 420px;
        margin: 0 auto;
    }

    .areas-overview-card {
        border-radius: 16px;
        min-height: 280px;
    }

    .areas-overview-image {
        min-height: 280px;
    }

    .areas-overview-overlay {
        padding: 20px 18px 18px 18px;
    }

    .areas-overview-title {
        font-size: 1rem;
    }

    .areas-overview-title::after {
        width: 30px;
        height: 2px;
        margin-top: 6px;
    }

    .areas-overview-card:hover .areas-overview-title::after {
        width: 45px;
    }

    .areas-overview-text {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        margin-bottom: 12px;
    }

    .areas-overview-btn {
        font-size: 0.8rem;
        padding: 6px 18px;
    }

    .areas-empty {
        padding: 40px 16px;
        border-radius: 14px;
    }

    .areas-empty .empty-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .areas-cta-section {
        padding: 40px 0 30px 0;
    }

    .areas-cta-heading {
        font-size: 1.8rem;
    }

    .areas-cta-text {
        font-size: 0.95rem;
    }

    .areas-cta-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .areas-cta-button {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .service-areas-overview-section {
        padding: 30px 0 20px 0;
    }

    .service-areas-overview-section .section-title {
        font-size: 1.5rem;
    }

    .areas-overview-grid {
        gap: 14px;
        max-width: 100%;
    }

    .areas-overview-card {
        border-radius: 14px;
        min-height: 240px;
    }

    .areas-overview-image {
        min-height: 240px;
    }

    .areas-overview-overlay {
        padding: 16px 14px 14px 14px;
    }

    .areas-overview-title {
        font-size: 0.95rem;
    }

    .areas-overview-title::after {
        width: 25px;
        margin-top: 5px;
    }

    .areas-overview-card:hover .areas-overview-title::after {
        width: 35px;
    }

    .areas-overview-text {
        font-size: 0.82rem;
        -webkit-line-clamp: 2;
        margin-bottom: 10px;
    }

    .areas-overview-btn {
        font-size: 0.75rem;
        padding: 5px 16px;
        gap: 6px;
    }

    .areas-overview-btn i {
        font-size: 0.7rem;
    }

    .areas-empty {
        padding: 30px 14px;
        border-radius: 12px;
    }

    .areas-empty .empty-icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .areas-cta-section {
        padding: 30px 0 20px 0;
    }

    .areas-cta-heading {
        font-size: 1.5rem;
    }

    .areas-cta-text {
        font-size: 0.88rem;
    }

    .areas-cta-button {
        padding: 12px 28px;
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
    }

    .areas-cta-features span {
        font-size: 0.8rem;
    }
}
/* ==============================================
   SERVICES PAGE - Improved (Larger Cards, Smaller Text)
   Strict Color Scheme: #011117, #161C24, #FFFFFF, #E5E7EB, #9CA3AF, #2A313C
   ============================================== */

.services-page-section {
    padding: 70px 0 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--border-color), var(--primary-dark));
}

/* ==============================================
   SECTION HEADER
   ============================================== */
.services-page-section .section-header {
    margin-bottom: 50px;
}

.services-page-section .section-badge {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.services-page-section .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.services-page-section .section-title span {
    color: var(--primary-dark);
}

.services-page-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-text);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==============================================
   SERVICES GRID
   ============================================== */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-page-item {
    position: relative;
}

.services-page-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

/* ==============================================
   ★ IMPROVED: LARGER CARD SIZE ★
   ============================================== */
.services-page-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(1, 17, 23, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    height: 100%;
    min-height: 480px; /* ★ Increased from 400px ★ */
}

.services-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(1, 17, 23, 0.18);
    border-color: var(--primary-dark);
}

.services-page-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px; /* ★ Increased from 400px ★ */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-page-card:hover .services-page-image {
    transform: scale(1.06);
}

/* ==============================================
   ★ IMPROVED: OVERLAY ★
   ============================================== */
.services-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(1, 17, 23, 0.20) 0%,    /* ★ Lighter at top ★ */
        rgba(1, 17, 23, 0.55) 40%,   /* ★ Adjusted middle ★ */
        rgba(1, 17, 23, 0.88) 80%,   /* ★ Darker at bottom ★ */
        rgba(1, 17, 23, 0.95) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 35px 32px 30px 32px; /* ★ More padding ★ */
    transition: all 0.4s ease;
}

.services-page-card:hover .services-page-overlay {
    background: linear-gradient(
        to bottom,
        rgba(1, 17, 23, 0.30) 0%,
        rgba(1, 17, 23, 0.65) 40%,
        rgba(1, 17, 23, 0.92) 80%,
        rgba(1, 17, 23, 0.97) 100%
    );
}

.services-page-content {
    color: var(--white);
    width: 100%;
    position: relative;
    z-index: 1;
    padding-bottom: 4px;
}

/* ==============================================
   ★ IMPROVED: SMALLER TITLE TEXT ★
   ============================================== */
.services-page-title {
    font-size: 1.15rem; /* ★ Reduced from 1.3rem ★ */
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.services-page-title::after {
    content: '';
    display: block;
    width: 35px;
    height: 3px;
    background: var(--white);
    margin-top: 8px;
    border-radius: 10px;
    opacity: 0.6;
    transition: width 0.4s ease;
}

.services-page-card:hover .services-page-title::after {
    width: 55px;
    opacity: 1;
}

/* ==============================================
   ★ IMPROVED: SMALLER DESCRIPTION TEXT ★
   ============================================== */
.services-page-text {
    font-size: 0.85rem; /* ★ Reduced from 0.95rem ★ */
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6; /* ★ Reduced from 1.7 ★ */
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* ★ Reduced from 4 ★ */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==============================================
   ★ IMPROVED: BUTTON ★
   ============================================== */
.services-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem; /* ★ Reduced from 0.85rem ★ */
    font-weight: 600;
    color: var(--white);
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.services-page-card:hover .services-page-btn {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.services-page-btn i {
    transition: 0.3s;
}

.services-page-card:hover .services-page-btn i {
    transform: translateX(4px);
}

/* ==============================================
   EMPTY STATE
   ============================================== */
.services-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-gray);
    border-radius: 20px;
    border: 2px dashed var(--border-color);
}

.services-empty .empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    color: var(--border-color);
    font-size: 2.5rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(1, 17, 23, 0.06);
}

.services-empty .empty-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 4px;
}

.services-empty .empty-text {
    font-size: 0.95rem;
    color: var(--muted-text);
    margin: 0;
}

/* ==============================================
   SERVICES CTA SECTION
   ============================================== */
.services-cta-section {
    padding: 60px 0 50px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.services-cta-content {
    flex: 1;
}

.services-cta-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}

.services-cta-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--white);
    margin-top: 10px;
    border-radius: 10px;
    opacity: 0.5;
}

.services-cta-text {
    font-size: 1.05rem;
    color: var(--muted-text);
    max-width: 500px;
    margin-bottom: 16px;
}

.services-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.services-cta-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--light-gray);
}

.services-cta-features span i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.services-cta-action {
    flex-shrink: 0;
}

.services-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-dark);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid var(--white);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.15);
}

.services-cta-button:hover {
    background: var(--secondary-dark);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(255, 255, 255, 0.2);
}

.services-cta-button i {
    font-size: 1.1rem;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

@media (max-width: 1199.98px) {
    .services-page-card {
        min-height: 420px;
    }
    .services-page-image {
        min-height: 420px;
    }
}

@media (max-width: 991.98px) {
    .services-page-section {
        padding: 50px 0 40px 0;
    }

    .services-page-section .section-title {
        font-size: 2.2rem;
    }

    .services-page-section .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-page-card {
        min-height: 380px;
    }

    .services-page-image {
        min-height: 380px;
    }

    .services-page-title {
        font-size: 1.05rem;
    }

    .services-page-text {
        font-size: 0.82rem;
        -webkit-line-clamp: 3;
    }

    .services-page-overlay {
        padding: 28px 24px 24px 24px;
    }

    .services-cta-section {
        padding: 50px 0 40px 0;
    }

    .services-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .services-cta-heading::after {
        margin: 10px auto 0 auto;
    }

    .services-cta-text {
        max-width: 100%;
    }

    .services-cta-features {
        justify-content: center;
    }

    .services-cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .services-page-section {
        padding: 40px 0 30px 0;
    }

    .services-page-section .section-header {
        margin-bottom: 30px;
    }

    .services-page-section .section-title {
        font-size: 1.8rem;
    }

    .services-page-section .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .services-page-section .section-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 480px;
        margin: 0 auto;
    }

    .services-page-card {
        border-radius: 16px;
        min-height: 340px;
    }

    .services-page-image {
        min-height: 340px;
    }

    .services-page-overlay {
        padding: 24px 20px 20px 20px;
    }

    .services-page-title {
        font-size: 1rem;
    }

    .services-page-title::after {
        width: 30px;
        height: 2px;
        margin-top: 6px;
    }

    .services-page-card:hover .services-page-title::after {
        width: 45px;
    }

    .services-page-text {
        font-size: 0.82rem;
        -webkit-line-clamp: 2;
        margin-bottom: 12px;
    }

    .services-page-btn {
        font-size: 0.78rem;
        padding: 6px 18px;
    }

    .services-empty {
        padding: 40px 16px;
        border-radius: 14px;
    }

    .services-cta-section {
        padding: 40px 0 30px 0;
    }

    .services-cta-heading {
        font-size: 1.8rem;
    }

    .services-cta-text {
        font-size: 0.95rem;
    }

    .services-cta-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .services-cta-button {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .services-page-section {
        padding: 30px 0 20px 0;
    }

    .services-page-section .section-title {
        font-size: 1.5rem;
    }

    .services-page-grid {
        gap: 14px;
        max-width: 100%;
    }

    .services-page-card {
        border-radius: 14px;
        min-height: 280px;
    }

    .services-page-image {
        min-height: 280px;
    }

    .services-page-overlay {
        padding: 18px 16px 16px 16px;
    }

    .services-page-title {
        font-size: 0.9rem;
    }

    .services-page-title::after {
        width: 25px;
        margin-top: 5px;
    }

    .services-page-card:hover .services-page-title::after {
        width: 35px;
    }

    .services-page-text {
        font-size: 0.78rem;
        -webkit-line-clamp: 2;
        margin-bottom: 10px;
    }

    .services-page-btn {
        font-size: 0.72rem;
        padding: 5px 14px;
        gap: 6px;
    }

    .services-page-btn i {
        font-size: 0.7rem;
    }

    .services-cta-section {
        padding: 30px 0 20px 0;
    }

    .services-cta-heading {
        font-size: 1.5rem;
    }

    .services-cta-text {
        font-size: 0.88rem;
    }

    .services-cta-button {
        padding: 12px 28px;
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
    }

    .services-cta-features span {
        font-size: 0.8rem;
    }
}