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

:root {
    --primary-dark: #4a4a4a;
    --secondary-dark: #2a2a2a;
    --accent-orange: #ff8c00;
    --accent-orange-hover: #ff9d1f;
    --text-white: #ffffff;
    --text-light: #d1d1d1;
    --bg-light: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Desktop: render at compact 67% zoom */
@media (min-width: 1025px) {
    body {
        zoom: 0.67;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange-hover);
}

/* Emergency Top Banner */
.emergency-top-banner {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    text-align: center;
    padding: 0.8rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: urgentPulse 2s ease-in-out infinite;
}

.emergency-top-banner a {
    color: white;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    margin: 0 0.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.emergency-top-banner a:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.emergency-top-banner i {
    animation: ring 1s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% { background: linear-gradient(135deg, #dc2626, #ef4444); }
    50% { background: linear-gradient(135deg, #b91c1c, #dc2626); }
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
}

/* Google Business Profile Banner - Matching Site Theme */
.google-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    z-index: 1002;
    overflow: hidden;
    animation: bannerSlideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 140, 0, 0.08);
}

@keyframes bannerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.google-banner.hidden {
    animation: bannerSlideUp 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

@keyframes bannerSlideUp {
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.google-banner-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.google-banner-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.google-icon-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 15px rgba(255, 140, 0, 0.2),
        0 0 20px rgba(255, 140, 0, 0.1);
    animation: iconFloat 3s ease-in-out infinite;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px);
        box-shadow: 
            0 4px 15px rgba(255, 140, 0, 0.2),
            0 0 20px rgba(255, 140, 0, 0.1);
    }
    50% { 
        transform: translateY(-5px);
        box-shadow: 
            0 8px 20px rgba(255, 140, 0, 0.3),
            0 0 30px rgba(255, 140, 0, 0.15);
    }
}

.google-icon {
    width: 36px;
    height: 36px;
}

.google-banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.google-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    box-shadow: 
        0 2px 10px rgba(255, 140, 0, 0.4),
        0 4px 20px rgba(255, 140, 0, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
    width: fit-content;
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 
            0 2px 10px rgba(255, 140, 0, 0.4),
            0 4px 20px rgba(255, 140, 0, 0.2);
    }
    50% { 
        box-shadow: 
            0 4px 15px rgba(255, 140, 0, 0.5),
            0 6px 30px rgba(255, 140, 0, 0.3);
    }
}

.google-banner-badge i {
    animation: starRotate 4s linear infinite;
}

@keyframes starRotate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-20deg); }
    100% { transform: rotate(0deg); }
}

.google-banner-message {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.3px;
}

.google-banner-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.google-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.google-banner-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.google-banner-btn:hover::before {
    width: 300px;
    height: 300px;
}

.google-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 0, 0.5);
}

.google-banner-btn span,
.google-banner-btn i {
    position: relative;
    z-index: 1;
}

.google-banner-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.google-banner-btn:hover i.fa-external-link-alt {
    transform: translate(3px, -3px);
}

.google-banner-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.google-banner-close:hover {
    background: rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 140, 0, 0.4);
    color: var(--accent-orange);
    transform: rotate(90deg);
}

/* Shimmer effect */
.google-banner-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 140, 0, 0.05),
        transparent
    );
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Global phone link styling — prevent default blue on unstyled tel links */
p a[href^="tel"],
.footer-phone a[href^="tel"],
.faq-answer a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 6px;
    width: 0%;
    background: linear-gradient(90deg, #ff8c00, #ffaa33);
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.5), 0 0 4px rgba(255, 140, 0, 0.3);
    pointer-events: none;
}

/* Header positioning - below banner when visible */
header {
    position: fixed;
    width: 100%;
    top: 68px;
    z-index: 1000;
    background: rgba(42, 42, 42, 0.98);
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

body.banner-closed header {
    top: 0;
}

body.banner-closed .google-banner {
    display: none;
}

/* Hero section padding to account for fixed header + banner */
.hero {
    padding-top: calc(100px + 68px); /* header height + banner height */
}

body.banner-closed .hero {
    padding-top: 100px; /* just header height */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .google-banner-content {
        padding: 0.8rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .google-banner-left {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .google-banner-text {
        align-items: center;
    }

    .google-banner-right {
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }

    .google-banner-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        flex: 1;
        justify-content: center;
    }

    .google-banner-close {
        flex-shrink: 0;
    }

    .google-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .google-icon {
        width: 30px;
        height: 30px;
    }

    .google-banner-message {
        font-size: 0.85rem;
    }

    header {
        top: 150px;
    }

    body.banner-closed header {
        top: 0;
    }

    .hero {
        padding-top: calc(62px + 150px);
    }

    body.banner-closed .hero {
        padding-top: 62px;
    }
}

@media (max-width: 480px) {
    .google-banner-content {
        padding: 0.6rem 1rem;
    }

    .google-banner-btn span {
        font-size: 0.85rem;
    }

    .google-banner-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    header {
        top: 170px;
    }

    body.banner-closed header {
        top: 0;
    }

    .hero {
        padding-top: calc(62px + 170px);
    }

    body.banner-closed .hero {
        padding-top: 62px;
    }
}

/* Header - Original Styles */
header.scrolled {
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(255, 140, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
}

.logo-container {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-link {
    display: block;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-links a:hover::before {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--accent-orange), #ffaa33);
    color: white !important;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    border: none;
    overflow: visible !important;
}

.btn-nav::before,
.btn-nav::after {
    display: none !important;
    content: none !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 0, 0.5);
    color: white !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 135px;
    left: 0;
    width: 100%;
    height: calc(100vh - 135px);
    background: var(--secondary-dark);
    z-index: 998;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.mobile-menu ul {
    list-style: none;
    padding: 2rem 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li a {
    display: block;
    padding: 1.5rem 2rem;
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-menu ul li a:hover {
    background: rgba(255, 140, 0, 0.15);
    color: var(--accent-orange);
    padding-left: 3rem;
}

/* Mobile collapsible services submenu */
.mobile-submenu-parent {
    position: relative;
}

.mobile-submenu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-right: 2rem !important;
}

.mobile-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.mobile-submenu-parent.open .mobile-arrow {
    transform: rotate(180deg);
    opacity: 0.8;
}

.mobile-submenu-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    list-style: none;
    padding: 0 !important;
    margin: 0;
    background: rgba(0,0,0,0.25);
}

.mobile-submenu-parent.open .mobile-submenu-list {
    max-height: 400px;
}

.mobile-submenu-list li {
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

.mobile-submenu-list li:last-child {
    border-bottom: none !important;
}

.mobile-submenu-list li a.mobile-link {
    display: flex !important;
    align-items: center;
    padding: 1rem 2rem 1rem 3rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.85) !important;
}

.mobile-submenu-list li a.mobile-link i {
    width: 22px;
    margin-right: 0.75rem;
    color: var(--accent-orange);
    font-size: 0.9rem;
}

.mobile-submenu-list li a.mobile-link:hover {
    color: var(--accent-orange) !important;
    background: rgba(255, 140, 0, 0.1);
    padding-left: 3.5rem !important;
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--secondary-dark) 50%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Canvas hero at all sizes */
@media (max-width: 1440px) {
    .hero::before {
        background: linear-gradient(
            180deg,
            rgba(15, 15, 15, 0.55) 0%,
            rgba(20, 20, 20, 0.6) 40%,
            rgba(15, 15, 15, 0.7) 100%
        );
        animation: none;
    }
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1400px;
    padding: 2rem;
    margin-top: 95px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.12);
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    animation: slideInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.1;
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    letter-spacing: -2px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero h1 .highlight {
    color: var(--accent-orange);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--accent-orange);
    opacity: 0.25;
    z-index: -1;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-urgency {
    display: inline-block;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
}

.hero-urgency i {
    margin-right: 0.5rem;
    animation: flash 1.5s ease-in-out infinite;
}

@keyframes flash {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.btn {
    padding: 1.4rem 3.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn i {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), #ffaa33);
    color: white;
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
    font-size: 1.15rem;
    padding: 1.5rem 4rem;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 140, 0, 0.08);
    color: var(--accent-orange);
    border: 1.5px solid rgba(255, 140, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 170, 51, 0.12) 45%,
        rgba(255, 140, 0, 0.18) 50%,
        rgba(255, 170, 51, 0.12) 55%,
        transparent 80%
    );
    animation: btnShimmer 4s ease-in-out 2s infinite;
}

@keyframes btnShimmer {
    0% { left: -100%; }
    40% { left: 150%; }
    100% { left: 150%; }
}

.btn-secondary:hover {
    background: rgba(255, 140, 0, 0.15);
    border-color: var(--accent-orange);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.2), inset 0 0 15px rgba(255, 140, 0, 0.05);
}

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

/* ═══════════════════════════════════════
   HERO ENHANCEMENTS
   ═══════════════════════════════════════ */

/* Feature #4: Animated Lock Icon */
.hero-lock-icon {
    width: 130px;
    height: 162px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: lockFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
    position: relative;
}

.hero-lock-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 25px rgba(255, 140, 0, 0.5)) drop-shadow(0 0 60px rgba(255, 140, 0, 0.2));
}

/* Shackle unlock animation — dramatic multi-stage */
.lock-shackle {
    transform-origin: 60px 40px;
    animation: shackleUnlock 2.2s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
}

@keyframes shackleUnlock {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    30% { transform: translateY(-3px) rotate(0deg); opacity: 1; }
    50% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
    75% { transform: translateY(-10px) rotate(-28deg); opacity: 1; }
    100% { transform: translateY(-8px) rotate(-22deg); opacity: 1; }
}

/* Lock body draws in */
.lock-body {
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    animation: drawIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.lock-keyhole-circle {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards,
               keyholeGlow 3s ease-in-out 3s infinite;
}

.lock-keyhole-slot {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: drawIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
}

/* Internal pin detail lines — staggered draw-in */
.lock-detail {
    stroke-dasharray: 12;
    stroke-dashoffset: 12;
    opacity: 0;
}
.lock-detail-1 { animation: pinDetailIn 0.3s ease 0.6s forwards; }
.lock-detail-2 { animation: pinDetailIn 0.3s ease 0.7s forwards; }
.lock-detail-3 { animation: pinDetailIn 0.3s ease 0.8s forwards; }
.lock-detail-4 { animation: pinDetailIn 0.3s ease 0.9s forwards; }
.lock-detail-5 { animation: pinDetailIn 0.3s ease 1.0s forwards; }

@keyframes pinDetailIn {
    0% { stroke-dashoffset: 12; opacity: 0; }
    100% { stroke-dashoffset: 0; opacity: 0.7; }
}

/* Glow pulse behind lock */
.lock-glow-pulse {
    fill: none;
    stroke: none;
    animation: lockGlowPulse 4s ease-in-out 3.5s infinite;
}

@keyframes lockGlowPulse {
    0%, 100% { fill: rgba(255, 140, 0, 0); }
    50% { fill: rgba(255, 140, 0, 0.03); }
}

/* Radial burst after unlock */
.lock-burst {
    opacity: 0;
    animation: lockBurst 1.5s cubic-bezier(0, 0, 0.2, 1) 2.5s forwards;
}

@keyframes lockBurst {
    0% { r: 0; opacity: 0; stroke-width: 3; }
    20% { opacity: 0.8; }
    100% { r: 60; opacity: 0; stroke-width: 0.5; }
}

@keyframes drawIn {
    to { stroke-dashoffset: 0; }
}

@keyframes lockFadeIn {
    0% { opacity: 0; transform: scale(0.4) translateY(20px); }
    60% { opacity: 1; transform: scale(1.05) translateY(-3px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes keyholeGlow {
    0%, 100% { filter: drop-shadow(0 0 0px rgba(255, 140, 0, 0)); }
    50% { filter: drop-shadow(0 0 12px rgba(255, 140, 0, 0.7)); }
}

/* Feature #1: Typing Text */
.typing-wrapper {
    display: inline-block;
    min-height: 1.2em;
}

#typingText {
    color: var(--accent-orange);
    position: relative;
}

.typing-cursor {
    display: inline-block;
    color: var(--accent-orange);
    font-weight: 300;
    animation: cursorBlink 0.7s step-end infinite;
    margin-left: 2px;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Feature #3: Live Counter */
.counter-time {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    font-weight: 900;
    font-size: 1.1em;
    letter-spacing: 1px;
    min-width: 4.5ch;
    text-align: center;
}

/* Feature #2: Emergency Pulse Ring */
/* ═══ Mobile adjustments for hero enhancements ═══ */
@media (max-width: 768px) {
    .hero-lock-icon {
        width: 90px;
        height: 112px;
        margin-bottom: 2rem;
    }

    .typing-wrapper {
        display: block;
        min-height: 1.3em;
    }

    .counter-time {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero-lock-icon {
        width: 72px;
        height: 90px;
        margin-bottom: 1.5rem;
    }
}

/* Trust Bar */
/* Trust Section — see redesigned styles below */

/* Reviews Section */
.reviews-section {
    background: #ffffff;
    padding: 6rem 2rem;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.reviews-cta-btn {
    display: inline-flex;
}

/* ═══ GOOGLE REVIEWS CAROUSEL ═══ */

/* ── Integrated Rating Header ────────────────────────────────── */
.reviews-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.reviews-rating-inline {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--secondary-dark);
    line-height: 1;
    letter-spacing: -1px;
}

.reviews-stars-inline {
    display: flex;
    gap: 0.2rem;
    font-size: 1.1rem;
    color: #fbbf24;
    align-items: center;
}

.reviews-title-row .section-title {
    margin: 0;
}

.reviews-count-inline {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
}

/* Carousel Wrapper */
.reviews-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.reviews-carousel-slide {
    flex: 0 0 25%;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

/* Review Card — elevated design */
.rc-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.rc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), #ffcc33);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.rc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(255, 140, 0, 0.15);
}

.rc-card:hover::before {
    opacity: 1;
}

.rc-card-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.rc-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.rc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rc-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-orange), #ffaa33);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.rc-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.rc-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rc-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 0.85rem;
    margin-top: 2px;
}

.rc-quote-icon {
    margin-left: auto;
    color: rgba(255, 140, 0, 0.15);
    font-size: 1.6rem;
    flex-shrink: 0;
}

.rc-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.rc-time {
    font-size: 0.82rem;
    color: #aaa;
    font-weight: 500;
}

.rc-verified {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #16a34a;
}

.rc-verified i.fa-google {
    color: #4285f4;
    font-size: 0.9rem;
}

/* Carousel Navigation */
.reviews-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.rc-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.1);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-dark);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.rc-nav-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
    transform: scale(1.08);
}

.rc-nav-btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

.rc-nav-btn:disabled:hover {
    background: white;
    border-color: rgba(0,0,0,0.1);
    color: var(--secondary-dark);
}

/* Progress bar — wider now that dots are hidden */
.rc-dots {
    display: none;
}

.rc-progress-bar {
    width: 200px;
    height: 3px;
    background: rgba(0,0,0,0.08);
    border-radius: 3px;
    overflow: hidden;
}

.rc-progress-fill {
    height: 100%;
    background: var(--accent-orange);
    width: 0%;
    border-radius: 3px;
    transition: width 0.1s linear;
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
    .reviews-carousel-slide {
        flex: 0 0 50%;
    }
}

/* Responsive — Mobile */
@media (max-width: 640px) {
    .reviews-carousel-slide {
        flex: 0 0 100%;
    }

    .reviews-title-row {
        gap: 0.5rem;
    }

    .reviews-rating-inline {
        font-size: 1.9rem;
    }

    .reviews-stars-inline {
        font-size: 0.9rem;
    }

    .rc-card {
        padding: 1.5rem;
    }
}

/* ═══ SECTION BRIDGE (Reviews → Services) ═══ */

.section-bridge {
    background: linear-gradient(180deg, #f2f2f2 0%, #ffffff 100%);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-bridge-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-bridge-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.35), transparent);
    position: relative;
}

.section-bridge-line::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    opacity: 0.25;
    filter: blur(4px);
}

.section-bridge-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(255, 140, 0, 0.12);
    position: relative;
}

.section-bridge-badge i {
    color: var(--accent-orange);
    font-size: 1.15rem;
}

/* Variant: Coverage → FAQ (white to gray) */
.section-bridge--faq {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

/* ═══ PIN TUMBLER LOCK CENTERPIECE ═══ */
.pin-tumbler-section {
    background: #1a1a1a;
    padding: 5rem 2rem;
    position: relative;
    overflow: visible;
    z-index: 2;
    border-top: 1px solid rgba(255, 140, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pin-tumbler-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pin-tumbler-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.pin-tumbler-label {
    color: rgba(255, 140, 0, 0.85);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    white-space: nowrap;
}

.pin-tumbler-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.2), transparent);
}

.pin-tumbler-copy {
    margin-bottom: 2rem;
}

.pin-tumbler-heading {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.pin-tumbler-body {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.pin-tumbler-canvas {
    width: 100%;
    height: 370px;
    display: block;
    margin: 0 auto;
}

.pin-tumbler-caption {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 0.5rem;
    letter-spacing: 0.3px;
}

.pin-tumbler-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pin-tumbler-btn {
    display: inline-flex;
}

.pin-tumbler-phone {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.pin-tumbler-phone:hover {
    color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.45);
}

/* ═══ SERVICE CARD MECHANISM OVERLAY ═══ */
/* Services Section */
.services {
    padding: 6rem 2rem;
    background: #fffbf5;
    position: relative;
}

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

.section-label {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--secondary-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.9;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), #ffaa33);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(255, 140, 0, 0.14);
    border-color: rgba(255, 140, 0, 0.25);
}

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

.service-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.service-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 140, 0, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon-box {
    background: var(--accent-orange);
    transform: rotate(-6deg) scale(1.05);
}

.service-icon-box i {
    font-size: 1.2rem;
    color: var(--accent-orange);
    transition: color 0.35s ease;
}

.service-card:hover .service-icon-box i {
    color: white;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary-dark);
    line-height: 1.3;
    margin: 0;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1.2rem;
}

/* Services Tabs — hidden on desktop, shown via mobile media query */
.services-tabs {
    display: none;
}

.service-features {
    list-style: none;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #ff8c00 0%, #ffaa33 100%);
    padding: 6rem 2rem;
    color: white;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Pricing Section */
.pricing-transparency {
    background: #f8f8f8;
    padding: 6rem 2rem;
}

/* Coverage Section */
.coverage {
    padding: 6rem 2rem;
    background: #fffbf5;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 140, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.coverage-container {
    max-width: 1400px;
    margin: 0 auto;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 0;
}

.coverage-item {
    background: linear-gradient(135deg, #fafafa, white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.coverage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.15), transparent);
    transition: left 0.6s ease;
}

.coverage-item:hover::before {
    left: 100%;
}

.coverage-item:hover {
    background: linear-gradient(135deg, var(--accent-orange), #fdfdfd);
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
    border-color: transparent;
}

.coverage-item i {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--accent-orange);
    transition: color 0.4s ease;
}

.coverage-item:hover i {
    color: white;
}

/* Hide parent-level icon styling for new city cards */
.coverage-city-card > i {
    display: none;
}

.coverage-city-card i {
    display: inline-flex;
    font-size: inherit;
    margin-bottom: 0;
}

/* Photo Gallery Section */
.gallery {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.gallery-container {
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-wrapper {
    position: relative;
    margin-top: 4rem;
    padding: 0 60px;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2rem 0;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    position: relative;
    flex: 0 0 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 140, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.gallery-info p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
}

/* Gallery Navigation Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 12px;
    background: white;
    color: var(--secondary-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.gallery-nav-left {
    left: 0;
}

.gallery-nav-right {
    right: 0;
}

/* Gallery Dots Navigation */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d1d1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot:hover {
    background: var(--accent-orange);
    transform: scale(1.3);
}

.gallery-dot.active {
    background: var(--accent-orange);
    width: 40px;
    border-radius: 6px;
}

/* ═══════════════════════════════════════
   BOOKING WIZARD
   ═══════════════════════════════════════ */
.booking {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0f 0%, #0f0f18 100%);
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.booking-container {
    max-width: 720px;
    margin: 0 auto;
}

.booking .section-header {
    position: relative;
    z-index: 1;
}

.booking .section-label {
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.12);
    -webkit-text-fill-color: #ff8c00;
    font-weight: 800;
}

.booking .section-title {
    margin-bottom: 1rem;
    color: #f0f0f5;
}

.booking .section-description {
    color: #9999aa;
}

/* ── Progress Stepper ── */
.wiz-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.wiz-step-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wiz-step-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1a1a24;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #666677;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.wiz-step-dot i { font-size: 0.7rem; display: none; }

.wiz-step-indicator.active .wiz-step-dot {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #0a0a0f;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.35), 0 0 40px rgba(255, 140, 0, 0.1);
}

.wiz-step-indicator.completed .wiz-step-dot {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.wiz-step-indicator.completed .wiz-step-dot span { display: none; }
.wiz-step-indicator.completed .wiz-step-dot i { display: block; }

.wiz-step-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #666677;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.wiz-step-indicator.active .wiz-step-label { color: #ff8c00; }
.wiz-step-indicator.completed .wiz-step-label { color: #22c55e; }

.wiz-step-connector {
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0.4rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.wiz-step-connector::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%;
    height: 100%;
    background: #22c55e;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wiz-step-connector.filled::after { width: 100%; }

/* ── Wizard Card ── */
.wiz-card {
    background: #111118;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
    overflow: hidden;
    position: relative;
}

.wiz-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), #ffaa33, var(--accent-orange));
}

.wiz-body {
    padding: 2.5rem 2rem;
    min-height: 360px;
}

/* ── Step Panels ── */
.wiz-panel {
    display: none;
    animation: wizFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wiz-panel.active { display: block; }

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

.wiz-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #f0f0f5;
    text-align: center;
    margin-bottom: 0.3rem;
}

.wiz-subtitle {
    color: #9999aa;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* ── Step 1: Service Type Cards ── */
.wiz-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.wiz-service-card {
    background: #1a1a24;
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.wiz-service-card:hover {
    border-color: rgba(255, 140, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.wiz-service-card.selected {
    border-color: var(--accent-orange);
    background: #22222e;
    box-shadow: 0 0 0 1px var(--accent-orange), 0 0 30px rgba(255, 140, 0, 0.12);
}

.wiz-svc-icon {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 0.7rem;
    transition: transform 0.3s ease;
}

.wiz-service-card:hover .wiz-svc-icon,
.wiz-service-card.selected .wiz-svc-icon { transform: scale(1.1); }

.wiz-svc-name {
    font-weight: 700;
    font-size: 1rem;
    color: #f0f0f5;
    margin-bottom: 0.25rem;
}

.wiz-svc-desc {
    font-size: 0.8rem;
    color: #666677;
    line-height: 1.4;
}

/* ── Step 2: Sub-service Chips ── */
.wiz-detail-panel { display: none; }
.wiz-detail-panel.active { display: block; }

.wiz-chip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
    margin-bottom: 1.6rem;
}

.wiz-chip {
    background: #1a1a24;
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    text-align: center;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    color: #9999aa;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.wiz-chip i {
    font-size: 0.85rem;
    color: #666677;
    opacity: 0.5;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.wiz-chip:hover {
    border-color: rgba(255, 140, 0, 0.3);
    color: #f0f0f5;
    background: #22222e;
}

.wiz-chip:hover i { opacity: 1; color: #ff8c00; }

.wiz-chip.selected {
    border-color: var(--accent-orange);
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.15);
}

.wiz-chip.selected i { opacity: 1; color: #ff8c00; }

.wiz-field-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666677;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.7rem;
}

.wiz-vehicle-fields {
    display: grid;
    grid-template-columns: 90px 1fr 1fr;
    gap: 0.7rem;
}

/* ── Form Fields ── */
.wiz-form-group { margin-bottom: 1rem; }

.wiz-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #9999aa;
    margin-bottom: 0.35rem;
    letter-spacing: 0.3px;
}

.wiz-req { color: var(--accent-orange); margin-left: 1px; }

.wiz-input,
.wiz-select,
.wiz-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #16161f;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #f0f0f5;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    outline: none;
}

.wiz-input::placeholder,
.wiz-textarea::placeholder { color: #666677; }

.wiz-input:hover,
.wiz-select:hover,
.wiz-textarea:hover {
    border-color: rgba(255, 140, 0, 0.3);
}

.wiz-input:focus,
.wiz-select:focus,
.wiz-textarea:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1), 0 0 20px rgba(255, 140, 0, 0.05);
    background: #1a1a24;
}

.wiz-input.wiz-field-error,
.wiz-textarea.wiz-field-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.wiz-error {
    font-size: 0.78rem;
    color: #ef4444;
    margin-top: 0.25rem;
    display: none;
}

.wiz-error.visible { display: block; }

.wiz-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666677' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.wiz-select option {
    background: #16161f;
    color: #f0f0f5;
}

.wiz-textarea {
    resize: vertical;
    min-height: 90px;
}

.wiz-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ── Timing Selector ── */
.wiz-timing-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.wiz-timing-card {
    background: #1a1a24;
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.wiz-timing-card:hover { border-color: rgba(255, 140, 0, 0.3); }

.wiz-timing-card.selected {
    border-color: var(--accent-orange);
    background: rgba(255, 140, 0, 0.15);
}

.wiz-timing-card i {
    font-size: 1.2rem;
    color: #666677;
    margin-bottom: 0.3rem;
    transition: color 0.25s ease;
}

.wiz-timing-card.selected i { color: #ff8c00; }

.wiz-tc-title { font-weight: 700; font-size: 0.9rem; display: block; color: #f0f0f5; }
.wiz-tc-desc { font-size: 0.78rem; color: #666677; display: block; margin-top: 0.15rem; }
.wiz-timing-card.selected .wiz-tc-desc { color: #9999aa; }

.wiz-schedule-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}

.wiz-schedule-fields.visible {
    max-height: 120px;
    opacity: 1;
}

/* ── Review Summary ── */
.wiz-review-summary {
    background: #1a1a24;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.wiz-review-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.9rem 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wiz-review-row:last-child { border-bottom: none; }

.wiz-review-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666677;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    margin-right: 1rem;
}

.wiz-review-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f0f0f5;
    text-align: right;
}

.wiz-review-edit {
    display: inline-block;
    margin-left: 0.5rem;
    color: var(--accent-orange);
    font-size: 0.72rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.wiz-review-edit:hover { opacity: 1; }

/* ── Navigation ── */
.wiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #0f0f18;
}

.wiz-btn-back {
    background: none;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: #9999aa;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.wiz-btn-back:hover { color: #f0f0f5; border-color: #9999aa; background: #1a1a24; }
.wiz-btn-back.wiz-hidden { visibility: hidden; pointer-events: none; }

.wiz-btn-next,
.wiz-btn-submit {
    background: linear-gradient(135deg, var(--accent-orange), #ffaa33);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.wiz-btn-next:hover,
.wiz-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.wiz-btn-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.wiz-btn-submit { padding: 0.95rem 2.5rem; font-size: 1.05rem; }

.wiz-btn-submit:hover i { transform: translateX(3px); }
.wiz-btn-submit i { transition: transform 0.3s ease; }

/* ── Wizard Loading Spinner ── */
.wiz-spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: wizSpin 0.6s linear infinite;
    display: none;
}

.wiz-btn-submit.loading .wiz-spinner { display: block; }
.wiz-btn-submit.loading .wiz-btn-text { display: none; }
.wiz-btn-submit.loading i { display: none; }

@keyframes wizSpin { to { transform: rotate(360deg); } }

/* ── Trust Badges ── */
.wiz-trust-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.wiz-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: #666677;
    font-weight: 500;
}

.wiz-trust-badge i { color: #22c55e; font-size: 0.72rem; }

/* ── Emergency Banner ── */
.wiz-emergency-banner {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(255, 140, 0, 0.03));
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.wiz-emergency-banner > i {
    color: #ff8c00;
    font-size: 1.2rem;
    flex-shrink: 0;
    animation: wizEmPulse 2s ease-in-out infinite;
}

@keyframes wizEmPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.wiz-emergency-banner p {
    font-size: 0.88rem;
    color: #9999aa;
    line-height: 1.5;
}

.wiz-emergency-banner strong { color: #ff8c00; }

/* ── Success State ── */
.wiz-success { text-align: center; padding: 2rem 0; }

.wiz-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.08);
    border: 2px solid #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #22c55e;
    animation: wizSuccessPop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes wizSuccessPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.wiz-success-title { font-size: 1.6rem; font-weight: 800; color: #f0f0f5; margin-bottom: 0.5rem; }

.wiz-success-msg {
    color: #9999aa;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.wiz-success-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--accent-orange);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.wiz-success-phone:hover { transform: scale(1.05); }

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15), transparent);
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-container h2 {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cta-container p {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.cta-phone {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-orange);
    text-decoration: none;
    display: inline-block;
    margin: 2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.cta-phone::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-orange);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.cta-phone:hover {
    color: #ffaa33;
    transform: scale(1.05);
    text-shadow: 0 10px 30px rgba(255, 140, 0, 0.5);
}

.cta-phone:hover::after {
    transform: scaleX(1);
}

.cta-buttons-wrap {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Booking Privacy */
.booking-privacy {
    text-align: center;
    font-size: 0.82rem;
    color: #999;
    margin-top: 1.5rem;
    font-style: italic;
}

.booking-privacy-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
}

/* Wizard Optional Label */
.wiz-optional {
    color: #999;
    font-weight: 400;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: var(--text-light);
    padding: 5rem 2rem 2rem;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 2fr 1.5fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

/* Links group — side by side on desktop, inherits grid cell */
.footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Hours accordion arrow — hidden on desktop */
.footer-hours-arrow {
    display: none;
}

.footer-brand h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #999;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.footer-phone {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 1rem;
}

.footer-phone a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-phone a:hover {
    color: #ffaa33;
}

.footer-details {
    margin-top: 1.5rem;
}

.footer-detail {
    color: #999;
    margin-bottom: 0.5rem;
}

.footer-detail-icon {
    color: var(--accent-orange);
    margin-right: 0.5rem;
}

.footer-detail-label {
    color: white;
}

.footer-credential {
    color: var(--accent-orange);
    font-weight: 700;
    margin-top: 0.5rem;
}

.footer-credential:first-of-type {
    margin-top: 0.8rem;
}

.footer-credential i {
    margin-right: 0.5rem;
}

.footer-hours-highlight {
    color: #999;
    margin-bottom: 0.8rem;
}

.footer-hours-highlight strong {
    color: var(--accent-orange);
}

.footer-hours-label {
    color: #999;
    margin-bottom: 0.8rem;
}

.footer-hours-label strong {
    color: white;
}

.footer-hours-time {
    color: #999;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.footer-hours-note {
    color: var(--accent-orange);
    font-size: 0.85rem;
    margin-top: 0.8rem;
    font-style: italic;
}

.footer-section h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1.2rem;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.05rem;
}

.footer-section a:hover {
    color: var(--accent-orange);
    transform: translateX(8px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 1rem;
}

/* ═══ MOBILE BOTTOM NAVIGATION ═══ */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 140, 0, 0.15);
    z-index: 999;
    padding: 0.4rem 0.5rem 0.6rem;
    padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    justify-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
    padding: 0.3rem 0;
    -webkit-tap-highlight-color: transparent;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.bottom-nav-item i {
    font-size: 1.15rem;
    transition: transform 0.2s ease;
}

.bottom-nav-item:active {
    color: var(--accent-orange);
}

.bottom-nav-item:active i {
    transform: scale(1.15);
}

/* Elevated Call Button (FAB) */
.bottom-nav-call {
    position: relative;
    color: var(--accent-orange);
    margin-top: -18px;
}

.bottom-nav-call-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.4), 0 0 0 3px rgba(255, 140, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.bottom-nav-call-btn i {
    font-size: 1.3rem;
    color: white;
    transform: none !important;
}

.bottom-nav-call:active .bottom-nav-call-btn {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(255, 140, 0, 0.5);
}

.bottom-nav-call span {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.6rem;
    margin-top: 0.15rem;
}

/* Subtle pulse ring on call FAB */
.bottom-nav-call-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 140, 0, 0.3);
    animation: bottomNavPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bottomNavPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* Book button — orange accent to draw eye */
.bottom-nav-book {
    color: var(--accent-orange);
}

.bottom-nav-book i {
    color: var(--accent-orange);
}

.bottom-nav-book span {
    color: var(--accent-orange);
    font-weight: 700;
}

/* Menu button inherits font */
.bottom-nav-menu {
    font-family: inherit;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), #ffaa33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.6);
}

/* ============================================ */

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    background: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-items {
    margin-top: 4rem;
}

.faq-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-cta p {
    font-size: 1rem;
    color: #888;
    font-weight: 500;
}

.faq-cta a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.15);
    border-color: var(--accent-orange);
}

.faq-question {
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary-dark);
    transition: all 0.3s ease;
    user-select: none;
}

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

.faq-question i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem 2rem;
    opacity: 1;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ═══════════════════════════════════════
   SITE-WIDE ENHANCEMENTS
   ═══════════════════════════════════════ */

/* #1: Scroll-Triggered Reveal Animations */
/* Fallback: if JS hasn't added .revealed after 4s, show content anyway */
@keyframes revealFallback {
    to { opacity: 1; transform: translateY(0); }
}

.reveal-section .section-header,
.reveal-section .trust-section-header,
.reveal-section .trust-stats-row,
.reveal-section .trust-credentials-strip,
.reveal-section .services-grid,
.reveal-section .stats-container,
.reveal-section .coverage-layout,
.reveal-section .coverage-grid,
.reveal-section .faq-items,
.reveal-section .booking-step,
.reveal-section .cta-container {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: revealFallback 0s 4s forwards;
}

.reveal-section.revealed .section-header,
.reveal-section.revealed .trust-section-header,
.reveal-section.revealed .trust-stats-row,
.reveal-section.revealed .trust-credentials-strip,
.reveal-section.revealed .services-grid,
.reveal-section.revealed .stats-container,
.reveal-section.revealed .coverage-layout,
.reveal-section.revealed .coverage-grid,
.reveal-section.revealed .faq-items,
.reveal-section.revealed .booking-step,
.reveal-section.revealed .cta-container {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.reveal-section.revealed .services-grid { transition-delay: 0.15s; }
.reveal-section.revealed .coverage-layout { transition-delay: 0.15s; }
.reveal-section.revealed .coverage-grid { transition-delay: 0.25s; }
.reveal-section.revealed .trust-stats-row { transition-delay: 0.15s; }
.reveal-section.revealed .trust-credentials-strip { transition-delay: 0.35s; }
.reveal-section.revealed .faq-items { transition-delay: 0.15s; }

/* Individual card stagger for service cards */
.reveal-section.revealed .service-card,
.reveal-section.revealed .trust-stat-card,
.reveal-section.revealed .stat-item {
    opacity: 0;
    transform: translateY(30px);
    animation: revealCard 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal-section.revealed .service-card:nth-child(1),
.reveal-section.revealed .trust-stat-card:nth-child(1),
.reveal-section.revealed .stat-item:nth-child(1) { animation-delay: 0.1s; }
.reveal-section.revealed .service-card:nth-child(2),
.reveal-section.revealed .trust-stat-card:nth-child(2),
.reveal-section.revealed .stat-item:nth-child(2) { animation-delay: 0.2s; }
.reveal-section.revealed .service-card:nth-child(3),
.reveal-section.revealed .trust-stat-card:nth-child(3),
.reveal-section.revealed .stat-item:nth-child(3) { animation-delay: 0.3s; }
.reveal-section.revealed .service-card:nth-child(4),
.reveal-section.revealed .trust-stat-card:nth-child(4),
.reveal-section.revealed .stat-item:nth-child(4) { animation-delay: 0.45s; }
.reveal-section.revealed .service-card:nth-child(5) { animation-delay: 0.6s; }
.reveal-section.revealed .service-card:nth-child(6) { animation-delay: 0.75s; }

@keyframes revealCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* #5: Trust Badges Section (replacing inline styles) */
.trust-badges-section {
    background: white;
    padding: 3rem 2rem;
    border-bottom: 2px solid #e5e5e5;
}

.trust-badges-container {
    max-width: 1200px;
    margin: 0 auto;
}

.payment-methods {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 1.5rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.15);
}

.payment-icon-text {
    font-size: 2.5rem;
    color: #666;
}

.payment-icon-text span {
    font-size: 1.2rem;
    font-weight: 700;
}

/* #8: Credential Badges with hover lift */
.credential-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.credential-badge {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.credential-badge:hover {
    background: rgba(255, 140, 0, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.12);
}

.credential-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.credential-badge:hover .credential-icon {
    transform: scale(1.15);
}

.credential-badge p {
    font-weight: 700;
    color: var(--secondary-dark);
    font-size: 0.9rem;
}

/* #6: Interactive Coverage Map */
.coverage-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    column-gap: 2.5rem;
    row-gap: 0.65rem;
    margin-top: 3rem;
    align-items: start;
}

.coverage-map {
    background: linear-gradient(135deg, #1a1a2e, #2a2a3e);
    border-radius: 20px;
    padding: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 140, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: 560px;
    grid-row: 1 / -1;
}

#coverageMap {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.coverage-map::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 40% 55%, rgba(255, 140, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

/* HQ badge overlay */
.map-hq-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.map-hq-badge i {
    color: #ff8c00;
    font-size: 0.9rem;
}

.map-hq-badge span {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.map-response-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.map-response-badge i {
    color: #ff8c00;
    font-size: 0.78rem;
}

.map-response-badge span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* City Cards — horizontal card style */
.coverage-layout .coverage-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.coverage-city-card {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.3rem !important;
    border-radius: 14px !important;
    background: white !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    text-align: left !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none;
    color: inherit;
}

.coverage-city-card:hover {
    transform: translateX(6px) !important;
    box-shadow: 0 6px 24px rgba(255, 140, 0, 0.15) !important;
    border-color: rgba(255, 140, 0, 0.3) !important;
    background: white !important;
    color: inherit !important;
}

a.coverage-city-card:hover {
    background: linear-gradient(135deg, #fff7ed, #fff) !important;
}

.coverage-city-card.city-active {
    background: linear-gradient(135deg, #fff7ed, #fff) !important;
    border-color: var(--accent-orange) !important;
    box-shadow: 0 6px 24px rgba(255, 140, 0, 0.2) !important;
    transform: translateX(6px) !important;
}

.coverage-city-card .city-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 140, 0, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--accent-orange);
    transition: all 0.3s ease;
}

.coverage-city-card.city-active .city-card-icon,
.coverage-city-card:hover .city-card-icon {
    background: var(--accent-orange);
    color: white;
}

.coverage-city-card .city-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

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

.coverage-city-card .city-card-label {
    font-size: 0.78rem;
    color: #999;
    font-weight: 500;
}

.coverage-city-card .city-card-arrow {
    font-size: 0.7rem;
    color: #ccc;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.coverage-city-card:hover .city-card-arrow,
.coverage-city-card.city-active .city-card-arrow {
    color: var(--accent-orange);
    transform: translateX(3px);
}

/* Coverage show-more */
.coverage-show-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0;
    padding: 0.7rem;
    background: none;
    border: 1.5px dashed rgba(255, 140, 0, 0.3);
    border-radius: 12px;
    color: var(--accent-orange);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    grid-column: 2;
}

.coverage-show-more:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 140, 0, 0.04);
}

.coverage-show-more-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.coverage-show-more.expanded .coverage-show-more-arrow {
    transform: rotate(180deg);
}

/* Hide cards 7-10 by default */
.coverage-city-card:nth-child(n+7) {
    display: none !important;
}

.coverage-grid.coverage-expanded .coverage-city-card:nth-child(n+7) {
    display: flex !important;
    animation: chipFadeIn 0.3s ease-out;
}

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

/* Override parent hover styles for new card design */
.coverage-city-card::before {
    display: none !important;
}

.coverage-city-card:hover i.fa-map-marker-alt,
.coverage-city-card:hover i.fa-store {
    color: white;
}

/* Google Maps info window overrides */
.gm-style .gm-style-iw-c {
    border-radius: 16px !important;
    padding: 8px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25) !important;
}

.gm-style .gm-style-iw-d {
    overflow: auto !important;
}

.gm-style .gm-style-iw-tc::after {
    background: white !important;
}

/* #3: CTA Section Enhancement */
.cta-enhanced {
    position: relative;
}

.cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.cta-glow-left {
    top: -50px;
    left: -50px;
    background: rgba(255, 140, 0, 0.15);
    animation: ctaGlowFloat 8s ease-in-out infinite;
}

.cta-glow-right {
    bottom: -50px;
    right: -50px;
    background: rgba(255, 140, 0, 0.1);
    animation: ctaGlowFloat 8s ease-in-out infinite 4s;
}

@keyframes ctaGlowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.cta-lock-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: ctaLockPulse 4s ease-in-out infinite;
}

@keyframes ctaLockPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.5)); }
}

/* ═══ Mobile adjustments for new features ═══ */
@media (max-width: 1200px) {
    .coverage-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coverage-map {
        max-width: 100%;
        height: 420px;
        grid-row: auto;
    }

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

    .coverage-show-more {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .payment-icons {
        gap: 1.5rem;
    }

    .payment-icon {
        font-size: 2.5rem;
    }

    .payment-icon-text {
        font-size: 2rem;
    }

    .payment-icon-text span {
        font-size: 1rem;
    }

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

    .coverage-map {
        padding: 4px;
        height: 350px;
        border-radius: 16px;
    }

    .map-hq-badge {
        top: 12px;
        left: 12px;
        padding: 7px 12px;
    }

    .coverage-layout .coverage-grid {
        grid-template-columns: 1fr;
    }

    .cta-glow {
        width: 150px;
        height: 150px;
    }

    .cta-lock-icon {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .credential-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .credential-badge {
        padding: 1rem 0.5rem;
    }

    .credential-icon {
        font-size: 2rem;
    }
}

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

/* Tablet and Small Desktop */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

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

    .footer-hours-section {
        grid-column: 1 / -1;
    }

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

    nav {
        padding: 1.5rem 2rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Emergency Banner Mobile */
    .emergency-top-banner {
        font-size: 0.85rem;
        padding: 0.8rem 0.5rem;
        line-height: 1.5;
    }

    .emergency-top-banner a {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
        margin: 0.3rem;
        display: inline-block;
        font-weight: 900;
    }

    /* Header Mobile */
    header {
        top: 0;
    }

    nav {
        padding: 0.6rem 1rem;
    }

    .logo-container svg {
        width: 160px;
        height: 42px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
        top: 58px;
        height: calc(100vh - 58px);
        padding-bottom: 80px;
    }

    .mobile-menu ul li a {
        font-size: 1.1rem;
        padding: 1.3rem 1.5rem;
    }

    /* Hero Mobile */
    .hero {
        min-height: 90vh;
        padding: 4rem 1rem 3rem;
        align-items: flex-start;
    }

    .hero-content {
        margin-top: 58px;
        padding: 0.75rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.7rem 1.5rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
    }

    .hero h1 br {
        display: none;
    }

    .hero h1 .highlight::after {
        bottom: 5px;
        height: 8px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-urgency {
        font-size: 0.8rem;
        padding: 0.7rem 1.3rem;
        margin-bottom: 1.2rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
        font-size: 1.05rem;
        min-height: 52px;
    }

    .btn-primary {
        padding: 1.3rem 2rem;
        font-size: 1.05rem;
    }

    /* Trust Section Mobile — see redesigned responsive below */

    /* Reviews Section Mobile */
    .reviews-section {
        padding: 3rem 1.25rem;
    }

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

    .section-label {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Pin Tumbler Mobile */
    .pin-tumbler-section {
        padding: 2rem 1.25rem 2rem;
    }

    .pin-tumbler-heading {
        font-size: 1.4rem;
    }

    .pin-tumbler-body {
        font-size: 0.9rem;
    }

    .pin-tumbler-canvas {
        height: 220px;
    }

    .pin-tumbler-caption {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }

    .pin-tumbler-label {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .pin-tumbler-eyebrow {
        margin-bottom: 0.5rem;
    }

    .pin-tumbler-cta {
        flex-direction: column;
        gap: 1rem;
    }

    /* Services Mobile */
    .services {
        padding: 3rem 1.25rem;
    }

    /* Services Tabs */
    .services-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding: 0 1rem;
        margin-bottom: 1.2rem;
    }

    .services-tabs::-webkit-scrollbar {
        display: none;
    }

    .services-tab {
        background: rgba(0, 0, 0, 0.04);
        border: 1.5px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        padding: 0.55rem 0.5rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: #666;
        cursor: pointer;
        transition: all 0.25s ease;
        white-space: nowrap;
        text-align: center;
        -webkit-tap-highlight-color: transparent;
    }

    .services-tab.active {
        background: var(--accent-orange);
        border-color: var(--accent-orange);
        color: white;
        box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    }

    .services-tab:not(.active):hover {
        border-color: rgba(255, 140, 0, 0.3);
        color: var(--accent-orange);
    }

    /* Show only active card */
    .services-grid {
        display: block;
        padding: 0 1rem;
    }

    .services-grid .service-card {
        display: none;
        animation: tabCardIn 0.35s ease-out;
    }

    .services-grid .service-card.tab-active {
        display: block;
    }

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

    .services-grid .service-card {
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
    }

    /* Override reveal animation on mobile — tabs handle visibility */
    .reveal-section.revealed .services-grid .service-card {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .reveal-section.revealed .services-grid .service-card.tab-active {
        animation: tabCardIn 0.35s ease-out;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .service-features {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .service-features li {
        padding: 0.7rem 0;
        padding-left: 2rem;
        font-size: 0.9rem;
    }

    .service-features li::before {
        font-size: 1.2rem;
    }

    /* Stats Mobile */
    .stats {
        padding: 2.5rem 1.25rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    /* Pricing Mobile */
    .pricing-transparency {
        padding: 3rem 1.25rem;
    }

    /* Coverage Mobile */
    .coverage {
        padding: 3rem 1.25rem;
    }

    .coverage-layout {
        grid-template-columns: 1fr !important;
    }

    /* Hide map on mobile */
    .coverage-map {
        height: 280px;
        border-radius: 14px;
        margin-bottom: 1rem;
    }

    /* Two-column chip grid */
    .coverage-layout .coverage-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    /* Compact chip style */
    .coverage-city-card {
        padding: 0.7rem 0.9rem !important;
        border-radius: 10px !important;
        gap: 0.5rem !important;
    }

    /* Hide icon box and label on mobile */
    .coverage-city-card .city-card-icon {
        display: none;
    }

    .coverage-city-card .city-card-label {
        display: none;
    }

    .coverage-city-card .city-card-name {
        font-size: 0.9rem;
    }

    .coverage-city-card .city-card-arrow {
        font-size: 0.6rem;
    }

    /* Mobile show-more sizing */
    .coverage-show-more {
        grid-column: auto;
        font-size: 0.85rem;
        padding: 0.6rem;
        border-radius: 10px;
        margin-top: 0.5rem;
        -webkit-tap-highlight-color: transparent;
    }

    /* Linked cities get orange left accent */
    a.coverage-city-card {
        border-left: 3px solid var(--accent-orange) !important;
    }

    /* Gallery Mobile */
    .gallery {
        padding: 4rem 1rem;
    }

    .gallery-wrapper {
        padding: 0 20px;
    }

    .gallery-item {
        flex: 0 0 280px;
        height: 380px;
    }

    .gallery-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .gallery-nav-left {
        left: -10px;
    }

    .gallery-nav-right {
        right: -10px;
    }

    .gallery-info h3 {
        font-size: 1.2rem;
    }

    .gallery-info p {
        font-size: 0.9rem;
    }

    .gallery-dots {
        margin-top: 2rem;
    }


    /* FAQ Mobile */
    .faq {
        padding: 3rem 1.25rem;
    }

    .faq-question {
        padding: 1.3rem 1.5rem;
        font-size: 1.05rem;
    }

    .faq-question i {
        font-size: 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    /* Booking Mobile */
    .booking {
        padding: 3rem 1.25rem 9rem;
    }

    .booking-box {
        padding: 1.5rem;
        border-radius: 20px;
        margin-top: 2.5rem;
    }

    .booking-box iframe {
        height: 650px;
        border-radius: 15px;
        min-height: 650px;
    }

    .service-selection-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-option {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-option h4 {
        font-size: 1.1rem;
    }

    .timing-options {
        flex-direction: column;
        gap: 1rem;
    }

    .timing-option {
        min-width: 100%;
    }

    .timing-card {
        padding: 1.5rem 1rem;
    }

    .timing-card i {
        font-size: 2rem;
    }

    .booking-trust-badges {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    /* Booking Wizard Mobile */
    .wiz-stepper { gap: 0; }
    .wiz-step-label { display: none; }
    .wiz-step-connector { width: 24px; }
    .wiz-body { padding: 1.8rem 1.2rem; }
    .wiz-nav { padding: 1rem 1.2rem; }
    .wiz-service-grid { gap: 0.7rem; }
    .wiz-service-card { padding: 1.2rem 0.8rem; }
    .wiz-svc-icon { font-size: 1.5rem; }
    .wiz-svc-name { font-size: 0.9rem; }
    .wiz-svc-desc { font-size: 0.72rem; }
    .wiz-chip-grid { grid-template-columns: 1fr; }
    .wiz-vehicle-fields { grid-template-columns: 70px 1fr 1fr; }
    .wiz-form-row { grid-template-columns: 1fr; }
    .wiz-timing-row { grid-template-columns: 1fr; }
    .wiz-schedule-fields { grid-template-columns: 1fr; }
    .wiz-review-row { flex-direction: column; gap: 0.3rem; }
    .wiz-review-value { text-align: left; }
    .wiz-trust-row { flex-direction: column; align-items: center; gap: 0.6rem; }

    /* CTA Mobile */
    .cta {
        padding: 3rem 1.25rem;
    }

    .cta-container h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .cta-container p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-phone {
        font-size: 2.5rem;
        margin: 1.5rem 0;
    }

    /* Footer Mobile */
    footer {
        padding: 3rem 1.25rem 5.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    /* Compact brand on mobile */
    .footer-brand {
        text-align: center;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        margin-bottom: 1.5rem;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .footer-description {
        display: none;
    }

    .footer-phone {
        font-size: 1.15rem;
        margin-top: 0;
        margin-bottom: 0.8rem;
    }

    .footer-details {
        margin-top: 0.8rem;
    }

    .footer-detail {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .footer-credential {
        font-size: 0.85rem;
        display: inline-block;
        margin-right: 1rem;
    }

    .footer-credential:first-of-type {
        margin-top: 0.5rem;
    }

    /* Two-column links group on mobile */
    .footer-links-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding-bottom: 1.2rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        margin-bottom: 1.2rem;
    }

    .footer-links-group .footer-section {
        text-align: left;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        color: var(--accent-orange);
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section a {
        font-size: 0.9rem;
    }

    .footer-section a:hover {
        transform: none;
    }

    /* Collapsible hours section */
    .footer-hours-section {
        text-align: left;
    }

    .footer-hours-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding: 0.6rem 0;
        margin-bottom: 0 !important;
        -webkit-tap-highlight-color: transparent;
    }

    .footer-hours-arrow {
        display: inline-block;
        font-size: 0.7rem;
        opacity: 0.5;
        transition: transform 0.3s ease;
    }

    .footer-hours-section.open .footer-hours-arrow {
        transform: rotate(180deg);
    }

    .footer-hours-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .footer-hours-section.open .footer-hours-content {
        max-height: 200px;
    }

    .footer-hours-highlight,
    .footer-hours-label,
    .footer-hours-time {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .footer-hours-note {
        font-size: 0.8rem;
    }

    /* Footer bottom */
    .footer-bottom {
        padding-top: 1.2rem;
        font-size: 0.8rem;
        text-align: center;
    }

    /* Scroll to Top Mobile */
    .scroll-top {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        z-index: 1000;
    }

    /* Mobile Bottom Nav - Show */
    .mobile-bottom-nav {
        display: grid;
    }

    /* Body padding for fixed bottom nav */
    body {
        padding-bottom: 72px;
    }

    /* Make buttons stack nicely on mobile */
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Emergency Banner */
    .emergency-top-banner {
        font-size: 0.7rem;
        padding: 0.5rem 0.3rem;
    }

    .emergency-top-banner a {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
        margin: 0.2rem;
    }

    /* Header */
    header {
        top: 0;
    }

    nav {
        padding: 0.8rem 0.8rem;
    }

    .logo-container svg {
        width: 160px;
        height: 50px;
    }

    .mobile-menu {
        top: 54px;
        height: calc(100vh - 54px);
    }

    /* Hero */
    .hero {
        min-height: 85vh;
        padding: 3rem 0.8rem 2rem;
    }

    .hero-content {
        margin-top: 50px;
        padding: 0.6rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.6rem 1.2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-urgency {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 1.1rem 1.5rem;
    }

    /* Sections */
    .reviews-section,
    .services,
    .stats,
    .pricing-transparency,
    .coverage,
    .cta {
        padding: 2.5rem 1rem;
    }

    .booking {
        padding: 2.5rem 1rem 9rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

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

    .section-label {
        font-size: 0.75rem;
    }

    /* Pin Tumbler Small Screen */
    .pin-tumbler-section {
        padding: 1.5rem 1rem 1.5rem;
    }

    .pin-tumbler-heading {
        font-size: 1.2rem;
    }

    .pin-tumbler-body {
        font-size: 0.85rem;
    }

    .pin-tumbler-canvas {
        height: 180px;
    }

    .pin-tumbler-eyebrow {
        gap: 0.6rem;
        margin-bottom: 0.3rem;
    }

    .pin-tumbler-caption {
        font-size: 0.65rem;
        padding: 0 0.5rem;
        margin-top: 0.2rem;
    }

    /* Service Cards */
    .services-grid .service-card {
        padding: 1.5rem 1.2rem;
    }

    .services-tabs {
        padding: 0 0.75rem;
        gap: 0.4rem;
    }

    .services-tab {
        padding: 0.5rem 0.4rem;
        font-size: 0.8rem;
    }

    .service-icon-box {
        width: 65px;
        height: 65px;
    }

    .service-icon-box i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-features li {
        font-size: 0.85rem;
        padding-left: 1.8rem;
    }

    /* Stats */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem 0.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Coverage */
    .coverage-city-card {
        padding: 0.6rem 0.75rem !important;
    }

    .coverage-city-card .city-card-name {
        font-size: 0.82rem;
    }

    .coverage-show-more {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    /* Booking */
    .booking-box {
        padding: 1rem;
    }

    .booking-box iframe {
        height: 600px;
    }

    /* CTA */
    .cta-container h2 {
        font-size: 1.8rem;
    }

    .cta-container p {
        font-size: 1rem;
    }

    .cta-phone {
        font-size: 2rem;
    }

    /* Footer */
    .footer-brand h3 {
        font-size: 1.2rem;
    }

    .footer-section a {
        font-size: 0.85rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
    }

    .footer-links-group {
        gap: 0.5rem;
    }

    footer {
        padding: 2.5rem 1rem 5.5rem;
    }

    /* Bottom Nav Small Screen */
    .bottom-nav-call-btn {
        width: 46px;
        height: 46px;
    }

    .bottom-nav-call-btn::after {
        width: 46px;
        height: 46px;
    }

    .bottom-nav-call-btn i {
        font-size: 1.15rem;
    }

    .bottom-nav-item i {
        font-size: 1.05rem;
    }

    .bottom-nav-item {
        font-size: 0.6rem;
    }

    .bottom-nav-call {
        margin-top: -14px;
    }

    /* Scroll Top */
    .scroll-top {
        bottom: 85px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.6rem;
    }

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

    .logo-container svg {
        width: 130px;
        height: 38px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .cta-phone {
        font-size: 1.8rem;
    }
}

/* Service Card Learn More Links */
.service-card .service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-decoration: none;
    border: none;
    background: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.service-card .service-card-link::before {
    display: none !important;
}

.service-card .service-card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.service-card .service-card-link:hover {
    color: var(--accent-orange-hover);
}

.service-card .service-card-link:hover::after {
    width: 100%;
}

.service-card .service-card-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.service-card .service-card-link:hover i {
    transform: translateX(5px);
}

/* Services Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown > a .dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    margin-left: 0.15rem;
}

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

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: rgba(42, 42, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow: hidden;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
}

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

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1.5rem;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.nav-dropdown-menu a::before {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 140, 0, 0.1);
    color: var(--accent-orange) !important;
    border-left-color: var(--accent-orange);
    padding-left: 1.8rem;
}

.nav-dropdown-menu a i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--accent-orange);
    opacity: 0.7;
}

.nav-dropdown-menu a:hover i {
    opacity: 1;
}

.nav-dropdown-menu .dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0.3rem 1rem;
}

/* Mobile menu service sub-items */
@media (max-width: 768px) {
    .nav-dropdown-menu {
        display: none !important;
    }
}


/* ============================================ */
/* REDESIGNED TRUST SECTION                     */
/* Stats-driven, compact, high-conversion       */
/* ============================================ */

.trust-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #222 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: visible;
    z-index: 2;
    border-top: 2px solid var(--accent-orange);
    border-bottom: 2px solid var(--accent-orange);
    box-shadow: 
        0 -12px 30px rgba(255,140,0,0.25), 0 -4px 60px rgba(255,140,0,0.1),
        0 12px 30px rgba(255,140,0,0.25), 0 4px 60px rgba(255,140,0,0.1);
}

.trust-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(600px, 100%);
    height: 250px;
    background: radial-gradient(ellipse, rgba(255, 140, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.trust-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.trust-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.trust-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 0.75rem;
}

.trust-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin: 0;
}

.trust-heading span {
    color: var(--accent-orange);
}

.trust-heading-rule {
    width: 50px;
    height: 3px;
    background: var(--accent-orange);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ─── Stats Row ─── */
.trust-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.trust-stat-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.trust-stat-card:hover::after {
    opacity: 1;
}

.trust-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-orange), #ffaa33);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.trust-stat-card:hover .trust-stat-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(255, 140, 0, 0.45);
}

.trust-stat-icon i {
    font-size: 1.3rem;
    color: white;
}

.trust-stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    position: relative;
    z-index: 1;
}

.trust-stat-number {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.trust-stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ─── Credentials Strip ─── */
.trust-credentials-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0 3rem;
    flex-wrap: wrap;
}

.trust-credential {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

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

.trust-credential i {
    color: var(--accent-orange);
    font-size: 1rem;
}

.trust-credential span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.trust-credential:hover span {
    color: rgba(255, 255, 255, 0.9);
}

.trust-credential-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
}

/* ─── Reveal Animation Overrides ─── */
.reveal-section.trust-section .trust-stats-row,
.reveal-section.trust-section .trust-credentials-strip {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-section.trust-section.revealed .trust-stats-row {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.reveal-section.trust-section.revealed .trust-credentials-strip {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

/* ─── Payment Strip (Booking Section) ─── */
.payment-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-strip-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-right: 0.5rem;
}

.payment-strip-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-strip-item {
    width: 52px;
    height: 34px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-strip-item:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.payment-strip-item svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Font Awesome card brand icons */
.payment-strip-item i {
    font-size: 1.8rem;
    line-height: 1;
}

.payment-brand-visa { background: #1A1F71; border-color: #1A1F71; }
.payment-brand-visa i { color: #fff; }

.payment-brand-mc { background: #1a1a2e; border-color: #2a2a3e; }
.payment-brand-mc i { color: #f79e1b; }

.payment-brand-amex { background: #006FCF; border-color: #006FCF; }
.payment-brand-amex i { color: #fff; }

.payment-brand-discover { background: #fff; border-color: #ddd; }
.payment-brand-discover i { color: #F47216; }

.payment-brand-cashapp { background: transparent; border-color: transparent; }
.payment-brand-venmo { background: transparent; border-color: transparent; }
.payment-brand-cash { background: transparent; border-color: transparent; }
.payment-brand-check { background: transparent; border-color: transparent; }

/* ============================================ */
/* TRUST SECTION — RESPONSIVE                   */
/* ============================================ */

@media (max-width: 1024px) {
    .trust-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 3rem 1.25rem 2rem;
    }

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

    .trust-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

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

    .trust-stat-card {
        padding: 1.4rem 1.2rem;
    }

    .trust-stat-icon {
        width: 48px;
        height: 48px;
    }

    .trust-stat-icon i {
        font-size: 1.1rem;
    }

    .trust-stat-number {
        font-size: 1.4rem;
    }

    .trust-stat-label {
        font-size: 0.75rem;
    }

    .trust-credentials-strip {
        gap: 1rem 1.5rem;
        padding: 1.5rem 0 2.5rem;
    }

    .trust-credential-divider {
        display: none;
    }

    .trust-credential span {
        font-size: 0.82rem;
    }

    .payment-strip {
        flex-direction: column;
        gap: 0.6rem;
    }

    .payment-strip-label {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .trust-stats-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .trust-stat-card {
        padding: 1.2rem 1rem;
        gap: 1rem;
    }

    .trust-stat-number {
        font-size: 1.3rem;
    }

    .trust-credentials-strip {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* ========================================
   SKIP TO CONTENT — Accessibility
   ======================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,140,0,0.2);
    padding: 1rem 1.5rem;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-consent-text {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #ccc;
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 700px;
}
.cookie-consent-text i {
    color: var(--accent-orange);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.cookie-consent-text a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}
.cookie-consent-text a:hover {
    text-decoration: underline;
}
.cookie-consent-btn {
    background: var(--accent-orange);
    color: #fff;
    border: none;
    padding: 0.6rem 1.6rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
    flex-shrink: 0;
}
.cookie-consent-btn:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,140,0,0.3);
}
@media (max-width: 640px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem 1rem;
        padding-bottom: calc(1.2rem + env(safe-area-inset-bottom, 0));
    }
    .cookie-consent-text {
        flex-direction: column;
        gap: 0.3rem;
    }
    .cookie-consent-btn {
        width: 100%;
        padding: 0.8rem;
    }
}
/* Push cookie banner above mobile bottom nav */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 65px;
    }
}

/* ========================================
   PRINT STYLESHEET
   ======================================== */
@media print {
    /* Reset to light background */
    body,
    .inner-content,
    .inner-hero,
    .hero,
    section,
    footer {
        background: #fff !important;
        color: #000 !important;
    }

    /* Hide non-content elements */
    header,
    .mobile-menu,
    .mobile-bottom-nav,
    .scroll-top,
    .scroll-progress,
    .google-banner,
    .cookie-consent,
    .hero-canvas,
    .hero-lock-icon,
    .hero-buttons,
    .breadcrumb,
    .btn,
    .btn-primary,
    .btn-secondary,
    .cta-banner,
    .blog-cta-banner,
    .map-embed-section,
    .service-card-link,
    .blog-featured-cta,
    .blog-card-link,
    .blog-back,
    .blog-filters,
    .coverage-map,
    .coverage-show-more,
    .map-toggle-overlay,
    .booking,
    .reviews-section,
    .stats,
    .trust-section,
    #pinTumblerSection,
    .nearby-areas a,
    footer {
        display: none !important;
    }

    /* Reset inner-hero for print */
    .inner-hero {
        min-height: auto !important;
        padding: 1rem 0 !important;
    }
    .inner-hero-content {
        position: static !important;
        transform: none !important;
    }

    /* Typography */
    h1, h2, h3, h4 {
        color: #000 !important;
        page-break-after: avoid;
    }
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.4rem !important; border-bottom: 1px solid #ccc !important; }
    h2::after { display: none !important; }
    h3 { font-size: 1.1rem !important; }
    .highlight { color: #000 !important; -webkit-text-fill-color: #000 !important; }

    p, li, span {
        color: #333 !important;
        font-size: 11pt !important;
    }

    a {
        color: #333 !important;
        text-decoration: underline !important;
    }
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 9pt;
        color: #666;
    }
    a[href^="#"]::after,
    a[href^="tel:"]::after,
    a[href^="javascript:"]::after,
    nav a[href]::after {
        content: "" !important;
    }

    ul li::before {
        color: #000 !important;
    }

    .inner-content {
        padding: 0 !important;
        max-width: 100% !important;
    }

    /* Page breaks */
    .faq-item, .service-card, .blog-card {
        page-break-inside: avoid;
    }

    /* Show print-friendly header */
    body::before {
        content: "Same Day Locksmith — (913) 530-9874 — 115 N Chester St, Olathe, KS 66061";
        display: block;
        font-size: 10pt;
        color: #666;
        border-bottom: 1px solid #ccc;
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HERO UPGRADE — Trust Pills, Resolution Line, Stats Strip
   ═══════════════════════════════════════════════════════════════ */

/* Extra bottom clearance so hero-content never overlaps the strip */
.hero {
    padding-bottom: 100px;
} 

/* ── Trust Bar ───────────────────────────────────────────────── */
.hero-trust-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    animation: slideInDown 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0 1.25rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.15px;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.hero-trust-item:first-child {
    padding-left: 0;
}

.hero-trust-item i {
    font-size: 0.72rem;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.hero-trust-item:hover {
    color: rgba(255, 255, 255, 0.95);
}

.hero-trust-div {
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

/* ── H1 Resolution Line (second line) ────────────────────────── */
.hero-resolution {
    display: block;
    font-size: 0.72em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.5px;
    margin-top: 0.12em;
    line-height: 1.15;
}

/* highlight class works inside .hero-resolution — keeps orange color */

/* ── Hero Bottom Zone ────────────────────────────────────────── */
.hero-bottom-zone {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
}

/* ── Trust Ticker ────────────────────────────────────────────── */
.hero-ticker {
    overflow: hidden;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.48rem 0;
}

.hero-ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: hero-ticker-scroll 32s linear infinite;
}

@keyframes hero-ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-ticker-track {
        animation-play-state: paused;
    }
}

.hero-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    font-size: 0.71rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.25px;
    padding: 0 1.1rem;
    white-space: nowrap;
}

.hero-ticker-item i {
    font-size: 0.63rem;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.hero-ticker-sep {
    color: rgba(255, 255, 255, 0.18);
    font-size: 0.71rem;
    flex-shrink: 0;
}

/* ── Stats Strip ─────────────────────────────────────────────── */
.hero-stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.58);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    padding: 1rem 2rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0 2.8rem;
}

.hero-stat-val {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    letter-spacing: -0.5px;
}

.hero-stat-lbl {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-weight: 500;
    white-space: nowrap;
}

.hero-stat-div {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ── Hero Upgrade — Tablet (≤1200px) ─────────────────────────── */
@media (max-width: 1200px) {
    .hero-stat {
        padding: 0 1.8rem;
    }
    .hero-stat-val {
        font-size: 1.25rem;
    }
}

/* ── Hero Upgrade — Mobile (≤768px) ─────────────────────────── */
@media (max-width: 768px) {
    .hero {
        padding-bottom: 90px;
    }
    .hero-trust-bar {
        display: none;
    }
    .hero-stats-strip {
        padding: 0.75rem 1rem;
    }
    .hero-ticker-item {
        font-size: 0.68rem;
        padding: 0 0.85rem;
    }
    .hero-stat {
        padding: 0 1rem;
    }
    .hero-stat-val {
        font-size: 1.1rem;
    }
    .hero-stat-lbl {
        font-size: 0.58rem;
        letter-spacing: 0.8px;
    }
    .hero-stat-div {
        height: 22px;
    }
}

/* ── Hero Upgrade — Small Mobile (≤480px) ────────────────────── */
@media (max-width: 480px) {
    .hero {
        padding-bottom: 80px;
    }

    /* Switch to 2×2 grid so all 4 stats are fully visible */
    .hero-stats-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
        align-items: stretch;
    }

    .hero-ticker-item {
        font-size: 0.65rem;
        padding: 0 0.7rem;
    }

    /* Base stat cell */
    .hero-stat {
        width: 100%;
        padding: 0.65rem 0.5rem;
        justify-content: center;
    }

    /*
     * DOM order: stat(1) div(2) stat(3) div(4) stat(5) div(6) stat(7)
     * Grid ignores display:none dividers, placing stats into 2 cols:
     *   col-1 row-1 = child 1 (30 Min)
     *   col-2 row-1 = child 3 (Google Rating)
     *   col-1 row-2 = child 5 (5,000+)
     *   col-2 row-2 = child 7 (24/7)
     *
     * Apply borders explicitly by actual child index.
     */

    /* Column separator — left column stats only */
    .hero-stats-strip > .hero-stat:nth-child(1),
    .hero-stats-strip > .hero-stat:nth-child(5) {
        border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    /* Row separator — top row stats only */
    .hero-stats-strip > .hero-stat:nth-child(1),
    .hero-stats-strip > .hero-stat:nth-child(3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .hero-stat-val {
        font-size: 1.05rem;
    }

    /* Restore labels — hidden labels break usability on mobile */
    .hero-stat-lbl {
        display: block;
        font-size: 0.6rem;
        letter-spacing: 0.7px;
    }

    /* Hide vertical pipe dividers — grid handles separation */
    .hero-stat-div {
        display: none;
    }
}

/* ── Hero Upgrade — Extra Small Mobile (≤360px) ─────────────── */
@media (max-width: 360px) {
    .hero-stat-val {
        font-size: 0.95rem;
    }
    .hero-stat-lbl {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }
}