/* ============================================
   MAIN STYLES - IMPORTS
   ============================================ */
@import url('header.css');
@import url('footer.css');
@import url('hero.css');
@import url('services.css');
@import url('vehicles.css');
@import url('vehicle-card.css');
@import url('testimonials.css');
@import url('contact.css');
@import url('responsive.css');

/* ============================================
   VARIABLES GLOBALES
   ============================================ */
:root {
    --primary: #e94f2b;
    --primary-dark: #c13b1a;
    --secondary: #0a2540;
    --secondary-light: #1a3a5c;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.highlight {
    color: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../images/hero-car.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(233, 79, 43, 0.2);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary);
}

.hero-text h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 79, 43, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-light);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    min-width: 130px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-number span {
    font-size: 36px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.stars {
    color: #ffc107;
    font-size: 12px;
    margin-top: 8px;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(233, 79, 43, 0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(233, 79, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
}

/* ============================================
   ENGAGEMENT
   ============================================ */
.engagement {
    padding: 100px 0;
    background: var(--white);
}

.engagement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.engagement-text .section-tag.white {
    background: rgba(233, 79, 43, 0.15);
    color: var(--primary);
}

.engagement-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.engagement-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.engagement-stat {
    text-align: center;
}

.engagement-stat .number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.engagement-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-gray);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.feature i {
    color: var(--primary);
}

.engagement-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-hover);
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);
}

.instagram-content {
    text-align: center;
}

.instagram-icon {
    font-size: 60px;
    color: #e4405f;
    margin-bottom: 20px;
}

.instagram-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.instagram-text p {
    max-width: 500px;
    margin: 0 auto 30px;
    color: var(--gray);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    color: white;
    border: none;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 79, 43, 0.3);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: rgba(233, 79, 43, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-stars i {
    color: #ffc107;
    margin-right: 3px;
}

.testimonial-stars i:not(.active) {
    color: #ddd;
}

.testimonial-card h4 {
    margin-top: 15px;
    color: var(--primary);
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    padding: 50px;
    background: var(--secondary);
    color: var(--white);
}

.contact-info .section-tag {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info h2 .highlight {
    color: var(--primary);
}

.contact-info > p {
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.contact-form {
    padding: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

input, textarea, select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 79, 43, 0.1);
}

textarea {
    resize: vertical;
    margin-bottom: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0a1a2a;
    color: #8892b0;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo span {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.footer-logo span span {
    color: var(--primary);
}

.footer-logo p {
    margin-top: 15px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #8892b0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-text h1 { font-size: 42px; }
    .engagement-content { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    .hamburger { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }
    
    .nav-menu.active { left: 0; }
    
    .hero-text h1 { font-size: 32px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { justify-content: center; }
    
    .section-header h2 { font-size: 32px; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .vehicle-grid { grid-template-columns: 1fr; }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.advantage-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e94f2b, #ff8a5c);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: rgba(233, 79, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: #e94f2b;
    transform: scale(1.1);
}

.advantage-icon i {
    font-size: 36px;
    color: #e94f2b;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon i {
    color: white;
}

.advantage-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.advantage-card p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 14px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .advantage-card {
        padding: 25px 20px;
    }
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    .advantage-icon i {
        font-size: 28px;
    }
    .advantage-card h3 {
        font-size: 18px;
    }
}