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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #003d7a;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #003d7a;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #003d7a;
}

p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #555;
    max-width: 800px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #003d7a 0%, #0056b3 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center !important;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p.hero-subtitle,
.hero p.hero-subtitle,
p.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #e6f1ff;
    font-weight: 300;
    text-align: center !important;
    display: block;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center;
}

.cta-button {
    display: inline-block;
    background: #ff6900;
    color: white;
    padding: 18px 40px;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.3);
}

.cta-button:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 0, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: #f8fafe;
}

/* Two-Column Layout */
.two-column {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.two-column:last-child {
    margin-bottom: 0;
}

.two-column .content {
    flex: 1;
}

.two-column .image {
    flex: 0 0 45%;
}

.image-left .image {
    order: 1;
}

.image-left .content {
    order: 2;
}

.image-right .image {
    order: 2;
}

.image-right .content {
    order: 1;
}

/* Image Placeholders - 4:3 Aspect Ratio */
.intro-image-placeholder,
.performance-image-placeholder,
.safety-image-placeholder,
.technology-image-placeholder,
.capability-image-placeholder,
.interior-image-placeholder,
.cargo-image-placeholder,
.colors-image-placeholder,
.environmental-image-placeholder,
.reserve-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f0f4f8;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #718096;
    text-align: center;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.intro-image-placeholder img,
.performance-image-placeholder img,
.safety-image-placeholder img,
.technology-image-placeholder img,
.capability-image-placeholder img,
.interior-image-placeholder img,
.cargo-image-placeholder img,
.colors-image-placeholder img,
.environmental-image-placeholder img,
.reserve-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Trim Comparison Table */
.trim-comparison {
    background: white;
    padding: 80px 0;
}

.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.comparison-table th {
    background: #003d7a;
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
}

.comparison-table th .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6900;
    margin-top: 5px;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
    font-size: 1rem;
}

.comparison-table tr:hover {
    background-color: #f8fafe;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #2d3748;
    background: #f7fafc;
}

.included {
    color: #38a169;
    font-size: 1.5rem;
    font-weight: bold;
}

.not-included {
    color: #e53e3e;
    font-size: 1.2rem;
}

.table-note {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 1rem;
    text-align: center;
}

/* Reserve Section */
.reserve {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

/* Reservation Form Styles */
.reservation-form {
    max-width: 600px;
    margin: 4rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #003d7a;
    text-align: center;
    margin-bottom: 1rem;
}

.form-asterisk-description {
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-align: left !important;
}

.asterisk {
    color: #e53e3e;
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: #003d7a;
    box-shadow: 0 0 0 3px rgba(0, 61, 122, 0.1);
}

.form-control:hover {
    border-color: #cbd5e0;
}

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

.form-submit {
    text-align: center;
    margin: 2rem 0;
}

.submit-button {
    background: #ff6900;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.3);
}

.submit-button:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 0, 0.4);
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.form-disclaimer {
    text-align: center;
    margin-top: 1rem;
}

.form-disclaimer p {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
}

.form-disclaimer a {
    color: #003d7a;
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-image-placeholder {
        height: 250px;
        margin: 2rem 0;
    }
    
    /* Mobile: Stack columns vertically */
    .two-column {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .two-column .image {
        flex: none;
        width: 100%;
    }
    
    .image-left .image,
    .image-right .image {
        order: 1;
    }
    
    .image-left .content,
    .image-right .content {
        order: 2;
    }
    
    /* Form responsive styles */
    .reservation-form {
        margin: 2rem auto 0;
        padding: 2rem 1.5rem;
    }
    
    .form-heading {
        font-size: 1.75rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .comparison-table th .price {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-image-placeholder {
        height: 200px;
    }
    
    .two-column {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .intro-image-placeholder,
    .performance-image-placeholder,
    .safety-image-placeholder,
    .technology-image-placeholder,
    .capability-image-placeholder,
    .interior-image-placeholder,
    .environmental-image-placeholder,
    .reserve-image-placeholder,
    .cargo-image-placeholder,
    .colors-image-placeholder {
        font-size: 0.8rem;
    }
    
    /* Form mobile styles */
    .reservation-form {
        margin: 1.5rem auto 0;
        padding: 1.5rem 1rem;
    }
    
    .form-heading {
        font-size: 1.5rem;
    }
    
    .form-control {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 5px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .hero {
        background: #003d7a !important;
        -webkit-print-color-adjust: exact;
    }
    
    .cta-button {
        display: none;
    }
    
    section {
        padding: 40px 0;
        page-break-inside: avoid;
    }
}