/* ============================================
   CSS Reset & Base Styles
   ============================================ */

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

:root {
    /* Brand Colors - Refined */
    --navy-blue: #1a2a4a;
    --navy-blue-light: #2a3f5f;
    --navy-blue-dark: #0f1a2e;
    --navy-blue-lighter: #3d5270;
    --metallic-silver: #c0c0c0;
    --metallic-silver-light: #e8e8e8;
    --metallic-silver-dark: #a0a0a0;
    --accent-orange: #ff6b35;
    --accent-orange-dark: #e55a2b;
    --accent-orange-light: #ff8c5a;
    --white: #ffffff;
    --light-grey: #f8f9fa;
    --light-grey-alt: #f0f2f5;
    --dark-grey: #2d3748;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --text-lighter: #718096;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing - Refined */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-xxl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows - Modern */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 10px 30px -5px rgba(255, 107, 53, 0.3);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* ============================================
   Navigation - Refined
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 26, 46, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1.25rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(15, 26, 46, 0.95);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: var(--transition-fast);
}

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

.logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition-fast);
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--accent-orange);
    background-color: rgba(255, 107, 53, 0.1);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: var(--white);
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-colored);
    border: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.nav-cta:active {
    transform: translateY(0);
}

/* ============================================
   Hero Section - Enhanced
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: var(--white);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 26, 46, 0.88) 0%,
        rgba(26, 42, 74, 0.82) 50%,
        rgba(15, 26, 46, 0.88) 100%
    );
    z-index: 2;
}

.hero-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    width: 100%;
    padding: 0.5rem var(--spacing-md);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-sm);
    align-items: center;
    margin: 0 auto;
    box-sizing: border-box;
    height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
    overflow: hidden;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    gap: 0.75rem;
    padding-right: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
    align-self: flex-start;
    margin-bottom: 0;
}

.rating-stars {
    color: #ffd700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.rating-text {
    color: var(--white);
    font-weight: 500;
}

.hero-headline {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0;
    margin-top: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    line-height: 1.4;
    margin-bottom: 0;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.95);
    max-width: 100%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
    margin-top: 0;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-colored);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

.cta-primary:active {
    transform: translateY(-1px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
}

.cta-large {
    padding: 1.35rem 3.5rem;
    font-size: 1.25rem;
}

.hero-trust-indicators {
    display: flex;
    gap: 0.4rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

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

.trust-icon {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.15rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--white);
    font-size: 0.75rem;
    opacity: 0.6;
    animation: bounce 2s infinite;
    font-weight: 500;
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    display: block;
}

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

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

/* ============================================
   Hero Form Card
   ============================================ */

.hero-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideInRight 1s ease-out 0.3s both;
    max-width: 380px;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow: hidden;
    box-sizing: border-box;
    align-self: center;
    display: flex;
    flex-direction: column;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-card-header {
    text-align: center;
    margin-bottom: 0.6rem;
}

.form-card-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy-blue-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.form-card-header p {
    font-size: 0.7rem;
    color: var(--text-light);
    line-height: 1.2;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.quote-form::-webkit-scrollbar {
    width: 4px;
}

.quote-form::-webkit-scrollbar-track {
    background: transparent;
}

.quote-form::-webkit-scrollbar-thumb {
    background: rgba(26, 42, 74, 0.2);
    border-radius: 2px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy-blue-dark);
    letter-spacing: 0.1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.55rem 0.7rem;
    border: 2px solid rgba(26, 42, 74, 0.15);
    border-radius: 8px;
    font-size: 0.8rem;
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition-fast);
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a5568'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 45px;
    max-height: 70px;
    font-family: var(--font-primary);
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: var(--white);
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-colored);
    margin-top: 0.1rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.form-submit-btn:hover::before {
    left: 100%;
}

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

.form-submit-btn:active {
    transform: translateY(0);
}

.form-note {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-lighter);
    margin-top: 0.3rem;
    line-height: 1.3;
    flex-shrink: 0;
}

.form-note a {
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.form-note a:hover {
    color: var(--accent-orange-dark);
    text-decoration: underline;
}

/* ============================================
   Container & Section Styles
   ============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--navy-blue-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* ============================================
   Services Section - Enhanced
   ============================================ */

.services {
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-grey) 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.services .container {
    width: 100%;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 42, 74, 0.1), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
    border: 1px solid rgba(26, 42, 74, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-blue), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
    transition: var(--transition-normal);
}

.icon-diagnostic::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b35'%3E%3Cpath d='M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l1.42 1.42C16.7 13.33 17.5 11.5 17.5 9.5A8.5 8.5 0 0 0 9.5 1 8.5 8.5 0 0 0 1 9.5c0 2 0.8 3.83 2.14 5.15L4.56 15.07A6.5 6.5 0 0 1 9.5 3M7 9.5C7 8.67 7.67 8 8.5 8S10 8.67 10 9.5 9.33 11 8.5 11 7 10.33 7 9.5M23 7L16 0L14.59 1.41L18.17 5H10.5C8 5 6 7 6 9.5V11H4V9.5C4 6.46 6.46 4 9.5 4H18.17L14.59 7.59L16 9L23 7Z'/%3E%3C/svg%3E");
}

.icon-engine::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b35'%3E%3Cpath d='M7 4V2C7 1.45 7.45 1 8 1H16C16.55 1 17 1.45 17 2V4H20C20.55 4 21 4.45 21 5S20.55 6 20 6H19V7C19 7.28 18.78 7.5 18.5 7.5S18 7.28 18 7V6H6V7C6 7.28 5.78 7.5 5.5 7.5S5 7.28 5 7V6H4C3.45 6 3 5.55 3 5S3.45 4 4 4H7M9 3V4H15V3H9M4 8V19C4 20.1 4.9 21 6 21H18C19.1 21 20 20.1 20 19V8H4M11.5 10C12.33 10 13 10.67 13 11.5S12.33 13 11.5 13 10 12.33 10 11.5 10.67 10 11.5 10M8 10H9.5C10.33 10 11 10.67 11 11.5S10.33 13 9.5 13H8V10M16 10H14.5C13.67 10 13 10.67 13 11.5S13.67 13 14.5 13H16V10Z'/%3E%3C/svg%3E");
}

.icon-battery::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b35'%3E%3Cpath d='M15.67 4H14V2C14 1.45 13.55 1 13 1H11C10.45 1 10 1.45 10 2V4H8.33C7.6 4 7 4.6 7 5.33V20.67C7 21.4 7.6 22 8.33 22H15.67C16.4 22 17 21.4 17 20.67V5.33C17 4.6 16.4 4 15.67 4M11 3H13V4H11V3M15 18H9V6H15V18Z'/%3E%3C/svg%3E");
}

.icon-tire::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b35'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12S6.48 22 12 22 22 17.52 22 12 17.52 2 12 2M12 20C7.59 20 4 16.41 4 12S7.59 4 12 4 20 7.59 20 12 16.41 20 12 20M12 6C8.69 6 6 8.69 6 12S8.69 18 12 18 18 15.31 18 12 15.31 6 12 6M12 16C9.79 16 8 14.21 8 12S9.79 8 12 8 16 9.79 16 12 14.21 16 12 16M12 10C10.9 10 10 10.9 10 12S10.9 14 12 14 14 13.1 14 12 13.1 10 12 10Z'/%3E%3C/svg%3E");
}

.icon-sensor::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b35'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12S6.48 22 12 22 22 17.52 22 12 17.52 2 12 2M12 20C7.59 20 4 16.41 4 12S7.59 4 12 4 20 7.59 20 12 16.41 20 12 20M12 6C8.69 6 6 8.69 6 12S8.69 18 12 18 18 15.31 18 12 15.31 6 12 6M12 16C9.79 16 8 14.21 8 12S9.79 8 12 8 16 9.79 16 12 14.21 16 12 16M12 10C10.9 10 10 10.9 10 12S10.9 14 12 14 14 13.1 14 12 13.1 10 12 10Z'/%3E%3C/svg%3E");
}

.icon-maintenance::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b35'%3E%3Cpath d='M22.7 19L13.6 9.9C14.5 7.6 14 4.9 12.1 3C10.1 1 7.1 0.6 4.7 1.7L9 6L6 9L1.6 4.7C0.4 7.1 0.9 10.1 2.9 12.1C4.8 14 7.5 14.5 9.8 13.6L18.9 22.7C19.3 23.1 19.9 23.1 20.3 22.7L22.6 20.4C23.1 20 23.1 19.3 22.7 19Z'/%3E%3C/svg%3E");
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-colored);
}

.service-card:hover .service-icon::before {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-blue-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.service-description {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

.services .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
}

.services .section-subtitle {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.services-cta {
    text-align: center;
    margin-top: var(--spacing-md);
}

/* ============================================
   About Section - Enhanced
   ============================================ */

.about {
    background: var(--white);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.about .container {
    width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    padding-right: var(--spacing-md);
}

.about .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
}

.about-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.feature-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    padding: var(--spacing-sm);
    border-radius: 12px;
    transition: var(--transition-fast);
    background: var(--light-grey);
}

.feature-item:hover {
    background: var(--light-grey-alt);
    transform: translateX(5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.feature-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-blue-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

.about-image {
    display: none;
}

.about-image-placeholder {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 50%, var(--navy-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.about-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

/* ============================================
   Reviews Section - Enhanced
   ============================================ */

.reviews {
    background: linear-gradient(to bottom, var(--light-grey) 0%, var(--white) 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.reviews .container {
    width: 100%;
}

.reviews-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.review-card {
    min-width: 100%;
    scroll-snap-align: start;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-orange);
    position: relative;
    transition: var(--transition-normal);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 20px;
    font-size: 80px;
    color: rgba(255, 107, 53, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.review-author {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--accent-orange) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.review-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-blue-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.review-stars {
    color: #ffd700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-date {
    color: var(--text-lighter);
    font-size: 0.8rem;
    font-weight: 500;
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.review-response {
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--light-grey-alt) 100%);
    padding: var(--spacing-sm);
    border-radius: 10px;
    border-left: 3px solid var(--navy-blue);
    margin-top: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.review-response strong {
    color: var(--navy-blue-dark);
    font-weight: 700;
}

.reviews .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
}

.reviews .section-subtitle {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.reviews-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid var(--navy-blue);
    background: var(--white);
    color: var(--navy-blue);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
    background: var(--navy-blue);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--metallic-silver);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--accent-orange);
    transform: scale(1.2);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.reviews-cta {
    text-align: center;
    margin-top: var(--spacing-md);
}

/* ============================================
   Contact Section - Enhanced
   ============================================ */

.contact {
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-grey) 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.contact .container {
    width: 100%;
}

.contact .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
}

.contact .section-subtitle {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.contact-card {
    background: var(--white);
    padding: var(--spacing-md) var(--spacing-sm);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(26, 42, 74, 0.1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-blue), var(--accent-orange));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

.contact-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.contact-icon::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-phone::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b35'%3E%3Cpath d='M6.62 10.79C8.06 13.62 10.38 15.94 13.21 17.38L15.41 15.18C15.69 14.9 16.08 14.82 16.43 14.93C17.55 15.3 18.75 15.5 20 15.5C20.55 15.5 21 15.95 21 16.5V20C21 20.55 20.55 21 20 21C10.61 21 3 13.39 3 4C3 3.45 3.45 3 4 3H7.5C8.05 3 8.5 3.45 8.5 4C8.5 5.25 8.7 6.45 9.07 7.57C9.18 7.92 9.1 8.31 8.82 8.59L6.62 10.79Z'/%3E%3C/svg%3E");
}

.icon-location::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b35'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9C5 14.25 12 22 12 22C12 22 19 14.25 19 9C19 5.13 15.87 2 12 2M12 11.5C10.62 11.5 9.5 10.38 9.5 9C9.5 7.62 10.62 6.5 12 6.5C13.38 6.5 14.5 7.62 14.5 9C14.5 10.38 13.38 11.5 12 11.5Z'/%3E%3C/svg%3E");
}

.icon-hours::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b35'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12S6.5 22 12 22 22 17.5 22 12 17.5 2 12 2M12 20C7.59 20 4 16.41 4 12S7.59 4 12 4 20 7.59 20 12 16.41 20 12 20M12.5 7V12.25L17 14.92L16.25 16.15L11 13V7H12.5Z'/%3E%3C/svg%3E");
}

.contact-card:hover .contact-icon::before {
    filter: brightness(0) invert(1);
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-blue-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.contact-link {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-block;
    margin-bottom: 0.25rem;
}

.contact-link:hover {
    color: var(--accent-orange-dark);
    text-decoration: underline;
}

.contact-address {
    font-style: normal;
    line-height: 1.5;
    color: var(--text-light);
    font-size: 0.85rem;
}

.contact-note {
    color: var(--text-lighter);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.contact-cta-box {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    padding: var(--spacing-lg);
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.contact-cta-box:hover::before {
    opacity: 1;
}

.contact-cta-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.contact-cta-box p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.contact-cta-box .cta-primary {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-sm);
}

.contact-cta-box .contact-note {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0;
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
}

/* ============================================
   Footer - Enhanced
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--navy-blue-dark) 0%, var(--navy-blue) 100%);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-sm);
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.footer-brand h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    letter-spacing: -0.01em;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-fast);
    line-height: 1.5;
    font-size: 0.85rem;
}

.footer-column a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.footer-badges span {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-fast);
}

.footer-badges span:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-xxl: 4rem;
        --spacing-lg: 2rem;
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
    
    /* Navigation Mobile */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--navy-blue-dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: var(--spacing-xl) 0;
        gap: var(--spacing-md);
        transition: var(--transition-normal);
        box-shadow: var(--shadow-2xl);
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .nav-cta {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 1.1rem;
    }
    
    /* Hero Mobile */
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 1rem var(--spacing-md);
        height: auto;
        max-height: none;
        min-height: calc(100vh - 80px);
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-badge {
        align-self: center;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-headline {
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .hero-subheadline {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .hero-trust-indicators {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.75rem;
        flex-wrap: wrap;
    }
    
    .trust-item {
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .hero-form-card {
        display: none;
    }
    
    .hero-scroll-indicator {
        bottom: 1rem;
        font-size: 0.7rem;
    }
    
    /* Services Mobile */
    .services {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .service-card {
        padding: var(--spacing-sm);
    }
    
    @media (max-width: 640px) {
        .services-grid {
            grid-template-columns: 1fr;
        }
    }
    
    /* About Mobile */
    .about {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image-placeholder {
        max-width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Contact Mobile */
    .contact {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .contact-cta-box {
        order: -1;
        padding: var(--spacing-md);
    }
    
    .contact-cta-box h3 {
        font-size: 1.3rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-md);
    }
    
    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        width: 70px;
        height: 70px;
        margin: 0 auto var(--spacing-sm);
    }
    
    .footer-brand h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-brand p {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-column ul {
        align-items: center;
        gap: 0.75rem;
    }
    
    .footer-column a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .footer-badges {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .footer-badges span {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Reviews Mobile */
    .reviews {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
    
    .review-card {
        padding: var(--spacing-sm);
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-subheadline {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .review-card,
    .contact-card {
        padding: var(--spacing-md);
    }
    
    .contact-cta-box {
        padding: var(--spacing-lg);
    }
    
    .contact-cta-box h3 {
        font-size: 1.6rem;
    }
}

/* ============================================
   Accessibility & Performance
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--accent-orange);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Print styles */
@media print {
    .navbar,
    .hero-scroll-indicator,
    .reviews-controls,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
}
