/* =============================================
   FIRST CHOICE PLUMBING LIMITED
   Premium Plumbing Website Stylesheet
   ============================================= */

/* ---------- CSS VARIABLES ---------- */
:root {
    --primary: #004ea0;
    --primary-dark: #003a78;
    --primary-light: #1a6fc4;
    --accent: #f7a407;
    --accent-dark: #d68e06;
    --accent-light: #fbbf24;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --text: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-primary: 0 8px 30px rgba(0,78,160,0.25);
    --shadow-accent: 0 8px 30px rgba(247,164,7,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --font-primary: 'Poppins', sans-serif;
    --font-alt: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: clip;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.section-padding { padding: 100px 0; }
.bg-alt { background-color: var(--bg-alt); }
.text-accent { color: var(--accent); }

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-alt);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
}
.section-label.center { justify-content: center; }
.label-line {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.section-title {
    font-family: var(--font-alt);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin:12px auto;
}

/* ---------- BUTTONS ---------- */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--primary-dark);
    border-radius: var(--radius-full);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.btn-cta-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-primary); }
.btn-cta-primary:hover::before { transform: scaleX(1); }

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}
.btn-cta-secondary:hover { background: #fff; color: var(--primary); border-color: #fff; transform: translateY(-2px); }

.btn-cta-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--text);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}
.btn-cta-accent:hover { background: var(--accent-dark); color: var(--text); transform: translateY(-2px); box-shadow: var(--shadow-accent); }

.btn-cta-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}
.btn-cta-outline-light:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 10px 24px; font-size: 13px; }

/* ---------- PRELOADER ---------- */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo { display: block; width: 120px; height: 150px; margin: 0 auto 20px; object-fit: contain; }
.preloader-bar { width: 200px; height: 3px; margin: 0 auto; background: var(--border); border-radius: 3px; overflow: hidden; }
.preloader-bar-fill { width: 0%; height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 3px; animation: preloaderFill 1.5s ease-in-out forwards; }
@keyframes preloaderFill { to { width: 100%; } }

/* ===========================================
   HEADER — FULLY CUSTOM, NO BOOTSTRAP COLLAPSE
   =========================================== */
.main-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}
.main-header.mobile-nav-open { z-index: 10001; }
.main-header.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    max-height: 40px;
    overflow: hidden;
}
.main-header.scrolled .top-bar {
    max-height: 40px;
    padding: 8px 0;
    opacity: 1;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--accent); }
.top-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 12px;
    margin-left: 6px;
}
.top-socials a:hover { background: var(--accent); color: var(--text); }

/* Navbar */
.main-header .navbar { padding: 0; transition: var(--transition); }
.main-header.scrolled .navbar { padding: 0; }

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px; flex-shrink: 0;
    transition: var(--transition);
}
.main-header.scrolled .logo-icon { width: 42px; height: 42px; font-size: 18px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: var(--font-alt); font-size: 20px; font-weight: 800; color: #fff; transition: var(--transition); }
.logo-sub { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; transition: var(--transition); }
.main-header.scrolled .logo-name { color: var(--text); }
.main-header.scrolled .logo-sub { color: var(--text-light); }



img.main-logo {
    border-radius: 30px;
}
/* ===========================================
   NAV COLLAPSE — DESKTOP: inline, MOBILE: off-canvas
   We DO NOT use Bootstrap's .collapse class.
   =========================================== */

/* --- DESKTOP (≥992px): show inline --- */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto !important;
        flex-grow: 1 !important;
        align-items: center;
    }
}

/* --- MOBILE (<992px): hidden off-canvas panel --- */
@media (max-width: 991.98px) {
    /* Keep the full-size logo visually overlapping the compact mobile header. */
    .main-header .navbar,
    .main-header .navbar > .container {
        height: 64px;
    }
    .main-header .navbar > .container {
        position: relative;
    }
    .main-header .navbar-brand {
        position: absolute;
        top: 0;
        left: 12px;
        margin: 0;
        padding: 0;
        z-index: 2;
    }
    .main-logo { display: block; }
    .navbar-toggler {
        align-self: center;
        margin-left: auto;
    }

    .navbar-collapse {
        display: block !important;          /* always in DOM, positioned off-screen */
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        padding: 80px 30px 30px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 10001;
        transform: translateX(100%);       /* hidden to the right */
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
    }

    .navbar-collapse.mobile-open {
        transform: translateX(0);          /* slide in */
        visibility: visible;
    }

    /* Close button inside mobile nav */
    .navbar-collapse::before {
        content: '\f00d';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 20px; right: 20px;
        font-size: 22px;
        color: var(--text);
        cursor: pointer;
        width: 40px; height: 40px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%;
        background: var(--bg-alt);
        z-index: 10;
    }

    /* Nav links — mobile style */
    .navbar-nav .nav-link {
        color: var(--text) !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
    }
    .navbar-nav .nav-link::after { display: none !important; }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }

    /* Dropdown toggles in mobile */
    .navbar-nav .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .navbar-nav .dropdown-toggle .fa-chevron-down {
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    .navbar-nav .dropdown.submenu-open .dropdown-toggle .fa-chevron-down {
        transform: rotate(180deg);
    }

    /* Submenus in mobile — hidden by default */
    .navbar-nav .dropdown-menu {
        display: none !important;
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: var(--bg-alt) !important;
        border-radius: var(--radius-md) !important;
        padding: 10px 0 10px 16px !important;
        margin-top: 0 !important;
        float: none !important;
        width: 100% !important;
    }

    .navbar-nav .dropdown.submenu-open > .dropdown-menu {
        display: block !important;
    }

    /* Mega menu in mobile */
    .mega-menu {
        display: none !important;
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: var(--bg-alt) !important;
        border-radius: var(--radius-md) !important;
        padding: 10px 0 !important;
        margin-top: 0 !important;
        float: none !important;
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    }
    .mega-menu-inner {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 0 !important;
    }
    .mega-col { padding: 0 10px !important; }
    .mega-col:first-child {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        padding-bottom: 10px !important;
        margin-bottom: 10px !important;
    }
    .mega-menu .dropdown-item {
        display: flex !important;
        align-items: flex-start;
        white-space: normal !important;
        overflow-wrap: anywhere;
    }
    .mega-menu .dropdown-item i {
        flex: 0 0 20px;
        margin-top: 4px;
        margin-right: 8px;
    }

    /* Header CTA in mobile */
    .header-cta {
        margin-top: 20px;
        padding-top: 20px;
    }
    .header-phone { color: var(--text) !important; }
}

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;   /* between header (1000) and nav panel (10001) */
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.mobile-overlay.show { opacity: 1; visibility: visible; }

/* Mobile toggler */
.navbar-toggler {
    border: none;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    z-index: 10002;   /* above everything */
    position: relative;
}
.toggler-line {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}
.main-header.scrolled .toggler-line { background: var(--text); }
.navbar-toggler.active .toggler-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggler.active .toggler-line:nth-child(2) { opacity: 0; }
.navbar-toggler.active .toggler-line:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.main-header.mobile-nav-open .navbar-toggler { visibility: hidden; pointer-events: none; }

/* ===========================================
   DESKTOP NAV LINKS
   =========================================== */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        font-size: 15px;
        font-weight: 500;
        color: rgba(255,255,255,0.9);
        padding: 8px 16px !important;
        position: relative;
        transition: var(--transition);
    }
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0; left: 16px; right: 16px;
        height: 2px;
        background: var(--accent);
        border-radius: 2px;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active { color: #fff; }
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after { transform: scaleX(1); }

    .main-header.scrolled .navbar-nav .nav-link { color: var(--text); }
    .main-header.scrolled .navbar-nav .nav-link:hover,
    .main-header.scrolled .navbar-nav .nav-link.active { color: var(--primary); }

    /* Chevrons inside dropdown toggles */
    .navbar-nav .dropdown-toggle .fa-chevron-down {
        font-size: 10px;
        margin-left: 4px;
        transition: transform 0.3s ease;
    }
    .navbar-nav .dropdown.show .dropdown-toggle .fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* ===========================================
   MEGA MENU — DESKTOP ONLY (mobile handled above)
   =========================================== */
@media (min-width: 992px) {
    /* Anchor the mega menu directly beneath the Services link. */
    .mega-dropdown {
        position: relative !important;
    }

    .mega-menu {
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        right: auto !important;
        width: min(820px, calc(100vw - 32px)) !important;
        border: none !important;
        border-radius: 20px !important;
        background: #fff !important;
        box-shadow: var(--shadow-xl) !important;
        padding: 0 !important;
        margin-top: 0 !important;
        border-top: 3px solid var(--accent) !important;
        float: none !important;
        transform: translateX(-50%) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;          /* Bootstrap .show will set display:block */
    }

    .mega-dropdown.show > .mega-menu {
        display: block !important;
        animation: servicesMegaMenuFade 0.3s ease forwards;
    }

    @keyframes servicesMegaMenuFade {
        from { opacity: 0; transform: translateX(-50%) translateY(10px); }
        to { opacity: 1; transform: translateX(-50%) translateY(0); }
    }
    @keyframes megaMenuFade {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .mega-menu-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 20px 0;
    }
    .mega-col { padding: 0 30px; }
    .mega-col:first-child { border-right: 1px solid var(--border); }

    .mega-heading {
        font-family: var(--font-alt);
        font-size: 14px;
        font-weight: 700;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--border);
    }
    .mega-menu .dropdown-item {
        padding: 8px 12px;
        font-size: 14px;
        color: var(--text);
        border-radius: var(--radius-sm);
        transition: var(--transition);
    }
    .mega-menu .dropdown-item i {
        width: 20px;
        color: var(--primary);
        font-size: 13px;
        margin-right: 8px;
    }
    .mega-menu .dropdown-item:hover {
        background: var(--bg-alt);
        color: var(--primary);
        padding-left: 18px;
    }
}

/* ===========================================
   REGULAR DROPDOWN — DESKTOP
   =========================================== */
@media (min-width: 992px) {
    .navbar-nav > .nav-item.dropdown:not(.mega-dropdown) .dropdown-menu {
        display: none !important;
        min-width: 220px;
        border: none;
        box-shadow: var(--shadow-lg);
        border-radius: var(--radius-md);
        padding: 10px;
        border-top: 3px solid var(--accent);
        margin-top: 0 !important;
    }

    .navbar-nav > .nav-item.dropdown:not(.mega-dropdown).show > .dropdown-menu {
        display: block !important;
        animation: megaMenuFade 0.3s ease forwards;
    }

    .dropdown-menu .dropdown-item {
        padding: 10px 16px;
        font-size: 14px;
        color: var(--text);
        border-radius: var(--radius-sm);
        transition: var(--transition);
    }
    .dropdown-menu .dropdown-item i {
        width: 20px;
        color: var(--primary);
        font-size: 13px;
        margin-right: 8px;
    }
    .dropdown-menu .dropdown-item:hover {
        background: var(--bg-alt);
        color: var(--primary);
        padding-left: 22px;
    }
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.9);
    font-weight: 600; font-size: 15px;
}
.header-phone i {
    color: var(--accent);
    font-size: 18px;
    animation: phoneRing 2s ease infinite;
}
@keyframes phoneRing {
    0%,100%{transform:rotate(0)} 10%{transform:rotate(15deg)} 20%{transform:rotate(-15deg)} 30%{transform:rotate(10deg)} 40%{transform:rotate(0)}
}
.main-header.scrolled .header-phone { color: var(--text); }
.header-cta .btn-cta-primary { padding: 10px 24px; font-size: 14px; }

/* ---------- HERO SECTION ---------- */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;padding:100px 0; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroBgZoom 20s ease-in-out infinite alternate; }
@keyframes heroBgZoom { from{transform:scale(1.05)} to{transform:scale(1.15)} }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,78,160,0.92) 0%, rgba(0,58,120,0.85) 50%, rgba(0,40,80,0.75) 100%); z-index: 1; }

.hero-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; opacity: 0.08; background: #fff; }
.shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation: floatShape1 8s ease-in-out infinite; }
.shape-2 { width: 200px; height: 200px; bottom: 10%; left: 5%; animation: floatShape2 6s ease-in-out infinite; }
.shape-3 { width: 100px; height: 100px; top: 30%; right: 20%; background: var(--accent); opacity: 0.1; animation: floatShape3 10s ease-in-out infinite; }
.shape-4 { width: 60px; height: 60px; top: 60%; left: 15%; border-radius: var(--radius-md); transform: rotate(45deg); animation: floatShape2 7s ease-in-out infinite reverse; }
.shape-5 { width: 150px; height: 150px; bottom: -50px; right: 30%; background: var(--accent); opacity: 0.06; animation: floatShape1 12s ease-in-out infinite; }
@keyframes floatShape1 { 0%,100%{transform:translate(0,0) rotate(0deg)} 50%{transform:translate(-30px,30px) rotate(10deg)} }
@keyframes floatShape2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-20px)} }
@keyframes floatShape3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-15px,15px) scale(1.1)} }

.hero-content-col { position: relative; z-index: 3; }
.hero-content { max-width: 680px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    color: #fff; font-size: 13px; font-weight: 500;
    margin-bottom: 24px; backdrop-filter: blur(10px);
}
.hero-badge i { color: var(--accent); }
.hero-title { font-family: var(--font-alt); font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.15; color: #fff; margin-bottom: 20px; }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 540px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; }
.trust-item i { color: var(--accent); font-size: 16px; }

.hero-visual-col { position: relative; z-index: 3; }
.hero-visual { position: relative; padding: 20px; }
.hero-image-frame { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.4); border: 4px solid rgba(255,255,255,0.15); }
.hero-image-frame img { width: 100%; height: 500px; object-fit: cover; }

.floating-card {
    position: absolute;
    display: flex; align-items: center; gap: 12px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 5;
}
.floating-card i { font-size: 24px; color: var(--primary); }
.floating-card strong { display: block; font-family: var(--font-alt); font-size: 18px; font-weight: 800; color: var(--text); line-height: 1.1; }
.floating-card span { font-size: 12px; color: var(--text-light); font-weight: 500; }
.card-1 { top: 30px; left: -30px; animation: floatCard1 4s ease-in-out infinite; }
.card-2 { top: 50%; right: -20px; animation: floatCard2 5s ease-in-out infinite; }
.card-3 { bottom: 60px; left: 10px; animation: floatCard1 6s ease-in-out infinite reverse; }
@keyframes floatCard1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes floatCard2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
.scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.3); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-dot { width: 4px; height: 8px; background: var(--accent); border-radius: 4px; animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { 0%,100%{opacity:1;transform:translateY(0)} 50%{opacity:0.3;transform:translateY(10px)} }

@media (max-width: 991.98px) { .hero-section { min-height: auto; padding-top: 100px; padding-bottom: 80px; } .hero-trust-row { gap: 12px; } .trust-item { font-size: 13px; } }
@media (max-width: 575.98px) { .hero-buttons { flex-direction: column; } .hero-buttons .btn-cta-primary, .hero-buttons .btn-cta-secondary { width: 100%; } .hero-trust-row { gap: 8px 16px; } }

/* ---------- ABOUT SECTION ---------- */
.about-image-wrap { position: relative; }
.about-image-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image-main img { width: 100%; height: 550px; object-fit: cover; transition: transform 0.7s ease; }
.about-image-wrap:hover .about-image-main img { transform: scale(1.05); }
.about-image-accent { position: absolute; bottom: -30px; right: -20px; width: 220px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); border: 5px solid var(--bg); }
.about-image-accent img { width: 100%; height: 180px; object-fit: cover; }
.about-exp-badge { position: absolute; top: -20px; right: 30px; background: var(--accent); color: var(--text); padding: 20px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-accent); z-index: 2; }
.exp-number { display: block; font-family: var(--font-alt); font-size: 36px; font-weight: 800; line-height: 1; }
.exp-text { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; line-height: 1.3; }
.about-image-decor { position: absolute; bottom: -20px; left: -20px; width: 200px; height: 200px; border: 3px solid var(--accent); border-radius: var(--radius-xl); opacity: 0.3; z-index: 0; }
.about-content .section-label { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 20px; }
.about-text { color: var(--text-light); margin-bottom: 16px; font-size: 15px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.about-feature-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text); }
.about-feature-item i { color: var(--primary); font-size: 16px; width: 32px; height: 32px; background: rgba(0,78,160,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.about-counters { margin-top: 80px; }
.counter-card { text-align: center; padding: 30px 20px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); transition: var(--transition); border: 1px solid var(--border); }
.counter-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.counter-icon { width: 50px; height: 50px; margin: 0 auto 16px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; }
.counter-number { display: inline; font-family: var(--font-alt); font-size: 42px; font-weight: 800; color: var(--primary); line-height: 1; }
.counter-suffix { display: inline; font-family: var(--font-alt); font-size: 28px; font-weight: 800; color: var(--accent); line-height: 1; }
.counter-label { font-size: 14px; color: var(--text-light); font-weight: 500; margin-top: 8px; }

@media (max-width: 767.98px) { .about-image-accent { display: none; } .about-image-decor { display: none; } .about-image-main img { height: 350px; } .about-features { grid-template-columns: 1fr; } .about-counters { margin-top: 50px; } }

/* ---------- SERVICES SECTION ---------- */
.service-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); height: 100%; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card-image { position: relative; overflow: hidden; height: 270px; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-image img { transform: scale(1.1); }
.service-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,78,160,0.7), rgba(0,78,160,0.3)); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.service-card:hover .service-card-overlay { opacity: 1; }
.service-card-overlay i { font-size: 40px; color: #fff; transform: scale(0.5); transition: var(--transition-slow); }
.service-card:hover .service-card-overlay i { transform: scale(1); }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-family: var(--font-alt); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-card-body p { font-size: 14px; color: var(--text-light); flex: 1; margin-bottom: 16px; }
.service-read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--primary); transition: var(--transition); }
.service-read-more i { font-size: 12px; transition: var(--transition); }
.service-read-more:hover { color: var(--accent); gap: 12px; }

/* ---------- GALLERY SECTION ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: var(--transition-slow); }
.gallery-item img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,78,160,0.85), rgba(0,40,80,0.7)); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-zoom { width: 52px; height: 52px; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; transition: var(--transition); backdrop-filter: blur(10px); }
.gallery-zoom:hover { background: var(--accent); border-color: var(--accent); color: var(--text); }
@media (max-width: 991.98px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-item img { height: 250px; } }
@media (max-width: 575.98px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-item img { height: 260px; } }

/* ---------- TESTIMONIALS SECTION ---------- */
.testimonials-slider-wrap { max-width: 900px; margin: 0 auto; overflow: hidden; }
.testimonial-card { background: #fff; border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--border); position: relative; margin: 10px; }
.testimonial-quote-icon { position: absolute; top: 20px; right: 30px; font-size: 50px; color: rgba(0,78,160,0.06); }
.testimonial-stars { margin-bottom: 20px; }
.testimonial-stars i { color: var(--accent); font-size: 16px; margin-right: 2px; }
.testimonial-text { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; border: 3px solid var(--accent); flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author-info strong { display: block; font-family: var(--font-alt); font-size: 16px; font-weight: 700; color: var(--text); }
.testimonial-author-info span { font-size: 13px; color: var(--text-muted); }
.swiper-pagination-bullet { width: 10px; height: 10px; background: var(--border); opacity: 1; transition: var(--transition); }
.swiper-pagination-bullet-active { background: var(--primary); width: 28px; border-radius: 5px; }

/* ---------- FAQ SECTION ---------- */
.faq-left-content .section-label { margin-bottom: 12px; }
.faq-left-content .section-title { margin-bottom: 16px; }
.faq-cta-card { display: flex; align-items: center; gap: 16px; padding: 24px; background: var(--bg-alt); border-radius: var(--radius-lg); border: 1px solid var(--border); margin-top: 24px; flex-wrap: wrap; }
.faq-cta-card > i { font-size: 36px; color: var(--primary); flex-shrink: 0; }
.faq-cta-card strong { display: block; font-family: var(--font-alt); font-size: 16px; color: var(--text); }
.faq-cta-card p { font-size: 13px; color: var(--text-light); margin: 0; }
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-md) !important; margin-bottom: 12px; overflow: hidden; }
.accordion-button { font-family: var(--font-primary); font-size: 16px; font-weight: 600; color: var(--text); background: #fff; padding: 18px 24px; box-shadow: none !important; transition: var(--transition); }
.accordion-button:not(.collapsed) { background: rgba(0,78,160,0.04); color: var(--primary); }
.accordion-button::after { background-image: none; content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 12px; width: auto; height: auto; transition: var(--transition); }
.accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.accordion-body { font-size: 15px; color: var(--text-light); line-height: 1.8; padding: 0 24px 20px; }
.accordion-body a { color: var(--primary); font-weight: 600; }
.accordion-body a:hover { color: var(--accent); }

/* ---------- AREAS SECTION ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.area-card { display: flex; align-items: center; gap: 10px; padding: 16px 20px; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border); transition: var(--transition); cursor: default; }
.area-card:hover { border-color: var(--primary); background: rgba(0,78,160,0.03); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.area-card i { color: var(--primary); font-size: 16px; flex-shrink: 0; }
.area-card span { font-size: 14px; font-weight: 600; color: var(--text); }

/* ---------- CTA SECTION ---------- */
.cta-section { position: relative; padding: 80px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); overflow: hidden; }
.cta-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.cta-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); }
.cta-shape-1 { width: 300px; height: 300px; top: -100px; right: -50px; animation: floatShape1 8s ease-in-out infinite; }
.cta-shape-2 { width: 200px; height: 200px; bottom: -80px; left: 10%; animation: floatShape2 6s ease-in-out infinite; }
.cta-shape-3 { width: 100px; height: 100px; top: 20%; left: 30%; background: rgba(247,164,7,0.1); animation: floatShape3 10s ease-in-out infinite; }
.cta-shape-4 { width: 150px; height: 150px; bottom: 10%; right: 25%; animation: floatShape1 12s ease-in-out infinite reverse; }
.cta-title { font-family: var(--font-alt); font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-text { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 600px; }
.cta-buttons { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 991.98px) { .cta-section { text-align: center; } .cta-text { margin: 0 auto 20px; } }

/* ---------- CONTACT SECTION ---------- */
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.contact-info-card { display: flex; align-items: center; gap: 16px; padding: 20px; background: var(--bg-alt); border-radius: var(--radius-md); border: 1px solid var(--border); transition: var(--transition); }
.contact-info-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.contact-info-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; flex-shrink: 0; }
.contact-info-card strong { display: block; font-family: var(--font-alt); font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.contact-info-card a, .contact-info-card span { font-size: 14px; color: var(--text-light); }
.contact-info-card a:hover { color: var(--primary); }

.map-placeholder { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-inner { background: var(--bg-alt); padding: 40px; text-align: center; }
.map-inner i { font-size: 48px; color: var(--primary); }
.map-inner p { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 16px; }

.contact-form-wrap { background: #fff; border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.contact-form-title { font-family: var(--font-alt); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 24px; }
.form-control, .form-select { border: 1px solid var(--border); border-radius: var(--radius-md); font-family: var(--font-primary); font-size: 14px; color: var(--text); transition: var(--transition); background: var(--bg-alt); }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,78,160,0.1); background: #fff; }
.form-floating > label { font-size: 14px; color: var(--text-muted); }
.form-floating > label i { margin-right: 6px; color: var(--primary); }
.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label { color: var(--primary); }
.form-success-message { text-align: center; padding: 60px 20px; }
.form-success-message i { font-size: 60px; color: #22c55e; margin-bottom: 16px; }
.form-success-message h4 { font-family: var(--font-alt); font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-success-message p { color: var(--text-light); }

/* ---------- FOOTER ---------- */
.footer-section { background: #0f172a; color: rgba(255,255,255,0.7); padding-top: 80px; }
.footer-main { padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { margin-bottom: 20px; }
.footer-logo .logo-icon { background: linear-gradient(135deg, var(--primary-light), var(--primary)); }
.footer-logo .logo-name { color: #fff; }
.footer-logo .logo-sub { color: rgba(255,255,255,0.5); }
.footer-about { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 15px; transition: var(--transition); }
.footer-socials a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-widget-title { font-family: var(--font-alt); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 24px; position: relative; padding-bottom: 12px; }
.footer-widget-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--accent); border-radius: 3px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a i { font-size: 10px; color: var(--accent); transition: var(--transition); }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.footer-contact i { color: var(--accent); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: #fff; }
.footer-map-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 8px 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-full); font-size: 13px; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-map-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-bottom { padding: 24px 0; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom p { margin: 0; }

/* ---------- BACK TO TOP ---------- */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; background: var(--primary); color: #fff; border: none; border-radius: var(--radius-md); font-size: 18px; cursor: pointer; z-index: 900; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); box-shadow: var(--shadow-primary); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); color: var(--text); transform: translateY(-3px); }

/* ---------- LIGHTBOX ---------- */
.lightbox-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.92); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 90vw; max-height: 85vh; }
.lightbox-image { max-width: 100%; max-height: 85vh; border-radius: var(--radius-md); box-shadow: 0 0 60px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; transition: var(--transition); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--primary); border-color: var(--primary); }

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 1199.98px) { .section-padding { padding: 80px 0; } }
@media (max-width: 991.98px) { .section-padding { padding: 70px 0; } .section-title { font-size: clamp(24px, 4vw, 36px); } }
@media (max-width: 767.98px) { .section-padding { padding: 60px 0; } .contact-form-wrap { padding: 24px; } .testimonial-card { padding: 24px; } .faq-cta-card { flex-direction: column; text-align: center; } }
@media (max-width: 575.98px) { .section-padding { padding: 50px 0; } .areas-grid { grid-template-columns: repeat(2, 1fr); } .counter-number { font-size: 32px; } .counter-suffix { font-size: 22px; } .cta-section { padding: 60px 0; } }

/* ---------- FORM VALIDATION ---------- */
.form-control.is-invalid, .form-select.is-invalid { border-color: #ef4444; background-image: none; }
.form-control.is-valid, .form-select.is-valid { border-color: #22c55e; background-image: none; }
.invalid-feedback { font-size: 12px; color: #ef4444; margin-top: 4px; }

/* ---------- PRINT ---------- */
@media print {
    .main-header, .back-to-top, .scroll-indicator, .hero-shapes, .cta-shapes, #preloader { display: none !important; }
    body { color: #000; background: #fff; }
    .hero-section { min-height: auto; padding: 20px 0; }
    .hero-overlay { background: none; }
}


ul.footer-links, ul.footer-contact {
    padding-left: 0px;
}


/* ===========================================
   PAGE HERO BANNER (Inner Pages)
   =========================================== */
.page-hero {
    position: relative;
    padding: 200px 0 100px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroBgZoom 20s ease-in-out infinite alternate;
}

.page-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,78,160,0.9) 0%, rgba(0,40,80,0.85) 100%);
    z-index: 1;
}

.page-hero-shapes {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

.page-hero-shapes .shape-1 {
    width: 300px; height: 300px;
    top: -80px; right: -60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    animation: floatShape1 8s ease-in-out infinite;
}

.page-hero-shapes .shape-2 {
    width: 150px; height: 150px;
    bottom: -40px; left: 10%;
    border-radius: 50%;
    background: rgba(247,164,7,0.08);
    animation: floatShape2 6s ease-in-out infinite;
}

.page-hero-content {
    position: relative;
    z-index: 3;
}

.page-hero-title {
    font-family: var(--font-alt);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    background: none;
}

.breadcrumb-item {
    font-size: 15px;
    font-weight: 500;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-item.active {
    color: var(--accent);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-right: 4px;
}

@media (max-width: 991.98px) {
    .page-hero { padding: 160px 0 70px; }
}

@media (max-width: 575.98px) {
    .page-hero { padding: 140px 0 60px; }
}

/* ===========================================
   MISSION & VISION
   =========================================== */
.mv-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: var(--primary);
    border-radius: 0 4px 4px 0;
    transition: height 0.5s ease;
}

.mv-card:hover::before {
    height: 100%;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mv-card-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.mv-card:hover .mv-card-icon {
    transform: scale(1.1);
}

.mv-card-icon.vision-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.mv-card h3 {
    font-family: var(--font-alt);
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.mv-card > p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mv-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.mv-list li i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

/* ===========================================
   WHY CHOOSE US CARDS
   =========================================== */
.why-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.why-card-number {
    position: absolute;
    top: 16px; right: 20px;
    font-family: var(--font-alt);
    font-size: 48px;
    font-weight: 800;
    color: rgba(0,78,160,0.05);
    line-height: 1;
}

.why-card-icon {
    width: 56px; height: 56px;
    background: rgba(0,78,160,0.08);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-card:hover .why-card-icon {
    background: var(--primary);
    color: #fff;
}

.why-card h4 {
    font-family: var(--font-alt);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===========================================
   STATS SECTION (Parallax Background)
   =========================================== */
.about-stats-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.about-stats-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.about-stats-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.about-stats-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,78,160,0.92) 0%, rgba(0,58,120,0.9) 100%);
    z-index: 1;
}

.about-stats-section .container {
    z-index: 2;
}

.counter-card-light {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.counter-card-light:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-5px);
}

.counter-card-light .counter-number {
    color: #fff;
}

.counter-card-light .counter-suffix {
    color: var(--accent);
}

.counter-card-light .counter-label {
    color: rgba(255,255,255,0.8);
}

.counter-card-light .counter-icon {
    display: none;
}

/* ===========================================
   TEAM CARDS
   =========================================== */
.team-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-card-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.team-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.08);
}

.team-card-social {
    position: absolute;
    bottom: -60px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    transition: bottom 0.4s ease;
}

.team-card:hover .team-card-social {
    bottom: 0;
}

.team-card-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 14px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.team-card-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.team-card-body {
    padding: 24px;
    text-align: center;
}

.team-card-body h4 {
    font-family: var(--font-alt);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.team-role {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.team-card-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===========================================
   VALUE CARDS
   =========================================== */
.value-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary);
}

.value-card-icon {
    width: 48px; height: 48px;
    background: rgba(0,78,160,0.08);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.value-card:hover .value-card-icon {
    background: var(--primary);
    color: #fff;
}

.value-card h4 {
    font-family: var(--font-alt);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===========================================
   CERTIFICATION CARDS
   =========================================== */
.cert-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.cert-card-icon {
    width: 60px; height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 24px;
    transition: var(--transition);
}

.cert-card:hover .cert-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.cert-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    display: block;
    line-height: 1.4;
}

/* ===========================================
   ABOUT PAGE — RESPONSIVE
   =========================================== */
@media (max-width: 991.98px) {
    .mv-card { padding: 28px; }
    .team-card-image { height: 280px; }
}

@media (max-width: 767.98px) {
    .mv-card { padding: 24px; }
    .why-card { padding: 24px 20px; }
    .why-card-number { font-size: 36px; }
    .team-card-image { height: 260px; }
}

@media (max-width: 575.98px) {
    .about-stats-section { padding: 60px 0; }
    .cert-card { padding: 24px 12px; }
}

/* ===========================================
   SERVICES PAGE — INTRO SECTION
   =========================================== */
.services-intro-section {
    padding-bottom: 0;
}

.all-services-section {
    padding-top: 20px;
}

/* ===========================================
   FEATURED SERVICE CARD (Emergency — last card)
   =========================================== */
.service-card-featured {
    border-color: var(--accent);
    border-width: 2px;
    position: relative;
}

.service-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    background: var(--accent);
    color: var(--text);
    font-family: var(--font-alt);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-accent);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(247,164,7,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(247,164,7,0); }
}

.service-read-more-emergency {
    background: var(--accent);
    color: var(--text);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.service-read-more-emergency:hover {
    background: var(--accent-dark);
    color: var(--text);
    gap: 14px !important;
}

/* ===========================================
   PROCESS / HOW WE WORK CARDS
   =========================================== */
.process-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-card:hover::after {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.process-step {
    font-family: var(--font-alt);
    font-size: 48px;
    font-weight: 800;
    color: rgba(0,78,160,0.06);
    line-height: 1;
    margin-bottom: 12px;
}

.process-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 24px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-primary);
}

.process-card h4 {
    font-family: var(--font-alt);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Process connector line (desktop) */
@media (min-width: 992px) {
    .process-card {
        position: relative;
    }
    .col-lg-3:not(:last-child) .process-card::before {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--border);
        font-size: 16px;
        z-index: 2;
    }
}

/* ===========================================
   SERVICE AREAS STRIP
   =========================================== */
.service-areas-strip {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.strip-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

@media (min-width: 768px) {
    .strip-content {
        flex-wrap: nowrap;
        justify-content: flex-start;
        text-align: left;
    }
}

.strip-icon {
    width: 56px; height: 56px;
    background: rgba(0,78,160,0.08);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}

.strip-text {
    flex: 1;
    min-width: 200px;
}

.strip-text strong {
    display: block;
    font-family: var(--font-alt);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.strip-text span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.strip-cta {
    flex-shrink: 0;
}

/* ===========================================
   SERVICES PAGE — RESPONSIVE
   =========================================== */
@media (max-width: 991.98px) {
    .process-card { padding: 28px 20px; }
    .process-step { font-size: 36px; }
}

@media (max-width: 767.98px) {
    .service-card-featured {
        margin-top: 8px;
    }
    .col-md-6.col-lg-4.offset-lg-2 {
        margin-left: 0;
    }
}


/* ===========================================
   RENOVATIONS PAGE
   =========================================== */

/* --- Intro Section Image --- */
.reno-intro-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.reno-intro-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.reno-intro-image:hover img {
    transform: scale(1.04);
}

.reno-intro-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.reno-intro-badge > i {
    font-size: 32px;
    color: var(--accent);
}

.reno-intro-badge strong {
    display: block;
    font-family: var(--font-alt);
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}

.reno-intro-badge span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* ===========================================
   LARGE RENOVATION CARDS (2 Main Boxes)
   =========================================== */
.reno-large-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: var(--transition-slow);
}

.reno-large-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.reno-large-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.reno-large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.reno-large-card:hover .reno-large-image img {
    transform: scale(1.06);
}

.reno-large-image-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,78,160,0.7), rgba(0,40,80,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.reno-large-card:hover .reno-large-image-overlay {
    opacity: 1;
}

.reno-large-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

.reno-large-card:hover .reno-large-overlay-content {
    transform: translateY(0);
}

.reno-large-overlay-content i {
    font-size: 40px;
}

.reno-large-overlay-content span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reno-large-image-link {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
}

.reno-large-body {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.reno-large-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 26px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.reno-large-card:hover .reno-large-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: var(--shadow-primary);
}

.reno-large-body h2 {
    font-family: var(--font-alt);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.reno-large-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.reno-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.reno-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
}

.reno-features-list li i {
    color: var(--accent);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* --- Responsive for large cards --- */
@media (max-width: 991.98px) {
    .reno-large-image {
        min-height: 320px;
    }
    .reno-large-body {
        padding: 32px 28px;
    }
    .reno-large-card-reverse .col-lg-6 {
        order: unset !important;
    }
}

@media (max-width: 575.98px) {
    .reno-large-image {
        min-height: 260px;
    }
    .reno-large-body {
        padding: 28px 20px;
    }
    .reno-intro-image img {
        height: 320px;
    }
}

/* ===========================================
   RENOVATION GALLERY THUMBS
   =========================================== */
.reno-thumb {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.reno-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.reno-thumb:hover img {
    transform: scale(1.1);
}

.reno-thumb-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,78,160,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.reno-thumb:hover .reno-thumb-overlay {
    opacity: 1;
}

.reno-thumb-overlay i {
    color: #fff;
    font-size: 24px;
    transform: scale(0.5);
    transition: var(--transition-slow);
}

.reno-thumb:hover .reno-thumb-overlay i {
    transform: scale(1);
}

/* ===========================================
   RENOVATION PROCESS CARDS
   =========================================== */
.reno-process-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.reno-process-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.reno-process-card:hover::after {
    transform: scaleX(1);
}

.reno-process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.reno-process-number {
    font-family: var(--font-alt);
    font-size: 44px;
    font-weight: 800;
    color: rgba(0,78,160,0.06);
    line-height: 1;
    margin-bottom: 8px;
}

.reno-process-icon {
    width: 60px; height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px;
    transition: var(--transition);
}

.reno-process-card:hover .reno-process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-primary);
}

.reno-process-card h4 {
    font-family: var(--font-alt);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.reno-process-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===========================================
   RENO WHY CARDS
   =========================================== */
.reno-why-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.reno-why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary);
}

.reno-why-icon {
    width: 56px; height: 56px;
    margin: 0 auto 18px;
    background: rgba(0,78,160,0.08);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transition: var(--transition);
}

.reno-why-card:hover .reno-why-icon {
    background: var(--primary);
    color: #fff;
}

.reno-why-card h4 {
    font-family: var(--font-alt);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.reno-why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===========================================
   RENOVATIONS PAGE — RESPONSIVE
   =========================================== */
@media (max-width: 991.98px) {
    .reno-process-card { padding: 28px 20px; }
    .reno-process-number { font-size: 36px; }
}

/* ===========================================
   GALLERY PAGE — CLEAN MASONRY-STYLE GRID
   =========================================== */
.gallery-page-intro {
    padding-bottom: 0;
}

.gallery-page-section {
    padding-top: 20px;
}

.clean-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

/* Tall items span 2 rows */
.clean-gallery-item-tall {
    grid-row: span 2;
}

/* Wide items span 2 columns */
.clean-gallery-item-wide {
    grid-column: span 2;
}

.clean-gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.clean-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
}

.clean-gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.clean-gallery-item:hover .clean-gallery-link img {
    transform: scale(1.08);
}

/* Hover overlay — only expand icon, no text */
.clean-gallery-hover {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,78,160,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.clean-gallery-item:hover .clean-gallery-hover {
    opacity: 1;
}

.clean-gallery-hover i {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transform: scale(0.6);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.clean-gallery-item:hover .clean-gallery-hover i {
    transform: scale(1);
}

/* Gallery counter text */
.gallery-counter-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 10px 24px;
    background: var(--bg-alt);
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.gallery-counter-text i {
    color: var(--primary);
}

/* ===========================================
   LIGHTBOX ENHANCEMENTS — Counter & Swipe
   =========================================== */

/* Counter badge inside lightbox */
.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-family: var(--font-alt);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    z-index: 10;
    pointer-events: none;
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
}

/* Make lightbox nav buttons larger and more visible */
.lightbox-prev,
.lightbox-next {
    width: 56px;
    height: 56px;
    font-size: 20px;
}

/* Touch swipe hint — subtle gradient edges */
.lightbox-content::before,
.lightbox-content::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-content::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.3), transparent);
}

.lightbox-content::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.3), transparent);
}

.lightbox-overlay.active .lightbox-content::before,
.lightbox-overlay.active .lightbox-content::after {
    opacity: 1;
}

/* ===========================================
   GALLERY PAGE — RESPONSIVE
   =========================================== */
@media (max-width: 991.98px) {
    .clean-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 12px;
    }

    .clean-gallery-item-wide {
        grid-column: span 2;
    }
}

@media (max-width: 575.98px) {
    .clean-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
        gap: 12px;
    }

    /* On mobile, wide and tall items become standard height */
    .clean-gallery-item-wide,
    .clean-gallery-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .lightbox-counter {
        font-size: 12px;
        padding: 6px 16px;
        bottom: 80px;
    }
}

/* ===========================================
   CONTACT PAGE — TOP DETAIL CARDS
   =========================================== */
.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 28px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.contact-detail-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-detail-card:hover::after {
    transform: scaleX(1);
}

.contact-detail-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 26px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-detail-card:hover .contact-detail-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-primary);
}

.contact-detail-body {
    flex: 1;
}

.contact-detail-body h4 {
    font-family: var(--font-alt);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-detail-body p {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
    word-break: break-all;
}

.contact-detail-body span {
    font-size: 13px;
    color: var(--text-muted);
}

.contact-detail-arrow {
    color: var(--border);
    font-size: 18px;
    transition: var(--transition);
    flex-shrink: 0;
}

.contact-detail-card:hover .contact-detail-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* ===========================================
   CONTACT PAGE — FORM SUBTITLE
   =========================================== */
.contact-form-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-top: -12px;
    margin-bottom: 28px;
}

/* ===========================================
   CONTACT PAGE — PREFERRED METHOD RADIOS
   =========================================== */
.contact-radio-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.contact-method-radios {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 16px 40px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-bottom: 8px;
}

.contact-method-radios .form-check {
    padding: 0;
    margin: 0;
    min-width: 100px;
}

.contact-method-radios .form-check-input {
    margin-top: 0;
    margin-right: 8px;
    background-color: #fff;
    border-color: var(--border);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.contact-method-radios .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.contact-method-radios .form-check-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-method-radios .form-check-label i {
    color: var(--text-muted);
    font-size: 13px;
}

/* ===========================================
   CONTACT PAGE — LARGE MAP
   =========================================== */
.contact-map-large {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.contact-map-large .map-inner {
    background: var(--bg-alt);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern to mimic a map */
.contact-map-large .map-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0,78,160,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,78,160,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.contact-map-large .map-inner i {
    font-size: 14px;
    color: #fff;
    position: relative;
    z-index: 1;
    display: block;
}

.contact-map-large .map-inner h4 {
    font-family: var(--font-alt);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.contact-map-large .map-inner p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.contact-map-large .map-inner .btn-cta-primary {
    position: relative;
    z-index: 1;
}

/* ===========================================
   CONTACT PAGE — TRUST SIGNALS
   =========================================== */
.contact-trust-signals {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-signal-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.trust-signal-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.trust-signal-item > i {
    font-size: 24px;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.trust-signal-item strong {
    display: block;
    font-family: var(--font-alt);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.trust-signal-item span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===========================================
   CONTACT PAGE — EMERGENCY CTA
   =========================================== */
.emergency-cta-section {
    padding: 0 0 100px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.emergency-cta-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--accent);
    overflow: hidden;
    position: relative;
}

/* Subtle accent glow */
.emergency-cta-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(247,164,7,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.emergency-cta-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.emergency-pulse {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px;
    flex-shrink: 0;
    position: relative;
    animation: emergencyPulse 2s ease-in-out infinite;
}

@keyframes emergencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(247,164,7,0.5); }
    50% { box-shadow: 0 0 0 15px rgba(247,164,7,0); }
}

.emergency-cta-content h3 {
    font-family: var(--font-alt);
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.emergency-cta-content p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===========================================
   CONTACT PAGE — RESPONSIVE
   =========================================== */
@media (max-width: 991.98px) {
    .emergency-cta-section {
        padding-bottom: 60px;
    }
    .emergency-cta-card {
        padding: 28px;
    }
    .contact-map-large .map-inner {
        padding: 36px 24px;
    }
}

@media (max-width: 575.98px) {
    .contact-detail-card {
        padding: 24px 20px;
        gap: 16px;
    }
    .contact-detail-icon {
        width: 52px; height: 52px;
        font-size: 22px;
    }
    .contact-detail-body h4 {
        font-size: 16px;
    }
    .contact-method-radios {
        gap: 12px;
    }
    .emergency-cta-content {
        gap: 16px;
    }
    .emergency-pulse {
        width: 56px; height: 56px;
        font-size: 22px;
    }
    .emergency-cta-content h3 {
        font-size: 20px;
    }
}

/* ===========================================
   INDIVIDUAL SERVICE PAGE — SHARED COMPONENTS
   These styles apply to all /services/*.html pages
   =========================================== */

/* --- Service Overview Image --- */
.svc-overview-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.svc-overview-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.svc-overview-image:hover img {
    transform: scale(1.04);
}

.svc-overview-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.svc-overview-badge > i {
    font-size: 30px;
    color: var(--primary);
}

.svc-overview-badge strong {
    display: block;
    font-family: var(--font-alt);
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}

.svc-overview-badge span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* --- Service Highlights --- */
.svc-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.svc-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.svc-highlight-item i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

/* ===========================================
   SERVICE COVER CARDS (What We Cover grid)
   =========================================== */
.svc-cover-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
}

.svc-cover-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary);
}

.svc-cover-icon {
    width: 56px; height: 56px;
    background: rgba(0,78,160,0.08);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.svc-cover-card:hover .svc-cover-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08);
}

.svc-cover-card h4 {
    font-family: var(--font-alt);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.svc-cover-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===========================================
   SERVICE — WHEN TO CALL (Warning Signs)
   =========================================== */
.svc-when-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.svc-when-item {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.svc-when-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.svc-when-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(0,78,160,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

.svc-when-icon.warning {
    background: rgba(247,164,7,0.1);
    color: var(--accent-dark);
}

.svc-when-icon.danger {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
}

.svc-when-item:hover .svc-when-icon {
    transform: scale(1.1);
}

.svc-when-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.svc-when-item span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .svc-when-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   SERVICE PROCESS CARDS (Reused pattern)
   =========================================== */
.svc-process-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.svc-process-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.svc-process-card:hover::after { transform: scaleX(1); }

.svc-process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.svc-process-step {
    font-family: var(--font-alt);
    font-size: 44px;
    font-weight: 800;
    color: rgba(0,78,160,0.06);
    line-height: 1;
    margin-bottom: 12px;
}

.svc-process-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 24px;
    transition: var(--transition);
}

.svc-process-card:hover .svc-process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-primary);
}

.svc-process-card h4 {
    font-family: var(--font-alt);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.svc-process-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991.98px) {
    .svc-process-card { padding: 28px 20px; }
    .svc-process-step { font-size: 36px; }
}

/* ===========================================
   SERVICE RELATED CARDS
   =========================================== */
.svc-related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
    text-decoration: none;
}

.svc-related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.svc-related-icon {
    width: 60px; height: 60px;
    margin-bottom: 20px;
    background: rgba(0,78,160,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 26px;
    transition: var(--transition);
}

.svc-related-icon.accent {
    background: rgba(247,164,7,0.1);
    color: var(--accent-dark);
}

.svc-related-card:hover .svc-related-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.svc-related-card:hover .svc-related-icon.accent {
    background: var(--accent);
    color: var(--text);
}

.svc-related-card h4 {
    font-family: var(--font-alt);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.svc-related-card > span {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.svc-related-card:hover > span {
    gap: 10px;
}

.svc-related-card > span i {
    font-size: 11px;
    transition: var(--transition);
}

.svc-related-card:hover > span i {
    transform: translateX(3px);
}

/* ===========================================
   SERVICE PAGE — RESPONSIVE
   =========================================== */
@media (max-width: 991.98px) {
    .svc-overview-image img { height: 380px; }
    .svc-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
    .svc-overview-image img { height: 300px; }
    .svc-overview-badge { bottom: 16px; left: 16px; padding: 14px 18px; }
    .svc-overview-badge > i { font-size: 24px; }
    .svc-overview-badge strong { font-size: 14px; }
    .svc-cover-card { padding: 24px 20px; }
    .svc-when-item { padding: 16px; }
}
