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

:root {
    /* Automotive Color Palette */
    --primary-color: #1e293b; /* Deep slate - like premium car paint */
    --primary-dark: #0f172a; /* Darker slate */
    --secondary-color: #f97316; /* Vibrant orange - automotive tool color */
    --accent-color: #3b82f6; /* Bright blue - like car detailing */
    --metallic: #64748b; /* Metallic silver/gray */
    --chrome: #cbd5e1; /* Chrome highlight */
    
    /* Backgrounds */
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --card-bg: #ffffff;
    --nav-bg: rgba(30, 41, 59, 0.98);
    
    /* Text */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-automotive: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --gradient-accent: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
    --gradient-metallic: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(203, 213, 225, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
    min-width: 0;
    flex: 1;
}

.brand-link:hover {
    opacity: 0.8;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 5px;
}

.brand-name {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    white-space: nowrap;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: block;
    padding: 0.75rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('Images/Black_Truck2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Images/Truck.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 15s infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Images/red.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade2 15s infinite;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 500px;
        height: 70vh;
    }
}

@keyframes heroFade {
    0%, 30% {
        opacity: 0;
    }
    33.33%, 63.33% {
        opacity: 1;
    }
    66.66%, 100% {
        opacity: 0;
    }
}

@keyframes heroFade2 {
    0%, 63.33% {
        opacity: 0;
    }
    66.67%, 96.67% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    color: var(--chrome);
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: var(--gradient-accent);
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    min-height: 44px;
    min-width: 200px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-metallic);
    opacity: 0.3;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


.service-card {
    background: var(--card-bg);
    padding: 2rem 1.75rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(30, 41, 59, 0.1);
    border: 2px solid rgba(203, 213, 225, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(30, 41, 59, 0.2);
    border-color: var(--secondary-color);
    z-index: 10;
}

.service-card:hover::before {
    opacity: 1;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(249, 115, 22, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    background: var(--gradient-accent);
    border-color: var(--secondary-color);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.25);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.875rem;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.insurance-badge {
    background: var(--gradient-automotive);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 8px 24px rgba(30, 41, 59, 0.3);
    border: 2px solid rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.insurance-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.insurance-badge p {
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.insurance-badge strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--card-bg);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.gallery .section-subtitle {
    position: relative;
    padding-bottom: 1rem;
}

.gallery .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    animation: fadeInUp 0.6s ease both;
}

.gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.3s;
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: 3px solid transparent;
}

.before-after-container::before {
    content: 'Click to Enlarge';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(30, 41, 59, 0.95);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 20;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.before-after-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    border-color: var(--secondary-color);
}

.before-after-container:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.before-after-container .before,
.before-after-container .after {
    position: relative;
    overflow: hidden;
}

.before-after-container .before::after,
.before-after-container .after::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    z-index: 5;
}

.before-after-container:hover .before::after,
.before-after-container:hover .after::after {
    background: rgba(0, 0, 0, 0.3);
}

.before-after-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.before-after-container:hover img {
    transform: scale(1.1);
}

.label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.85);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 15;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.before-after-container:hover .label {
    transform: scale(1.05);
}

.before .label {
    background: rgba(239, 68, 68, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.after .label {
    background: rgba(16, 185, 129, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gallery-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.showcase-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.showcase-item::before {
    content: 'Click to Enlarge';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(30, 41, 59, 0.95);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 20;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    white-space: nowrap;
}

.showcase-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0);
    transition: background 0.4s ease;
    z-index: 5;
    pointer-events: none;
}

.showcase-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    border-color: var(--secondary-color);
}

.showcase-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.showcase-item:hover::after {
    background: rgba(30, 41, 59, 0.4);
}

.showcase-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.showcase-item:hover img {
    transform: scale(1.15);
}

.showcase-item a {
    display: block;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 9;
}

.showcase-item a:hover img {
    opacity: 0.9;
}

/* Image Modal Styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.image-modal:target {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 95%;
    width: 100%;
}

.modal-before,
.modal-after {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-before img,
.modal-after img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    z-index: 10;
}

.modal-before .modal-label {
    background: rgba(239, 68, 68, 0.95);
}

.modal-after .modal-label {
    background: rgba(16, 185, 129, 0.95);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    text-decoration: none;
    line-height: 1;
    z-index: 10000;
    transition: color 0.3s ease, transform 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
    background: rgba(249, 115, 22, 0.3);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--gradient-automotive);
    color: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-metallic);
    opacity: 0.2;
}

.contact .section-title {
    color: var(--white);
}

.contact .section-title::after {
    background: var(--gradient-accent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.contact-item > div:last-child {
    flex: 1;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 0;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(249, 115, 22, 0.2);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(203, 213, 225, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-brand address {
    font-style: normal;
    margin-top: 0.5rem;
    line-height: 1.8;
}

.footer-brand address a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-credit {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.footer-credit a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-credit a:hover {
    color: var(--chrome);
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-checkbox {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-checkbox:checked ~ .nav-menu {
    max-height: 400px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar .container {
        padding: 0 15px;
    }

    .nav-brand {
        gap: 10px;
        flex: 0 1 auto;
        max-width: calc(100% - 60px);
    }

    .brand-link {
        gap: 10px;
    }

    .brand-name {
        font-size: 1.2rem;
        white-space: normal;
        line-height: 1.1;
    }

    .logo {
        height: 45px;
        flex-shrink: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--nav-bg);
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid rgba(203, 213, 225, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        min-height: 48px;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    /* Close menu when link is clicked */

    .hero-title {
        font-size: 2.5rem;
        padding: 0 20px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .services {
        padding: 60px 0;
    }

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

    .service-card {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        padding: 0 20px;
    }

    .gallery {
        padding: 60px 0;
    }

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

    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .before-after-container {
        grid-template-columns: 1fr;
    }

    .before-after-container img {
        height: 200px;
    }

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

    .showcase-item img {
        height: 200px;
    }

    .modal-before-after {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 95%;
        padding: 0 10px;
    }

    .modal-before img,
    .modal-after img {
        max-height: 40vh;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .container {
        padding: 0 15px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
        height: 60vh;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

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

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

    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .navbar .container {
        padding: 0 12px;
    }

    .nav-brand {
        gap: 8px;
        max-width: calc(100% - 55px);
    }

    .brand-link {
        gap: 8px;
    }

    .brand-name {
        font-size: 1rem;
        white-space: normal;
        line-height: 1.1;
    }

    .logo {
        height: 38px;
        flex-shrink: 0;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .insurance-badge {
        padding: 1.5rem 1rem;
    }

    .insurance-badge p {
        font-size: 1rem;
    }

    .gallery-showcase {
        grid-template-columns: 1fr;
    }

    .contact-item h3 {
        font-size: 1.25rem;
    }

    .contact-item p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 0.95rem;
        min-width: 160px;
    }

    .container {
        padding: 0 12px;
    }
}
