/* Booking Page Styling */
:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --gold: #D4AF37;
    --light-gold: #F5EEC8;
    --white: #ffffff;
    --gray: #808080;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0 0 20px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header and Navigation - Consistent with other pages */
header {
    background-color: var(--primary-black);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}
.logo h1 {
    margin: 0 0 0 30px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s ease-out;
}

.logo span {
    color: var(--gold);
    position: relative;
    display: inline-block;
    animation: shimmer 3s infinite;
}

nav,
nav a,
.logo h1,
.logo span {
    font-family: 'Montserrat', sans-serif;
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0 30px 0 0;
    padding: 0;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    padding: 6px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(190, 165, 93, 0.6), 
                #BEA55D, 
                rgba(190, 165, 93, 0.6),
                transparent);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center;
}

nav a:hover {
    color: #BEA55D;
    text-shadow: 0 0 10px rgba(190, 165, 93, 0.2);
}

nav a:hover::after {
    width: 100%;
}

/* Active page styling */
nav a[aria-current="page"],
nav a.active {
    color: #BEA55D;
    font-weight: 500;
}

nav a[aria-current="page"]::after,
nav a.active::after {
    width: 100%;
    height: 1px;
    background: #BEA55D;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

/* Booking Hero Section */
.booking-hero {
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), 
                url('../assets/images/booking-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.booking-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-tagline {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.section-header p {
    color: var(--white);
    opacity: 0.8;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Enhanced Vehicle Showcase Section */
.vehicle-gallery-section {
    padding: 90px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.9));
    position: relative;
    overflow: hidden;
}

.vehicle-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(190,165,93,0.3), rgba(190,165,93,0.8), rgba(190,165,93,0.3), transparent);
}

.vehicle-gallery-section h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, #BEA55D 50%, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

.vehicle-gallery-section p {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.single-vehicle-showcase {
    display: flex;
    background-color: rgba(17, 17, 17, 0.7);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(190, 165, 93, 0.2);
    border: 1px solid rgba(190, 165, 93, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    max-width: 1100px;
    margin: 0 auto;
}

.single-vehicle-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(190, 165, 93, 0.3);
}

.vehicle-image {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s ease;
    filter: brightness(1.05) contrast(1.05);
}

.single-vehicle-showcase:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 40%);
    z-index: 1;
}

.vehicle-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.vehicle-details h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #BEA55D;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.vehicle-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #BEA55D, rgba(190,165,93,0.2));
}

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

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-item i {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    background: rgba(190, 165, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BEA55D;
    transition: all 0.3s ease;
}

.single-vehicle-showcase:hover .spec-item i {
    background: rgba(190, 165, 93, 0.2);
    transform: scale(1.1);
}

.spec-item span {
    font-size: 1rem;
    color: #ffffff;
}

.vehicle-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.5) 0%, rgba(25, 25, 25, 0.5) 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.step-icon i {
    font-size: 32px;
    color: var(--gold);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--gold);
    color: var(--primary-black);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--white);
    opacity: 0.7;
    font-size: 14px;
}

/* Booking Form Section */
.booking-form-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #0a0a0a 0%, #141414 100%);
    position: relative;
}

.booking-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(190,165,93,0.3), rgba(190,165,93,0.8), rgba(190,165,93,0.3), transparent);
}

.booking-form {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px;
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.95) 0%, rgba(22, 22, 22, 0.95) 100%);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(190, 165, 93, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.booking-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Form Sections */
.form-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(190, 165, 93, 0.15);
    position: relative;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
}

.form-section-title {
    margin-bottom: 25px;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 15px;
}

.form-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 22px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: var(--gold);
}

/* Form Inputs */
.form-group input,
.form-group select,
.form-group textarea {
    width: 85%;
    padding: 15px 16px;
    background-color: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--white);
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
    background-color: rgba(40, 40, 40, 0.9);
}

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

/* Form Row for side-by-side fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 40px;
    margin-top: 12px;
    padding: 5px 0;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
}

.radio-option label:hover {
    color: var(--gold);
}

.radio-option label::before {
    content: '';
    position: absolute;
    left: 1px;
    top: 1px;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.radio-option input[type="radio"]:checked + label::before {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.1);
}

.radio-option label::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gold);
    transform: scale(0);
    transition: all 0.2s ease;
}

.radio-option input[type="radio"]:checked + label::after {
    transform: scale(1);
}

/* Submit Button */
.submit-container {
    margin-top: 40px;
    grid-column: span 2;
    text-align: center;
}

.submit-button {
    background: linear-gradient(135deg, #D4AF37 0%, #BEA55D 100%);
    color: var(--primary-black);
    border: none;
    padding: 18px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
    margin: 0 auto;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button i {
    transition: transform 0.3s ease;
}

.submit-button:hover {
    background: linear-gradient(135deg, #E5C04C 0%, #D4AF37 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.submit-button:hover i {
    transform: translateX(5px);
}

.submit-button:active {
    transform: translateY(-1px);
}

/* Success Message */
.success-message {
    display: none;
    background-color: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
    color: #2ecc71;
    padding: 18px 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.5s ease forwards;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
}

.featured-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--primary-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.price-header {
    margin-bottom: 25px;
}

.price-icon {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.price-icon i {
    font-size: 28px;
    color: var(--gold);
}

.price-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.price {
    font-size: 32px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.price-features {
    list-style-type: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.price-features li i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 14px;
    margin-top: 5px;
}

.price-button {
    display: inline-block;
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pricing-card.featured .price-button {
    background-color: var(--gold);
    color: var(--primary-black);
}

.price-button:hover {
    background-color: var(--gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Policies Section */
.policies-section {
    padding: 80px 0;
    background-color: var(--secondary-black);
}

.policies-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Changed to exactly 2 columns */
    grid-template-rows: auto auto; /* Ensure 2 rows */
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.policy-item {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.5) 0%, rgba(25, 25, 25, 0.5) 100%);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.policy-icon {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.policy-icon i {
    font-size: 24px;
    color: var(--gold);
}

.policy-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.policy-content p {
    color: var(--white);
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--primary-black);
    position: relative;
}

.testimonial-carousel {
    display: flex;
    overflow: hidden;
    margin-top: 40px;
    position: relative;
}

.testimonial {
    flex: 0 0 100%;
    padding: 0 15px;
    transition: all 0.5s ease;
}

.testimonial-content {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--gold);
    opacity: 0.3;
    font-size: 24px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 30px;
    font-style: italic;
}

.client-info {
    text-align: right;
}

.client-name {
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
}

.client-role {
    font-size: 14px;
    color: var(--white);
    opacity: 0.7;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.prev-testimonial,
.next-testimonial {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background-color: var(--gold);
    color: var(--primary-black);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--primary-black);
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--white);
}

.toggle-icon {
    color: var(--gold);
    transition: all 0.3s ease;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
}

.faq-answer p {
    margin: 0;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA Section */
.booking-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black), var(--secondary-black), var(--primary-black));
    text-align: center;
}

.booking-cta h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.booking-cta p {
    color: var(--white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 10px;
}

.cta-button i {
    font-size: 18px;
}

.cta-button.primary {
    background-color: var(--gold);
    color: var(--primary-black);
}

.cta-button.primary:hover {
    background-color: var(--light-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-button.secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer styling to match other pages */
footer {
    background-color: var(--primary-black);
    padding: 60px 0 20px;
    color: var(--white);
    background: linear-gradient(to bottom, #0a0a0a 0%, #000000 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

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

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-section span {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 30px;
    margin-top: 15px;
    margin-left: 125px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: var(--gold);
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 18px;
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: var(--gold);
    color: var(--primary-black);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* Form validation styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

/* Form Section Styling */
.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(190, 165, 93, 0.2);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 500;
}

/* Form Row for side-by-side fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Submit button container */
.submit-container {
    margin-top: 30px;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes shimmer {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
    
    .container {
        width: 95%;
    }
    
    .pricing-card.featured {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    /* Center aligned header for mobile */
    header {
        flex-direction: column;
        padding: 15px 0;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove right margin from logo */
    .logo {
        margin: 0;
        margin-bottom: 10px;
    }
    
    .logo h1 {
        margin: 0; /* Remove left margin */
    }
    
    /* Center the mobile toggle button */
    .mobile-menu-toggle {
        display: block;
        margin: 10px 0 0;
        position: relative;
    }
    
    /* Center the dropdown menu */
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-black);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }
    
    nav ul.open {
        max-height: 300px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }
    
    nav li {
        margin: 0;
        text-align: center;
        width: 100%;
    }
    
    nav a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    /* Fix form inputs width for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
    }
    
    /* Make single vehicle showcase stack properly */
    .single-vehicle-showcase {
        flex-direction: column;
    }
    
    .vehicle-image {
        height: 250px;
    }
    
    /* Fix policies grid on mobile */
    .policies-container {
        grid-template-columns: 1fr;
    }
    
    /* Fix radio buttons spacing */
    .radio-group {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Improve mobile form rows */
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Fix CTA buttons on mobile */
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Improve touch targets size */
    .prev-testimonial,
    .next-testimonial,
    .cta-button,
    .submit-button,
    .price-button {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Make submit button more visible on smallest screens */
@media (max-width: 480px) {
    .submit-button {
        width: 100%;
        padding: 18px 20px;
    }
}

/* Add support for modern phones with notches */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        .booking-hero,
        .booking-form-section,
        .policies-section,
        .pricing-section,
        .testimonials,
        .faq-section,
        .booking-cta {
            padding-left: max(20px, env(safe-area-inset-left));
            padding-right: max(20px, env(safe-area-inset-right));
        }
        
        footer {
            padding-bottom: max(20px, env(safe-area-inset-bottom));
        }
    }
}