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

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

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

/* Header Styles */
.main-header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo h1 {
    color: #cc0000;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: -5px;
}

.logo p {
    font-size: 9px;
    color: #666;
}

.tagline {
    border-left: 2px solid #ddd;
    padding-left: 15px;
}

.tagline strong {
    font-size: 16px;
    display: block;
    margin-bottom: -3px;
}

.tagline p {
    font-size: 9px;
    color: #666;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #cc0000;
}

.header-icons {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.mobile-menu-icon {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-icon span {
    width: 25px;
    height: 3px;
    background: #333;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #ffd4a3 0%, #ffb3ba 50%, #bae1ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: url('https://images.unsplash.com/photo-1617814076367-b759c7d7e738?w=800&h=600&fit=crop') center/cover;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.diwali-text {
    color: #6b46c1;
    font-style: italic;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-badge {
    background: #003d99;
    color: white;
    padding: 12px 25px;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 14px;
}

.hero-badge strong {
    font-size: 18px;
}

.explore-btn {
    background: #cc0000;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50px;
    transition: background 0.3s;
}

.explore-btn:hover {
    background: #990000;
}

.hero-badge-right {
    position: absolute;
    top: 50px;
    right: 100px;
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-badge-right h3 {
    color: #cc0000;
    font-size: 20px;
}

.benefits-badge {
    position: absolute;
    bottom: 100px;
    right: 100px;
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
}

.benefit-text .large-price {
    font-size: 36px;
    font-weight: bold;
    color: #cc0000;
    margin: 5px 0;
}

.enjoy-text {
    background: #003d99;
    color: white;
    padding: 8px 15px;
    margin-top: 10px;
    font-size: 12px;
    border-radius: 5px;
}

.hero-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.hero-prev, .hero-next {
    background: rgba(255,255,255,0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.hero-prev:hover, .hero-next:hover {
    background: white;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
}

.disclaimer {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 11px;
    color: #666;
    z-index: 3;
}

/* Tab Navigation */
.tab-navigation {
    background: linear-gradient(to bottom, rgba(255,212,163,0.3), white);
    padding: 30px 0;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.tab {
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 10px 20px;
    position: relative;
    transition: color 0.3s;
}

.tab.active {
    color: #333;
    font-weight: bold;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #cc0000;
}

/* Lineup Section */
.lineup-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, white, rgba(255,212,163,0.1));
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 30px;
    background: linear-gradient(135deg, rgba(255,100,100,0.3), rgba(255,100,100,0.1));
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.section-header p {
    color: #666;
    font-size: 16px;
}

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

.car-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.offers-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    border: 2px solid #cc0000;
    color: #cc0000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.car-image {
    width: 100%;
    height: 180px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.car-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.price {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.car-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.expert-link {
    color: #cc0000;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    transition: color 0.3s;
}

.expert-link:hover {
    color: #990000;
}

.test-drive-btn {
    background: #cc0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.test-drive-btn:hover {
    background: #990000;
}

/* Navigation Cards Section */
.navigation-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, rgba(255,212,163,0.1), white);
}

.navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.nav-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
}

.nav-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
}

.nav-content {
    flex: 1;
}

.nav-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.nav-content p {
    font-size: 13px;
    color: #666;
}

.nav-arrow {
    font-size: 24px;
    color: #cc0000;
}

/* Press Section */
.press-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, white, rgba(255,212,163,0.1));
}

.press-content {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
}

.press-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.press-content h3 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.read-more {
    color: #cc0000;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s;
}

.read-more:hover {
    color: #990000;
}

/* Newsletter Section */
.newsletter-section {
    background: #2a2a2a;
    padding: 60px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.newsletter-text h2::after {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 30px;
    background: linear-gradient(135deg, rgba(255,100,100,0.5), rgba(255,100,100,0.2));
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.newsletter-text p {
    color: #aaa;
    font-size: 18px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 400px;
}

.newsletter-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
}

.get-otp-btn {
    background: #cc0000;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.get-otp-btn:hover {
    background: #990000;
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(to bottom, rgba(255,212,163,0.1), white);
    padding: 30px 0;
}

.disclaimer-link {
    color: #cc0000;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s;
}

.disclaimer-link:hover {
    color: #990000;
}

/* Footer */
.main-footer {
    background: #f5f5f5;
    padding: 60px 0 30px;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: #cc0000;
    font-size: 32px;
    margin-bottom: -5px;
}

.footer-logo p {
    font-size: 10px;
    color: #666;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 3px;
}

.footer-subtitle {
    font-size: 10px;
    color: #666;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #cc0000;
}

/* Footer Bottom */
.footer-bottom {
    background: #e0e0e0;
    padding: 30px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.contact-info h5,
.company-info h5 {
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-info p,
.company-info p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.legal-links {
    font-size: 12px;
    color: #666;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #cc0000;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #bbb;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: background 0.3s;
}

.social-icon:hover {
    background: #cc0000;
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #cc0000;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: background 0.3s, transform 0.3s;
    z-index: 999;
}

.fab:hover {
    background: #990000;
    transform: rotate(45deg);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Filter Section */
.filter-section {
    padding: 40px 0;
    background: white;
}

.filter-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.filter-btn.active,
.filter-btn:hover {
    background: #cc0000;
    color: white;
    border-color: #cc0000;
}

/* Cars Detailed Section */
.cars-detailed-section {
    padding: 60px 0;
    background: #f8f8f8;
}

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

.car-detail-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.car-detail-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.car-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #cc0000;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.hybrid-badge {
    background: #00a86b;
}

.car-detail-content {
    padding: 25px;
}

.car-detail-content h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.car-type {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

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

.car-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
}

.spec {
    text-align: center;
}

.spec-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.spec-value {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #1a1a1a;
}

.car-detail-actions {
    display: flex;
    gap: 15px;
}

.primary-btn {
    flex: 1;
    background: #cc0000;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.primary-btn:hover {
    background: #990000;
}

.secondary-btn {
    flex: 1;
    background: white;
    color: #cc0000;
    border: 2px solid #cc0000;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background: #cc0000;
    color: white;
}

/* Compare Section */
.compare-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(204,0,0,0.1), rgba(153,0,0,0.1));
    text-align: center;
}

.compare-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.compare-section p {
    color: #666;
    margin-bottom: 30px;
}

.compare-btn {
    background: #cc0000;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.compare-btn:hover {
    background: #990000;
}

/* Service Features Section */
.service-features-section {
    padding: 60px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

/* Service Types Section */
.service-types-section {
    padding: 60px 0;
    background: #f8f8f8;
}

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

.service-type-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-content > p {
    color: #666;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00a86b;
    font-weight: bold;
}

.service-btn {
    width: 100%;
    background: #cc0000;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.service-btn:hover {
    background: #990000;
}

/* Packages Section */
.packages-section {
    padding: 60px 0;
    background: white;
}

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

.package-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.package-card:hover,
.package-card.featured {
    border-color: #cc0000;
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(204,0,0,0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #cc0000;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.package-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.package-price {
    font-size: 36px;
    font-weight: bold;
    color: #cc0000;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00a86b;
    font-weight: bold;
}

.package-btn {
    width: 100%;
    background: #cc0000;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.package-btn:hover {
    background: #990000;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #cc0000, #990000);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    background: white;
    color: #cc0000;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Options Section */
.contact-options-section {
    padding: 60px 0;
    background: white;
}

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

.contact-option-card {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.contact-option-card:hover {
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.option-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-option-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.option-detail {
    font-size: 18px;
    font-weight: bold;
    color: #cc0000;
    margin-bottom: 5px;
}

.option-text {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

.option-btn {
    background: #cc0000;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.option-btn:hover {
    background: #990000;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-info > p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cc0000;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cc0000;
}

.submit-btn {
    width: 100%;
    background: #cc0000;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #990000;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: white;
}

.map-container {
    margin-top: 30px;
}

.map-placeholder {
    background: #f0f0f0;
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    padding: 40px;
}

.map-placeholder p:first-child {
    font-size: 48px;
}

.map-placeholder p:last-of-type {
    color: #666;
    max-width: 500px;
}

.directions-btn {
    background: #cc0000;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.directions-btn:hover {
    background: #990000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-icon {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 56px;
    }
    
    .hero-badge-right,
    .benefits-badge {
        right: 40px;
    }
    
    .navigation-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cars-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .tagline {
        display: none;
    }
    
    .hero-section {
        height: 500px;
    }
    
    .hero-section::before {
        width: 100%;
        right: 0;
        opacity: 0.5;
    }
    
    .hero-text h2 {
        font-size: 36px;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-badge-right {
        top: 20px;
        right: 20px;
        font-size: 14px;
    }
    
    .benefits-badge {
        bottom: 80px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .benefit-text .large-price {
        font-size: 28px;
    }
    
    .car-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom .container {
        flex-direction: column;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .car-specs {
        grid-template-columns: 1fr;
    }
    
    .car-detail-actions {
        flex-direction: column;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 22px;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-badge {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .explore-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header h2::after {
        display: none;
    }
    
    .nav-card {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-text h2 {
        font-size: 36px;
    }
    
    .newsletter-text h2::after {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .fab {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .page-hero p {
        font-size: 14px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    .car-detail-content h3 {
        font-size: 22px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .package-card h3 {
        font-size: 20px;
    }
    
    .package-price {
        font-size: 28px;
    }
    
    .form-info h2 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 25px;
    }
}
