/* --------------------------------------------------
 * Lollie's Exterior Cleaning Services - Custom Stylesheet
 * Vanilla CSS - Replicating Premium Hero Layout
 * -------------------------------------------------- */

/* 1. CSS VARIABLES & SYSTEM DESIGN */
:root {
    --primary: #0c2340;          /* Deep Navy Blue */
    --primary-light: #183354;
    --secondary: #7ac143;        /* Vivid Green */
    --secondary-hover: #66a336;
    --accent-blue: #99c5f5;      /* Light Sky Blue */
    --accent-blue-light: #e6f1fe;
    --dark: #0b0f19;             /* Rich Dark / Charcoal */
    --light: #f8fafc;            /* Off-white */
    --white: #ffffff;
    
    --text: #1e293b;             /* Slate 800 */
    --text-muted: #64748b;       /* Slate 500 */
    --border: #e2e8f0;           /* Slate 200 */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* 2. RESET & BASE ELEMENTS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* 3. REUSABLE UTILITIES */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.py-large {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light);
}

.text-center {
    text-align: center;
}

.max-w-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mt-small { margin-top: 16px; }
.mt-medium { margin-top: 32px; }
.mt-large { margin-top: 56px; }
.mb-small { margin-bottom: 16px; }
.mb-medium { margin-bottom: 32px; }
.mb-large { margin-bottom: 56px; }

.text-white { color: var(--white) !important; }

/* 4. BUTTONS & TAGS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(122, 193, 67, 0.4);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 193, 67, 0.5);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-text {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    position: relative;
    padding-bottom: 4px;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0.7);
    transform-origin: left;
    transition: var(--transition);
}

.btn-text:hover::after {
    transform: scaleX(1.0);
}

.btn-arrow {
    gap: 8px;
}

.btn-arrow:hover .arrow-icon {
    transform: translateX(4px);
}

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent-blue-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* 5. HEADER & NAVIGATION */
.header {
    width: 100%;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* 6. HERO SECTION */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-blue-light) 100%);
    padding-top: 60px;
    padding-bottom: 300px; /* Space for overlapping bottom bar */
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

/* Hero Left Content */
.hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.video-preview-card {
    position: absolute;
    left: 50%;
    transform: translateX(-240px) rotate(-3deg);
    bottom: 50px;
    width: 180px;
    height: 110px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
    transition: var(--transition);
    z-index: 12;
}

.video-preview-card:hover {
    transform: translateX(-240px) rotate(0deg) scale(1.05);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 35, 64, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: pulsePlay 2s infinite;
}

.play-btn svg {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: var(--secondary);
    color: var(--white);
}

@keyframes pulsePlay {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.highlight-green {
    color: var(--secondary);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
}

.hero-reviews {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-group {
    display: flex;
    margin-right: 8px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.avatar:first-child {
    margin-left: 0;
}

.review-text {
    display: flex;
    flex-direction: column;
}

.review-text .stars {
    color: #f7b731;
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 4px;
}

.review-count {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Hero Right Graphic Column */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arch-container {
    position: relative;
    width: 380px;
    height: 480px;
    z-index: 5;
}

.arch-backdrop {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: linear-gradient(180deg, var(--accent-blue) 0%, rgba(153, 197, 245, 0.4) 100%);
    border-radius: 200px 200px 30px 30px;
    z-index: 1;
}

.technician-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 105%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 15px 20px rgba(12, 35, 64, 0.15));
}

.badge-stamp {
    position: absolute;
    top: 25px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.badge-text-svg {
    width: 100%;
    height: 100%;
    animation: rotateStamp 20s linear infinite;
}

.stamp-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 8.5px;
    fill: var(--primary);
    letter-spacing: 0.5px;
}

.badge-inner-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

@keyframes rotateStamp {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-socials {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 6;
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.social-circle svg {
    width: 16px;
    height: 16px;
}

.social-circle:hover {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* 7. OVERLAPPING CURVED STATS BOTTOM BAR */
.stats-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 15;
    background-color: var(--dark);
    padding-bottom: 50px;
}

.notch-svg-wrapper {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 42px;
    pointer-events: none;
}

.notch-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.stats-content-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    align-items: center;
    padding-top: 15px;
    z-index: 16;
}

.stats-tagline {
    padding-right: 40px;
    z-index: 17;
}

.stats-tagline p {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.45rem;
    line-height: 1.35;
}

.stats-right-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.metrics-row {
    display: flex;
    gap: 32px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-item.border-left {
    border-left: 1px solid rgba(255,255,255,0.15);
    padding-left: 32px;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.metric-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-services-row {
    display: flex;
    gap: 16px;
    flex-grow: 1;
    justify-content: flex-end;
}

.quick-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 190px;
    transition: var(--transition);
}

.quick-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.quick-card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.quick-card-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.quick-card-icon-wrapper.red-bg { background-color: #eb3b5a; }
.quick-card-icon-wrapper.teal-bg { background-color: #2bcbba; }
.quick-card-icon-wrapper.yellow-bg { background-color: #f7b731; }

.quick-card-info {
    display: flex;
    flex-direction: column;
}

.quick-card-title {
    font-size: 0.9375rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2px;
}

.quick-card-link {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.quick-card-link span {
    transition: var(--transition);
    display: inline-block;
}

.quick-card:hover .quick-card-link {
    color: var(--secondary);
}

.quick-card:hover .quick-card-link span {
    transform: translateX(3px);
}

/* 8. ABOUT US SECTION */
.about-image-wrapper {
    position: relative;
}

.about-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 480px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.badge-lbl {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 600;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--accent-blue-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* 9. SERVICES GRID SECTION */
.services-section {
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, var(--accent-blue-light) 50%, var(--white) 100%);
    overflow: hidden;
    z-index: 1;
}

/* Background blurs matching hero styling */
.services-decor-blur {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    opacity: 0.12;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.services-decor-blur.blur-left {
    top: 10%;
    left: -150px;
}

.services-decor-blur.blur-right {
    bottom: 15%;
    right: -150px;
    background-color: var(--secondary); /* Green blur */
    opacity: 0.08;
}

.services-tabs-container {
    display: none; /* Removed old tabs */
}

/* 9. SERVICES SHOWCASE DASHBOARD */
.services-showcase-container {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 40px;
    align-items: stretch;
    position: relative;
    z-index: 10;
}

.services-showcase-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.showcase-menu-item {
    background-color: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    text-align: left;
    box-shadow: 0 4px 6px -1px rgba(12, 35, 64, 0.01), 0 2px 4px -1px rgba(12, 35, 64, 0.01);
    border-left: 4px solid transparent;
    width: 100%;
}

.showcase-menu-item:hover {
    transform: translateX(6px);
    border-color: rgba(122, 193, 67, 0.2);
    box-shadow: var(--shadow-md);
    background-color: var(--white);
}

.showcase-menu-item.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    border-left-color: var(--secondary);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.menu-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-blue-light);
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.showcase-menu-item:hover .menu-icon-wrapper {
    background-color: var(--secondary);
    color: var(--white);
}

.showcase-menu-item.active .menu-icon-wrapper {
    background-color: var(--secondary);
    color: var(--white);
}

.showcase-menu-item .menu-icon-wrapper svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2px;
}

/* Icon glow colors matching services icons */
.blue-glow { color: #3b82f6; }
.green-glow { color: #10b981; }
.red-glow { color: #ef4444; }
.purple-glow { color: #8b5cf6; }
.yellow-glow { color: #f59e0b; }
.cyan-glow { color: #06b6d4; }
.orange-glow { color: #f97316; }
.navy-glow { color: #0c2340; }

/* Right Panel Styles */
.services-showcase-panel {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid rgba(12, 35, 64, 0.08);
    box-shadow: 0 20px 50px -15px rgba(12, 35, 64, 0.08);
    overflow: hidden;
    min-height: 480px;
    position: relative;
}

.showcase-panel-card {
    display: none;
    grid-template-columns: 1.05fr 0.95fr;
    height: 100%;
}

.showcase-panel-card.active {
    display: grid;
    animation: cardSlideFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardSlideFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.showcase-panel-image {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.showcase-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.showcase-panel-card:hover .showcase-panel-image img {
    transform: scale(1.08);
}

.showcase-panel-price-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: var(--secondary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(122, 193, 67, 0.3);
    font-size: 0.875rem;
    z-index: 5;
}

.showcase-panel-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    align-self: flex-start;
}

.blue-tag { background-color: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.green-tag { background-color: rgba(16, 185, 129, 0.1); color: #10b981; }
.red-tag { background-color: rgba(239, 68, 68, 0.1); color: #ef4444; }
.purple-tag { background-color: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.yellow-tag { background-color: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.cyan-tag { background-color: rgba(6, 182, 212, 0.1); color: #06b6d4; }
.orange-tag { background-color: rgba(249, 115, 22, 0.1); color: #f97316; }
.navy-tag { background-color: var(--accent-blue-light); color: var(--primary); }

.showcase-panel-info h3 {
    font-size: 1.85rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 800;
}

.info-description {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.info-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    margin-bottom: 36px;
}

.info-checklist li {
    font-size: 0.875rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.info-checklist li span {
    color: var(--secondary);
    font-weight: 800;
}

.info-actions {
    display: flex;
    gap: 16px;
}

/* Scrollbar styling for horizontal scrolling menu on mobile */
.services-showcase-sidebar::-webkit-scrollbar {
    height: 4px;
}
.services-showcase-sidebar::-webkit-scrollbar-thumb {
    background: rgba(12, 35, 64, 0.1);
    border-radius: 4px;
}

/* Showcase responsive overrides */
@media (max-width: 1024px) {
    .services-showcase-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-showcase-sidebar {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 12px;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
    }
    
    .showcase-menu-item {
        flex-shrink: 0;
        width: auto;
        padding: 12px 18px;
        font-size: 0.875rem;
        transform: none !important;
    }
    
    .showcase-panel-card {
        grid-template-columns: 1fr;
    }
    
    .showcase-panel-image {
        min-height: 280px;
        height: 280px;
    }
    
    .showcase-panel-info {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .info-checklist {
        grid-template-columns: 1fr;
    }
    .info-actions {
        flex-direction: column;
    }
}

/* 10. BEFORE/AFTER SLIDER SHOWCASE */
.comparison-wrapper {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    user-select: none;
    cursor: ew-resize;
}

.comparison-container .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-container .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-before {
    z-index: 1;
    filter: brightness(0.75);
}

.img-after {
    z-index: 2;
    width: 50%; /* JS will control this */
    overflow: hidden;
    border-right: 2px solid var(--white);
}

.after-img-scaled {
    width: 900px; /* Must equal the width of comparison-container wrapper for alignment */
    max-width: none !important;
}

.label-badge {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--white);
    z-index: 10;
}

.badge-before {
    right: 20px;
    left: auto;
    background-color: rgba(12, 35, 64, 0.8);
}

.badge-after {
    left: 20px;
    right: auto;
    background-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%; /* JS will control this */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--secondary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 12;
    transform: translate(-50%, 218px); /* centered vertically */
    box-shadow: var(--shadow-xl);
}

.handle-line {
    position: absolute;
    top: -220px;
    bottom: -220px;
    left: 50%;
    width: 3px;
    background-color: var(--white);
    transform: translateX(-50%);
    pointer-events: none;
}

.handle-arrow-left { margin-right: 2px; }
.handle-arrow-right { margin-left: 2px; }

.showcase-selectors {
    display: flex;
    gap: 12px;
    background-color: var(--light);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.selector-btn {
    background: none;
    border: none;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-muted);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.selector-btn:hover {
    color: var(--primary);
}

.selector-btn.active {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* SERVICE AREAS SECTION */
.service-areas-section {
    position: relative;
    background-color: var(--white);
    z-index: 1;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.area-card {
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.area-card:hover {
    background-color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(12, 35, 64, 0.08);
}

.area-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.area-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* 11. TESTIMONIALS SECTION */
.reviews-marquee-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-grid.scrolling {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    max-width: none;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    animation: marquee 40s linear infinite;
}

.testimonials-grid.scrolling:hover {
    animation-play-state: paused;
}

.testimonials-grid .review-card {
    width: 100%; /* Will take 1fr in grid */
    text-align: left;
}

.testimonials-grid.scrolling .review-card {
    width: 380px;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(12, 35, 64, 0.08);
}

.review-card .stars {
    color: #f7b731;
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.review-heading {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.review-body {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-blue-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9375rem;
}

.reviewer-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
}

.reviewer-status {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* FAQ SECTION */
.faq-section {
    position: relative;
    z-index: 2;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(122, 193, 67, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: var(--secondary);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 12. CONTACT / LEAD FORM SECTION */
.contact-info-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-blue-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.detail-item h5 {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.detail-item p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    word-break: break-word;
}

.contact-form-wrapper {
    background-color: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background-color: var(--light);
    transition: var(--transition);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    background-color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(122, 193, 67, 0.15);
}

.form-status {
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition);
}

.form-status.success { color: var(--secondary); }
.form-status.error { color: #eb3b5a; }

/* 13. FOOTER */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .footer-tagline {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 16px;
}

.social-links-footer {
    display: flex;
    gap: 16px;
}

.social-links-footer a {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.social-links-footer a:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer ul a {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.footer ul a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.hours-text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.phone-link a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-bottom {
    padding: 30px 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* Desktop defaults for mobile app features */
.phone-call-header-mobile {
    display: none;
}

.mobile-bottom-nav {
    display: none;
}

/* 14. RESPONSIVE DESIGN (BREAKPOINTS) */

/* Widescreen / Desktop adjustment */
@media (min-width: 1400px) {
    .stats-bottom-bar {
        padding-bottom: 70px;
    }
}

/* Notebook / Large Tablet (<= 1024px) */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-section {
        padding-bottom: 40px; /* Reduced huge padding since bottom stats bar is relative now */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem; /* Scale down title size slightly on tablet */
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-reviews {
        justify-content: center;
    }
    
    .hero-right {
        margin-top: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .arch-container {
        width: 100%;
        max-width: 320px;
        height: 400px;
        margin: 0 auto;
    }
    
    .video-preview-card {
        position: absolute;
        left: 50%;
        transform: translateX(-170px) rotate(-3deg);
        bottom: 30px;
        width: 160px;
        height: 100px;
        margin-bottom: 0;
    }
    
    .video-preview-card:hover {
        transform: translateX(-170px) rotate(0deg) scale(1.05);
    }
    
    .badge-stamp {
        position: absolute;
        left: 50%;
        transform: translateX(110px);
        top: 20px;
        width: 80px;
        height: 80px;
    }
    
    /* Align socials horizontally below the technician arch on tablet */
    .hero-socials {
        position: relative;
        flex-direction: row;
        right: auto;
        top: auto;
        transform: none;
        justify-content: center;
        margin-top: 24px;
        gap: 16px;
        z-index: 6;
    }
    
    /* Position stats naturally on tablet */
    .stats-bottom-bar {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 40px;
        padding-top: 30px;
        padding-bottom: 30px;
        width: 100%;
    }
    
    .stats-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .stats-tagline {
        padding-right: 0;
    }
    
    .stats-tagline p {
        font-size: 1.35rem;
    }
    
    .stats-right-wrapper {
        flex-direction: column;
        gap: 32px;
    }
    
    .quick-services-row {
        justify-content: center;
        width: 100%;
    }
    
    .services-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Tablet / Mobile (<= 768px) */
@media (max-width: 768px) {
    body {
        padding-bottom: 64px; /* Space for fixed bottom app nav bar */
    }
    
    .container {
        padding: 0 16px; /* Squeeze padding for mobile screens */
    }
    
    .py-large {
        padding: 50px 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    /* Top Header App Upgrades */
    .header-actions {
        display: flex !important;
        align-items: center;
        gap: 8px;
    }
    
    .header-actions #nav-quote-btn {
        display: none !important; /* Hide Estimate text button on mobile header */
    }
    
    .phone-call-header-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: var(--secondary); /* Green circle */
        color: var(--white);
        box-shadow: 0 4px 10px rgba(122, 193, 67, 0.3);
        transition: var(--transition);
        flex-shrink: 0;
    }
    
    .phone-call-header-mobile svg {
        width: 16px;
        height: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        z-index: 1001; /* Layer above the slide-out menu drawer */
        background: none;
        border: none;
        cursor: pointer;
        margin-left: 8px;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--primary);
        border-radius: 2px;
        transition: var(--transition);
    }
    
    /* When the drawer is open, transform hamburger to X and change lines to white */
    .mobile-menu-toggle.open span {
        background-color: var(--white) !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%; /* Slide out of view initially */
        width: 75%;
        max-width: 280px;
        height: 100vh;
        background-color: rgba(12, 35, 64, 0.98); /* Deep navy blue solid/glass backdrop */
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        padding: 80px 40px;
        box-shadow: -10px 0 45px rgba(0, 0, 0, 0.25);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--white) !important;
        padding: 8px 16px;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        transition: var(--transition);
    }
    
    .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
        color: var(--secondary) !important; /* Vivid green */
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu .nav-link.active::after {
        display: none; /* Hide bottom line of link inside mobile drawer */
    }
    
    /* Mobile App Bottom Tab Bar Navigation */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 64px;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(12, 35, 64, 0.06);
        justify-content: space-around;
        align-items: center;
        z-index: 999;
        box-shadow: 0 -4px 25px rgba(12, 35, 64, 0.05);
        padding: 0 16px;
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        gap: 4px;
        text-decoration: none;
        width: 60px;
        height: 100%;
        transition: var(--transition);
    }
    
    .mobile-nav-item svg {
        width: 22px;
        height: 22px;
        stroke-width: 2.2px;
    }
    
    .mobile-nav-item span {
        font-size: 0.65rem;
        font-family: var(--font-heading);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }
    }
    
    .stats-tagline {
        padding-right: 0;
    }
    
    .stats-tagline p {
        font-size: 1.35rem;
    }
    
    .stats-right-wrapper {
        flex-direction: column;
        gap: 32px;
    }
    
    .quick-services-row {
        justify-content: center;
        width: 100%;
    }
    
    .services-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Tablet / Mobile (<= 768px) */
@media (max-width: 768px) {
    body {
        padding-bottom: 64px; /* Space for fixed bottom app nav bar */
    }
    
    .container {
        padding: 0 16px; /* Squeeze padding for mobile screens */
    }
    
    .py-large {
        padding: 50px 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    /* Top Header App Upgrades */
    .header-actions {
        display: flex !important;
        align-items: center;
        gap: 8px;
    }
    
    .header-actions #nav-quote-btn {
        display: none !important; /* Hide Estimate text button on mobile header */
    }
    
    .phone-call-header-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: var(--secondary); /* Green circle */
        color: var(--white);
        box-shadow: 0 4px 10px rgba(122, 193, 67, 0.3);
        transition: var(--transition);
        flex-shrink: 0;
    }
    
    .phone-call-header-mobile svg {
        width: 16px;
        height: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        z-index: 1001; /* Layer above the slide-out menu drawer */
        background: none;
        border: none;
        cursor: pointer;
        margin-left: 8px;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--primary);
        border-radius: 2px;
        transition: var(--transition);
    }
    
    /* When the drawer is open, transform hamburger to X and change lines to white */
    .mobile-menu-toggle.open span {
        background-color: var(--white) !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%; /* Slide out of view initially */
        width: 75%;
        max-width: 280px;
        height: 100vh;
        background-color: rgba(12, 35, 64, 0.98); /* Deep navy blue solid/glass backdrop */
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        padding: 80px 40px;
        box-shadow: -10px 0 45px rgba(0, 0, 0, 0.25);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--white) !important;
        padding: 8px 16px;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        transition: var(--transition);
    }
    
    .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
        color: var(--secondary) !important; /* Vivid green */
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu .nav-link.active::after {
        display: none; /* Hide bottom line of link inside mobile drawer */
    }
    
    /* Mobile App Bottom Tab Bar Navigation */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 64px;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(12, 35, 64, 0.06);
        justify-content: space-around;
        align-items: center;
        z-index: 999;
        box-shadow: 0 -4px 25px rgba(12, 35, 64, 0.05);
        padding: 0 16px;
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        gap: 4px;
        text-decoration: none;
        width: 60px;
        height: 100%;
        transition: var(--transition);
    }
    
    .mobile-nav-item svg {
        width: 22px;
        height: 22px;
        stroke-width: 2.2px;
    }
    
    .mobile-nav-item span {
        font-size: 0.65rem;
        font-family: var(--font-heading);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }
    
    .mobile-nav-item:hover, .mobile-nav-item.active {
        color: var(--secondary); /* Green active tint */
    }
    
    /* Hero Responsiveness Fixes */
    .hero-section {
        padding-top: 40px;
        padding-bottom: 0; /* Natural flow stack, no extra padding needed */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .video-preview-card {
        position: absolute;
        left: 50%;
        transform: translateX(-140px) rotate(-3deg);
        bottom: 50px;
        width: 130px;
        height: 80px;
        margin-bottom: 0;
        z-index: 12;
    }
    
    .video-preview-card:hover {
        transform: translateX(-140px) rotate(0deg) scale(1.05);
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 2.6rem);
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 24px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
        width: 100%;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .hero-reviews {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    /* Arch scaling and centered layout on mobile */
    .hero-right {
        margin-top: 10px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .arch-container {
        width: 100%;
        max-width: 300px;
        height: 380px;
        margin: 0 auto;
    }
    
    .badge-stamp {
        position: absolute;
        left: 50%;
        transform: translateX(75px);
        top: 20px;
        width: 76px;
        height: 76px;
        box-shadow: var(--shadow-md);
    }
    
    .stamp-text {
        font-size: 11px;
    }
    
    .badge-inner-icon {
        width: 32px;
        height: 32px;
    }
    
    .badge-inner-icon svg {
        width: 16px;
        height: 16px;
    }
    
    /* Align social bar horizontally under the arch on mobile */
    .hero-socials {
        position: relative;
        flex-direction: row;
        right: auto;
        top: auto;
        transform: none;
        justify-content: center;
        margin-top: 36px;
        gap: 20px;
    }
    
    /* Stats Overlapping Banner Mobile Fixes */
    .stats-bottom-bar {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 30px;
        padding-top: 30px;
        padding-bottom: 40px;
        width: 100%;
    }
    
    .notch-svg-wrapper {
        display: none;
    }
    
    .stats-bottom-bar::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 0;
        width: 100%;
        height: 10px;
        background-color: var(--dark);
        border-radius: 16px 16px 0 0;
    }
    
    .stats-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 20px;
    }
    
    .stats-tagline p {
        font-size: 1.25rem;
    }
    
    .stats-right-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    
    .metrics-row {
        gap: 24px;
    }
    
    .metric-item.border-left {
        padding-left: 24px;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .quick-services-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .quick-card {
        width: 100%;
        max-width: 320px;
    }
    
    /* General Grid Items */
    .services-grid, .testimonials-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-card {
        height: 280px;
    }
    
    .comparison-container {
        height: 280px;
    }
    
    .after-img-scaled {
        width: 480px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 24px 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================= */
/* BLOG STYLES                               */
/* ========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(12, 35, 64, 0.08);
}

.blog-card-img-wrapper {
    display: block;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
}

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

.blog-card:hover .blog-card-img-wrapper img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-tag {
    color: var(--secondary);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.blog-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
    line-height: 1.4;
    font-family: var(--font-heading);
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--secondary);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.blog-card-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    align-self: flex-start;
    font-size: 0.95rem;
}

.blog-card-link:hover {
    color: var(--secondary);
}

.blog-card-link svg {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link svg {
    transform: translateX(4px);
}

/* ========================================= */
/* BLOG DETAILS PAGE STYLES                  */
/* ========================================= */
.blog-detail-hero {
    position: relative;
    padding: 160px 0 80px;
    background-color: var(--primary);
    overflow: hidden;
}

.blog-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-detail-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 24px 0;
    color: var(--white);
    font-family: var(--font-heading);
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

@media (max-width: 992px) {
    .blog-layout-grid {
        grid-template-columns: 1fr;
    }
}

.blog-main-content {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .blog-main-content {
        padding: 24px;
    }
}

.blog-featured-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-typography {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-typography h2 {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary);
    margin: 48px 0 24px;
}

.blog-typography h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 32px 0 16px;
}

.blog-typography p {
    margin-bottom: 24px;
}

/* Drop cap for the first paragraph */
.blog-typography > p:first-of-type::first-letter {
    float: left;
    font-size: 3.8rem;
    line-height: 0.9;
    font-weight: 800;
    color: var(--secondary);
    margin-right: 12px;
    margin-top: 6px;
    font-family: var(--font-heading);
}

.blog-typography ul {
    margin: 0 0 32px 0;
    padding: 0;
    list-style: none;
}

.blog-typography ul li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
}

.blog-typography ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(122, 193, 67, 0.15);
    color: var(--secondary);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: bold;
}

.blog-typography blockquote {
    margin: 40px 0;
    padding: 32px;
    background-color: var(--light);
    border-left: 6px solid var(--secondary);
    border-radius: 0 12px 12px 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
}

.blog-sidebar-widget {
    background: var(--primary);
    color: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-lg);
}

.blog-sidebar-widget h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    color: var(--white);
}

.blog-sidebar-widget p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.blog-author-box {
    margin-top: 56px;
    padding: 32px;
    background: rgba(122, 193, 67, 0.05);
    border: 1px solid rgba(122, 193, 67, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.blog-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
}

.blog-author-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.blog-author-info p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ========================================= */
/* LOCAL CITY PAGES SPECIFIC STYLES          */
/* ========================================= */

.local-hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--dark) 0%, #153969 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.local-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -1px;
}

.local-hero-title .highlight-green {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.local-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.local-hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.local-stat-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.local-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.local-stat-label {
    font-size: 0.9rem;
    color: var(--light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.city-hero-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 480px;
    border-radius: 200px 200px 30px 30px;
    object-fit: cover;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Header Dropdown Menu */
.nav-item-dropdown { position: relative; display: inline-block; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background-color: var(--white); min-width: 200px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 12px; padding: 12px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 100; border: 1px solid var(--border); }
.nav-item-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 24px; color: var(--text); font-weight: 500; text-decoration: none; transition: all 0.2s; }
.dropdown-menu a:hover { background-color: var(--light); color: var(--secondary); padding-left: 28px; }
@media (max-width: 992px) { .nav-item-dropdown { width: 100%; flex-direction: column; } .dropdown-menu { position: static; box-shadow: none; border: none; background-color: rgba(255,255,255,0.05); transform: none; visibility: visible; opacity: 1; display: none; margin-top: 10px; border-radius: 8px; width: 100%; text-align: center; } .nav-item-dropdown.mobile-dropdown-open .dropdown-menu { display: block; } .dropdown-menu a { padding: 12px 24px; color: var(--white); } .dropdown-menu a:hover { background-color: rgba(255,255,255,0.1); color: var(--secondary); } }

.nav-menu { align-items: center; }
.nav-item-dropdown { display: flex; align-items: center; }

/* Responsive Logo for Mobile */
@media (max-width: 768px) {
    .main-logo {
        height: 55px !important;
    }
    .logo-title {
        font-size: 1.1rem !important;
    }
    .logo-subtitle {
        font-size: 0.6rem !important;
    }
    .logo-wrapper {
        gap: 6px !important;
    }
}

/* ==========================================================================
   IMMERSIVE BLOG DETAIL PAGE STYLES (NO SIDEBAR)
   ========================================================================== */
.immersive-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.immersive-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(12, 35, 64, 0.3), rgba(12, 35, 64, 0.85));
    z-index: 1;
}

.immersive-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px;
    color: var(--white);
}

.immersive-hero .section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 24px;
}

.immersive-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.immersive-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 500;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
}

.immersive-hero .breadcrumb {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}
.immersive-hero .breadcrumb-item a { color: var(--white); }
.immersive-hero .breadcrumb-item a:hover { color: var(--secondary); }
.immersive-hero .breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.immersive-hero .breadcrumb-separator { color: rgba(255,255,255,0.4); }

.immersive-content-wrapper {
    max-width: 900px;
    margin: -80px auto 100px;
    background: var(--white);
    padding: 70px 90px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.immersive-cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
    margin: 60px 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.immersive-cta-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(122, 193, 67, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.immersive-cta-box h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.immersive-cta-box p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .immersive-content-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .immersive-content-wrapper {
        padding: 40px 24px;
        margin-top: -40px;
        border-radius: 20px;
    }
    .immersive-hero-title {
        font-size: 2.2rem;
    }
    .immersive-hero {
        min-height: 400px;
    }
    .immersive-cta-box {
        padding: 40px 24px;
    }
}

/* ==========================================================================
   BLOG ARCHIVE & DETAIL PAGE STYLES
   ========================================================================== */

/* (Skipped other existing styles for brevity here, I need to make sure I don't overwrite the existing file) */

/* Blog Archive Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(122, 193, 67, 0.3);
}

.blog-card-img-wrapper {
    display: block;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
}

.blog-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img-wrapper img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-tag {
    display: inline-block;
    background-color: rgba(122, 193, 67, 0.1);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    align-self: flex-start;
}

.blog-card-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--secondary);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.blog-card-link svg {
    transition: transform 0.3s ease;
}

.blog-card-link:hover {
    color: var(--secondary);
}

.blog-card-link:hover svg {
    transform: translateX(5px);
}

/* Blog Detail Page */
.blog-detail-hero {
    background: linear-gradient(to right, rgba(248, 250, 252, 0.9), rgba(230, 241, 254, 0.5));
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.blog-detail-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-detail-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary);
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.blog-layout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

/* Main Content Typography */
.blog-main-content {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
}

.blog-featured-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.blog-typography {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
}

.blog-typography p {
    margin-bottom: 24px;
}

.blog-typography h2 {
    font-size: 2rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary);
}

.blog-typography ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.blog-typography li {
    margin-bottom: 12px;
}

.blog-typography strong {
    color: var(--primary);
    font-weight: 700;
}

.blog-typography blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: var(--accent-blue-light);
    border-left: 5px solid var(--secondary);
    border-radius: 0 12px 12px 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.6;
    position: relative;
}

.blog-typography blockquote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(12, 35, 64, 0.1);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

/* Author Box */
.blog-author-box {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 60px;
    padding: 32px;
    background-color: var(--light);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.blog-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.blog-author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.blog-author-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar-widget {
    background: var(--primary);
    color: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.blog-sidebar-widget h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.blog-sidebar-widget p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Breadcrumbs */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    justify-content: center;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--secondary);
}

.breadcrumb-item.active {
    color: var(--text-muted);
    pointer-events: none;
}

.breadcrumb-separator {
    color: var(--border);
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .blog-layout-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .blog-detail-title {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   TESTIMONIALS MARQUEE
   ========================================================================== */
.testimonials-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonials-marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

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

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.marquee-review-card {
    width: 400px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.marquee-review-card .stars {
    color: #f7b731;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.marquee-review-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.marquee-review-card p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.marquee-reviewer-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.marquee-reviewer-avatar {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.marquee-reviewer-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.marquee-reviewer-status {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    border-top: 4px solid var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 20px;
}

.social-links-footer {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links-footer a {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.footer ul li a::before {
    content: '→';
    color: var(--secondary);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--white);
}

.footer ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

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

.footer-contact h5 {
    color: var(--white);
    font-size: 1.05rem;
    margin: 24px 0 8px;
}

.footer-contact .phone-link a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact .phone-link a:hover {
    color: var(--white);
}

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

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer {
        padding: 60px 0 20px;
    }
}

/* ==========================================================================
   Premium Blog Layout Redesign
   ========================================================================== */

/* Two-Column Grid */
.blog-layout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
    padding: 20px 0;
}

@media (max-width: 992px) {
    .blog-layout-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar & Sticky Widget */
.blog-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* CTA Widget */
.sidebar-cta-widget {
    background: linear-gradient(135deg, var(--primary) 0%, #081a2f 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.sidebar-cta-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.15) 0%, transparent 60%);
    z-index: 0;
}

.sidebar-cta-widget > * {
    position: relative;
    z-index: 1;
}

.sidebar-cta-widget h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.sidebar-cta-widget p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.sidebar-cta-widget .btn {
    width: 100%;
    display: block;
    box-shadow: none;
    font-size: 1.05rem;
    padding: 14px 20px;
}

/* Summary Box */
.blog-summary-box {
    background: #f8fafc;
    border-left: 4px solid var(--secondary);
    padding: 24px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 40px;
}

.blog-summary-box h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.blog-summary-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-summary-box ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--text);
}

.blog-summary-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Premium Typography */
.blog-typography .drop-cap::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 8px;
    padding-left: 3px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--secondary);
}

.blog-typography blockquote.premium-quote {
    background: #f0f7f1;
    border: none;
    border-radius: 12px;
    padding: 30px 40px;
    position: relative;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--primary);
    line-height: 1.6;
}

.blog-typography blockquote.premium-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 6rem;
    font-family: 'Outfit', sans-serif;
    color: rgba(139, 195, 74, 0.2);
    line-height: 1;
}

.blog-typography blockquote.premium-quote em {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.blog-typography ul.custom-check-list {
    list-style: none;
    padding: 0;
}

.blog-typography ul.custom-check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}

.blog-typography ul.custom-check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%238BC34A" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/* ==========================================================================
   Clean Single-Column Blog Layout
   ========================================================================== */
.clean-blog-wrapper {
    background-color: #fcfcfc;
    padding: 60px 20px;
    min-height: 100vh;
}

.clean-blog-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

@media (max-width: 768px) {
    .clean-blog-container {
        padding: 30px 20px;
    }
}

.clean-breadcrumb {
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.clean-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clean-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.clean-breadcrumb a:hover {
    color: var(--primary);
}

.clean-breadcrumb .separator {
    color: #cbd5e1;
}

.clean-breadcrumb .active {
    color: var(--text);
    font-weight: 600;
}

.clean-blog-header {
    margin-bottom: 30px;
}

.clean-category-tag {
    display: inline-block;
    background-color: var(--accent); /* Yellowish/Accent */
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.clean-blog-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .clean-blog-title {
        font-size: 2rem;
    }
}

.clean-blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.clean-blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.clean-blog-meta svg {
    width: 16px;
    height: 16px;
    color: #9ca3af;
}

.clean-blog-cover {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
}

.clean-blog-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.clean-blog-content p {
    margin-bottom: 24px;
}

.clean-blog-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 40px;
    margin-bottom: 20px;
}

.clean-blog-content h3 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-top: 30px;
    margin-bottom: 15px;
}

.clean-blog-content ul, .clean-blog-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.clean-blog-content li {
    margin-bottom: 12px;
}

.clean-blog-content blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #4b5563;
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
    margin: 30px 0;
}

/* --- Clean Pagination --- */
.clean-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.clean-pagination .page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: white;
    color: #4b5563;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.clean-pagination .page-btn:hover:not(.disabled) {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary-light);
}

.clean-pagination .page-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.clean-pagination .page-btn.prev-next {
    width: auto;
    padding: 0 16px;
    border-radius: 20px;
    gap: 6px;
}

.clean-pagination .page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
