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

:root {
    --black: #050505;
    --charcoal: #111111;
    --white: #ffffff;
    --silver: #e8e8e8;
    --crimson: #C1121F;
    --gray-light: #f5f5f5;
    --gray-medium: #999999;
    --gray-dark: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.8s ease forwards 2s;
}

.loading-content {
    text-align: center;
}

.luxury-loader {
    width: 60px;
    height: 60px;
    border: 2px solid var(--silver);
    border-top: 2px solid var(--crimson);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    margin: 0 auto 30px;
}

.loading-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--crimson);
}

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

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 200, 200, 0.1);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    text-decoration: none;
}

.brand-icon {
    color: var(--crimson);
    font-size: 28px;
}

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

.nav-link {
    color: var(--silver);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crimson);
    transition: width 0.3s ease;
}

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

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

.contact-btn {
    background: var(--crimson);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--white);
    color: var(--crimson);
    box-shadow: 0 8px 24px rgba(193, 18, 31, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 40px 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 18, 31, 0.1) 0%, rgba(5, 5, 5, 0.8) 100%);
}

.hero-image {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 700px;
    opacity: 0.3;
    object-fit: cover;
    animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-50%) translateX(100px); }
    to { opacity: 0.3; transform: translateY(-50%) translateX(0); }
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--silver);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

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

/* Buttons */
.btn {
    padding: 14px 32px;
    border: 2px solid var(--crimson);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--crimson);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(193, 18, 31, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(193, 18, 31, 0.5);
    background: #a00d1b;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--silver);
}

.btn-outline:hover {
    background: var(--silver);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    width: 100%;
}

.btn-small {
    padding: 10px 20px;
    font-size: 12px;
    border: none;
    background: var(--crimson);
    color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-small:hover {
    background: #a00d1b;
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--crimson);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse::before {
    content: '';
    width: 2px;
    height: 8px;
    background: var(--crimson);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(12px); }
}

/* Statistics Section */
.statistics {
    background: var(--charcoal);
    padding: 80px 40px;
    border-top: 1px solid rgba(200, 200, 200, 0.1);
    border-bottom: 1px solid rgba(200, 200, 200, 0.1);
}

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

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--crimson);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--silver);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--white) 0%, var(--silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--silver);
    margin-bottom: 60px;
    font-weight: 300;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.05) 0%, rgba(193, 18, 31, 0.05) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(200, 200, 200, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--crimson);
    box-shadow: 0 20px 60px rgba(193, 18, 31, 0.2);
}

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

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: var(--silver);
    line-height: 1.7;
}

/* Fleet Section */
.fleet {
    padding: 100px 40px;
    background: var(--black);
}

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

.fleet-card {
    background: linear-gradient(135deg, var(--charcoal) 0%, rgba(193, 18, 31, 0.1) 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(200, 200, 200, 0.1);
    transition: all 0.4s ease;
    transform-origin: center;
}

.fleet-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--crimson);
    box-shadow: 0 24px 60px rgba(193, 18, 31, 0.3);
}

.fleet-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--crimson);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.badge.elite {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.badge.special {
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
}

.fleet-content {
    padding: 30px;
}

.fleet-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.vehicle-description {
    font-size: 14px;
    color: var(--silver);
    margin-bottom: 20px;
}

.vehicle-specs {
    list-style: none;
    margin-bottom: 20px;
}

.vehicle-specs li {
    font-size: 13px;
    color: var(--silver);
    padding: 6px 0;
    border-bottom: 1px solid rgba(200, 200, 200, 0.1);
}

.fleet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(200, 200, 200, 0.1);
}

.price {
    font-size: 16px;
    font-weight: 700;
    color: var(--crimson);
}

/* Services Section */
.services {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

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

.service-box {
    background: rgba(193, 18, 31, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(193, 18, 31, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.service-box:hover {
    background: rgba(193, 18, 31, 0.1);
    transform: translateY(-10px);
    border-color: var(--crimson);
}

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

.service-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 15px;
    color: var(--silver);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 40px;
    background: var(--black);
}

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(193, 18, 31, 0.1) 0%, rgba(200, 200, 200, 0.05) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(200, 200, 200, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--crimson);
    box-shadow: 0 16px 48px rgba(193, 18, 31, 0.2);
}

.stars {
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(200, 200, 200, 0.1);
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--crimson);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Booking Section */
.booking {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.booking-form {
    background: linear-gradient(135deg, rgba(193, 18, 31, 0.05) 0%, rgba(200, 200, 200, 0.05) 100%);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(200, 200, 200, 0.1);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-row .full-width {
    grid-column: 1 / -1;
}

/* Add this after the .form-group select styles */

.form-group select {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 200, 200, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* FIX: Make dropdown options visible */
.form-group select option {
    background: var(--charcoal);
    color: var(--white);
    padding: 10px;
}

.form-group select option:hover {
    background: var(--crimson);
    color: var(--white);
}: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--silver);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 200, 200, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(200, 200, 200, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--crimson);
    box-shadow: 0 0 20px rgba(193, 18, 31, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 200, 200, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    background: rgba(193, 18, 31, 0.1);
    border-color: var(--crimson);
}

.payment-option input {
    margin-right: 12px;
    cursor: pointer;
}

.payment-option span {
    font-size: 14px;
}

.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.booking-info-card,
.contact-card {
    background: linear-gradient(135deg, rgba(193, 18, 31, 0.1) 0%, rgba(200, 200, 200, 0.05) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(200, 200, 200, 0.1);
}

.booking-info-card h3,
.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.booking-info-card ul {
    list-style: none;
}

.booking-info-card li {
    font-size: 13px;
    color: var(--silver);
    padding: 10px 0;
    border-bottom: 1px solid rgba(200, 200, 200, 0.1);
}

.contact-card p {
    font-size: 13px;
    color: var(--silver);
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 200, 200, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(193, 18, 31, 0.1);
    border-color: var(--crimson);
}

.contact-method .icon {
    font-size: 24px;
}

.contact-method p {
    font-size: 11px;
    color: var(--silver);
    margin: 0;
}

.contact-method strong {
    font-size: 13px;
    color: var(--white);
}

/* FAQ Section */
.faq {
    padding: 100px 40px;
    background: var(--black);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(200, 200, 200, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--crimson);
    box-shadow: 0 8px 24px rgba(193, 18, 31, 0.2);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: linear-gradient(135deg, rgba(193, 18, 31, 0.05) 0%, rgba(200, 200, 200, 0.05) 100%);
    border: none;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(193, 18, 31, 0.1) 0%, rgba(200, 200, 200, 0.08) 100%);
}

.faq-icon {
    font-size: 20px;
    color: var(--crimson);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 24px;
    font-size: 14px;
    color: var(--silver);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.info-box {
    background: linear-gradient(135deg, rgba(193, 18, 31, 0.1) 0%, rgba(200, 200, 200, 0.05) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(200, 200, 200, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-8px);
    border-color: var(--crimson);
    box-shadow: 0 16px 48px rgba(193, 18, 31, 0.2);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.info-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-box p {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.6;
}

.info-box a {
    color: var(--crimson);
    text-decoration: none;
    font-weight: 600;
}

.info-box a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(200, 200, 200, 0.1);
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(200, 200, 200, 0.1);
    padding: 60px 40px 20px;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--crimson);
}

.footer-section p {
    font-size: 13px;
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    font-size: 13px;
    color: var(--silver);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--crimson);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    font-size: 12px;
    color: var(--silver);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border: 1px solid rgba(200, 200, 200, 0.2);
    border-radius: 50px;
}

.social-links a:hover {
    background: var(--crimson);
    border-color: var(--crimson);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(200, 200, 200, 0.1);
    font-size: 12px;
    color: var(--gray-medium);
}

.footer-bottom a {
    color: var(--crimson);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 1rem 0;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 15px 20px;
        display: block;
    }

    .hero {
        min-height: 70vh;
        padding: 80px 20px 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .section-title {
        font-size: 36px;
    }

    .features-grid,
    .fleet-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .statistics .container {
        grid-template-columns: 1fr 1fr;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .fleet-card {
        margin: 0;
    }

    .booking-sidebar {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .section-title {
        font-size: 28px;
    }

    .statistics .container {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    .booking-form {
        padding: 30px;
    }

    .booking-sidebar {
        display: none;
    }

    .booking-wrapper {
        gap: 0;
    }
}
/* Footer Address */

.address-link{
    display:block;
    margin-top:20px;
    color:#cccccc;
    text-decoration:none;
    line-height:1.7;
    font-size:15px;
    transition:0.3s;
}

.address-link:hover{
    color:#d71920;
}
.contact-button {
  width: 120px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  color: #fff;
  text-align: center;
}
