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

:root {
    --primary-color: #dc2626;
    --secondary-color: #1a1a1a;
    --accent-color: #c0c0c0;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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 {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(40, 40, 40, 0.95) 50%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

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

.nav-logo {
    height: 120px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.2rem;
}

.nav-subtitle {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    padding: 0.35rem 0.6rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

.nav-link.nav-phone {
    background: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 0.85rem;
}

.nav-link.nav-phone::after {
    display: none;
}

.nav-link.nav-phone:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.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 Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2a2a2a 100%);
    background-image: url('bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 0.5rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

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

.btn-secondary:hover {
    background: var(--bg-dark);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Hero section buttons - override for dark background */
.hero .btn-secondary {
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.hero .btn-secondary:hover {
    background: var(--text-light);
    color: var(--bg-dark);
}

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

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(220, 38, 38, 0.08) 0%,
        rgba(220, 38, 38, 0.12) 50%,
        rgba(220, 38, 38, 0.08) 100%
    );
    z-index: 0;
    pointer-events: none;
    margin-left: calc(-50vw + 50%);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--primary-color) 15%,
        var(--primary-color) 85%,
        transparent 100%
    );
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.5);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--text-light);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-icon i {
    display: inline-block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bg-dark);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Statistics Section */
.statistics {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2a2a2a 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

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

.statistics .section-title {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.statistics .section-subtitle {
    color: var(--accent-color);
    font-size: 1.2rem;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(220, 38, 38, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

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

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.statistics-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.content-block {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.content-block:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-block p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.gallery-section .section-title {
    color: var(--bg-dark);
    margin-bottom: 1rem;
}

.gallery-section .section-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 38, 38, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--text-light);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-section .section-title {
    color: var(--bg-dark);
    margin-bottom: 1rem;
}

.reviews-section .section-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
}

.reviews-link-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.reviews-commitment {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-commitment p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
    margin: 0;
}


/* Car Brands Carousel - Inside Services Section */
.brands-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(220, 38, 38, 0.1);
}

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

.brands-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

.brands-carousel {
    display: flex;
    gap: 3rem;
    width: fit-content;
}

.brand-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
    border-color: var(--primary-color);
}

.brand-logo {
    max-width: 80%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.brands-carousel.animate {
    animation: scroll 30s linear infinite;
}

.brands-carousel.animate:hover {
    animation-play-state: paused;
}

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

/* Credentials Section */
.credentials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.credentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    z-index: 0;
}

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

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

.credentials .section-title {
    color: var(--bg-dark);
    margin-bottom: 1rem;
}

.credentials .section-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
}

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

.credential-card {
    background: var(--text-light);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.credential-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b, var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.credential-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
    border-color: var(--primary-color);
}

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

.credential-icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.credential-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.credential-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    filter: blur(10px);
}

.credential-card:hover .credential-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.credential-card:hover .credential-icon::after {
    opacity: 0.6;
}

.credential-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credential-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-section .section-title {
    color: var(--bg-dark);
    margin-bottom: 1rem;
}

.map-section .section-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--primary-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

.map-info-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.map-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.map-info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 10px;
    height: 50px;
}

.map-info-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-info-content p {
    color: var(--text-gray);
    margin: 0.3rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: var(--bg-dark);
    text-decoration: underline;
}

.map-directions-btn {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.map-directions-btn i {
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

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

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

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-icon i {
    display: inline-block;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.contact-card a:hover {
    color: var(--primary-color);
}


/* Footer */
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--bg-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-dark) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.footer-column {
    position: relative;
}

.footer-column-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.footer-column-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
}

.footer-column-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.footer-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-content p {
    margin: 0.8rem 0;
    font-size: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.footer-hours-item:hover {
    padding-left: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.footer-hours-item.closed {
    opacity: 0.6;
}

.footer-day {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1rem;
}

.footer-time {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom p {
    color: var(--accent-color);
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

/* Responsive Design */
/* Tablet Styles */
@media (max-width: 992px) and (min-width: 769px) {
    .navbar {
        padding: 1rem 0;
    }

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

    .nav-logo {
        height: 100px;
        max-width: 400px;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }

    .nav-link.nav-phone {
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
    }
}

/* Mobile and Tablet - Show hamburger menu, hide desktop menu */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Hide desktop menu layout, but allow mobile menu to show when active */
    .nav-menu:not(.active) {
        display: none;
    }

    /* Mobile menu styles - applied at 992px and below */
    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-dark) 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
    }

    .nav-menu.active {
        right: 0;
        visibility: visible;
        opacity: 1;
    }

    /* Find Us Section Responsive */
    .map-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 400px;
        order: 1;
    }

    .map-info {
        order: 2;
    }

    .map-info-card {
        padding: 1.5rem;
    }

    .map-section {
        padding: 3rem 0;
    }

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

    /* Why Choose Us Section Responsive */
    .statistics {
        padding: 4rem 0;
    }

    .statistics-header {
        margin-bottom: 3rem;
    }

    .statistics-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

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

    .stat-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

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

    .stat-label {
        font-size: 1.1rem;
    }

    .statistics-content {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .content-block {
        padding: 2rem;
    }

    .content-block h3 {
        font-size: 1.3rem;
    }

    .content-block p {
        font-size: 0.95rem;
    }

    /* Car Brands Carousel Responsive */
    .brands-carousel-wrapper {
        margin-top: 3rem;
        padding-top: 2.5rem;
    }

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

    .brands-title {
        font-size: 1.6rem;
    }

    .brand-item {
        width: 180px;
        height: 110px;
    }

    .brand-logo {
        font-size: 1.3rem;
    }

    .brands-carousel {
        gap: 2.5rem;
    }

    /* Gallery Section Responsive */
    .gallery-section {
        padding: 4rem 0;
    }

    .gallery-header {
        margin-bottom: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.2rem;
    }
}

/* Back to Top Button - Responsive */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 350px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        bottom: 0.8rem;
        right: 0.8rem;
        font-size: 0.9rem;
    }

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

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

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

    .navbar {
        padding: 1rem 0;
    }

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

    .nav-logo {
        height: 70px;
        max-width: 280px;
    }

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

    .nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 1001;
        position: relative;
        flex-shrink: 0;
        margin-left: 1rem;
        background: rgba(220, 38, 38, 0.15);
        border: 1px solid rgba(220, 38, 38, 0.3);
        border-radius: 5px;
        padding: 0.6rem 0.5rem;
        min-width: 44px;
        min-height: 44px;
    }

    .nav-toggle:hover {
        background: rgba(220, 38, 38, 0.25);
    }

    .nav-toggle span {
        background: var(--text-light) !important;
        width: 24px;
        height: 3px;
        display: block !important;
    }

    .nav-menu {
        width: 100%;
        max-width: 280px;
    }

    /* Find Us Section - Very Small Screens */
    .map-section {
        padding: 2rem 0;
    }

    .map-header {
        margin-bottom: 1.5rem;
    }

    .map-section .section-title {
        font-size: 1.6rem;
    }

    .map-section .section-subtitle {
        font-size: 0.95rem;
    }

    .map-wrapper {
        gap: 1.5rem;
    }

    .map-container {
        height: 280px;
    }

    .map-info-card {
        padding: 1rem;
        gap: 0.8rem;
    }

    .map-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .map-info-content h3 {
        font-size: 1rem;
    }

    .map-info-content p {
        font-size: 0.85rem;
    }

    .map-directions-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Why Choose Us Section - 350px */
    .statistics {
        padding: 2.5rem 0;
    }

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

    .statistics .section-title {
        font-size: 1.6rem;
    }

    .statistics .section-subtitle {
        font-size: 0.95rem;
    }

    .statistics-grid {
        gap: 1.2rem;
        margin-bottom: 2rem;
    }

    .stat-card {
        padding: 1.2rem 1rem;
    }

    .stat-icon {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
    }

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

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-description {
        font-size: 0.8rem;
        margin-top: 0.6rem;
    }

    .statistics-content {
        gap: 1.2rem;
    }

    .content-block {
        padding: 1.2rem;
    }

    .content-block h3 {
        font-size: 1rem;
    }

    .content-block p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* Gallery Section - 350px */
    .gallery-section {
        padding: 2.5rem 0;
    }

    .gallery-header {
        margin-bottom: 1.5rem;
    }

    .gallery-section .section-title {
        font-size: 1.6rem;
    }

    .gallery-section .section-subtitle {
        font-size: 0.95rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.6rem;
    }

    .gallery-item {
        border-radius: 8px;
    }

    .gallery-overlay i {
        font-size: 1.5rem;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        font-weight: 500;
        text-align: left;
    }

    .nav-link:first-child {
        padding-top: 0;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.nav-phone {
        margin-top: 1.5rem;
        padding: 0.8rem 1.5rem;
        text-align: center;
        border: 2px solid var(--primary-color);
        border-radius: 5px;
        width: auto;
        align-self: center;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

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

    .footer-hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Why Choose Us Section - 768px */
    .statistics {
        padding: 3.5rem 0;
    }

    .statistics-header {
        margin-bottom: 2.5rem;
    }

    .statistics .section-title {
        font-size: 2rem;
    }

    .statistics .section-subtitle {
        font-size: 1.1rem;
    }

    .statistics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .stat-card {
        padding: 1.8rem 1.5rem;
    }

    .stat-icon {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

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

    .stat-label {
        font-size: 1rem;
    }

    .stat-description {
        font-size: 0.9rem;
    }

    .statistics-content {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .content-block {
        padding: 1.8rem;
    }

    .content-block h3 {
        font-size: 1.2rem;
    }

    .content-block p {
        font-size: 0.9rem;
    }

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

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

    .content-block {
        padding: 2rem;
    }

    /* Gallery Section - 768px */
    .gallery-section {
        padding: 3.5rem 0;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-overlay i {
        font-size: 2rem;
    }

    .credentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .credential-card {
        padding: 2.5rem 2rem;
    }

    .credential-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .map-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 400px;
    }

    .map-info-card {
        padding: 1.5rem;
    }

    .map-section {
        padding: 3rem 0;
    }

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

    .map-section .section-subtitle {
        font-size: 1.1rem;
    }
}

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

    .hero-title {
        font-size: 1.5rem;
    }

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

    .navbar {
        padding: 0.8rem 0;
    }

    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0 10px;
    }

    .nav-logo {
        height: 60px;
        max-width: 240px;
        max-width: min(240px, calc(100vw - 80px));
    }

    .nav-brand {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .nav-brand img {
        height: auto;
    }

    .nav-toggle {
        flex-shrink: 0;
        padding: 0.3rem;
    }

    .nav-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
        padding: 4rem 1.5rem 2rem;
    }

    /* Why Choose Us Section - 480px */
    .statistics {
        padding: 3rem 0;
    }

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

    .statistics .section-title {
        font-size: 1.8rem;
    }

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

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .stat-card {
        padding: 1.5rem 1.2rem;
    }

    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

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

    .stat-label {
        font-size: 0.95rem;
    }

    .stat-description {
        font-size: 0.85rem;
        margin-top: 0.8rem;
    }

    .statistics-content {
        gap: 1.5rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .content-block h3 {
        font-size: 1.1rem;
    }

    .content-block p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Car Brands Carousel - 480px */
    .brands-carousel-wrapper {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .brands-header {
        margin-bottom: 1.5rem;
    }

    .brands-title {
        font-size: 1.4rem;
    }

    .brands-subtitle {
        font-size: 0.9rem;
    }

    .brand-item {
        width: 140px;
        height: 90px;
    }

    .brand-logo {
        font-size: 1.1rem;
    }

    .brands-carousel {
        gap: 1.5rem;
        animation-duration: 20s;
    }

    /* Gallery Section - 480px */
    .gallery-section {
        padding: 3rem 0;
    }

    .gallery-header {
        margin-bottom: 1.5rem;
    }

    .gallery-section .section-title {
        font-size: 1.8rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.8rem;
    }

    .gallery-overlay i {
        font-size: 1.8rem;
    }

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

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

    .credential-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .credential-card h3 {
        font-size: 1.3rem;
    }

    .reviews-link-container {
        flex-direction: column;
        gap: 1rem;
    }

    .reviews-link-container .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .reviews-commitment {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .reviews-commitment p {
        font-size: 1rem;
    }

    .map-container {
        height: 300px;
    }

    .map-info-card {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .map-info-icon {
        margin: 0 auto;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .map-info-content h3 {
        font-size: 1.1rem;
    }

    .map-info-content p {
        font-size: 0.9rem;
    }

    .map-section {
        padding: 2.5rem 0;
    }

    .map-header {
        margin-bottom: 1.5rem;
    }

    .map-section .section-title {
        font-size: 1.8rem;
    }

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

    .map-wrapper {
        gap: 1.5rem;
    }

    .map-directions-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .reviews-commitment {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .reviews-commitment p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

