/* ============================================
   CSS Variables - Brand Colors
   ============================================ */
:root {
    --primary-blue: #1a3a5c;
    --dark-blue: #0f2538;
    --accent-blue: #2a5a8a;
    --silver-grey: #a8a8a8;
    --light-silver: #c0c0c0;
    --dark-grey: #2c2c2c;
    --medium-grey: #666666;
    --light-grey: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-grey);
    transition: var(--transition);
}

/* ============================================
   Hero Section - Modern Redesign
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding-top: 70px;
}

.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;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.92) 0%, rgba(15, 37, 56, 0.88) 50%, rgba(26, 58, 92, 0.85) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-badge-text {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-headline-main {
    display: block;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-headline-accent {
    display: block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(200, 200, 200, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subheadline {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 580px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-container {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.4);
    border: 2px solid transparent;
}

.cta-primary:hover,
.cta-primary:focus {
    background: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 58, 92, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-primary .cta-arrow {
    font-size: 1.25rem;
    transition: var(--transition);
}

.cta-primary:hover .cta-arrow,
.cta-primary:focus .cta-arrow {
    transform: translateX(4px);
}

.cta-secondary {
    padding: 1.125rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.cta-secondary:hover,
.cta-secondary:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.hero-stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-stars {
    font-size: 1rem;
    color: #ffd700;
    letter-spacing: 3px;
    margin-top: 0.25rem;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    animation: fadeInRight 0.8s ease-out 0.7s both;
}

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

.hero-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: var(--transition);
}

.hero-feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.375rem;
}

.feature-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 6rem 2rem;
    background: var(--light-grey);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-grey);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 12px;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

/* General Auto Repair - Wrench & Screwdriver Icon */
.service-icon-repair::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 6px;
    background: var(--white);
    border-radius: 3px;
    transform: rotate(30deg);
    top: 22px;
    left: 18px;
    box-shadow: 0 0 0 1px var(--white);
}

.service-icon-repair::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 6px;
    background: var(--white);
    border-radius: 3px;
    transform: rotate(-30deg);
    top: 32px;
    left: 28px;
    box-shadow: 
        0 0 0 1px var(--white),
        8px -8px 0 -1px var(--white),
        8px -8px 0 0 var(--white);
}

/* Engine Services - Engine Block Icon */
.service-icon-engine::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 35px;
    border: 3px solid var(--white);
    border-radius: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-icon-engine::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    top: 18px;
    left: 18px;
    box-shadow: 
        24px 0 0 var(--white),
        0 20px 0 var(--white),
        24px 20px 0 var(--white);
}

/* Performance Upgrades - Speedometer/Gauge Icon */
.service-icon-performance::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 4px solid var(--white);
    border-top-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    top: 15px;
    left: 15px;
    transform: rotate(-45deg);
}

.service-icon-performance::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 22px;
    background: var(--white);
    top: 25px;
    left: 50%;
    transform: translateX(-50%) rotate(30deg);
    transform-origin: bottom center;
    border-radius: 2px;
    box-shadow: 0 0 0 1px var(--white);
}

/* Brake Services - Brake Disc Icon */
.service-icon-brake::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 4px solid var(--white);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-icon-brake::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--white);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 0 2px var(--white),
        0 0 0 4px transparent,
        0 0 0 6px var(--white);
}

/* Electrical Systems - Lightning Bolt Icon */
.service-icon-electrical {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
}

.service-icon-electrical::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 30px;
    background: var(--white);
    clip-path: polygon(50% 0%, 0% 45%, 35% 45%, 0% 100%, 50% 55%, 65% 55%, 50% 100%, 100% 45%, 65% 45%, 100% 0%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Fluid Services - Oil Drop Icon */
.service-icon-fluid::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 40px;
    background: var(--white);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    top: 18px;
    left: 25px;
}

.service-icon-fluid::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--medium-grey);
    line-height: 1.7;
}

.services-mobile-controls {
    display: none;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-grey) 100%);
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.about-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-tagline {
    font-size: 1.15rem;
    color: var(--medium-grey);
    font-weight: 500;
    margin-top: 0.5rem;
    letter-spacing: 0.3px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26, 58, 92, 0.15);
    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(26, 58, 92, 0.2);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-description {
    font-size: 1rem;
    color: var(--medium-grey);
    line-height: 1.7;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 1.75rem 0 0;
    border-top: 2px solid var(--light-grey);
}

.stat-item {
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(26, 58, 92, 0.08);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 58, 92, 0.12);
    border-color: rgba(26, 58, 92, 0.15);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 12px rgba(26, 58, 92, 0.2);
}

/* Star Icon */
.stat-icon-star::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--white);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* People/Users Icon */
.stat-icon-people::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--white);
    border-radius: 50%;
    top: 10px;
    left: 10px;
    box-shadow: 
        18px 0 0 var(--white),
        0 18px 0 var(--white),
        18px 18px 0 var(--white);
}

.stat-icon-people::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 8px;
    border: 2.5px solid var(--white);
    border-top: none;
    border-radius: 0 0 7px 7px;
    top: 19px;
    left: 7px;
    box-shadow: 
        18px 0 0 -2.5px var(--white),
        18px 0 0 0 var(--white);
}

/* Checkmark Icon */
.stat-icon-check::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 9px;
    border-left: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
    transform: rotate(-45deg);
    top: 14px;
    left: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--medium-grey);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

/* ============================================
   Work Section
   ============================================ */
.work {
    padding: 6rem 2rem;
    background: var(--white);
}

.work-gallery {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    margin-top: 3rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--silver-grey) transparent;
}

.work-gallery::-webkit-scrollbar {
    height: 8px;
}

.work-gallery::-webkit-scrollbar-track {
    background: transparent;
}

.work-gallery::-webkit-scrollbar-thumb {
    background: var(--silver-grey);
    border-radius: 4px;
}

.work-gallery::-webkit-scrollbar-thumb:hover {
    background: var(--medium-grey);
}

.work-gallery.expanded {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    overflow: visible;
    gap: 2rem;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: var(--transition);
    aspect-ratio: 4 / 3;
    background: var(--light-grey);
    flex-shrink: 0;
    width: 350px;
}

.work-gallery.expanded .work-item {
    width: 100%;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition);
}

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

.work-actions {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.work-view-more-btn {
    padding: 1rem 2.5rem;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26, 58, 92, 0.3);
}

.work-view-more-btn:hover,
.work-view-more-btn:focus {
    background: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 58, 92, 0.4);
}

.work-view-more-btn:active {
    transform: translateY(0);
}

.work-view-more-btn.hidden {
    display: none;
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
    padding: 6rem 2rem;
    background: var(--light-grey);
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.reviews-rating {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.reviews-stars {
    font-size: 1.5rem;
    color: #ffd700;
    letter-spacing: 3px;
}

.reviews-count {
    color: var(--medium-grey);
}

.reviews-grid {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}

.reviews-grid::-webkit-scrollbar {
    height: 8px;
}

.reviews-grid::-webkit-scrollbar-track {
    background: var(--light-grey);
    border-radius: 4px;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

.reviews-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-width: 300px;
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.review-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-grey);
}

.review-stars {
    font-size: 1.3rem;
    color: #ffd700;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.review-author {
    font-weight: 600;
    color: var(--dark-grey);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.9rem;
    color: var(--medium-grey);
}

.review-text {
    color: var(--medium-grey);
    line-height: 1.8;
    font-size: 1.05rem;
    flex: 1;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 10px var(--shadow);
}

.slider-btn:hover,
.slider-btn:focus {
    background: var(--accent-blue);
    transform: scale(1.1);
}

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


/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-grey) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(26, 58, 92, 0.1) 50%, transparent 100%);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.contact-top-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-wrapper {
    width: 100%;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(26, 58, 92, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 58, 92, 0.12);
    border-color: rgba(26, 58, 92, 0.15);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--light-grey);
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 12px rgba(26, 58, 92, 0.2);
}

.contact-icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-location::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 2.5px solid var(--white);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: absolute;
}

.contact-icon-location::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-icon-phone::before {
    content: '';
    width: 18px;
    height: 26px;
    border: 2.5px solid var(--white);
    border-radius: 4px;
    position: absolute;
}

.contact-icon-phone::after {
    content: '';
    width: 3px;
    height: 3px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-icon-time::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2.5px solid var(--white);
    border-radius: 50%;
    position: absolute;
}

.contact-icon-time::after {
    content: '';
    width: 2px;
    height: 7px;
    background: var(--white);
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

.contact-icon-map::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 2.5px solid var(--white);
    border-radius: 0 0 0 4px;
    position: absolute;
    transform: rotate(45deg);
}

.contact-icon-map::after {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.contact-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin: 0;
    letter-spacing: -0.3px;
}

.contact-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-card-text {
    color: var(--medium-grey);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.contact-card-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.contact-card-link:hover,
.contact-card-link:focus {
    color: var(--accent-blue);
    transform: translateX(2px);
}

.contact-card-hint {
    color: var(--silver-grey);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-grey);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    color: var(--medium-grey);
    font-size: 0.95rem;
    font-weight: 500;
}

.hours-time {
    color: var(--dark-grey);
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(26, 58, 92, 0.25);
    margin-top: 0.5rem;
}

.contact-card-cta:hover,
.contact-card-cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 58, 92, 0.35);
}

.contact-card-cta .cta-arrow {
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-card-cta:hover .cta-arrow,
.contact-card-cta:focus .cta-arrow {
    transform: translateX(4px);
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 58, 92, 0.08);
    transition: var(--transition);
}

.contact-form:hover {
    box-shadow: 0 8px 24px rgba(26, 58, 92, 0.12);
    border-color: rgba(26, 58, 92, 0.15);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 2rem;
    letter-spacing: -0.3px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--light-grey);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--dark-grey);
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}

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

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26, 58, 92, 0.3);
    width: 100%;
}

.form-submit-btn:hover,
.form-submit-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 58, 92, 0.4);
}

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

.form-submit-btn .cta-arrow {
    font-size: 1.25rem;
    transition: var(--transition);
}

.form-submit-btn:hover .cta-arrow,
.form-submit-btn:focus .cta-arrow {
    transform: translateX(4px);
}

.contact-map-wrapper {
    width: 100%;
    position: static;
}

.contact-map {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(26, 58, 92, 0.1);
    transition: var(--transition);
}

.contact-map:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-grey);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--silver-grey);
    font-size: 0.95rem;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

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

.footer-column a {
    color: var(--silver-grey);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column a:hover,
.footer-column a:focus {
    color: var(--white);
    padding-left: 5px;
}

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

.social-link {
    color: var(--silver-grey);
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-link:hover,
.social-link:focus {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--silver-grey);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    /* Hero Tablet */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }

    .hero-headline {
        font-size: 3.5rem;
    }

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

@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px var(--shadow);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
    }

    .hero-badge-text {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-headline {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
        text-align: center;
    }

    .hero-headline-main,
    .hero-headline-accent {
        display: block;
    }

    .hero-subheadline {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        min-width: auto;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-stats {
        display: none;
    }

    .hero-stat-item {
        text-align: center;
    }

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

    .hero-stat-divider {
        display: none;
    }

    .hero-features {
        gap: 1rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-feature-card {
        padding: 1.25rem;
        gap: 1rem;
    }

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

    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .hero-scroll-indicator {
        bottom: 2rem;
    }

    /* Services Mobile */
    .services {
        padding-left: 0;
        padding-right: 0;
    }
    
    .services .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .services-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 1.5rem;
        position: relative;
        width: 100%;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        box-sizing: border-box;
    }

    .services-grid::-webkit-scrollbar {
        height: 8px;
    }

    .services-grid::-webkit-scrollbar-track {
        background: transparent;
    }

    .services-grid::-webkit-scrollbar-thumb {
        background: var(--silver-grey);
        border-radius: 4px;
    }

    .service-card {
        min-width: 85%;
        width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        margin: 0;
        box-sizing: border-box;
        scroll-snap-align: start;
    }

    .services-mobile-controls {
        display: none;
    }

    /* About Mobile */
    .about {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

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

    .about-tagline {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        height: 300px;
        order: -1;
    }

    .about-text {
        gap: 2rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .stat-item {
        padding: 1.25rem 1rem;
    }

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

    /* Work Mobile */
    .work-item {
        width: 280px;
    }

    .work-gallery.expanded {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Reviews Mobile */
    .reviews {
        padding: 4rem 1.5rem;
    }

    .reviews-summary {
        flex-wrap: wrap;
        gap: 0.75rem;
        font-size: 1rem;
        margin-top: 1.25rem;
    }

    .reviews-rating {
        font-size: 1.75rem;
    }

    .reviews-stars {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    .reviews-count {
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    .reviews-grid {
        gap: 1.5rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .review-card {
        padding: 2rem;
        min-width: 85%;
        max-width: 85%;
        width: 85%;
        flex-shrink: 0;
        scroll-snap-align: start;
        box-sizing: border-box;
    }

    /* Contact Mobile */
    .contact {
        padding: 4rem 1.5rem;
    }

    .contact-content {
        gap: 2.5rem;
        margin-top: 3rem;
    }

    .contact-top-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info-grid {
        gap: 1.25rem;
    }

    .contact-card {
        padding: 1.75rem;
    }

    .contact-card-header {
        gap: 0.875rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }

    .contact-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    .contact-card-title {
        font-size: 1.1rem;
    }

    .contact-card-text {
        font-size: 0.95rem;
    }

    .contact-card-link {
        font-size: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-form-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-submit-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .contact-map-wrapper {
        position: static;
    }

    .contact-map {
        height: 350px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-headline-main,
    .hero-headline-accent {
        display: block;
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }

    .hero-badge-text {
        font-size: 0.7rem;
        padding: 0.35rem 0.875rem;
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }

    .hero-feature-card {
        padding: 1rem;
    }

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

    .service-card,
    .review-card {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .contact-card-title {
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form-title {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .form-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-map {
        height: 300px;
    }
}

/* ============================================
   Accessibility Improvements
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .hero-scroll-indicator,
    .services-mobile-controls,
    .slider-btn {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-video-container {
        display: none;
    }

    .hero-overlay {
        background: var(--primary-blue);
    }
}

