/* ===================================
   Mansour's Innovations - Redesigned
   Modern, Clean, Professional
   =================================== */

/* Font Face Declarations */
@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/work-sans/static/WorkSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/work-sans/static/WorkSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/work-sans/static/WorkSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/nunito/static/Nunito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/nunito/static/Nunito-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* ===================================
   Accessibility Improvements
   =================================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 10000;
    padding: 12px 20px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 8px 8px 0;
    transition: top 0.3s ease;
    font-family: 'Work Sans', sans-serif;
}

.skip-link:focus {
    top: 0;
}

/* Enhanced Focus Indicators */
.btn:focus-visible,
.service-link:focus-visible,
.nav-link:focus-visible,
.mobile-menu-toggle:focus-visible {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

/* Ensure sufficient color contrast for all text */
.text-light {
    color: #6b7280; /* Improved contrast from original */
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card,
    .testimonial-card,
    .sidebar-card {
        border: 2px solid #000000;
    }

    .btn {
        border: 2px solid currentColor;
    }
}

/* CSS Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #f97316;
    --secondary-dark: #ea580c;
    --accent: #06b6d4;

    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --text-white: #ffffff;

    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;

    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --font-heading: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    opacity: 1;
}

/* Screen Reader Only - Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Form Message Styles */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.form-message.success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.form-message svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

section {
    overflow-x: clip;
}

/* ===================================
   HEADER
   =================================== */

.header {
    position: relative;
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    background: var(--bg-dark);
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-item i,
.top-bar-item svg {
    width: 16px;
    height: 16px;
    color: var(--secondary);
}

.top-bar-item a {
    color: rgba(255, 255, 255, 0.8);
}

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

.top-bar-item strong {
    color: var(--text-white);
    font-weight: 600;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.top-bar-social a:hover {
    transform: translateY(-1px);
}

.top-bar-social a[aria-label="Facebook"] {
    color: #ffffff;
}

.top-bar-social a[aria-label="Facebook"]:hover {
    color: #1877F2;
}

.top-bar-social a[aria-label="Instagram"] {
    color: #ffffff;
}

.top-bar-social a[aria-label="Instagram"]:hover {
    color: #E4405F;
}

.top-bar-social a[aria-label="LinkedIn"] {
    color: #ffffff;
}

.top-bar-social a[aria-label="LinkedIn"]:hover {
    color: #0A66C2;
}

.top-bar-social a[aria-label="TikTok"] {
    color: #ffffff;
}

.top-bar-social a[aria-label="TikTok"]:hover {
    color: #69C9D0;
}

.top-bar-social a[aria-label="Pinterest"] {
    color: #ffffff;
}

.top-bar-social a[aria-label="Pinterest"]:hover {
    color: #E60023;
}

.top-bar-social a[aria-label="X"] {
    color: #ffffff;
}

.top-bar-social a[aria-label="X"]:hover {
    color: #1DA1F2;
}

.top-bar-social a[aria-label="YouTube"] {
    color: #ffffff;
}

.top-bar-social a[aria-label="YouTube"]:hover {
    color: #FF0000;
}

.top-bar-social a[aria-label="Yelp"] {
    color: #ffffff;
}

.top-bar-social a[aria-label="Yelp"]:hover {
    color: #D32323;
}

.top-bar-social i,
.top-bar-social svg {
    width: 16px;
    height: 16px;
}

/* Main Header */
.main-header {
    background: var(--bg-white);
    padding: 16px 0;
    transition: var(--transition);
}

.main-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    animation: slideDown 0.3s ease;
}

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

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo a {
    display: block;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-link i,
.nav-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
}

.nav-link:hover i,
.nav-link:hover svg {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 480px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-medium);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-link:hover {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
}

.dropdown-link.view-all-link {
    border-top: 1px solid #eee;
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 600;
    color: var(--primary);
    grid-column: 1 / -1;
}

/* Tablet: Adjust dropdown width for medium screens */
@media (max-width: 1024px) {
    .dropdown-menu {
        min-width: 420px;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    transition: var(--transition);
}

.quote-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.quote-btn i,
.quote-btn svg {
    width: 16px;
    height: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line {
    background: var(--text-dark);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

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

.mobile-quote-wrapper {
    display: none;
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

/* Responsive Hero Backgrounds - Optimized Images */
.hero-slide-excavation {
    background-image: url('../img/services/optimized/excavation-mobile.webp');
}

@media (min-width: 768px) {
    .hero-slide-excavation {
        background-image: url('../img/services/optimized/excavation-tablet.webp');
    }
}

@media (min-width: 1200px) {
    .hero-slide-excavation {
        background-image: url('../img/services/optimized/excavation-desktop.webp');
    }
}

.hero-slide-interior {
    background-image: url('../img/services/optimized/interior-mobile.webp');
}

@media (min-width: 768px) {
    .hero-slide-interior {
        background-image: url('../img/services/optimized/interior-tablet.webp');
    }
}

@media (min-width: 1200px) {
    .hero-slide-interior {
        background-image: url('../img/services/optimized/interior-desktop.webp');
    }
}

.hero-slide-exterior {
    background-image: url('../img/services/optimized/exterior-mobile.webp');
}

@media (min-width: 768px) {
    .hero-slide-exterior {
        background-image: url('../img/services/optimized/exterior-tablet.webp');
    }
}

@media (min-width: 1200px) {
    .hero-slide-exterior {
        background-image: url('../img/services/optimized/exterior-desktop.webp');
    }
}

.hero-slide-plumbing {
    background-image: url('../img/services/optimized/plumbing-mobile.webp');
}

@media (min-width: 768px) {
    .hero-slide-plumbing {
        background-image: url('../img/services/optimized/plumbing-tablet.webp');
    }
}

@media (min-width: 1200px) {
    .hero-slide-plumbing {
        background-image: url('../img/services/optimized/plumbing-desktop.webp');
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 100%);
}

.hero-section > .container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    color: var(--text-white);
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--secondary);
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.hero-feature i,
.hero-feature svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.hero-feature span {
    font-size: 14px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn i,
.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5);
}

/* Orange button for dark backgrounds */
.btn-secondary {
    background: var(--secondary);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-medium);
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--text-white);
    border-color: var(--text-dark);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Form Card */
.hero-form-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
}

.form-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-card-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-card-header p {
    font-size: 14px;
    color: var(--text-light);
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
    color: var(--primary);
}

.form-group select option {
    color: var(--text-dark);
}

.form-group select option[value=""] {
    color: var(--primary);
}

.form-group textarea {
    resize: none;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--text-white);
    padding: 16px 24px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

/* Hero Stats Bar */
.hero-stats {
    background: var(--bg-white);
    padding: 50px 0;
}

.stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number .counter {
    display: inline;
}

.stat-text {
    font-size: 14px;
    color: var(--text-medium);
    max-width: 160px;
    margin: 0 auto;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-light);
}

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

section {
    padding: 100px 0;
}

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

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--primary);
}

.section-description {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 600px;
}

.section-header.centered .section-description {
    margin: 0 auto;
}

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

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

.services-section .section-header {
    margin-bottom: 80px;
}

.services-section .section-description {
    margin-bottom: 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

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

.service-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #fff;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
    background: #fff;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    display: none;
}

.service-content {
    padding: 24px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.service-icon i,
.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-white);
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

/* Make entire card clickable */
.service-link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.service-link i,
.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover i,
.service-link:hover svg {
    transform: translateX(4px);
}

.services-more {
    text-align: center;
    margin-top: 40px;
}

/* Services Toggle Button */
.services-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.services-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.services-toggle .toggle-count {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-toggle:hover .toggle-count {
    background: white;
    color: var(--primary);
}

.services-toggle .toggle-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
}

/* Expandable Services Container */
.services-expanded {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                margin 0.4s ease;
}

.services-expanded.show {
    max-height: 3000px;
    opacity: 1;
    margin-top: 30px;
}

.services-expanded .services-grid-expanded {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 10px;
}

.services-expanded .service-card {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease;
}

.services-expanded.show .service-card {
    transform: translateY(0);
    opacity: 1;
}

/* Staggered animation for cards */
.services-expanded.show .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-expanded.show .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-expanded.show .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-expanded.show .service-card:nth-child(4) { transition-delay: 0.2s; }
.services-expanded.show .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-expanded.show .service-card:nth-child(6) { transition-delay: 0.3s; }
.services-expanded.show .service-card:nth-child(7) { transition-delay: 0.35s; }
.services-expanded.show .service-card:nth-child(8) { transition-delay: 0.4s; }
.services-expanded.show .service-card:nth-child(9) { transition-delay: 0.45s; }

/* ===================================
   PROMISE SECTION
   =================================== */

.promise-section {
    background: var(--bg-white);
}

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

.promise-content .section-description {
    margin-bottom: 40px;
}

.promise-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.promise-stat {
    padding: 0;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.stat-percent {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.progress-bar {
    height: 10px;
    background: var(--bg-gray);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-full);
    width: 0;
    transition: width 1.5s ease-out;
}

.progress-fill.animated {
    width: var(--target-width);
}

/* Promise Images */
.promise-images {
    position: relative;
    height: 500px;
}

.image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 380px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--bg-white);
}

.image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4);
    border: 6px solid var(--bg-white);
    padding: 10px;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* ===================================
   PROUDLY AMERICAN SECTION
   =================================== */

.american-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.american-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.american-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.american-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.55) 0%, rgba(30, 58, 95, 0.5) 100%);
}

.american-section .container {
    position: relative;
    z-index: 1;
}

.american-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.american-badge {
    flex-shrink: 0;
    width: 220px;
}

.american-badge-right {
    width: 280px;
}

.american-badge-right img {
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.american-badge img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.american-text {
    flex: 1;
    color: var(--text-white);
}

.american-text h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.american-text p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 600px;
}

.american-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.american-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.american-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.american-feature i,
.american-feature svg {
    width: 20px;
    height: 20px;
    color: #ef4444;
}

.american-feature span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
}

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

.projects-section {
    background: var(--bg-gray);
}

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

.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.project-card.large {
    grid-column: span 2;
    grid-row: span 1;
}

.project-image {
    position: relative;
    height: 100%;
    min-height: 240px;
}

.project-card.large .project-image {
    min-height: auto;
    height: auto;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card.large .project-image img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: auto;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f9fa;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    display: inline-block;
    padding: 6px 12px;
    background: var(--secondary);
    color: var(--text-white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    width: fit-content;
}

.project-overlay h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.project-link {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-white);
    color: var(--text-dark);
    border-radius: 50%;
    transition: var(--transition);
}

.project-link:hover {
    background: var(--secondary);
    color: var(--text-white);
    transform: rotate(45deg);
}

.project-link i,
.project-link svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   BRANDS SECTION
   =================================== */

.brands-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.brands-marquee {
    overflow: hidden;
    position: relative;
}

.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-white), transparent);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-white), transparent);
}

.brands-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    /* GPU Compositing Optimization */
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

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

.brand-item {
    flex-shrink: 0;
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.brand-item:hover {
    transform: scale(1.05);
}

.brand-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

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

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto 40px;
    min-height: 350px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
    min-height: 350px;
}

.testimonial-card.active {
    position: relative !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-rating i,
.testimonial-rating svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
}

.author-info {
    text-align: left;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

/* Testimonials Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.nav-btn i,
.nav-btn svg {
    width: 20px;
    height: 20px;
}

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

.dot {
    width: 10px;
    height: 10px;
    background: var(--border-medium);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 32px;
    border-radius: var(--radius-full);
    background: var(--primary);
}

/* Google Badge */
.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px 40px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

.google-logo {
    height: 30px;
    width: auto;
}

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

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

.badge-rating .stars i,
.badge-rating .stars svg {
    width: 18px;
    height: 18px;
    color: #fbbf24;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
}

.view-reviews {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.view-reviews:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===================================
   FINANCING SECTION
   =================================== */

.financing-section {
    background: var(--bg-white);
}

.financing-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.financing-content .section-description {
    margin-bottom: 40px;
}

.financing-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.financing-feature {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.feature-icon i,
.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.partner-logo {
    height: 40px;
    margin: 0 auto 24px;
    filter: brightness(0) invert(1);
}

.cta-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.cta-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

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

.cta-section {
    position: relative;
    padding: 120px 0;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content h2 .highlight {
    color: var(--secondary);
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

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

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

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

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

.areas-content .section-description {
    margin-bottom: 32px;
}

.areas-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.area-item i,
.area-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.area-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.areas-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.areas-cities span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--text-medium);
}

.areas-cities span svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

/* Map Container */
.areas-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-container {
    height: 400px;
    background: var(--bg-gray);
}

/* Leaflet Customization */
.leaflet-container {
    font-family: var(--font-body);
}

.county-tooltip,
.city-tooltip {
    background: var(--bg-white) !important;
    border: none !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 10px 14px !important;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.city-tooltip {
    font-weight: 500;
}

.tooltip-subtext {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    margin-top: 2px;
}

/* City Markers */
.city-marker {
    background: transparent;
    border: none;
}

.city-marker-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border: 2px solid var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.city-marker-dot:hover {
    transform: scale(1.3);
}

/* Leaflet overrides */
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before,
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before {
    border-top-color: var(--bg-white) !important;
}

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

.footer {
    background: var(--bg-dark);
    color: var(--text-white);
}

.footer-top {
    padding: 80px 0 60px;
}

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

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    height: auto;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.18);
    padding: 16px 16px;
    border-radius: var(--radius-md);
    width: auto;
    max-width: 180px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-social a[aria-label="Facebook"] {
    background: #1877F2;
}

.footer-social a[aria-label="Facebook"]:hover {
    background: #166FE5;
}

.footer-social a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #e08323 0%, #d5582c 25%, #cb1733 50%, #bb1356 75%, #ab0878 100%);
}

.footer-social a[aria-label="LinkedIn"] {
    background: #0A66C2;
}

.footer-social a[aria-label="LinkedIn"]:hover {
    background: #004182;
}

.footer-social a[aria-label="TikTok"] {
    background: #000000;
}

.footer-social a[aria-label="TikTok"]:hover {
    background: #333333;
}

.footer-social a[aria-label="Pinterest"] {
    background: #E60023;
}

.footer-social a[aria-label="Pinterest"]:hover {
    background: #C8102E;
}

.footer-social a[aria-label="X"] {
    background: #000000;
}

.footer-social a[aria-label="X"]:hover {
    background: #333333;
}

.footer-social a[aria-label="YouTube"] {
    background: #FF0000;
}

.footer-social a[aria-label="YouTube"]:hover {
    background: #CC0000;
}

.footer-social a[aria-label="Yelp"] {
    background: #D32323;
}

.footer-social a[aria-label="Yelp"]:hover {
    background: #AF1D1D;
}

.footer-social a[aria-label="Nextdoor"] {
    background: #8ED500;
}

.footer-social a[aria-label="Nextdoor"]:hover {
    background: #7BC200;
}

.footer-social a[aria-label="Threads"] {
    background: #000000;
}

.footer-social a[aria-label="Threads"]:hover {
    background: #333333;
}

.footer-social a[aria-label="Tumblr"] {
    background: #35465C;
}

.footer-social a[aria-label="Tumblr"]:hover {
    background: #2B3A4D;
}

.footer-social a[aria-label="Reddit"] {
    background: #FF4500;
}

.footer-social a[aria-label="Reddit"]:hover {
    background: #E03D00;
}

.footer-social i,
.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact h4 {
    margin-bottom: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i,
.contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-item a,
.contact-item span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
    color: var(--text-white);
}

/* ===================================
   SCROLL TO TOP
   =================================== */

.scroll-to-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

.scroll-to-top i,
.scroll-to-top svg:not(.progress-ring) {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
}

.progress-ring {
    position: absolute;
    transform: rotate(-90deg);
    z-index: 1;
}

.progress-ring-track {
    stroke: rgba(249, 115, 22, 0.3);
}

.progress-ring-circle {
    stroke: var(--secondary);
    transition: stroke-dashoffset 0.1s linear;
}

/* Print - hide floating elements */
@media print {
    .scroll-to-top,
    .mobile-call-btn {
        display: none !important;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr 380px;
        gap: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

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

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

    .services-expanded.show {
        max-height: 4000px; /* Increase max-height for 2 column tablet layout */
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .project-card.large {
        grid-column: span 3;
        grid-row: span 1;
    }

    .project-card.large .project-image {
        min-height: auto;
    }
}

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

    .main-header .container {
        gap: 24px;
    }

    .nav-list {
        gap: 4px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-description {
        max-width: none;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        min-width: 200px;
        padding: 14px 24px;
    }

    .hero-form-card {
        max-width: 480px;
        margin: 0 auto;
    }

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

    .promise-images {
        order: -1;
        height: 400px;
    }

    .financing-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .financing-cta .cta-card {
        max-width: 480px;
        margin: 0 auto;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 0 24px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0 24px;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-link {
        width: 100%;
        padding: 18px 16px;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 12px 0;
        margin-left: 0;
        grid-template-columns: 1fr;
        min-width: auto;
    }

    .has-dropdown.active .dropdown-menu {
        display: grid;
    }

    .dropdown-link {
        padding: 12px 16px;
    }

    .header-actions {
        display: none;
    }

    .mobile-quote-wrapper {
        display: block;
        margin-top: auto;
        padding: 24px 24px 0;
        border-top: 1px solid var(--border-light);
    }

    .mobile-contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

    .mobile-contact-item i,
    .mobile-contact-item svg {
        width: 18px;
        height: 18px;
        color: var(--primary);
    }

    .mobile-quote-wrapper .quote-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-section > .container {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 350px;
    }

    .hero-form-card {
        padding: 24px;
    }

    .form-card-header h3 {
        font-size: 20px;
    }

    .stats-wrapper {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 12px);
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-text {
        font-size: 12px;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services-section .section-header {
        margin-bottom: 56px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-title br {
        display: none;
    }

    .section-description {
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-expanded .services-grid-expanded {
        grid-template-columns: 1fr;
    }

    .services-expanded.show {
        max-height: 6000px; /* Increase max-height for single column mobile layout */
    }

    .services-toggle {
        padding: 14px 24px;
        font-size: 14px;
    }

    .services-toggle .toggle-count {
        padding: 3px 10px;
        font-size: 12px;
    }

    .service-image {
        height: 220px;
    }

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

    .project-card.large {
        grid-column: span 2;
    }

    .project-image {
        min-height: 180px;
    }

    .project-card.large .project-image {
        min-height: auto;
    }

    .project-overlay {
        padding: 16px;
    }

    .project-overlay h3 {
        font-size: 16px;
    }

    .project-link {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
    }

    .brands-section {
        padding: 50px 0;
    }

    .brands-marquee::before,
    .brands-marquee::after {
        width: 40px;
    }

    .brand-item {
        width: 100px;
        height: 50px;
    }

    .brand-item img {
        max-height: 35px;
    }

    .testimonials-slider {
        margin-bottom: 30px;
        min-height: 320px;
    }

    .testimonial-card {
        position: relative;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        padding: 24px;
        min-height: 320px;
        margin-bottom: 20px;
    }

    .testimonial-card:not(:last-child) {
        margin-bottom: 20px;
    }

    .testimonials-nav {
        display: none;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 12px;
    }

    .author-info {
        text-align: center;
    }

    .testimonials-nav {
        gap: 16px;
        margin-bottom: 32px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .google-badge {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .financing-features {
        gap: 20px;
    }

    .financing-feature {
        gap: 16px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-content h2 br {
        display: none;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Limit CTA button width on tablets/iPad */
    @media (min-width: 481px) and (max-width: 992px) {
        .cta-buttons .btn {
            width: auto;
            min-width: 200px;
            max-width: 300px;
            align-self: center;
        }
    }

    .areas-list {
        gap: 12px;
    }

    .area-item {
        padding: 14px 16px;
    }

    .areas-cities {
        gap: 8px;
    }

    .areas-cities span {
        padding: 6px 12px;
        font-size: 13px;
    }

    .map-container {
        height: 300px;
    }

    /* American Section - Tablet */
    .american-section {
        padding: 70px 0;
    }

    .american-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .american-badge {
        width: 180px;
        order: -1;
    }

    .american-badge-right {
        width: 220px;
        order: 1;
    }

    .american-text h2 {
        font-size: 32px;
    }

    .american-text p {
        font-size: 16px;
        max-width: 100%;
    }

    .american-features {
        justify-content: center;
    }

    .american-feature {
        padding: 12px 20px;
    }

    .footer-top {
        padding: 50px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: 16px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-section > .container {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-feature {
        padding: 10px 16px;
        font-size: 13px;
    }

    .hero-form-card {
        padding: 20px;
    }

    .form-card-header h3 {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .hero-stats {
        padding: 30px 0;
    }

    .stat-item {
        flex: 0 0 calc(50% - 12px); /* 2 columns on mobile */
    }

    .stat-number {
        font-size: 28px;
    }

    .section-tag {
        font-size: 11px;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .service-content {
        padding: 20px;
    }

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

    .service-icon i,
    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-content p {
        font-size: 14px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .project-card.large {
        grid-column: span 1;
    }

    .project-image {
        min-height: 200px;
    }

    .project-card.large .project-image {
        min-height: auto;
    }

    .promise-images {
        height: 280px;
    }

    .image-main {
        width: 100%;
        height: 180px;
        position: relative;
    }

    .image-secondary {
        display: none;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        top: auto;
        bottom: -30px;
        left: 20px;
        transform: none;
        padding: 8px;
    }

    .badge-number {
        font-size: 32px;
    }

    .badge-text {
        font-size: 10px;
        letter-spacing: 0.3px;
    }

    .brands-track {
        gap: 32px;
    }

    .brand-item {
        width: 80px;
        height: 40px;
    }

    .brand-item img {
        max-height: 28px;
    }

    .testimonial-rating i,
    .testimonial-rating svg {
        width: 16px;
        height: 16px;
    }

    .testimonials-slider {
        min-height: 380px;
    }

    .testimonial-card {
        min-height: 380px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .financing-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .cta-card {
        padding: 28px 20px;
    }

    .cta-card h3 {
        font-size: 20px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .map-container {
        height: 250px;
    }

    /* American Section - Mobile */
    .american-section {
        padding: 50px 0;
    }

    .american-content {
        gap: 30px;
    }

    .american-badge {
        width: 140px;
    }

    .american-badge-right {
        width: 240px;
    }

    .american-text h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .american-text p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .american-features {
        flex-direction: column;
        gap: 12px;
    }

    .american-feature {
        padding: 12px 18px;
        width: 100%;
        justify-content: center;
    }

    .american-feature span {
        font-size: 14px;
    }

    .footer-logo {
        height: auto;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-social {
        gap: 8px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social i,
    .footer-social svg {
        width: 16px;
        height: 16px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .contact-item a,
    .contact-item span {
        font-size: 14px;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 14px 24px;
    }
}

/* Body lock when menu is open */
body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* ===================================
   SUBPAGE STYLES
   =================================== */

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.page-hero-short {
    min-height: 350px;
}

.page-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    color: var(--text-white);
    max-width: 700px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb i,
.breadcrumb svg {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb span {
    color: var(--secondary);
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Service Detail Section */
.service-detail-section {
    background: var(--bg-white);
}

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

.service-intro {
    margin-bottom: 50px;
}

.service-intro p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.service-feature-card {
    padding: 28px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

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

.service-feature-card .feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.service-feature-card .feature-icon i,
.service-feature-card .feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--text-white);
}

.service-feature-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-feature-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Service Process */
.service-process {
    margin-bottom: 50px;
}

.service-process h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Service Benefits */
.service-benefits h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.benefit-item i,
.benefit-item svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 14px;
    color: var(--text-dark);
}

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}

.sidebar-card.quote-card {
    background: var(--bg-light);
}

.sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.sidebar-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-form .form-group input,
.sidebar-form .form-group textarea {
    background: var(--bg-white);
}

.btn-full {
    width: 100%;
}

/* Services List in Sidebar */
.services-list {
    display: flex;
    flex-direction: column;
}

.services-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

.services-list li:last-child a {
    border-bottom: none;
}

.services-list li a:hover,
.services-list li.active a {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
}

.services-list li a i,
.services-list li a svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.services-list li a span {
    font-size: 14px;
    font-weight: 500;
}

/* Contact Card in Sidebar */
.sidebar-card.contact-card {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
}

.sidebar-card.contact-card .contact-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 16px;
}

.sidebar-card.contact-card .contact-icon i,
.sidebar-card.contact-card .contact-icon svg {
    width: 28px;
    height: 28px;
}

.sidebar-card.contact-card h3 {
    color: var(--text-white);
}

.sidebar-card.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.sidebar-card.contact-card .phone-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.sidebar-card.contact-card .phone-number:hover {
    color: var(--secondary);
}

.sidebar-card.contact-card .availability {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

.about-intro-section {
    background: var(--bg-white);
}

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

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

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 180px;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
}

.highlight-icon i,
.highlight-icon svg {
    width: 22px;
    height: 22px;
    color: var(--text-white);
}

.highlight-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.highlight-text span {
    font-size: 13px;
    color: var(--text-light);
}

.about-intro-images {
    position: relative;
    height: 500px;
}

/* Values Section */
.values-section {
    background: var(--bg-light);
}

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

.value-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary);
}

.value-icon i,
.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.value-card:hover .value-icon i,
.value-card:hover .value-icon svg {
    color: var(--text-white);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--bg-white);
}

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

.why-choose-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 500px;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5) 0%, transparent 50%);
}

.reason-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.reason-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.reason-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
}

.reason-icon i,
.reason-icon svg {
    width: 16px;
    height: 16px;
    color: var(--text-white);
}

.reason-text h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.reason-text p {
    font-size: 14px;
    color: var(--text-medium);
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

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

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

.contact-info-card {
    padding: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.method-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
}

.method-icon i,
.method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.method-details h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.method-details a {
    display: block;
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 2px;
}

.method-details a:hover {
    color: var(--primary-dark);
}

.method-details span,
.method-details .hours {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

.method-details .hours {
    font-weight: 500;
    color: var(--text-medium);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.social-links span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
}

.social-icons a i,
.social-icons a svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    transition: var(--transition);
}

.social-icons a:hover i,
.social-icons a:hover svg {
    color: var(--text-white);
}

/* Contact Form */
.contact-form-card {
    padding: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* Emergency Section */
.emergency-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.emergency-card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px 48px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius-xl);
    color: var(--text-white);
}

.emergency-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.emergency-icon i,
.emergency-icon svg {
    width: 36px;
    height: 36px;
}

.emergency-content {
    flex: 1;
}

.emergency-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.emergency-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.emergency-card .btn {
    flex-shrink: 0;
    background: var(--text-white);
    color: var(--secondary-dark);
}

.emergency-card .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

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

@media (max-width: 1200px) {
    .service-detail-grid {
        grid-template-columns: 1fr 340px;
        gap: 40px;
    }

    .about-intro-grid,
    .why-choose-grid {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .page-hero {
        min-height: 350px;
        padding-top: 100px;
    }

    .page-hero-content h1 {
        font-size: 40px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .sidebar-card.quote-card {
        grid-column: span 2;
    }

    .about-intro-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-intro-images {
        order: -1;
        height: 400px;
    }

    .why-choose-image {
        height: 400px;
        order: -1;
    }

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

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

    .emergency-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
        padding-top: 80px;
    }

    .page-hero-content h1 {
        font-size: 32px;
    }

    .page-hero-content p {
        font-size: 15px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        gap: 16px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .service-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-card.quote-card {
        grid-column: span 1;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        flex-direction: column;
    }

    .highlight-item {
        min-width: auto;
    }

    .about-intro-images {
        height: 320px;
    }

    .why-choose-image {
        height: 300px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 28px;
    }

    .emergency-card {
        padding: 24px;
    }

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

    .emergency-icon i,
    .emergency-icon svg {
        width: 28px;
        height: 28px;
    }

    .emergency-content h3 {
        font-size: 20px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        align-items: center;
    }

    .method-icon {
        margin: 0 auto;
    }

    .method-details {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 26px;
    }

    .service-process h3,
    .service-benefits h3 {
        font-size: 22px;
    }

    .service-feature-card {
        padding: 20px;
    }

    .sidebar-card {
        padding: 20px;
    }

    .value-card {
        padding: 24px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        align-items: center;
    }

    .method-icon {
        margin: 0 auto;
    }

    .method-details {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* Service Gallery Section */
.service-gallery {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    clear: both;
}

.service-gallery h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1.5rem 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem;
    width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem;
    }
}

@media (max-width: 650px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .service-gallery {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .service-gallery h3 {
        font-size: 1.15rem;
    }
}

/* Extended Project Gallery - 4 column grid */
.project-gallery {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    border-radius: 16px;
}

.project-gallery h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.project-gallery .gallery-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.extended-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.extended-gallery-grid .gallery-item {
    cursor: pointer;
}

.extended-gallery-grid .gallery-item figcaption {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.extended-gallery-grid .gallery-item:hover figcaption {
    opacity: 1;
}

@media (max-width: 1100px) {
    .extended-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .extended-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-gallery {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .extended-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Unified Service Gallery - Combined gallery with CTA button */
.unified-gallery {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.unified-gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.unified-gallery-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.unified-gallery-header p {
    color: var(--text-medium);
    font-size: 1rem;
    margin: 0;
}

.unified-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.unified-gallery-grid .gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: #fff;
}

.unified-gallery-grid .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.unified-gallery-grid .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.unified-gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
}

.unified-gallery-grid .gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.unified-gallery-grid .gallery-item:hover figcaption {
    opacity: 1;
}

/* Two-column gallery layout */
.unified-gallery-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.unified-gallery-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.gallery-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.45);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e40af 100%);
}

.gallery-cta-btn svg,
.gallery-cta-btn i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.gallery-cta-btn:hover svg,
.gallery-cta-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .unified-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .unified-gallery {
        padding: 1.75rem;
        margin: 2rem 0;
    }

    .unified-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }

    .gallery-cta-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .unified-gallery {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .unified-gallery-header h3 {
        font-size: 1.25rem;
    }

    .unified-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .unified-gallery-cta {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .gallery-cta-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}

/* Service Video Section */
.service-video {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.service-video h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.back-preventer-img{
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
}

/* ===================================
   SERVICE PAGE SECTIONS
   =================================== */

/* Service Features Grid */
.service-features {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 16px;
}

.service-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item .feature-icon i,
.feature-item .feature-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Service Process Steps */
.service-process {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    color: #fff;
}

.service-process h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.process-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #fff;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.4rem;
}

.step-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.service-why-choose {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 16px;
}

.service-why-choose h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.why-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.why-item i,
.why-item svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.why-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.why-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Service FAQ Section */
.service-faq {
    margin: 3rem 0;
}

.service-faq h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.service-faq .faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.service-faq .faq-item:hover {
    border-color: var(--primary);
}

.service-faq .faq-question {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.service-faq .faq-question i,
.service-faq .faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.service-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.service-faq .faq-item.active .faq-answer {
    max-height: 300px;
}

.service-faq .faq-answer-content {
    padding: 0 20px 18px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Sidebar Guarantee Card */
.sidebar-card.guarantee-card {
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, var(--primary) 50%, var(--primary-dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-card.guarantee-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    /* GPU Compositing Optimization */
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary) 0%, #fb923c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
    transition: transform 0.3s ease;
}

.sidebar-card.guarantee-card:hover .guarantee-icon {
    transform: scale(1.1) rotate(5deg);
}

.guarantee-icon i,
.guarantee-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.sidebar-card.guarantee-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar-card.guarantee-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* Services Card Sidebar */
.sidebar-card.services-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
}

.sidebar-card.services-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-list li {
    border-bottom: 1px solid var(--border-light);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li a {
    display: flex;
    align-items: center;
    padding: 14px 12px;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-radius: var(--radius-sm);
}

.service-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.service-list li a::after {
    content: '→';
    margin-left: auto;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    color: var(--primary);
    font-weight: 600;
}

.service-list li a:hover {
    color: var(--primary);
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.02) 100%);
    padding-left: 16px;
}

.service-list li a:hover::before {
    height: 60%;
}

.service-list li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Service CTA Section */
.service-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    /* GPU Compositing Optimization */
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.service-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    /* GPU Compositing Optimization */
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

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

.service-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-cta-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.service-cta-buttons .btn {
    min-width: 220px;
    transition: all 0.3s ease;
}

.service-cta-buttons .btn-secondary {
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.service-cta-buttons .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.service-cta-buttons .btn-outline-light {
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.service-cta-buttons .btn-outline-light:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Sticky Mobile Call Button */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--text-white);
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.mobile-call-btn i,
.mobile-call-btn svg {
    width: 22px;
    height: 22px;
    color: var(--text-white);
    animation: pulse-phone 2s infinite;
    /* GPU Compositing Optimization */
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.mobile-call-btn span {
    color: var(--text-white);
}

@keyframes pulse-phone {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Show mobile call button on smaller screens */
@media (max-width: 992px) {
    .mobile-call-btn {
        display: flex;
    }

    /* Add padding at bottom for sticky button */
    .footer {
        padding-bottom: 80px;
    }
}

/* Limit button width on tablets/iPad */
@media (min-width: 481px) and (max-width: 992px) {
    .mobile-call-btn {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        max-width: 400px;
        width: auto;
        padding-left: 32px;
        padding-right: 32px;
    }

    .mobile-call-btn:hover {
        transform: translateX(-50%) translateY(-3px);
    }
}

/* Image Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
    z-index: 1;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    font-family: var(--font-heading);
}

.lightbox-counter {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close i,
.lightbox-close svg,
.lightbox-prev i,
.lightbox-prev svg,
.lightbox-next i,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

/* Gallery item hover effect */
.gallery-item img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Service Page Responsive */
@media (max-width: 768px) {
    .features-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .service-features,
    .service-process,
    .service-why-choose {
        padding: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-item .feature-icon {
        margin: 0 auto;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .service-cta {
        padding: 50px 0;
    }

    .service-cta-content h2 {
        font-size: 28px;
    }

    .service-cta-content p {
        font-size: 16px;
    }

    .service-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .service-cta-buttons .btn {
        width: 100%;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
    }

    .lightbox-prev:hover {
        transform: translateY(-50%) scale(1.1);
    }

    .lightbox-next:hover {
        transform: translateY(-50%) scale(1.1);
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption {
        font-size: 16px;
        padding: 0 20px;
    }

    .lightbox-counter {
        font-size: 12px;
    }

    .lightbox-content img {
        max-height: 70vh;
    }
}

/* ===================================
   BLOG STYLES
   =================================== */

/* Blog Listing Page */
.blog-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.blog-header {
    text-align: center;
    margin-bottom: 48px;
}

/* Category Filters */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.blog-filter-btn {
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.blog-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.blog-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

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

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

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

/* Blog Card */
.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.blog-card.hidden {
    display: none;
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-card-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
}

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

.blog-card-excerpt {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.blog-card-link i,
.blog-card-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

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

/* Blog Article Page */
.blog-article-section {
    padding: 60px 0 80px;
}

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

@media (max-width: 1024px) {
    .blog-article-container {
        grid-template-columns: 1fr;
    }
}

.blog-article {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-article-header {
    padding: 32px 32px 0;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-article-meta .blog-card-category {
    font-size: 13px;
}

.blog-article-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .blog-article-title {
        font-size: 26px;
    }
}

.blog-article-featured-image {
    margin: 0 32px 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.blog-article-featured-image img {
    width: 100%;
    height: auto;
}

.blog-article-content {
    padding: 0 32px 32px;
}

.blog-article-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 32px 0 16px;
}

.blog-article-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 24px 0 12px;
}

.blog-article-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.blog-article-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.blog-article-content ul li {
    list-style-type: disc;
}

.blog-article-content ol li {
    list-style-type: decimal;
}

.blog-article-content a {
    color: var(--primary);
    text-decoration: underline;
}

.blog-article-content a:hover {
    color: var(--primary-dark);
}

.blog-article-content img {
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.blog-article-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-medium);
}

/* Blog CTA Box */
.blog-cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-top: 32px;
    text-align: center;
}

.blog-cta-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.blog-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.blog-cta-box .btn {
    background: var(--secondary);
    border-color: var(--secondary);
}

.blog-cta-box .btn:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

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

.blog-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--text-white);
}

.blog-cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

/* Related Posts */
.blog-related {
    margin-top: 48px;
}

.blog-related h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

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

.blog-sidebar .sidebar-card {
    margin-bottom: 24px;
}

/* No posts message */
.blog-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 24px;
    color: var(--text-medium);
}

.blog-no-posts i,
.blog-no-posts svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--text-light);
}

/* Reading time icon */
.blog-reading-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-reading-time i,
.blog-reading-time svg {
    width: 14px;
    height: 14px;
}

/* Blog date */
.blog-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-date i,
.blog-date svg {
    width: 14px;
    height: 14px;
}
