/* ============================================
   ELITE AUTO DETAILING - STYLESHEET
   Brand Colors: Red (#DC143C), White, Black
   ============================================ */

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

:root {
    --primary-red: #DC143C;
    --primary-red-dark: #B0122E;
    --primary-red-light: #FF1744;
    --white: #FFFFFF;
    --black: #000000;
    --dark-gray: #1A1A1A;
    --gray: #333333;
    --light-gray: #F5F5F5;
    --text-gray: #666666;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(220, 20, 60, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-red);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

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

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

.nav-menu a:hover {
    color: var(--primary-red);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--black);
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.8) 100%),
                      url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    min-width: 100%;
    min-height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 100%;
    padding-top: 80px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(220, 20, 60, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out 0.2s both;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-location {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 12px;
}

.badge-location::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title .title-line {
    display: block;
    color: var(--white);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 5px;
}

.hero-title .title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.hero-title .title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    animation: expandLine 1s ease-out 1.3s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.5s both;
    font-weight: 300;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-feature svg {
    color: var(--primary-red);
    flex-shrink: 0;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.hero-cta .btn-primary {
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.5);
}

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

.hero-cta .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta .btn-primary svg {
    transition: transform 0.3s ease;
}

.hero-cta .btn-primary:hover svg {
    transform: translateX(5px);
}

.hero-cta .btn-secondary {
    border-width: 2px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    padding: 20px 0 40px 0;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.trust-item {
    text-align: center;
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    min-width: 180px;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(220, 20, 60, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    background: rgba(220, 20, 60, 0.15);
    border-radius: 50%;
    padding: 10px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.trust-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s ease-out infinite;
}

.trust-icon svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(220, 20, 60, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.trust-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: var(--font-heading);
    margin-bottom: 8px;
    line-height: 1;
}

.trust-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--black);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 20px auto 0;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-box h3 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-box p {
    font-size: 0.95rem;
    margin: 0;
}

/* Services Section */
.services {
    background-color: var(--light-gray);
}

.services-slider-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow: hidden;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-red);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card > p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 8px;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.slider-btn:hover {
    background-color: var(--primary-red-dark);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: -25px;
}

.slider-btn-next {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery .slider-dots {
    display: none; /* Hide dots for video gallery */
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.5;
}

.slider-dot.active {
    background-color: var(--primary-red);
    opacity: 1;
    transform: scale(1.2);
}

/* Why Choose Us Section */
.why-choose {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

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

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.15);
    border-color: rgba(220, 20, 60, 0.2);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
    transition: var(--transition);
    position: relative;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1;
}

.feature-item h3 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: var(--transition);
}

.feature-item:hover h3 {
    color: var(--primary-red);
}

.feature-item p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Gallery Section */
.gallery {
    background-color: var(--dark-gray);
}

.gallery .section-title,
.gallery .section-subtitle {
    color: var(--white);
}

.gallery-slider-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.gallery .slider-btn {
    display: none; /* Hide navigation arrows for video gallery */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 2px solid transparent;
}

.gallery-item.video-item::after {
    content: 'Click to expand';
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: var(--transition);
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-item.video-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.4);
    border-color: var(--primary-red);
}

.gallery-item.video-item {
    background-color: var(--black);
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition);
    backdrop-filter: blur(0px);
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(2px);
}

.gallery-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 30px;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.gallery-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.gallery-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.play-indicator {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(220, 20, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.gallery-item:hover .play-indicator {
    transform: scale(1.1);
    background: var(--primary-red);
    box-shadow: 0 6px 30px rgba(220, 20, 60, 0.7);
}

.play-indicator svg {
    width: 40px;
    height: 40px;
    margin-left: 4px;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .video-controls {
    opacity: 1;
}

.video-play-pause {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-play-pause:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.1);
}

.video-play-pause svg {
    width: 24px;
    height: 24px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 1400px;
    z-index: 10001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-container {
    transform: scale(1);
}

.video-modal-content {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--black);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-red);
}

.video-modal-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--black);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10002;
}

.video-modal-close:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: rotate(90deg);
}

.video-modal-close svg {
    width: 24px;
    height: 24px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-gray);
}

.testimonials-slider-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow: hidden;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    border-top: 1px solid var(--light-gray);
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--black);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-red);
    transform: scaleY(0);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.15);
    border-color: rgba(220, 20, 60, 0.2);
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    color: var(--black);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-details a {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.contact-details p {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.contact-details p + p {
    margin-top: 5px;
}

.social-card .contact-details {
    width: 100%;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--light-gray);
    border-radius: 8px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
    border-color: var(--primary-red);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link span {
    display: inline-block;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.form-header h3 {
    color: var(--black);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
}

.form-group label svg {
    color: var(--primary-red);
    flex-shrink: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--black);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-body);
}

.form-submit-btn {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.form-submit-btn svg {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

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

.footer-social a:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

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

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

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

@media (max-width: 1024px) {
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-item {
        padding: 35px 25px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feature-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
    }
    
    .feature-item p {
        font-size: 0.95rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slider-btn-prev {
        left: 10px;
    }
    
    .slider-btn-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        transform: translateX(-100%);
        transition: var(--transition);
        gap: 20px;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* Hero */
    .hero-badge {
        flex-direction: column;
        gap: 8px;
        padding: 8px 20px;
        margin-bottom: 25px;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .badge-location {
        font-size: 0.75rem;
        padding-left: 0;
    }
    
    .badge-location::before {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
        padding: 0 20px;
    }
    
    .hero-title .title-line,
    .hero-title .title-highlight {
        display: block;
    }
    
    .hero-title .title-highlight::after {
        width: 60px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
        line-height: 1.6;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 35px;
        padding: 0 20px;
    }
    
    .hero-feature {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .hero-trust {
        display: none; /* Hide trust indicators on mobile */
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Services - Mobile Slider */
    .services-slider-wrapper {
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 10px 0;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .services-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .service-card {
        min-width: 90%;
        max-width: 90%;
        scroll-snap-align: center;
        flex-shrink: 0;
        padding: 30px 25px;
        margin: 0;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card > p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 15px;
    }
    
    .service-features {
        margin-top: 15px;
    }
    
    .service-features li {
        font-size: 0.9rem;
        padding: 8px 0;
        padding-left: 28px;
        line-height: 1.7;
    }
    
    .service-features li::before {
        left: 3px;
        top: 10px;
        font-size: 0.95rem;
    }
    
    .testimonials-slider-wrapper {
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 10px 0;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .testimonials-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .testimonial-card {
        min-width: 90%;
        max-width: 90%;
        scroll-snap-align: center;
        flex-shrink: 0;
        padding: 30px 25px;
        margin: 0;
    }
    
    .testimonial-stars {
        font-size: 1.1rem;
        margin-bottom: 15px;
        letter-spacing: 1.5px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        padding-top: 15px;
    }
    
    .testimonial-author strong {
        font-size: 1rem;
    }
    
    .testimonial-author span {
        font-size: 0.85rem;
    }
    
    .testimonials-slider-wrapper .slider-btn-prev {
        left: 5px;
        background: rgba(220, 20, 60, 0.9);
        backdrop-filter: blur(10px);
    }
    
    .testimonials-slider-wrapper .slider-btn-next {
        right: 5px;
        background: rgba(220, 20, 60, 0.9);
        backdrop-filter: blur(10px);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        min-width: 100%;
    }
    
    .gallery-content h3 {
        font-size: 1.5rem;
    }
    
    .gallery-content p {
        font-size: 1rem;
    }
    
    .play-indicator {
        width: 60px;
        height: 60px;
    }
    
    .play-indicator svg {
        width: 30px;
        height: 30px;
    }
    
    .video-controls {
        opacity: 1;
        bottom: 15px;
        right: 15px;
    }
    
    /* Video Modal Mobile */
    .video-modal-container {
        width: 95%;
        max-width: 100%;
    }
    
    .video-modal-close {
        top: -40px;
        width: 40px;
        height: 40px;
    }
    
    .video-modal-close svg {
        width: 20px;
        height: 20px;
    }
    
    .video-modal-content {
        border-radius: 8px;
    }
    
    .slider-btn {
        display: flex;
        width: 45px;
        height: 45px;
    }
    
    .services-slider-wrapper .slider-btn-prev {
        left: 5px;
        background: rgba(220, 20, 60, 0.9);
        backdrop-filter: blur(10px);
    }
    
    .services-slider-wrapper .slider-btn-next {
        right: 5px;
        background: rgba(220, 20, 60, 0.9);
        backdrop-filter: blur(10px);
    }
    
    .slider-dots {
        margin-top: 20px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    /* About */
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-item {
        padding: 35px 25px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feature-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
    }
    
    .feature-item p {
        font-size: 0.95rem;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-card {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-details {
        text-align: center;
        margin-top: 15px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section:first-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 30px;
        margin-bottom: 10px;
    }
    
    .footer-logo {
        height: 50px;
        margin-bottom: 15px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 15px;
        color: var(--primary-red);
        font-weight: 700;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 12px;
        line-height: 1.6;
    }
    
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
        margin-top: 10px;
    }
    
    .footer-section ul li {
        margin-bottom: 0;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
        padding: 5px 0;
        display: inline-block;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
    }
    
    .footer-bottom {
        padding-top: 25px;
        margin-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-title .title-highlight::after {
        width: 50px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .hero-badge {
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .hero-features {
        gap: 12px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .hero-feature {
        font-size: 0.85rem;
    }
    
    .hero-cta {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .hero-cta .btn {
        max-width: 100%;
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .hero-trust {
        display: none; /* Ensure trust indicators are hidden on small mobile */
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .service-card {
        min-width: 92%;
        max-width: 92%;
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card > p {
        font-size: 0.9rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-features li {
        font-size: 0.85rem;
        padding: 8px 0;
        padding-left: 28px;
        line-height: 1.8;
    }
    
    .service-features li::before {
        left: 4px;
        top: 10px;
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        min-width: 92%;
        max-width: 92%;
        padding: 25px 20px;
    }
    
    .testimonial-stars {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    
    .testimonial-author {
        padding-top: 12px;
    }
    
    .testimonial-author strong {
        font-size: 0.95rem;
    }
    
    .testimonial-author span {
        font-size: 0.8rem;
    }
    
    .testimonials-slider-wrapper .slider-btn-prev {
        left: 3px;
    }
    
    .testimonials-slider-wrapper .slider-btn-next {
        right: 3px;
    }
    
    .gallery-item {
        min-width: 90%;
    }
    
    /* Footer Small Mobile */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        height: 45px;
        margin-bottom: 12px;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .footer-section ul {
        gap: 12px 20px;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .services-slider-wrapper .slider-btn-prev {
        left: 3px;
    }
    
    .services-slider-wrapper .slider-btn-next {
        right: 3px;
    }
    
    .slider-dots {
        margin-top: 15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-background {
        animation: none;
    }
}

/* Focus States */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-cta,
    .slider-btn,
    .contact-form,
    .footer {
        display: none;
    }
}

