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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
    width: 100%;
}

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

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

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6b35;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

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

.cta-btn {
    background: #ff6b35;
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.cta-btn::after {
    display: none;
}

.cta-btn i {
    margin-right: 5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Header scrolled state */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .hamburger {
    background: rgba(255, 107, 53, 0.1);
}

.header.scrolled .hamburger:hover {
    background: rgba(255, 107, 53, 0.2);
}

.header.scrolled .hamburger span {
    background: #ff6b35;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center center/cover;
    opacity: 0.9;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #ff6b35;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.feature-item i {
    font-size: 1.2rem;
    color: #ff6b35;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Vehicles Section */
.vehicles {
    padding: 100px 0;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
}

.vehicle-image {
    position: relative;
    height: 250px;
    background: #f0f0f0;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vehicle-card:hover .vehicle-overlay {
    opacity: 1;
}

.btn-quote {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

.vehicle-info {
    padding: 25px;
}

.vehicle-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.vehicle-type {
    color: #ff6b35;
    font-weight: 500;
    margin-bottom: 15px;
}

.vehicle-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.vehicle-specs span {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.vehicle-specs i {
    color: #ff6b35;
    margin-right: 5px;
}

.vehicle-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vehicle-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 40px;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: left;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.contact-details p {
    color: #666;
    margin-bottom: 5px;
    line-height: 1.6;
}

.contact-details a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff6b35;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-contact i {
    color: #ff6b35;
    margin-right: 8px;
    width: 15px;
}

.map-container {
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 150px;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ff6b35;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #e55a2b;
}

.map-link i {
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 15px;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Gallery Section - Media Section Style */
.media-section {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Gallery Tab Buttons */
.gallery-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin: 5px;
}

.gallery-tab-btn:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    transform: translateY(-2px);
    text-decoration: none;
}

.gallery-tab-btn.active {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.gallery-tab-btn i {
    font-size: 1.1rem;
}

/* Gallery Tab Content */
.gallery-tab-content {
    display: none;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.gallery-tab-content.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.5s ease;
}

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

/* Gallery Items - 3 per row (col-md-4) */
.gallery-item {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

/* Video specific styles */
.video-item video {
    background: #f8f9fa;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    will-change: opacity;
}

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

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Reference specific styles */
.gallery-info {
    padding: 15px;
    background: white;
    border-radius: 0 0 15px 15px;
}

.gallery-info h6 {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.gallery-reference-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-item {
        height: 200px;
    }
    
    .gallery-item img,
    .gallery-item video {
        height: 200px;
    }
    
    .gallery-overlay i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        height: 180px;
    }
    
    .gallery-item img,
    .gallery-item video {
        height: 180px;
    }
    
    .gallery-tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: 3px;
    }
    
    .gallery-tab-btn i {
        font-size: 1rem;
    }
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-item-photo,
    .gallery-item-video,
    .gallery-item-reference {
        height: 150px;
    }
    
    .gallery-photo,
    .gallery-video-thumb {
        height: 150px;
    }
    
    .gallery-reference-img {
        height: 120px;
    }
    
    .gallery-reference-placeholder {
        height: 120px;
    }
    
    .gallery-info h6 {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .gallery-item-photo,
    .gallery-item-video,
    .gallery-item-reference {
        height: 120px;
    }
    
    .gallery-photo,
    .gallery-video-thumb {
        height: 120px;
    }
    
    .gallery-reference-img {
        height: 100px;
    }
    
    .gallery-reference-placeholder {
        height: 100px;
    }
}

/* Video Item Styles */
.video-item {
    text-align: center;
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-play-btn i {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-thumbnail:hover .video-play-btn {
    background: #ff6b35;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Reference Item Styles */
.reference-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-5px);
}

.reference-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.reference-item h5 {
    margin: 15px 0 5px 0;
    color: #333;
    font-weight: 600;
}

.reference-item .text-muted {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Modal (Lightbox) Styles */
.modal-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.modal-body img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
/* Tablet Version */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 8px 5px;
    }
    
    .cta-btn {
        padding: 8px 15px !important;
        font-size: 0.8rem !important;
        border-radius: 20px;
    }
    
    .cta-btn i {
        font-size: 0.8rem;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    .hero {
        min-height: 80vh;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .services-grid,
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-content,
    .contact-info-grid {
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1;
    }
}

/* Mobile Version */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        color: #333;
        font-size: 1.1rem;
        padding: 15px 20px;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu li a:hover {
        background: rgba(255, 107, 53, 0.1);
        color: #ff6b35;
    }
    
    /* Mobile CTA Button Styling */
    .nav-menu .cta-btn {
        background: linear-gradient(45deg, #ff6b35, #ffa726) !important;
        color: white !important;
        font-weight: 600;
        margin: 20px auto;
        max-width: 200px;
        border-radius: 25px;
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        transform: none !important;
    }
    
    .nav-menu .cta-btn:hover {
        background: linear-gradient(45deg, #e55a2b, #ff9800) !important;
        color: white !important;
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
        transform: translateY(-2px) !important;
    }
    
    .nav-menu .cta-btn i {
        margin-right: 8px;
    }
    
    .nav-link {
        padding: 15px 20px;
        display: block;
        width: 100%;
    }
    
    .cta-btn {
        margin: 20px auto !important;
        width: 200px !important;
        text-align: center !important;
    }
    
    .hero {
        min-height: 90vh;
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .btn {
        width: 250px;
        text-align: center;
        padding: 12px 20px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .feature-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 10px 20px;
        border-radius: 25px;
        backdrop-filter: blur(10px);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vehicle-card {
        margin: 0 10px;
    }
    
    .about-content,
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        justify-content: space-around;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .map-container iframe {
        height: 120px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hamburger {
        padding: 6px;
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 20px 15px;
    }
    
    .nav-menu li {
        margin: 12px 0;
    }
    
    .nav-menu li a {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .nav-menu .cta-btn {
        font-size: 0.95rem;
        padding: 12px 20px !important;
        max-width: 180px;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    .header {
        padding: 0 10px;
        height: 70px;
    }
}

/* Gallery Responsive Design */
@media (max-width: 768px) {
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-tab-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin: 3px;
    }
    
    .gallery-tab-btn i {
        font-size: 1rem;
    }
    
    .video-thumbnail img {
        height: 160px;
    }
    
    .video-play-btn {
        width: 50px;
        height: 50px;
    }
    
    .video-play-btn i {
        font-size: 1.2rem;
    }
    
    .reference-item img {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .gallery-tab-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
        margin: 2px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 80px;
    }
    
    .gallery-tab-btn i {
        font-size: 1.2rem;
    }
    
    .text-center.mb-5 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .video-thumbnail img {
        height: 140px;
    }
    
    .reference-item img {
        height: 140px;
    }
}
/* Desktop optimizations */
@media (min-width: 1025px) {
    .hero {
        min-height: 75vh;
        padding: 100px 0 50px;
    }
    
    .hero-content {
        max-width: 700px;
    }
    
    .hero-title {
        font-size: 3.2rem;
        line-height: 1.1;
        margin-bottom: 18px;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 35px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        margin-bottom: 45px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

/* Debug info - can be hidden in production */
.debug-info {
    font-size: 10px !important;
    color: #999 !important;
    margin-top: 5px !important;
    padding: 2px 5px !important;
    background: rgba(0,0,0,0.1) !important;
    border-radius: 3px !important;
    font-family: monospace !important;
}

/* Hide debug info on mobile */
@media (max-width: 768px) {
    .debug-info {
        display: none !important;
    }
}
