/*
 Theme Name:     Enfold Child
 Theme URI:      http://kriesi.at/go/enfold/
 Description:    Enfold Child Theme for Forever Kitchen Bath
 Author:         John Doe
 Author URI:     http://example.com
 Template:       enfold
 Version:        1.0.0
 License:        GNU General Public License v2 or later
 License URI:    http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:    enfold-child
*/

@import url("../enfold/style.css");

/* ============================================
   CUSTOM CSS - Forever Kitchen Bath & Construction
   Design inspired by foreverroofing.net layout
   Content from foreverkitchenbath.net
   ============================================ */

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f37a20;
    --accent-color: #e86a10;
    --dark-color: #111111;
    --light-color: #f9f9f9;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    --gradient-gold: linear-gradient(135deg, #f37a20 0%, #e86a10 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   ROOT RESET - PREVENT ALL OVERFLOW
   ============================================ */

html {
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Kill Enfold overflow sources */
#top,
.container_wrap,
.entry-content-wrapper {
    overflow: visible !important;
    max-width: 100vw !important;
}

#main {
    overflow-x: hidden !important;
    overflow-y: visible !important;
    width: 100% !important;
    max-width: 100vw !important;
}

#wrap_all {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

#main {
    padding: 0 !important;
    margin: 0 !important;
}

/* Prevent layout shift on mobile */
img, svg, video, iframe, embed, object {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

/* Kill horizontal scroll on any element */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a, button, input, select, textarea {
    touch-action: manipulation;
}

/* Safe area support for notch devices */
@supports (padding: max(0px)) {
    .site-header .header-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
    }
    
    .mobile-nav-menu {
        padding-right: max(0px, env(safe-area-inset-right));
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }
}

/* Container universal fix */
.container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: var(--primary-color);
    padding: 4px 0;
    font-size: 16px;
    color: var(--white);
}

.top-bar-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-left a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.top-bar-left a:hover {
    color: var(--secondary-color);
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-right a {
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.top-bar-right a:hover {
    background: var(--secondary-color);
}

.license-badge {
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* ============================================
   HEADER - Clean Fixed Layout
   ============================================ */

/* Reset Enfold header styles */
#header,
#header_main,
.container_wrap_logo,
#top #header,
#top #header_main,
#top .container_wrap_logo {
    border: none !important;
    box-shadow: none !important;
    background: #fff !important;
    max-width: 100vw !important;
    overflow: visible !important;
}

/* Site Header Container */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100% !important;
    max-width: 100vw !important;
    overflow: visible !important;
}

.header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    overflow: visible !important;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 35px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Navigation */
.site-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    overflow: visible !important;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    gap: 8px;
    overflow: visible !important;
}

.nav-item {
    position: relative !important;
    overflow: visible !important;
    display: flex;
    align-items: center;
}

.nav-item > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 16px;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border-radius: 6px;
    white-space: nowrap;
}

.nav-item > a:hover,
.nav-item.active > a {
    color: var(--secondary-color);
    background: rgba(243, 122, 32, 0.05);
}

.nav-item.has-dropdown:hover > a {
    color: var(--secondary-color) !important;
    background: rgba(243, 122, 32, 0.1) !important;
}

.site-header:has(.nav-item.has-dropdown:hover) {
    border-bottom: 2px solid var(--secondary-color) !important;
}

.nav-item > a .arrow {
    display: inline-block;
    margin-left: 4px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item:hover > a .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.fkb-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: translateY(10px);
    background: var(--white) !important;
    min-width: 240px !important;
    padding: 12px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    box-shadow: var(--shadow-md) !important;
    border-radius: 10px !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 99999 !important;
    display: block !important;
    pointer-events: auto !important;
}

.fkb-dropdown::before {
    content: '' !important;
    position: absolute !important;
    top: -5px !important;
    left: 20px !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-bottom: 8px solid var(--white) !important;
}

/* Invisible bridge to prevent dropdown closing on gap */
.fkb-dropdown::after {
    content: '' !important;
    position: absolute !important;
    top: -15px !important;
    left: 0 !important;
    right: 0 !important;
    height: 15px !important;
}

.nav-item:hover > .fkb-dropdown,
.nav-item.has-dropdown:hover > .fkb-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.fkb-dropdown li {
    margin: 0;
    padding: 0;
}

.fkb-dropdown li a {
    display: block;
    padding: 10px 24px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0;
}

.fkb-dropdown li a:hover {
    background: var(--light-color);
    color: var(--secondary-color);
    padding-left: 28px;
}

.fkb-dropdown li.has-dropdown {
    position: relative;
}

.fkb-sub-dropdown {
    position: absolute;
    left: 100%;
    top: -8px;
    min-width: 230px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: all 0.2s ease;
    z-index: 10010;
}

.fkb-dropdown li.has-dropdown:hover > .fkb-sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Header CTA */
.header-cta {
    flex-shrink: 0;
    margin: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--dark-color);
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: -4px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-toggle:active {
    background: rgba(243, 122, 32, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--secondary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 10%;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    position: absolute;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: var(--white);
    list-style: none;
    margin: 0;
    padding: 70px 0 30px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu-overlay.active .mobile-nav-menu {
    transform: translateX(0);
}

/* Mobile menu brand header */
/* Mobile menu close button */
.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-menu li {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-menu li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(8) { transition-delay: 0.4s; }

.mobile-nav-menu li a,
.mobile-nav-menu li .mobile-dropdown-toggle {
    display: block;
    padding: 15px 24px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-menu li a:active,
.mobile-nav-menu li .mobile-dropdown-toggle:active {
    background: var(--light-color);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.mobile-dropdown.active .mobile-dropdown-toggle::after {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--light-color);
}

.mobile-dropdown.active .mobile-submenu {
    display: block;
}

.mobile-submenu li a {
    padding-left: 40px;
    font-weight: 500;
    font-size: 14px;
    border-bottom: none;
}

/* Hide Enfold default elements */
#header_main,
.container_wrap_logo,
.logo,
.main_menu {
    display: none !important;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-color);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 120px 20px 80px;
    margin: 0 auto;
}

.hero-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 6px 18px;
    border: 1px solid rgba(243,122,32,0.3);
    border-radius: 30px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.hero-actions .btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-color);
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243, 122, 32, 0.35);
}

.hero-actions .btn-outline-light {
    background: transparent;
    color: var(--white);
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
}

.hero-actions .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.hero-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-badge-item {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-badge-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-stats-bar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 0;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: -60px;
}

.hero-stat {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

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

.hero-stat-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 4px;
}

.hero-stat-lbl {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   MARQUEE SECTION
   ============================================ */

.services-marquee {
    background: var(--primary-color);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 50px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-icon {
    font-size: 24px;
}

.marquee-item::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-left: 50px;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.services-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .gallery-grid {
        gap: 12px;
    }
    
    .gallery-item {
        height: auto;
        aspect-ratio: 2/1;
        border-radius: 12px;
    }
    
    .gallery-overlay {
        padding: 16px;
        opacity: 1;
        background: linear-gradient(180deg, transparent 50%, rgba(13, 27, 42, 0.85) 100%);
    }
    
    .gallery-overlay h4 {
        font-size: 14px;
    }
    
    .gallery-overlay p {
        font-size: 11px;
    }
    
    .marquee-item {
        padding: 0 30px;
        font-size: 14px;
        gap: 8px;
    }
    
    .marquee-icon {
        font-size: 20px;
    }
    
    .marquee-item::after {
        width: 6px;
        height: 6px;
        margin-left: 30px;
    }
    
    .marquee-track {
        animation-duration: 20s;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-section {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f37a20' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-choose-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: var(--transition);
}

.why-choose-card:hover .why-choose-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.why-choose-content {
    width: 100%;
}

.why-choose-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.why-choose-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.why-choose-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 50px 0;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .why-choose-card {
        padding: 20px 15px;
    }
    
    .why-choose-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .why-choose-number {
        font-size: 28px;
    }
    
    .why-choose-label {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .why-choose-card p {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .why-choose-card {
        padding: 16px 12px;
        display: block;
        text-align: center;
    }
    
    .why-choose-icon {
        margin: 0 auto 10px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .why-choose-number {
        font-size: 24px;
        margin-bottom: 4px;
    }
    
    .why-choose-label {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .why-choose-card p {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
    padding: 30px 0;
}

.section-dark {
    background: var(--dark-color);
    color: var(--white);
}

.section-light {
    background: var(--light-color);
}

.section-gradient {
    background: var(--gradient-primary);
    color: var(--white);
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-dark .section-title,
.section-gradient .section-title {
    color: var(--white);
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-desc {
    color: rgba(255,255,255,0.7);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    left: auto;
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.about-experience-badge .number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--text-color);
}

.about-features li::before {
    content: '✓';
    background: var(--secondary-color);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-mv-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.about-mv-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-mv-card p {
    font-size: 14px;
    margin-bottom: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(200, 164, 90, 0.15);
    position: absolute;
    top: 15px;
    right: 20px;
    line-height: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-color);
}

/* ============================================
   WORK PROCESS SECTION
   ============================================ */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.process-card {
    text-align: center;
    position: relative;
    z-index: 2;
}
.process-card>h3 {
    color: var(--light-color)!important;
}

.process-step {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.process-card:hover .process-step {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.process-step-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-step-icon {
    font-size: 36px;
    margin: 5px 0;
}

.process-step-text {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
}

.process-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.process-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ============================================
   GALLERY/PROJECTS SECTION
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 2/1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 27, 42, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   TESTIMONIALS / GOOGLE REVIEWS SECTION
   ============================================ */

.testimonials-section {
    background: #fff}

.reviews-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.reviews-slider-prev,
.reviews-slider-next {
    background: #d4a54a;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
    line-height: 44px;
    text-align: center;
    padding: 0;
}

.reviews-slider-prev:hover,
.reviews-slider-next:hover {
    background: #b8892f;
}

.reviews-slider-dots {
    display: flex;
    gap: 8px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.reviews-dot.active {
    background: #d4a54a;
}

.sk-ww-google-reviews .sk-review {
    padding: 20px !important;
}

/* Google Rating Summary */
.google-rating-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    background: #000;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.google-rating-badge {
    display: flex;
    align-items: center;
    gap: 20px;
}

.google-rating-score {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-number {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.google-stars {
    display: flex;
    gap: 2px;
}

.review-count {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Accredited Badges */
.accredited-badges {
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.badge-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Google Reviews Grid */
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.google-review-card {
    background: #000;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.google-review-card:hover {
    transform: translateY(-5px);
    background: #000;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.review-date {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.google-icon {
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0;
}

.google-cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .google-rating-summary {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .google-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .google-review-card {
        padding: 25px;
    }
    
    .rating-number {
        font-size: 28px;
    }
    
    .accredited-badges {
        flex-wrap: wrap;
    }
}

/* ============================================
   SERVICE AREAS SECTION
   ============================================ */

.service-areas-section {
    background: #eee;
    padding: 118px 0;
}

.service-areas-section .container {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.service-areas-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-areas-map {
    position: sticky;
    top: 100px;
}

.map-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-image img {
    width: 100%;
    height: 650px !important;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-pin {
    animation: bounce 2s infinite;
}

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

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.map-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.area-item {
    display: block;
    padding: 10px 20px;
    background: rgb(101 92 92 / 68%);
    border-radius: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.area-item:hover {
    background: rgba(243, 122, 32, 0.2);
    border-color: rgba(243, 122, 32, 0.3);
    color: #fff;
    transform: translateX(5px);
}

.areas-cta {
    margin-top: 30px;
    text-align: center;
}

@media (max-width: 1024px) {
    .service-areas-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-areas-map {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .service-areas-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .area-item {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .map-image img {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .map-link {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-image {
    position: relative;
}

.faq-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 25px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-cta {
    margin-top: 30px;
    padding: 30px;
    background: var(--gradient-primary);
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

.faq-cta h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-cards {
    display: grid;
    gap: 25px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--secondary-color);
}

.contact-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-card-content p,
.contact-card-content a {
    font-size: 15px;
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.6;
}

.contact-card-content a:hover {
    color: var(--secondary-color);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: #f3781e;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-dark {
    background: #fff;
    color: #f3781e;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 15px;
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #f3781e;
}

.btn-outline-dark {
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #fff;
    transition: var(--transition);
    font-size: 15px;
}

.btn-outline-dark:hover {
    background: #fff;
    color: #f3781e;
}

/* ============================================
   FOOTER
   ============================================ */

#footer {
    background: var(--primary-color) !important;
    color: var(--white);
    border: none !important;
    padding: 40px 30px !important;
}

.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-about img {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
}

.footer-widget h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: var(--secondary-color);
    transition: var(--transition);
}

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

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact-icon {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-contact-text a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-text a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 35px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-grid::before {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .site-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-inner {
        height: 70px;
        padding: 0 15px;
    }
    
    .logo-img {
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: block;
    }
    
    .header-inner {
        height: 65px;
    }
    
    .logo-img {
        max-height: 45px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero-inner {
        padding: 60px 20px;
        grid-template-columns: 1fr !important;
    }
    
    .hero-content h1 {
        font-size: 28px;
        letter-spacing: 0;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 20px;
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .hero-stat-number {
        font-size: 28px;
    }
    
    .hero-stat-label {
        font-size: 11px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-desc {
        font-size: 15px;
    }
    
    .services-grid,
    .process-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .services-grid[style*="repeat(4"],
    .services-grid[style*="repeat(3"] {
        grid-template-columns: 1fr !important;
    }
    
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
    
    .process-step {
        width: 90px;
        height: 90px;
    }
    
    .process-step-number {
        font-size: 11px;
    }
    
    .process-step-icon {
        font-size: 28px;
    }
    
    .process-step-text {
        font-size: 10px;
    }
    
    .process-card h3 {
        font-size: 18px;
    }
    
    .gallery-item {
        height: auto;
        aspect-ratio: 2/1;
    }
    
    .about-grid {
        gap: 30px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .about-experience-badge {
        right: 10px;
        padding: 15px;
    }
    
    .about-experience-badge .number {
        font-size: 32px;
    }
    
    .about-content h3 {
        font-size: 24px;
    }
    
    .about-mission-vision {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .faq-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .service-areas-layout {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .faq-image img {
        height: 200px;
        object-fit: cover;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .contact-grid {
        gap: 30px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .cta-section p {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-buttons .btn-dark,
    .cta-buttons .btn-outline-dark {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-bottom-links {
        gap: 15px;
    }
    
    .page-hero {
        padding: 80px 0 50px !important;
    }
    
    .page-hero h1 {
        font-size: 24px !important;
    }
    
    .page-hero p {
        font-size: 15px !important;
    }
    
    .process-steps > div {
        flex-direction: column !important;
        text-align: center;
        gap: 20px !important;
        margin-bottom: 40px !important;
    }
    
    .gallery-filter {
        padding: 8px 18px;
        font-size: 13px;
        margin: 4px 3px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        height: 60px;
    }
    
    .logo-img {
        max-height: 38px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-stat-number {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 17px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-form h3 {
        font-size: 20px;
    }
    
    .contact-info-cards h3 {
        font-size: 22px !important;
    }
    
    .contact-info-cards > div > p[style] {
        font-size: 14px !important;
    }
    
    .footer-grid {
        gap: 25px;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE - ALL DEVICES
   ============================================ */

@media (max-width: 1024px) {
    .about-content h3 {
        font-size: 26px;
    }
    
    .about-content p {
        font-size: 15px;
    }
    
    .about-features li {
        font-size: 14px;
    }
    
    .service-card h3 {
        font-size: 19px;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    .process-card h3 {
        font-size: 20px;
    }
    
    .process-card p {
        font-size: 14px;
    }
    
    .gallery-overlay h4 {
        font-size: 18px;
    }
    
    .gallery-overlay p {
        font-size: 13px;
    }
    
    .google-rating-summary {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .accredited-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .process-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    
    .services-grid[style*="repeat(4"],
    .services-grid[style*="repeat(3"] {
        grid-template-columns: 1fr !important;
    }
    
    .about-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-inner {
        grid-template-columns: 1fr !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
    
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
    
    .service-areas-layout {
        grid-template-columns: 1fr !important;
    }
    
    .about-image img {
        height: 280px;
    }
    
    .about-content h3 {
        font-size: 24px;
    }
    
    .about-features {
        padding-left: 0;
    }
    
    .about-features li {
        font-size: 14px;
        margin-bottom: 14px;
    }
    
    .about-features li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
        flex-shrink: 0;
    }
    
    .about-mv-card {
        padding: 20px;
    }
    
    .about-mv-card h4 {
        font-size: 16px;
    }
    
    .about-mv-card p {
        font-size: 13px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-card p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .process-card {
        padding: 25px;
    }
    
    .process-step {
        width: 80px;
        height: 80px;
    }
    
    .process-step-number {
        font-size: 10px;
    }
    
    .process-step-icon {
        font-size: 24px;
    }
    
    .process-step-text {
        font-size: 9px;
    }
    
    .process-card h3 {
        font-size: 17px;
    }
    
    .process-card p {
        font-size: 13px;
    }
    
    .gallery-grid {
        gap: 12px;
    }
    
    .gallery-item {
        height: auto;
        aspect-ratio: 2/1;
        border-radius: 12px;
    }
    
    .gallery-overlay {
        padding: 16px;
        opacity: 1;
        background: linear-gradient(180deg, transparent 50%, rgba(13, 27, 42, 0.85) 100%);
    }
    
    .gallery-overlay h4 {
        font-size: 14px;
    }
    
    .gallery-overlay p {
        font-size: 12px;
    }
    
    .google-reviews-grid {
        gap: 15px;
    }
    
    .google-review-card {
        padding: 22px;
    }
    
    .reviewer-avatar {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .reviewer-name {
        font-size: 14px;
    }
    
    .review-date {
        font-size: 11px;
    }
    
    .review-text {
        font-size: 13px;
    }
    
    .badge-item {
        width: 38px;
        height: 38px;
    }
    
    .badge-item svg {
        width: 24px;
        height: 24px;
    }
    
    .badge-label {
        font-size: 12px;
    }
    
    .service-areas-section {
        padding: 68px 0;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .area-item {
        padding: 11px 14px;
        font-size: 13px;
    }
    
    .map-image img {
        height: 280px !important;
    }
    
    .faq-image img {
        height: 180px;
    }
    
    .faq-question {
        padding: 16px 18px;
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 18px 18px;
        font-size: 13px;
    }
    
    .faq-cta {
        padding: 24px;
        margin-top: 20px;
    }
    
    .faq-cta h4 {
        font-size: 18px;
    }
    
    .faq-cta p {
        font-size: 14px;
    }
    
    .contact-info-cards {
        gap: 15px;
    }
    
    .contact-card {
        padding: 18px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-card-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .contact-card-content h4 {
        font-size: 15px;
    }
    
    .contact-card-content p,
    .contact-card-content a {
        font-size: 13px;
    }
    
    .contact-social {
        justify-content: center;
        gap: 12px;
        margin-top: 20px;
    }
    
    .contact-social a {
        width: 42px;
        height: 42px;
    }
    
    .contact-form {
        padding: 22px;
    }
    
    .contact-form h3 {
        font-size: 20px;
    }
    
    .contact-form label {
        font-size: 13px;
    }
    
    .page-hero h1 {
        font-size: 22px !important;
    }
    
    .page-hero p {
        font-size: 14px !important;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-item h3 {
        font-size: 16px;
    }
    
    .feature-item p {
        font-size: 13px;
    }
    
    .gallery-cta {
        margin-top: 35px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 70px 0 50px;
    }
    
    .hero-content h1 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
        padding-top: 15px;
    }
    
    .hero-stat {
        flex: 1 1 calc(33.333% - 10px);
        min-width: 80px;
    }
    
    .hero-stat-number {
        font-size: 24px;
    }
    
    .hero-stat-label {
        font-size: 10px;
    }
    
    .about-image img {
        height: 220px;
    }
    
    .about-experience-badge {
        right: 8px;
        bottom: 8px;
        padding: 12px 14px;
    }
    
    .about-experience-badge .number {
        font-size: 26px;
    }
    
    .about-experience-badge .text {
        font-size: 10px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .why-choose-card {
        padding: 16px 12px;
        display: block;
        text-align: center;
    }
    
    .why-choose-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        margin: 0 auto 10px;
    }
    
    .why-choose-number {
        font-size: 24px;
        margin-bottom: 4px;
    }
    
    .why-choose-label {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .why-choose-card p {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .process-card {
        padding: 22px;
    }
    
    .gallery-item {
        height: auto;
        aspect-ratio: 2/1;
    }
    
    .gallery-filter {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    
    .gallery-filter button {
        padding: 7px 14px;
        font-size: 12px;
    }
    
    .google-rating-summary {
        padding: 20px;
        margin-bottom: 35px;
    }
    
    .rating-number {
        font-size: 24px;
    }
    
    .google-logo {
        width: 65px;
        height: 22px;
    }
    
    .google-stars svg {
        width: 14px;
        height: 14px;
    }
    
    .review-count {
        font-size: 12px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .area-item {
        padding: 12px 16px;
    }
    
    .map-image img {
        height: 220px !important;
    }
    
    .cta-section h2 {
        font-size: 20px;
    }
    
    .cta-section p {
        font-size: 14px;
    }
    
    .footer-about {
        margin-bottom: 10px;
    }
    
    .footer-about div {
        font-size: 22px !important;
    }
    
    .footer-about p {
        font-size: 13px;
    }
    
    .footer-social {
        justify-content: flex-start;
        gap: 10px;
    }
    
    .footer-social a {
        width: 38px;
        height: 38px;
    }
    
    .footer-widget h4 {
        font-size: 15px;
    }
    
    .footer-links li a {
        font-size: 13px;
    }
    
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-contact-icon {
        font-size: 16px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
    
    .footer-bottom-links a {
        font-size: 12px;
    }
    
    .mobile-menu-toggle {
        width: 42px !important;
        height: 42px !important;
        margin-left: auto !important;
        margin-right: -4px !important;
    }
    
    .mobile-menu-toggle span {
        width: 22px !important;
        height: 2px !important;
    }
    
    .mobile-menu-overlay {
        width: 85%;
        max-width: 300px;
    }
    
    .mobile-nav-menu li a,
    .mobile-dropdown-toggle {
        font-size: 15px;
        padding: 14px 20px;
    }
}

@media (max-width: 400px) {
    .hero-section {
        padding: 65px 0 45px;
    }
    
    .hero-content h1 {
        font-size: 20px;
    }
    
    .hero-content p {
        font-size: 13px;
    }
    
    .hero-stat {
        flex: 1 1 100%;
    }
    
    .hero-stat-number {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-desc {
        font-size: 13px;
    }
    
    .about-content h3 {
        font-size: 22px;
    }
    
    .about-content p {
        font-size: 14px;
    }
    
    .gallery-item {
        height: auto;
        aspect-ratio: 2/1;
    }
    
    .google-review-card {
        padding: 18px;
    }
    
    .reviewer-avatar {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    
    .google-icon {
        width: 16px;
        height: 16px;
    }
    
    .review-text {
        font-size: 12px;
    }
    
    .contact-form {
        padding: 18px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .hero-section {
        padding: 50px 0 35px;
    }
    
    .hero-inner {
        padding: 40px 15px;
    }
    
    .hero-content h1 {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .hero-stat-number {
        font-size: 20px;
    }
    
    .hero-stat-label {
        font-size: 9px;
    }
    
    .section {
        padding: 35px 15px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .section-desc {
        font-size: 12px;
    }
    
    .services-grid,
    .process-grid,
    .gallery-grid,
    .testimonials-grid,
    .services-grid[style*="repeat(4"],
    .services-grid[style*="repeat(3"] {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 15px;
    }
    
    .service-card p {
        font-size: 12px;
    }
    
    .process-step {
        width: 70px;
        height: 70px;
    }
    
    .process-step-icon {
        font-size: 22px;
    }
    
    .process-card h3 {
        font-size: 15px;
    }
    
    .process-card p {
        font-size: 12px;
    }
    
    .gallery-item {
        height: auto;
        aspect-ratio: 2/1;
    }
    
    .about-grid {
        gap: 20px;
    }
    
    .about-image img {
        height: 180px;
    }
    
    .about-experience-badge {
        padding: 10px;
        right: 5px;
    }
    
    .about-experience-badge .number {
        font-size: 22px;
    }
    
    .about-content h3 {
        font-size: 20px;
    }
    
    .about-content p {
        font-size: 13px;
    }
    
    .about-features li {
        font-size: 13px;
    }
    
    .page-hero {
        padding: 60px 0 35px !important;
    }
    
    .page-hero h1 {
        font-size: 18px !important;
    }
    
    .page-hero p {
        font-size: 12px !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .contact-card-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .contact-form {
        padding: 15px;
    }
    
    .contact-form h3 {
        font-size: 18px;
    }
    
    .contact-info-cards h3 {
        font-size: 20px !important;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .faq-question {
        padding: 14px 15px;
        font-size: 13px;
    }
    
    .faq-answer {
        padding: 0 15px 15px;
        font-size: 12px;
    }
    
    .service-areas-layout {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }
    
    .area-item {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .map-image img {
        height: 180px !important;
    }
    
    .cta-section h2 {
        font-size: 16px;
    }
    
    .cta-section p {
        font-size: 12px;
    }
    
    .footer-grid {
        gap: 20px;
    }
    
    .footer-widget h4 {
        font-size: 14px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .process-steps > div {
        flex-direction: column !important;
        gap: 15px !important;
        margin-bottom: 30px !important;
    }
}

/* ============================================
   LANDSCAPE TABLET & SMALL DESKTOP
   ============================================ */

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-inner {
        padding: 50px 30px;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .process-grid {
        gap: 25px;
    }
    
    .gallery-grid {
        gap: 16px;
    }
}

/* ============================================
   LARGE SCREENS (1440px+)
   ============================================ */

@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-desc {
        font-size: 18px;
    }
    
    .services-grid {
        gap: 35px;
    }
    
    .service-card {
        padding: 45px 35px;
    }
    
    .process-grid {
        gap: 35px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .top-bar,
    .site-header,
    .mobile-menu-toggle,
    .mobile-menu-overlay,
    .cta-section,
    #footer {
        display: none !important;
    }
    
    .section {
        padding: 20px 15px !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}

/* ============================================
   ENFOLD OVERRIDES
   ============================================ */

#main {
    padding: 0 !important;
}

#top .container {
    max-width: 100% !important;
    padding: 0 !important;
}

.container_wrap {
    border: none !important;
}

.title_container {
    display: none !important;
}

.sidebar {
    display: none !important;
}

.content {
    border: none !important;
}

.entry-content-wrapper {
    border: none !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Gold accent underline for headings */
.accent-underline {
    position: relative;
    display: inline-block;
}

.accent-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ============================================
   FORM STYLING
   ============================================ */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.1);
}

/* Button hover effects */
.btn-primary:active,
.btn-secondary:active,
.btn-dark:active,
.btn-outline-dark:active {
    transform: translateY(-1px);
}

/* ============================================
   PAGE HERO (Interior Pages)
   ============================================ */

.page-hero {
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ============================================
   GALLERY FILTER BUTTONS
   ============================================ */

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

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--secondary-color) !important;
    color: #fff !important;
    border-color: var(--secondary-color) !important;
}

/* ============================================
   SERVICE PAGE SPECIFIC
   ============================================ */

.service-page-intro {
    padding: 80px 0;
}

.process-steps > div {
    display: flex;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .process-steps > div {
        flex-direction: column !important;
        text-align: center;
        gap: 20px !important;
        margin-bottom: 40px !important;
        align-items: stretch !important;
    }
    
    .services-grid[style*="grid-template-columns: repeat(4"],
    .services-grid[style*="grid-template-columns: repeat(3"],
    .services-grid[style*="repeat(4"],
    .services-grid[style*="repeat(3"] {
        grid-template-columns: 1fr !important;
    }
    
    .service-number {
        font-size: 36px;
    }
}
.text-light{
    color: #fff!important;
}

/* ============================================
   FINAL RESPONSIVE FIXES (MOBILE + TABLET)
   ============================================ */

html,
body,
#wrap_all,
#main {
    max-width: 100%;
    overflow-x: hidden;
}

iframe,
video,
table {
    max-width: 100%;
}

.container,
.hero-inner,
.section > .container,
.page-content > .container {
    width: 100%;
    max-width: 100%;
}

.btn-primary,
.btn-secondary,
.btn-dark,
.btn-outline-dark,
.cta-btn {
    min-height: 46px;
}

@media (max-width: 1024px) {
    .top-bar {
        display: block;
    }

    .header-inner {
        height: 70px !important;
        padding: 0 16px !important;
        gap: 0 !important;
    }

    .site-nav,
    .header-cta {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        width: 44px !important;
        height: 44px !important;
        margin-left: auto !important;
        margin-right: -4px !important;
    }

    .hero-inner,
    .about-grid,
    .contact-grid,
    .cta-content {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .services-grid,
    .why-choose-grid,
    .process-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .hero-image-badge {
        left: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        padding: 14px 16px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 52px 0 !important;
    }

    .header-inner {
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo-img {
        max-height: 54px;
    }

    .mobile-nav-menu {
        width: min(320px, 88vw);
        max-width: 88vw;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-inner {
        padding: 62px 14px;
    }

    .hero-content h1 {
        font-size: clamp(28px, 8vw, 42px) !important;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 15px !important;
        margin-bottom: 24px !important;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons a,
    .cta-btn,
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 16px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 26px;
        padding-top: 18px;
    }

    .services-grid,
    .why-choose-grid,
    .process-grid,
    .gallery-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr !important;
    }

    .about-image img,
    .hero-image img,
    .service-card img,
    .gallery-item img,
    .page-hero img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .contact-form,
    .wpcf7-form,
    .contact-form form {
        width: 100%;
        max-width: 100%;
    }

    .form-group input,
    .form-group textarea,
    .form-group select,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        width: 100%;
        font-size: 16px;
    }
}

@media (max-width: 425px) {
    .section {
        padding: 44px 0 !important;
    }

    .hero-inner,
    .container,
    .section .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        text-align: left;
    }

    .mobile-nav-menu li a,
    .mobile-nav-menu li .mobile-dropdown-toggle {
        font-size: 15px;
        padding: 13px 18px;
    }
}

/* Hotfix: hero right-cut issue on mobile */
@media (max-width: 768px) {
    .hero-section,
    .hero-inner,
    .hero-content,
    .hero-image {
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .hero-inner {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        margin: 0 auto !important;
    }

    .hero-content {
        width: 100% !important;
        text-align: left !important;
        justify-self: stretch !important;
        align-self: start !important;
    }

    .hero-content h1,
    .hero-content p {
        max-width: 100% !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .hero-buttons,
    .hero-stats {
        width: 100% !important;
    }
}

/* =================================================================
   PROFESSIONAL SITE-WIDE RESPONSIVE SYSTEM (BOOTSTRAP-COMPATIBLE)
   ================================================================= */

*,
*::before,
*::after {
    box-sizing: border-box !important;
}

body,
#wrap_all,
#main,
.container_wrap,
.template-page,
.entry-content-wrapper,
.entry-content,
.post-entry,
.section,
.hero-section,
.hero-inner,
.about-grid,
.contact-grid,
.services-grid,
.why-choose-grid,
.gallery-grid,
.process-grid,
.cta-content {
    max-width: 100% !important;
}

.container,
.container-fluid {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

img {
    max-width: 100% !important;
    height: auto !important;
}

@media (max-width: 1024px) {
    .hero-inner,
    .about-grid,
    .contact-grid,
    .cta-content,
    .process-steps > div {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .services-grid,
    .why-choose-grid,
    .gallery-grid,
    .process-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }
}

@media (max-width: 768px) {
    .site-nav,
    .header-cta {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        width: 44px !important;
        height: 44px !important;
        margin-left: auto !important;
        margin-right: -4px !important;
    }

    .hero-inner,
    .about-grid,
    .contact-grid,
    .cta-content,
    .services-grid,
    .why-choose-grid,
    .gallery-grid,
    .process-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr !important;
    }

    .hero-content,
    .about-content,
    .contact-content,
    .service-card,
    .why-choose-card,
    .gallery-item {
        width: 100% !important;
        min-width: 0 !important;
    }

    .hero-content h1 {
        font-size: clamp(26px, 8vw, 38px) !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    .hero-content p,
    p {
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }

    .btn-primary,
    .btn-secondary,
    .btn-dark,
    .btn-outline-dark,
    .cta-btn,
    button,
    input[type="submit"] {
        width: 100% !important;
        min-height: 46px !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .contact-form,
    .wpcf7-form,
    form {
        width: 100% !important;
        max-width: 100% !important;
    }

    input,
    textarea,
    select {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
    }
}

/* ===== FINAL COMPREHENSIVE RESPONSIVE RESET ===== */

html, body, #top, #wrap_all, #main, #header {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

*, *::before, *::after {
    box-sizing: border-box !important;
}

img, video, iframe, svg, canvas {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

.container, .hero-inner, .section .container, .container_wrap .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding-left: 0px !important;
    padding-right: 0px!important;
}

/* Ensure Service Areas section doesn't touch screen edges */
#top .service-areas-section .container {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

@media (max-width: 768px) {
    #top .service-areas-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* ===== TABLET (max-width: 1024px) ===== */

@media (max-width: 1024px) {
    .top-bar { display: block !important; }
    .site-nav, .header-cta { display: none !important; }
    .mobile-menu-toggle { display: flex !important; margin-left: auto !important; margin-right: -4px !important; }
    
    .header-inner { height: 70px !important; padding: 0 16px !important; gap: 0 !important; }
    .logo-img { max-height: 50px !important; }
    
    .hero-inner {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 60px 20px !important;
    }
    
    .hero-image { display: none !important; }
    
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    
    .hero-content h1 {
        font-size: clamp(28px, 6vw, 38px) !important;
        line-height: 1.15 !important;
        letter-spacing: 0 !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    
    .hero-content p {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100% !important;
        max-width: 300px !important;
        justify-content: center !important;
    }
    
    .about-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .process-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .process-grid::before { display: none !important; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
    
    .contact-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .faq-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
    .service-areas-layout { grid-template-columns: 1fr !important; }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 30px !important; }
    
    .google-rating-summary {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
}

/* ===== MOBILE (max-width: 768px) ===== */

@media (max-width: 768px) {
    /* Header - perfect mobile alignment */
    .header-inner {
        height: 60px !important;
        padding: 0 12px !important;
        gap: 0 !important;
    }
    .logo-img { max-height: 40px !important; }
    .mobile-menu-toggle {
        width: 44px !important;
        height: 44px !important;
        margin-left: auto !important;
        margin-right: -4px !important;
    }
    
    /* Sections */
    .section { padding: 45px 0 !important; }
    .container { padding-left: 16px !important; padding-right: 16px !important; }
    
    /* Hero */
    .hero-section {
        min-height: auto !important;
        padding: 0 !important;
    }
    .hero-inner {
        display: block !important;
        padding: 50px 16px 40px !important;
    }
    .hero-image { display: none !important; }
    
    .hero-content h1 {
        font-size: 26px !important;
        line-height: 1.15 !important;
        margin-bottom: 16px !important;
    }
    .hero-content h1 span { display: block !important; }
    .hero-content p {
        font-size: 14px !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
        line-height: 1.6 !important;
    }
    
    .hero-stats {
        flex-wrap: wrap !important;
        gap: 15px !important;
        margin-top: 25px !important;
        padding-top: 20px !important;
    }
    .hero-stat {
        flex: 1 1 calc(33.333% - 10px) !important;
        min-width: 0 !important;
    }
    .hero-stat-number { font-size: 26px !important; }
    .hero-stat-label { font-size: 10px !important; }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100% !important;
        max-width: 280px !important;
        padding: 14px 24px !important;
        font-size: 14px !important;
        justify-content: center !important;
    }
    
    /* Section headers */
    .section-title { font-size: 22px !important; margin-bottom: 12px !important; }
    .section-subtitle { font-size: 11px !important; margin-bottom: 10px !important; }
    .section-desc { font-size: 14px !important; max-width: 100% !important; line-height: 1.6 !important; }
    .section-header { margin-bottom: 30px !important; }
    
    /* All grids single column */
    .services-grid,
    .why-choose-grid,
    .process-grid,
    .gallery-grid,
    .google-reviews-grid,
    .footer-grid,
    .form-row,
    .grid-3,
    .grid-4,
    .areas-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Service cards */
    .services-grid { gap: 15px !important; }
    .service-card { padding: 25px 20px !important; }
    .service-icon { width: 55px !important; height: 55px !important; font-size: 24px !important; margin: 0 auto 15px !important; }
    .service-card h3 { font-size: 17px !important; margin-bottom: 10px !important; }
    .service-card p { font-size: 13px !important; margin-bottom: 12px !important; }
    .service-number { font-size: 36px !important; }
    
    /* Why choose cards - 2x2 on mobile */
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .why-choose-card {
        padding: 16px 12px !important;
        text-align: center !important;
    }
    .why-choose-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 20px !important;
        margin: 0 auto 8px !important;
    }
    .why-choose-number { font-size: 24px !important; margin-bottom: 4px !important; }
    .why-choose-label { font-size: 11px !important; margin-bottom: 6px !important; }
    .why-choose-card p { font-size: 11px !important; line-height: 1.4 !important; }
    
    /* Process */
    .process-grid { gap: 20px !important; }
    .process-step { width: 80px !important; height: 80px !important; margin: 0 auto 15px !important; }
    .process-step-number { font-size: 10px !important; }
    .process-step-icon { font-size: 24px !important; margin: 4px 0 !important; }
    .process-step-text { font-size: 9px !important; }
    .process-card h3 { font-size: 16px !important; margin-bottom: 10px !important; }
    .process-card p { font-size: 12px !important; }
    
    /* Gallery - wide format */
    .gallery-grid { gap: 10px !important; }
    .gallery-item {
        height: auto !important;
        aspect-ratio: 2/1 !important;
        border-radius: 10px !important;
    }
    .gallery-overlay {
        opacity: 1 !important;
        padding: 12px !important;
        background: linear-gradient(180deg, transparent 50%, rgba(13, 27, 42, 0.85) 100%) !important;
    }
    .gallery-overlay h4 { font-size: 13px !important; margin-bottom: 4px !important; }
    .gallery-overlay p { font-size: 10px !important; }
    
    /* About */
    .about-grid { gap: 30px !important; }
    .about-image img { height: 250px !important; }
    .about-experience-badge {
        top: 10px !important;
        right: 10px !important;
        padding: 12px !important;
    }
    .about-experience-badge .number { font-size: 28px !important; }
    .about-experience-badge .text { font-size: 10px !important; }
    .about-content h3 { font-size: 22px !important; margin-bottom: 15px !important; }
    .about-content p { font-size: 14px !important; margin-bottom: 15px !important; }
    .about-mission-vision { grid-template-columns: 1fr !important; gap: 12px !important; }
    
    /* FAQ */
    .faq-grid { gap: 25px !important; }
    .faq-image { display: none !important; }
    .faq-question { padding: 16px 18px !important; font-size: 14px !important; }
    .faq-answer { padding: 0 18px 16px !important; font-size: 13px !important; }
    
    /* Contact */
    .contact-grid { gap: 25px !important; }
    .contact-card {
        padding: 18px !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
    }
    .contact-card-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
        margin: 0 auto !important;
    }
    .contact-card-content h4 { font-size: 14px !important; margin-bottom: 6px !important; }
    .contact-card-content p,
    .contact-card-content a { font-size: 13px !important; }
    .contact-social { justify-content: center !important; margin-top: 15px !important; }
    
    .contact-form { padding: 20px !important; }
    .contact-form h3 { font-size: 18px !important; margin-bottom: 15px !important; }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .form-group label { font-size: 13px !important; margin-bottom: 6px !important; }
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px !important;
        font-size: 16px !important;
    }
    
    /* Buttons */
    .btn-primary, .btn-secondary, .btn-dark, .btn-outline-dark {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 46px !important;
        padding: 14px 24px !important;
        font-size: 14px !important;
        justify-content: center !important;
    }
    
    /* CTA */
    .cta-section { padding: 40px 16px !important; }
    .cta-section h2 { font-size: 22px !important; margin-bottom: 12px !important; }
    .cta-section p { font-size: 14px !important; margin-bottom: 20px !important; }
    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }
    
    /* Google Reviews */
    .google-reviews-grid { gap: 15px !important; }
    .google-review-card { padding: 20px !important; }
    .reviewer-avatar { width: 36px !important; height: 36px !important; font-size: 13px !important; }
    .reviewer-name { font-size: 13px !important; }
    .review-date { font-size: 10px !important; }
    .review-text { font-size: 12px !important; }
    .rating-number { font-size: 24px !important; }
    
    /* Service Areas */
    .service-areas-section { padding: 40px 0 !important; }
    .service-areas-layout { gap: 25px !important; }
    .service-areas-map { position: static !important; }
    .map-image img { height: 200px !important; }
    .areas-grid { gap: 8px !important; }
    .area-item { padding: 10px 14px !important; font-size: 12px !important; }
    
    /* Marquee */
    .services-marquee { padding: 12px 0 !important; }
    .marquee-track {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        white-space: normal !important;
        animation: none !important;
        transform: none !important;
        width: 100% !important;
        padding: 0 12px !important;
    }
    .services-marquee .marquee-track + .marquee-track { display: none !important; }
    .marquee-item { padding: 6px 10px !important; font-size: 11px !important; }
    .marquee-item::after { display: none !important; }
    .marquee-icon { font-size: 16px !important; }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .footer-top { padding: 30px 0 25px !important; }
    .footer-bottom {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
        padding: 18px 0 !important;
    }
    .footer-bottom-links { gap: 12px !important; flex-wrap: wrap !important; justify-content: center !important; }
    .footer-about div { font-size: 22px !important; margin-bottom: 15px !important; }
    .footer-about p { font-size: 13px !important; line-height: 1.6 !important; margin-bottom: 15px !important; }
    .footer-widget h4 { font-size: 15px !important; margin-bottom: 15px !important; }
    .footer-links a { font-size: 13px !important; }
    .footer-contact-item { font-size: 13px !important; gap: 10px !important; }
    .footer-contact-icon { font-size: 16px !important; }
    
    /* Page Hero */
    .page-hero { padding: 70px 0 40px !important; }
    .page-hero h1 { font-size: 22px !important; margin-bottom: 12px !important; }
    .page-hero p { font-size: 14px !important; line-height: 1.6 !important; }
    
    /* Contact page inline style overrides */
    .contact-info-cards h3 { font-size: 20px !important; }
    .contact-info-cards > div > p { font-size: 14px !important; }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */

@media (max-width: 480px) {
    .header-inner { height: 56px !important; padding: 0 10px !important; gap: 0 !important; }
    .logo-img { max-height: 34px !important; }
    .mobile-menu-toggle {
        width: 42px !important;
        height: 42px !important;
        margin-left: auto !important;
        margin-right: -4px !important;
    }
    
    .section { padding: 35px 15px !important; }
    .container { padding-left: 14px !important; padding-right: 14px !important; }
    
    .hero-inner { padding: 40px 14px 30px !important; }
    .hero-content h1 { font-size: 22px !important; }
    .hero-stat-number { font-size: 22px !important; }
    .hero-stat-label { font-size: 9px !important; }
    
    .section-title { font-size: 20px !important; }
    .section-subtitle { font-size: 10px !important; }
    .section-desc { font-size: 13px !important; }
    
    .service-card { padding: 20px 16px !important; }
    
    /* Why choose - still 2x2 but smaller */
    .why-choose-grid { gap: 8px !important; }
    .why-choose-card { padding: 12px 10px !important; }
    .why-choose-icon { width: 38px !important; height: 38px !important; font-size: 18px !important; margin-bottom: 6px !important; }
    .why-choose-number { font-size: 20px !important; }
    .why-choose-label { font-size: 10px !important; }
    .why-choose-card p { font-size: 10px !important; }
    
    .gallery-item { aspect-ratio: 2/1 !important; }
    
    .contact-form { padding: 16px !important; }
    .contact-form h3 { font-size: 16px !important; }
    
    .about-content h3 { font-size: 20px !important; }
    .about-image img { height: 200px !important; }
    
    .process-step { width: 70px !important; height: 70px !important; }
    .process-step-icon { font-size: 22px !important; }
    .process-card h3 { font-size: 15px !important; }
    
    .footer-about div { font-size: 20px !important; }
}

/* ===== TINY MOBILE (max-width: 360px) ===== */

@media (max-width: 360px) {
    .header-inner { height: 52px !important; padding: 0 8px !important; gap: 0 !important; }
    .logo-img { max-height: 32px !important; }
    .mobile-menu-toggle {
        width: 40px !important;
        height: 40px !important;
        padding: 6px !important;
        margin-left: auto !important;
        margin-right: -4px !important;
    }
    .mobile-menu-toggle span {
        width: 22px !important;
        height: 2px !important;
    }

    .container { padding-left: 12px !important; padding-right: 12px !important; }
    
    .hero-content h1 { font-size: 20px !important; }
    .hero-content p { font-size: 13px !important; }
    .hero-stat-number { font-size: 20px !important; }
    
    .section-title { font-size: 18px !important; }
    .section-desc { font-size: 12px !important; }
    
    .why-choose-grid { gap: 6px !important; }
    .why-choose-card { padding: 10px 8px !important; }
    .why-choose-icon { width: 34px !important; height: 34px !important; font-size: 16px !important; }
    .why-choose-number { font-size: 18px !important; }
    .why-choose-label { font-size: 9px !important; }
    .why-choose-card p { font-size: 9px !important; }
    
    .service-card { padding: 18px 14px !important; }
    .service-icon { width: 45px !important; height: 45px !important; font-size: 20px !important; }
    .service-card h3 { font-size: 15px !important; }
    
    .gallery-item { aspect-ratio: 2/1 !important; border-radius: 8px !important; }
    
    .contact-card { padding: 14px !important; }
    .contact-form { padding: 14px !important; }
    
    .footer-grid { gap: 20px !important; }
}

/* ===== STICKY HEADER FIX (LIVE OVERRIDE) ===== */
#header.site-header,
.site-header,
#top #header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
}

/* Allow dropdown to overflow the fixed header */
#header.site-header,
.site-header {
  overflow: visible !important;
}

#main,
#top #main,
#top #wrap_all #main {
  padding-top: 0 !important;
}

@media (max-width: 1024px) {
  #main,
  #top #main,
  #top #wrap_all #main {
    padding-top: 70px !important;
  }
}

@media (max-width: 768px) {
  #main,
  #top #main,
  #top #wrap_all #main {
    padding-top: 60px !important;
  }
}

@media (max-width: 480px) {
  #main,
  #top #main,
  #top #wrap_all #main {
    padding-top: 30px !important;
  }
}

/* ===== Testimonials Bottom Accreditation Strip ===== */
.accredited-strip {
  margin-top: 22px;
  background: #202125;
  border-radius: 20px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.accredited-strip-title {
  color: #ffffff;
  font-size: clamp(24px, 2.8vw, 56px);
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.15;
}

.accredited-strip-logos {
  display: flex;
  align-items: center;
  gap: 14px;
}

.accredited-logo {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 34px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.accredited-logo.yelp { background: #e43d39; font-size: 24px; }
.accredited-logo.bbb  { background: #f3f7fb; color: #115982; font-size: 27px; }
.accredited-logo.angi { background: #ef7a5e; font-size: 28px; }
.accredited-logo.google { background: #ffffff; color: #4285f4; font-size: 48px; }

@media (max-width: 1024px) {
  .accredited-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .accredited-strip {
    padding: 14px 14px;
    border-radius: 14px;
    gap: 12px;
  }

  .accredited-strip-title {
    font-size: 22px;
  }

  .accredited-strip-logos {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .accredited-logo {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    font-size: 22px;
  }

  .accredited-logo.google { font-size: 34px; }
  .accredited-logo.yelp { font-size: 16px; }
  .accredited-logo.angi { font-size: 18px; }
  .accredited-logo.bbb { font-size: 18px; }
}

/* Strip alignment refinement below reviews CTA */
.google-cta + .accredited-strip {
  margin-top: 26px;
}

.accredited-strip {
  justify-content: center;
}

.accredited-strip-title {
  margin-right: 26px;
}

@media (max-width: 1024px) {
  .accredited-strip-title {
    margin-right: 0;
  }
}

/* FAQ right card as image */
.faq-image-card {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  overflow: hidden;
  border-radius: 14px;
}

.faq-image-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

@media (max-width: 768px) {
  .faq-image-card img {
    min-height: 220px;
  }
}

/* ===== Footer Alignment Fix ===== */
#footer .container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr !important;
  gap: 28px !important;
  align-items: start !important;
}

.footer-about,
.footer-widget {
  text-align: left !important;
}

.footer-widget h4 {
  margin: 0 0 14px 0 !important;
}

.footer-links {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-links li {
  margin: 0 0 8px 0 !important;
}

.footer-contact-item {
  align-items: flex-start !important;
}

.footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px !important;
}

.footer-bottom-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 16px !important;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }
}

@media (max-width: 768px) {
  #footer .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .footer-about,
  .footer-widget,
  .footer-widget h4,
  .footer-links,
  .footer-contact-item,
  .footer-contact-text {
    text-align: center !important;
    justify-content: center !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
  }

  .footer-bottom-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}

/* ===== Final Mobile Menu Hitbox Fix ===== */
@media (max-width: 1024px) {
  .header-inner {
    position: relative !important;
  }

  .mobile-menu-toggle {
    margin-top: 5px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    padding: 10px !important;
    position: relative !important;
    right: 0 !important;
    top: 0 !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10002 !important;
    touch-action: manipulation !important;
  }

  .mobile-menu-toggle span {
    width: 22px !important;
    pointer-events: none !important;
  }
}

/* ===== Service Area USA Map ===== */
.usa-map-block {
  margin-top: 36px;
}

.usa-map-title {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #1d1d1d;
}

.usa-map-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.usa-map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .usa-map-block {
    margin-top: 26px;
  }

  .usa-map-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .usa-map-frame iframe {
    height: 280px;
  }
}

/* ===== Mobile Page Banner & Text Alignment Fix ===== */
@media (max-width: 768px) {
  .fkb-page-banner {
    min-height: auto !important;
    align-items: center !important;
  }

  .fkb-page-banner > div:first-child img,
  .fkb-hero-media img,
  .hero-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .fkb-page-banner-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 92px 24px 56px !important;
    text-align: left !important;
  }

  .fkb-page-banner-content h1,
  .fkb-page-banner-content p,
  .fkb-page-banner-content span {
    text-align: left !important;
  }

  .fkb-page-banner-content h1 {
    font-size: 32px !important;
    line-height: 1.14 !important;
    max-width: 100% !important;
    margin-bottom: 16px !important;
    overflow-wrap: break-word !important;
  }

  .fkb-page-banner-content p {
    font-size: 16px !important;
    line-height: 1.65 !important;
    max-width: 100% !important;
  }

  .fkb-page-banner-content > div:last-child {
    width: 100% !important;
  }

  .fkb-page-banner-content > div:last-child a {
    width: 100% !important;
    justify-content: center !important;
  }

  .section-header,
  .fkbl-section-head {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    text-align: center !important;
  }

  .section-title,
  .section-desc,
  .fkbl-section-head h2,
  .fkbl-section-head p {
    max-width: 100% !important;
  }

  .service-areas-inner,
  .faq-inner {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 480px) {
  .fkb-page-banner-content {
    padding: 82px 20px 48px !important;
  }

  .fkb-page-banner-content h1 {
    font-size: 28px !important;
  }

  .section-header,
  .fkbl-section-head,
  .service-areas-inner,
  .faq-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
