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

:root {
    --primary-red: #E31E24;
    --dark-red: #B91419;
    --black: #1a1a1a;
    --dark-gray: #2a2a2a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --accent-silver: #c0c0c0;
    --text-gray: #666;
}

html {
    scroll-behavior: smooth;
}

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

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
}

.logo .mase {
    color: var(--primary-red);
}

.logo .auto {
    color: var(--white);
    margin-left: 5px;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--primary-red);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

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

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(227, 30, 36, 0.03) 10px,
            rgba(227, 30, 36, 0.03) 20px
        );
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(227, 30, 36, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 40px auto;
}

.hero-logo {
    display: flex;
    justify-content: flex-end;
    animation: fadeInDown 1s ease-out;
}

.hero-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--primary-red);
}

.hero-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(227, 30, 36, 0.5);
}

.auto-red {
    color: var(--primary-red);
    display: block;
    font-size: 5.5rem;
    margin-top: -20px;
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: center;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--accent-silver);
    text-align: center;
}

.hero-location {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0;
    color: var(--white);
    opacity: 0.9;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-promo {
    margin: 0 0 40px 0;
    text-align: center;
}

.promo-badge {
    display: inline-block;
    background: var(--primary-red);
    padding: 25px 40px;
    border-radius: 10px;
    transform: rotate(-3deg);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(-3deg) translateY(0px); }
    50% { transform: rotate(-3deg) translateY(-10px); }
}

.promo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    display: block;
    line-height: 1;
}

.promo-subtext {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

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

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.btn-package {
    width: 100%;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    margin-top: 20px;
}

.btn-package:hover {
    background: var(--primary-red);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.phone-icon {
    font-size: 1.3rem;
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: 60px 0 40px 0;
    background: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===========================
   Packages Section
   =========================== */
.packages {
    padding: 60px 0 40px 0;
    background: linear-gradient(to bottom, var(--light-gray) 0%, var(--white) 100%);
}

.section-title {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: var(--black);
}

.section-title .highlight {
    color: var(--primary-red);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

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

.package-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 2px solid var(--primary-red);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-align: center;
    color: var(--black);
    margin-bottom: 20px;
}

.package-pricing {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.price-item:first-child {
    border-bottom: 1px solid var(--white);
    margin-bottom: 10px;
    padding-bottom: 15px;
}

.vehicle-type {
    font-weight: 600;
    color: var(--black);
}

.price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-red);
    font-weight: 700;
}

.package-includes h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 700;
}

.package-includes ul {
    list-style: none;
}

.package-includes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===========================
   Add-ons Section
   =========================== */
.addons {
    background: var(--dark-gray);
    padding: 50px;
    border-radius: 15px;
    margin-top: 40px;
}

.addons-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    text-align: center;
    color: var(--white);
    margin-bottom: 30px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.addons-grid .addon-item {
    grid-column: span 2;
}

.addons-grid .addon-item:nth-child(4) {
    grid-column: 2 / 4;
}

.addons-grid .addon-item:nth-child(5) {
    grid-column: 4 / 6;
}

.addon-item {
    background: var(--black);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--primary-red);
    flex-wrap: wrap;
    gap: 10px;
}

.addon-name {
    color: var(--white);
    font-weight: 600;
    flex: 1;
    min-width: 150px;
}

.addon-price {
    color: var(--primary-red);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
}

.addon-price sub {
    font-size: 1rem;
}

.pricing-note {
    text-align: center;
    color: var(--accent-silver);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* ===========================
   Services Section
   =========================== */
.services {
    padding: 60px 0 40px 0;
    background: var(--white);
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.services-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--black);
}

.services-text p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.commitment-list {
    list-style: none;
}

.commitment-list li {
    padding: 12px 0;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.services-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 60px 0 40px 0;
    background: var(--light-gray);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: 60px 0 40px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--primary-red);
}

/* Book Now card - prominent CTA */
.contact-card.book-now-card {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    border-left-color: transparent;
    box-shadow: 0 12px 30px rgba(227, 30, 36, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card.book-now-card h3 {
    color: var(--white);
}

.contact-card.book-now-card .contact-link {
    color: var(--primary-red);
    background: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-card.book-now-card .contact-link:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-card.book-now-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(227, 30, 36, 0.35);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--black);
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--white);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
}

/* Honeypot field - hidden from users but visible to bots */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.promo-reminder {
    background: var(--primary-red);
    color: var(--white);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 0 20px;
}

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

.footer-logo h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-logo .mase {
    color: var(--primary-red);
}

.footer-logo .auto {
    color: var(--white);
}

.footer-logo p {
    color: var(--accent-silver);
    font-size: 0.95rem;
}

.footer-contact p {
    margin-bottom: 8px;
    color: var(--accent-silver);
}

.footer-contact a {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--dark-gray);
    color: var(--text-gray);
}

/* ===========================
   Promo Popup Modal
   =========================== */
.promo-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease-in;
}

.promo-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.promo-modal-content {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 3px solid var(--primary-red);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.promo-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    font-weight: bold;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.promo-modal-close:hover {
    color: var(--primary-red);
}

.promo-modal-badge {
    display: inline-block;
    background: var(--primary-red);
    padding: 30px 50px;
    border-radius: 15px;
    transform: rotate(-3deg);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.5);
    margin-bottom: 30px;
}

.promo-modal-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    display: block;
    line-height: 1;
    color: var(--white);
}

.promo-modal-subtext {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
}

.promo-modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.promo-modal-description {
    font-size: 1.1rem;
    color: var(--accent-silver);
    margin-bottom: 30px;
    line-height: 1.6;
}

.promo-modal-btn {
    margin-top: 10px;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    .hero-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-logo {
        justify-content: center;
    }

    .hero-info {
        text-align: center;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .auto-red {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .promo-text {
        font-size: 2.5rem;
    }

    .services-content,
    .contact-content,
    .footer-content,
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

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

@media (max-width: 576px) {
    .hero-logo img {
        max-width: 250px;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-location {
        font-size: 1rem;
    }

    .promo-modal-content {
        padding: 40px 25px;
    }

    .promo-modal-badge {
        padding: 25px 35px;
    }

    .promo-modal-text {
        font-size: 3rem;
    }

    .promo-modal-subtext {
        font-size: 1.2rem;
    }

    .promo-modal-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .auto-red {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .promo-badge {
        padding: 20px 30px;
    }

    .promo-text {
        font-size: 2rem;
    }

    .promo-subtext {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .addons {
        padding: 30px 15px;
    }

    .addons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .addon-item {
        padding: 15px;
        font-size: 0.95rem;
    }

    .addons-grid .addon-item:nth-child(4),
    .addons-grid .addon-item:nth-child(5) {
        grid-column: span 1;
        margin-left: 0;
        margin-right: 0;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}
