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

/* Prestigious Color Palette */
:root {
    --primary-dark: #0a2540;
    --primary-gold: #d4af37;
    --primary-gold-light: #e8d5a3;
    --accent-blue: #1e3a5f;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-light: #e8e8e8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
    font-weight: 400;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    /* Keep a stronger left gutter on desktop layouts */
    padding: 0 40px 0 56px;
}

/* Enhanced Header - More Luxurious */
.site-header {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: 2px solid var(--primary-gold);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    margin: 0;
}

.site-title a {
    color: #fff;
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.site-description {
    font-size: 0.85rem;
    color: var(--primary-gold-light);
    margin-top: 0.25rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.custom-logo {
    max-height: 60px;
    width: auto;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--primary-gold-light);
}

.main-navigation a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    font-size: 1.5rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Enhanced Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 12rem 0;
    text-align: center;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(30, 58, 95, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Prestigious Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    border-color: var(--primary-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    background-color: #c9a028;
    border-color: #c9a028;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-small {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1.25rem 3.5rem;
    font-size: 1.1rem;
}

/* Home page car image strips */
.home-cars-strip {
    overflow: hidden;
    background: var(--primary-dark);
}

.home-cars-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 100%;
}

.home-cars-strip-inner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.home-cars-gallery {
    padding: 4rem 0;
    background: var(--bg-light);
}

.home-cars-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.home-cars-gallery-item img,
.home-cars-gallery-grid > img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.home-cars-gallery-secondary .home-cars-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
}

.home-cars-gallery-secondary .home-cars-gallery-grid img {
    height: 260px;
}

@media (max-width: 768px) {
    .home-cars-strip-inner {
        grid-template-columns: 1fr;
    }
    .home-cars-strip-inner img {
        height: 180px;
    }
    .home-cars-gallery-grid {
        grid-template-columns: 1fr;
    }
    .home-cars-gallery-secondary .home-cars-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Services Section */
.services-section {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
}

.services-section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 1.5rem;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.8;
}

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

.service-card {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-top-color: var(--primary-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 2rem;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 37, 64, 0.1) 100%);
    transition: opacity 0.4s;
    opacity: 0;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-icon.step-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.service-icon.step-icon::after {
    display: none;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--primary-dark);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.service-icon.step-icon.step-icon-img {
    background-size: cover;
    background-position: center;
    background-color: var(--primary-dark);
}

.service-icon.step-icon.step-icon-img .step-number {
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 1rem;
}

/* Enhanced Why Choose Section */
.why-choose-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-blue) 100%);
    color: #fff;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.03) 10px, rgba(212, 175, 55, 0.03) 20px);
    z-index: 1;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
}

.why-choose-section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.why-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.why-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: var(--primary-gold);
    border-radius: 50%;
    line-height: 80px;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.why-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: #fff;
}

.why-item p {
    opacity: 0.9;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #f8f8f8 0%, #ffffff 100%);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 1.5rem;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 4px solid var(--primary-gold);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Vehicles Section */
.featured-vehicles {
    padding: 7rem 0;
    background-color: #fff;
}

.featured-vehicles h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
    color: var(--primary-dark);
}

.featured-vehicles h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
}

.featured-vehicles .vehicles-subsection {
    margin-top: 4rem;
}

.featured-vehicles .vehicles-subsection:first-of-type {
    margin-top: 2rem;
}

.featured-vehicles .vehicles-subsection h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-gold);
}

.featured-vehicles .vehicles-subsection .section-intro {
    margin-bottom: 1.5rem;
}

.featured-vehicles .vehicles-subsection-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.featured-vehicles .vehicles-cta-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.featured-vehicles .vehicles-none {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-medium);
    padding: 2rem;
}

.featured-vehicles .vehicles-none a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.featured-vehicles .vehicles-none a:hover {
    text-decoration: underline;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.vehicle-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-gold);
}

.vehicle-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.vehicle-card:hover img {
    transform: scale(1.05);
}

.vehicle-info {
    padding: 2rem;
}

.vehicle-info h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.vehicle-info h3 a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.vehicle-info h3 a:hover {
    color: var(--primary-gold);
}

.vehicle-specs {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.vehicle-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.25rem;
}

.vehicle-price .price-inc-vrt {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-medium);
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

/* Vehicle Single Page */
.vehicle-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.vehicle-gallery {
    min-width: 0;
    width: 100%;
}

.vehicle-gallery img {
    display: block;
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.vehicle-details h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.vehicle-specs ul {
    list-style: none;
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 0;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-gold);
}

.vehicle-specs li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
}

.vehicle-specs li:last-child {
    border-bottom: none;
}

.vehicle-specs .price-note {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-medium);
    margin-top: 0.4rem;
    line-height: 1.3;
}

.vehicle-specs li.estimated-total {
    font-size: 1.4rem;
    color: var(--primary-dark);
    font-weight: bold;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--primary-gold);
}

.vehicle-specs li.price {
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: bold;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--primary-gold);
}

.vehicle-description {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.vehicle-contact {
    margin-top: 2rem;
}

/* Enhanced CTA Section */
.cta-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-blue) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Page Styles */
.page-container {
    padding: 3rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.archive-description {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.page-featured-image {
    margin-bottom: 2rem;
}

.page-featured-image img {
    width: 100%;
    border-radius: 0;
}

.entry-content {
    line-height: 1.8;
}

.entry-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.entry-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.entry-content p {
    margin-bottom: 1rem;
}

.entry-content ul, .entry-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

/* Contact Form (CF7) */
.wpcf7 {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.wpcf7-form p {
    margin-bottom: 1.5rem;
}

.wpcf7 h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.wpcf7 h3:first-child {
    margin-top: 0;
}

.wpcf7 h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
}

.wpcf7 hr {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 2rem 0;
}

.wpcf7 label {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.wpcf7 .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 0.25rem;
}

.wpcf7 input.wpcf7-text,
.wpcf7 input.wpcf7-email,
.wpcf7 input.wpcf7-tel,
.wpcf7 input.wpcf7-url {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    background-color: var(--bg-white);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7 input.wpcf7-text:focus,
.wpcf7 input.wpcf7-email:focus,
.wpcf7 input.wpcf7-tel:focus,
.wpcf7 input.wpcf7-url:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.wpcf7 textarea.wpcf7-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    background-color: var(--bg-white);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    min-height: 100px;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7 textarea.wpcf7-textarea:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.wpcf7 select.wpcf7-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    background-color: var(--bg-white);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    cursor: pointer;
}

.wpcf7 .wpcf7-radio {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.wpcf7 .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wpcf7 .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.wpcf7 .wpcf7-list-item input.wpcf7-radio {
    accent-color: var(--primary-gold);
    cursor: pointer;
}

.wpcf7 label.vehicle-link-field {
    margin-top: 0.75rem;
}

.wpcf7 input.wpcf7-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    border: 2px solid var(--primary-gold);
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    font-family: inherit;
}

.wpcf7 input.wpcf7-submit:hover {
    background-color: #c9a028;
    border-color: #c9a028;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.wpcf7 .wpcf7-not-valid {
    border-color: #c00 !important;
}

.wpcf7 .wpcf7-not-valid:focus {
    box-shadow: 0 0 0 2px rgba(204, 0, 0, 0.2);
}

.wpcf7 .wpcf7-response-output {
    margin: 1.5rem 0 0;
    padding: 1rem;
    font-size: 0.95rem;
    border: 1px solid var(--border-light);
}

.wpcf7 .wpcf7-mail-sent-ok {
    border-color: #46b450;
    background-color: rgba(70, 180, 80, 0.1);
    color: var(--text-dark);
}

.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng {
    border-color: #c00;
    background-color: rgba(204, 0, 0, 0.05);
    color: var(--text-dark);
}

/* Footer */
.site-footer {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 4rem 0 1.5rem;
    margin-top: 6rem;
    border-top: 3px solid var(--primary-gold);
}

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

.footer-widgets .widget {
    color: #ccc;
}

.footer-widgets .widget-title {
    color: #fff;
    margin-bottom: 1rem;
}

.site-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #ccc;
}

.site-info p {
    margin-bottom: 0.5rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--primary-gold-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

/* Error 404 */
.error-404 {
    text-align: center;
    padding: 5rem 0;
}

.error-404 h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.error-404 p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .site-header .container {
        flex-wrap: wrap;
    }

    .main-navigation {
        position: relative;
        flex: 1 1 100%;
        margin-top: 0.5rem;
        display: flex;
        justify-content: flex-end;
    }

    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        min-width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        box-sizing: border-box;
    }

    .main-navigation ul.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .vehicle-single {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .vehicles-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .services-section,
    .featured-vehicles,
    .why-choose-section,
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .services-section h2,
    .why-choose-section h2,
    .cta-section h2,
    .featured-vehicles h2,
    .testimonials-section h2 {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .testimonial-text::before {
        font-size: 3rem;
    }
    
    .wpcf7 {
        padding: 1.5rem 0;
        max-width: 100%;
    }
    
    .wpcf7 h3 {
        font-size: 1.35rem;
    }
    
    .wpcf7 input.wpcf7-submit {
        width: 100%;
        max-width: 100%;
    }
}
