/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Prevent double scroll globally */
html {
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

:root {
    --primary-color: #4BA82E;
    --primary-light: #6BC84A;
    --primary-dark: #2E7A1A;
    --secondary-color: #111111;
    --accent-color: #5BC83A;
    --header-footer-bg: #111111;
    --text-dark: #0d0d0d;
    --text-light: #f5f5f5;
    --text-muted: #b5b5b5;
    --bg-light: #121212;
    --bg-dark: #000000;
    --bg-card: #1a1a1a;
    --white: #ffffff;
    --silver: #d4d4d8;
    --fabo-green: #4BA82E;
    --gradient-primary: linear-gradient(135deg, #4BA82E 0%, #2E7A1A 100%);
    --gradient-secondary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #5BC83A 0%, #2E7A1A 100%);
    --gradient-shine: linear-gradient(135deg, #ffffff 0%, #d4d4d8 100%);
    --gradient-glass: linear-gradient(135deg, rgba(75, 168, 46, 0.12) 0%, rgba(91, 200, 58, 0.12) 100%);
    --shadow-light: 0 5px 15px rgba(75, 168, 46, 0.18);
    --shadow-medium: 0 10px 30px rgba(75, 168, 46, 0.28);
    --shadow-heavy: 0 20px 60px rgba(75, 168, 46, 0.38);
    --shadow-glow: 0 0 15px rgba(91, 200, 58, 0.2);
    --shadow-glass: 0 8px 32px rgba(91, 200, 58, 0.22);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(75, 168, 46, 0.05) 0%, transparent 70%);
    animation: pulseBg 3s ease-in-out infinite;
}

@keyframes pulseBg {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 600px;
}

.loading-letter {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(75, 168, 46, 0.3);
    display: inline-block;
    animation: waveAnimation 1.2s ease-in-out infinite;
    opacity: 0.5;
}

.loading-space {
    width: 12px;
    display: inline-block;
}

.loading-letter:nth-child(1) { animation-delay: 0.0s; }
.loading-letter:nth-child(2) { animation-delay: 0.05s; }
.loading-letter:nth-child(3) { animation-delay: 0.10s; }
.loading-letter:nth-child(4) { animation-delay: 0.15s; }
.loading-letter:nth-child(6) { animation-delay: 0.20s; }
.loading-letter:nth-child(7) { animation-delay: 0.25s; }
.loading-letter:nth-child(8) { animation-delay: 0.30s; }
.loading-letter:nth-child(9) { animation-delay: 0.35s; }
.loading-letter:nth-child(11) { animation-delay: 0.40s; }
.loading-letter:nth-child(12) { animation-delay: 0.45s; }
.loading-letter:nth-child(13) { animation-delay: 0.50s; }

@keyframes waveAnimation {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0px) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-16px) scale(1.05);
    }
}

.loading-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 8px;
    margin-bottom: 40px;
    font-weight: 600;
    opacity: 0.7;
    animation: fadeInOut 2.5s ease-in-out infinite;
    text-transform: uppercase;
}


@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    box-shadow: none;
}

.header.scrolled {
    background: #000000;
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(75, 168, 46, 0.3);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 90px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    padding: 5px 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 1px;
}

.logo-number {
    color: var(--primary-color);
    font-weight: 800;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
    text-shadow: none;
}

.header.scrolled .nav-link {
    color: #ffffff;
    text-shadow: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(75, 168, 46, 0.4);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
    box-shadow: none;
}

.header.scrolled .nav-toggle span {
    background: #ffffff;
    box-shadow: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
    background: #050505;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/car-service.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(17, 17, 17, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(17, 17, 17, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(17, 17, 17, 0.02) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: 2;
}


@keyframes backgroundFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(1deg);
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

@keyframes backgroundMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-60px) translateY(-60px);
    }
}

.hero-overlay {
    display: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><rect x="15" y="15" width="10" height="10" fill="%23FF2E45" opacity="0.12" transform="rotate(45 20 20)"/></svg>'),
        url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="3" fill="%23C8102E" opacity="0.1"/></svg>');
    background-size: 40px 40px, 80px 80px;
    animation: particlesMove 25s linear infinite;
}

@keyframes particlesMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-40px) translateY(-40px);
    }
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(75, 168, 46, 0.35);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-top: 60px;
    margin-bottom: 40px;
    width: 100%;
    padding: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.75) 0%, rgba(75, 168, 46, 0.55) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(91, 200, 58, 0.35);
}

.hero-badge i {
    color: var(--accent-color);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 3px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.title-sub {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--white);
    font-weight: 600;
    margin-top: 10px;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.8), 0 1px 5px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease both;
}

.title-line:nth-child(1) { animation-delay: 0.4s; }
.title-line:nth-child(2) { animation-delay: 0.6s; }

.highlight {
    color: var(--primary-color);
    font-size: 0.6em;
    text-shadow: 0 0 15px rgba(91, 200, 58, 0.5), 0 0 30px rgba(91, 200, 58, 0.3), 0 4px 20px rgba(17, 17, 17, 0.6);
    filter: drop-shadow(0 0 8px rgba(91, 200, 58, 0.4)) drop-shadow(0 0 12px rgba(91, 200, 58, 0.3));
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.8s both;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 1px 5px rgba(0, 0, 0, 0.6);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 1s both;
    width: 100%;
    max-width: 100%;
}

.stat-item {
    text-align: center;
    padding: 15px 12px;
    border-radius: 15px;
    transition: var(--transition);
    background: rgba(17, 17, 17, 0.55);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(75, 168, 46, 0.3);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(17, 17, 17, 0.7);
    border-color: rgba(91, 200, 58, 0.45);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 6px;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 1.2s both;
    flex-wrap: wrap;
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Info Banner */
.info-banner {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px 0;
    box-shadow: var(--shadow-glow);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.banner-icon {
    font-size: 3rem;
    opacity: 0.8;
}

.banner-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.banner-text p {
    opacity: 0.9;
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
    width: 100%;
}

@media (min-width: 1024px) {
    .banner-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-item i {
    font-size: 1.3rem;
    opacity: 0.9;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    line-height: 1.3;
}

/* Section Styles */
section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.section-badge {
    display: inline-block;
    background: rgba(32, 9, 84, 0.3);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden !important;
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.vehicle-slider {
    margin-bottom: 50px;
    overflow: hidden !important;
    padding: 25px 0 40px 0;
    width: 100%;
    max-width: 100vw;
}

.vehicle-track {
    display: flex;
    gap: 35px;
    animation: slideRight 60s linear infinite;
    width: fit-content;
}

.vehicle-track.reverse {
    animation: slideLeft 60s linear infinite;
}

.vehicle-slider:hover .vehicle-track {
    animation-play-state: paused;
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.vehicle-item {
    position: relative;
    min-width: 450px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 3px solid transparent;
}

.vehicle-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(17, 17, 17, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.vehicle-item:hover::before {
    opacity: 1;
}

.vehicle-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(17, 17, 17, 0.5), 0 0 0 3px var(--primary-color);
    border-color: var(--primary-color);
    z-index: 10;
}

.vehicle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.vehicle-item:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1) contrast(1.2);
}

.vehicle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.vehicle-item:hover .vehicle-overlay {
    transform: translateY(0);
}

.vehicle-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.vehicle-overlay p {
    font-size: 0.95rem;
    color: var(--silver);
    line-height: 1.5;
}

/* Gallery Badge */
.vehicle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: var(--shadow-glow);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s 0.2s;
}

.vehicle-item:hover .vehicle-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8fafc;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
    background-image: url('images/mechanic.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.85) 0%, rgba(75, 168, 46, 0.55) 100%);
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section .section-header h2,
.services-section .section-header p {
    color: var(--white);
}

.services-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-color) 20%, 
        var(--accent-color) 30%,
        transparent 40%,
        transparent 60%,
        var(--accent-color) 70%,
        var(--accent-color) 80%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    z-index: 3;
    box-shadow: 0 0 10px var(--accent-color), 0 0 20px rgba(75, 168, 46, 0.3);
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 50px 32px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(75, 168, 46, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--accent-color) 0%, 
        #4a9eff 25%,
        var(--accent-color) 50%,
        #4a9eff 75%,
        var(--accent-color) 100%
    );
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(75, 168, 46, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
    animation: shimmer-border 3s linear infinite;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -100%;
    right: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(75, 168, 46, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    transform: translate(50%, 50%);
}

.service-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 
        0 24px 48px rgba(75, 168, 46, 0.25),
        0 12px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(75, 168, 46, 0.4);
    background: linear-gradient(145deg, #ffffff 0%, #f0f4f8 100%);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
    transform: translate(0%, 0%);
}

@keyframes shimmer-border {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, 
        rgba(75, 168, 46, 0.12) 0%, 
        rgba(17, 17, 17, 0.18) 50%,
        rgba(75, 168, 46, 0.12) 100%
    );
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(75, 168, 46, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(75, 168, 46, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(75, 168, 46, 0.2),
        transparent 30%
    );
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: rotate(0deg);
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, 
        rgba(75, 168, 46, 0.25) 0%, 
        rgba(17, 17, 17, 0.3) 50%,
        rgba(75, 168, 46, 0.25) 100%
    );
    transform: scale(1.15) rotate(8deg);
    border-color: var(--accent-color);
    box-shadow: 
        0 12px 32px rgba(75, 168, 46, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

.service-card:hover .service-icon::before {
    opacity: 1;
    transform: rotate(360deg);
    animation: rotate-icon 3s linear infinite;
}

.service-card:hover .service-icon i {
    transform: scale(1.15);
    filter: drop-shadow(0 6px 12px rgba(75, 168, 46, 0.5));
}

@keyframes rotate-icon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.service-icon i {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(17, 17, 17, 0.2));
    font-size: 42px;
    color: var(--primary-color);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(75, 168, 46, 0.1) 0%, rgba(17, 17, 17, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.4;
    transition: all 0.4s ease;
    z-index: 0;
    letter-spacing: -2px;
}

.service-card:hover .service-number {
    opacity: 0.6;
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(75, 168, 46, 0.2) 0%, rgba(17, 17, 17, 0.25) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(75, 168, 46, 0.3) 20%,
        rgba(75, 168, 46, 0.5) 50%,
        rgba(75, 168, 46, 0.3) 80%,
        transparent 100%
    );
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-card:hover .service-accent {
    transform: scaleX(1);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    line-height: 1.3;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.service-card:hover h3 {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.98rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    font-weight: 400;
}

.service-card:hover p {
    color: var(--text-dark);
    transform: translateY(-1px);
}

/* Gallery Section */
.gallery-section {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: #000;
}

.gallery-swiper {
    width: 100%;
    height: 400px;
}

.gallery-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-swiper .swiper-pagination {
    bottom: 20px;
}

.gallery-swiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-swiper {
        height: 300px;
    }
    
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .gallery-swiper .swiper-button-next:after,
    .gallery-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-swiper {
        height: 250px;
    }
    
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        display: none;
    }
}

/* Procedure Section */
.procedure-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.procedure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.procedure-text .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.procedure-steps {
    margin-top: 40px;
}

.procedure-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.procedure-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.procedure-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.procedure-image img {
    max-width: 80%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 2rem;
    color: var(--white);
}

.floating-badge span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
    background-image: url('images/woman.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-color) 20%, 
        var(--accent-color) 30%,
        transparent 40%,
        transparent 60%,
        var(--accent-color) 70%,
        var(--accent-color) 80%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    z-index: 3;
    box-shadow: 0 0 10px var(--accent-color), 0 0 20px rgba(75, 168, 46, 0.3);
}

.timeline-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-color) 20%, 
        var(--accent-color) 30%,
        transparent 40%,
        transparent 60%,
        var(--accent-color) 70%,
        var(--accent-color) 80%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    z-index: 3;
    box-shadow: 0 0 10px var(--accent-color), 0 0 20px rgba(75, 168, 46, 0.3);
}

.timeline-section .overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.timeline-section .container {
    position: relative;
    z-index: 2;
}

.timeline-section .section-header h2,
.timeline-section .section-header p {
    color: var(--white);
}

.timeline-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-intro {
    margin: 60px auto 80px;
    max-width: 900px;
    width: 100%;
}

.about-intro-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.about-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: justify;
}

.about-intro-content p:last-child {
    margin-bottom: 0;
}

.about-intro-content p:first-child {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.95);
}

.timeline-content h3,
.timeline-content p {
    color: var(--text-dark);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    width: 100%;
    overflow: visible;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 60px;
    margin-bottom: 50px;
    max-width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 4px solid #f8fafc;
    box-shadow: var(--shadow-glow), 0 0 0 3px var(--primary-color);
    z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(17, 17, 17, 0.2);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.timeline-year {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: var(--shadow-light);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.company-info {
    margin-top: 80px;
}

.info-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-color);
}

.info-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.info-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 100%;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(17, 17, 17, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(17, 17, 17, 0.1);
    transform: translateX(5px);
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-dark);
    margin: 0;
}

.about-cta {
    text-align: center;
    margin-top: 60px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-color);
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Brands Section */
.brands-section {
    padding: 50px 0;
    background: #0a0a0a;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
    position: relative;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-color) 20%, 
        var(--accent-color) 30%,
        transparent 40%,
        transparent 60%,
        var(--accent-color) 70%,
        var(--accent-color) 80%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    z-index: 3;
    box-shadow: 0 0 10px var(--accent-color), 0 0 20px rgba(75, 168, 46, 0.3);
}

.brands-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-color) 20%, 
        var(--accent-color) 30%,
        transparent 40%,
        transparent 60%,
        var(--accent-color) 70%,
        var(--accent-color) 80%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    z-index: 3;
    box-shadow: 0 0 10px var(--accent-color), 0 0 20px rgba(75, 168, 46, 0.3);
}

.brands-section .container {
    position: relative;
    z-index: 2;
}

.brands-section .section-header h2,
.brands-section .section-header p {
    color: var(--white);
}

.brands-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.brands-section .section-header {
    margin-bottom: 40px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.brand-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(75, 168, 46, 0.3);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.brand-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.brand-logo-img {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    padding: 20px;
    background: white;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid rgba(75, 168, 46, 0.2);
    position: relative;
    overflow: hidden;
}

.brand-logo-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(75, 168, 46, 0.3), transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.brand-item:hover .brand-logo-img::before {
    opacity: 1;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.brand-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1) saturate(1.2);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.brand-item:hover .brand-logo-img {
    transform: scale(1.1) translateY(-5px);
    background: rgba(75, 168, 46, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(75, 168, 46, 0.4);
}

.brand-item:hover .brand-logo-img img {
    filter: brightness(1.3) saturate(1.3);
    transform: scale(1.1) rotate(5deg);
}

.brand-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #f8fafc;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
    position: relative;
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-color) 20%, 
        var(--accent-color) 30%,
        transparent 40%,
        transparent 60%,
        var(--accent-color) 70%,
        var(--accent-color) 80%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    z-index: 3;
    box-shadow: 0 0 10px var(--accent-color), 0 0 20px rgba(75, 168, 46, 0.3);
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.75) 100%);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .section-header h2,
.contact-section .section-header p {
    color: var(--white);
}

.contact-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
}

.modern-form {
    background: rgba(255, 255, 255, 0.95);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
    align-items: start;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-map {
    width: 100%;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: var(--white);
    border: 1px solid rgba(17, 17, 17, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .contact-map iframe {
        height: 300px;
    }
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}


.contact-card {
    display: flex;
    gap: 10px;
    background: var(--white);
    padding: 12px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 12px;
    transition: var(--transition);
    border: 1px solid rgba(17, 17, 17, 0.3);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 6px;
    font-size: 0.8rem;
}

.contact-card .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    margin-top: 4px;
}

.contact-card .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: none;
}

.contact-card .btn-outline:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.contact-card .btn-primary {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 0.85rem;
}

.social-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(75, 168, 46, 0.1);
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-contact-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateX(5px);
}

.social-contact-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.social-contact-link span {
    font-weight: 500;
}

.hours-row span:first-child {
    color: var(--text-muted);
}

.hours-row span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

/* Modern Form */
.modern-form {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(17, 17, 17, 0.3);
    width: 100%;
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    max-width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 18px;
    padding-top: 12px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0,0,0,0.2);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    pointer-events: none;
    transition: var(--transition);
    background: var(--white);
    padding: 0 5px;
    z-index: 1;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label,
.form-group select:valid + label {
    top: -8px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line,
.form-group select:focus ~ .form-line {
    width: 100%;
}

.form-group select option {
    background: var(--white);
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 40px 0 20px;
    border-top: 2px solid rgba(75, 168, 46, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
}

.footer-brand {
    margin-bottom: 15px;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-logo-number {
    color: var(--primary-color);
    font-weight: 800;
}

.footer-logo {
    height: 45px;
    width: auto;
}

.footer-section h3 {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section p {
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.9;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
    border-color: var(--accent-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-item i {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    color: #ffffff;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

/* Back to Top */
/* Floating Call Button - Desktop Hidden */
.floating-call-btn {
    display: none;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* AOS Animation Styles */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.6s;
    transition-timing-function: ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .procedure-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-right {
        gap: 20px;
    }
    
    .contact-card {
        padding: 18px;
        margin-bottom: 15px;
    }
    
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .banner-features {
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }

    .vehicle-item {
        min-width: 380px;
        height: 280px;
    }

    .vehicle-overlay h3 {
        font-size: 1.3rem;
    }

    .vehicle-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .loading-logo {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .loading-letter {
        font-size: 2rem;
    }
    
    .loading-subtitle {
        font-size: 0.7rem;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    section {
        overflow: visible;
        width: 100%;
        max-width: 100%;
    }
    
    .hero {
        overflow: hidden !important;
        min-height: 100vh;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        max-width: 100%;
        overflow: visible;
        padding: 0 15px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .brand-item {
        padding: 30px 20px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .stat-item {
        min-width: 0;
        width: 100%;
        padding: 15px 10px;
    }
    
    .stat-item i {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        margin-top: 4px;
    }
    
    .banner-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-item {
        padding: 12px 8px;
    }
    
    .feature-item i {
        font-size: 1.1rem;
    }
    
    .feature-item span {
        font-size: 0.7rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 60px;
        padding-right: 5px;
        text-align: left;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0 !important;
        padding-left: 60px;
        padding-right: 5px;
        text-align: left;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .timeline-content {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        padding-right: 20px;
    }

    .timeline-dot {
        left: 8px !important;
        right: auto !important;
    }

    .info-details {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .nav-menu {
        position: fixed;
        top: 0px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--header-footer-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        border-right: 3px solid var(--primary-color);
        box-shadow: 0 4px 15px rgba(17, 17, 17, 0.2);
    }
    
    .nav-menu .nav-link {
        color: #ffffff;
        text-shadow: none;
        font-weight: 600;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--accent-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .call-btn {
        display: none;
    }
    
    /* Hide Back to Top button on mobile */
    .back-to-top {
        display: none !important;
    }
    
    /* Floating Call Button - Mobile Only */
    .floating-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        background: var(--gradient-primary);
        color: var(--white);
        border-radius: 50%;
        text-decoration: none;
        font-weight: 600;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(75, 168, 46, 0.5);
        transition: var(--transition);
        animation: pulseCall 2s ease-in-out infinite;
    }
    
    .floating-call-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 25px rgba(75, 168, 46, 0.7);
    }
    
    .floating-call-btn i {
        font-size: 1.3rem;
    }
    
    @keyframes pulseCall {
        0%, 100% {
            box-shadow: 0 4px 20px rgba(75, 168, 46, 0.5);
        }
        50% {
            box-shadow: 0 4px 25px rgba(75, 168, 46, 0.8);
        }
    }
    
    .hero {
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .header .container {
        height: 80px;
    }
    
    .hero-content {
        margin-top: 10px;
        padding: 15px 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .banner-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }

    .feature-item {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }
    
    .services-grid,
    .about-content {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 25px 20px 20px;
        border-radius: 16px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
        border-radius: 16px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .brands-section {
        padding: 40px 0;
    }
    
    .brands-section .section-header {
        margin-bottom: 30px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
    }
    
    .brand-item {
        padding: 20px 15px;
    }
    
    .brand-logo-img {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
        padding: 15px;
    }
    
    .brand-item h3 {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-section {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-section h3 {
        margin-bottom: 12px;
    }
    
    .footer-section p {
        margin-bottom: 12px;
    }
    
    .footer-bottom {
        padding-top: 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .vehicle-item {
        min-width: 340px;
        height: 250px;
    }

    .vehicle-overlay {
        padding: 20px;
    }

    .vehicle-overlay h3 {
        font-size: 1.2rem;
    }

    .vehicle-overlay p {
        font-size: 0.85rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .loading-logo {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .loading-letter {
        font-size: 1.5rem;
    }
    
    .loading-subtitle {
        font-size: 0.65rem;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }
    
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
    }
    
    section {
        overflow: visible;
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        padding: 0 10px;
        max-width: 100vw;
        overflow: visible;
        width: 100%;
    }
    
    .modern-form {
        padding: 20px !important;
    }
    
    .about-cta {
        padding: 30px 15px !important;
    }
    
    .hero {
        padding-top: 100px;
        min-height: 100vh;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }

    .stat-item {
        padding: 20px 15px;
        width: 100%;
        min-width: 0;
    }

    .service-card {
        padding: 20px 15px 18px;
        border-radius: 12px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 12px;
        border-radius: 12px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .brands-section {
        padding: 30px 0;
    }
    
    .brands-section .section-header {
        margin-bottom: 25px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 25px;
        width: 100%;
        max-width: 100%;
    }
    
    .brand-item {
        padding: 15px 12px;
    }
    
    .brand-logo-img {
        width: 70px;
        height: 70px;
        margin: 0 auto 12px;
        padding: 12px;
    }
    
    .brand-item h3 {
        font-size: 0.9rem;
    }
    
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-right {
        gap: 15px;
    }
    
    
    .contact-card {
        padding: 15px;
        margin-bottom: 12px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .info-card {
        padding: 30px 20px;
    }

    .timeline-item {
        padding-left: 50px;
        padding-right: 10px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .logo-image {
        height: 60%;
        max-width: 100%;
    }
    
    .header .container {
        height: 70px;
    }
    
    .hero-content {
        margin-top: 5px;
        padding: 15px 10px;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .stat-item {
        padding: 12px 8px;
    }
    
    .stat-item i {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        margin-top: 3px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }
    
    .info-banner {
        overflow-x: hidden !important;
    }
    
    .banner-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 100%;
        width: 100%;
    }

    .feature-item {
        padding: 10px 6px;
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .feature-item span {
        font-size: 0.65rem;
    }

    .vehicle-item {
        min-width: 300px;
        height: 220px;
        border-radius: 15px;
    }

    .vehicle-overlay {
        padding: 15px;
    }

    .vehicle-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .vehicle-overlay p {
        font-size: 0.8rem;
    }

    .vehicle-track {
        gap: 25px;
    }

    .procedure-image img {
        max-width: 100%;
    }

    .floating-badge {
        position: static;
        margin-top: 20px;
    }
}
