/* ===========================
   Imperial Co. Ltd
   Updated Styles - Modern Layout
   Brand Colors:
     Dark Primary : #0D5F8F  (Skyblue dark navy)
     Dark Mid     : #1B7FA6  (Skyblue dark)
     Skyblue      : #4A90E2  (Bright skyblue)
     Skyblue Light: #6BA3E5  (Lighter skyblue)
   =========================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Japan time top bar */
.japan-time-bar {
    background: #0a0a0a;
    color: rgba(255,255,255,0.55);
    text-align: right;
    padding: 0.1rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.4px;
}
@media (max-width: 768px) {
    .japan-time-bar { display: none; }
}

/* FOB tag beside price */
.price-fob {
    font-size: 0.72rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 0.3rem;
}

/* Social share buttons */
.share-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}
.share-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}
.share-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.share-fb   { background: #1877f2; color: #fff; }
.share-x    { background: #000;    color: #fff; }
.share-tiktok { background: #010101; color: #fff; border: 1px solid #69c9d0; }

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #0D5F8F 0%, #1B7FA6 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #5DADE2;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #4A90E2;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.btn:hover {
    background: #6BA3E5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 28, 28, 0.4);
}

.btn-primary {
    background: #4A90E2;
}

.btn-primary:hover {
    background: #6BA3E5;
}

.btn-secondary {
    background: #95a5a6;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.btn-outline {
    background: transparent;
    color: #0D5F8F;
    border: 2px solid #0D5F8F;
}

.btn-outline:hover {
    background: #0D5F8F;
    color: #fff;
}

.btn-success { background: #27ae60; color: white; }
.btn-success:hover { background: #229954; }

.btn-danger  { background: #c0392b; color: white; }
.btn-danger:hover { background: #a93226; }

.btn-warning { background: #f39c12; color: white; }
.btn-warning:hover { background: #d68910; }

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.96) 0%, rgba(26, 26, 26, 0.96) 100%),
                url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?w=1600') center/cover;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 3.25rem 1.5rem 2.25rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h1 .highlight {
    color: #5DADE2;
}

.hero-content .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Search Form */
.search-form,
.search-box {
    background: #fff;
    padding: 1rem;
    border-radius: 32px;
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 1rem auto 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.search-form input,
.search-box input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: #f5f5f5;
    font-size: 1rem;
    outline: none;
}

.search-form button,
.search-box button {
    padding: 0.8rem 2rem;
}

.search-box-compact {
    max-width: 430px;
    padding: 0.55rem;
    margin-top: 0.9rem;
    box-shadow: 0 5px 16px rgba(0,0,0,0.12);
}

.search-box-compact input {
    padding: 0.6rem 1rem;
    font-size: 0.92rem;
}

.search-box-compact button {
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
    min-width: 92px;
}

/* Stats Section */
.stats {
    background: #fff;
    padding: 3rem 2rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 1.8rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0D5F8F;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Vehicles Section */
.vehicles-section,
.featured-section {
    padding: 2.5rem 2rem 4rem;
    background: #f8f9fa;
}

/* Ensure content inside vehicles-section is always centered */
.vehicles-section > *,
.featured-section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.vehicles-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0D5F8F;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.vehicle-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.vehicle-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #0D5F8F 0%, #4A90E2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    overflow: hidden;
    position: relative;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vehicle-info {
    padding: 1.5rem;
}

.vehicle-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #0D5F8F;
}

.price {
    font-size: 1.5rem;
    color: #4A90E2;
    font-weight: 700;
    margin: 0.5rem 0;
}

.vehicle-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    color: #666;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.vehicle-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.vehicle-details {
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.vehicle-details p,
.vehicle-details span {
    color: #666;
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.vehicle-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.vehicle-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.7rem;
}

.no-vehicles {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    grid-column: 1 / -1;
}

.no-vehicles h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0D5F8F;
}

.no-vehicles p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Features Section (standard) */
.features-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0D5F8F 0%, #4A90E2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0D5F8F;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Features Section Modern (Why Choose Tanja) */
.features-section-modern {
    background: linear-gradient(135deg, #0D5F8F 0%, #1B7FA6 100%);
    padding: 5rem 2rem;
    color: white;
}

.features-section-modern .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-section-modern .section-header h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.8rem;
}

.features-section-modern .section-header p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-modern {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card-modern:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.feature-icon-modern {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(183, 28, 28, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #5DADE2;
    transition: all 0.3s;
}

.feature-card-modern:hover .feature-icon-modern {
    background: #4A90E2;
    color: white;
}

.feature-card-modern h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: white;
}

.feature-card-modern p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-accent {
    width: 40px;
    height: 3px;
    background: #4A90E2;
    margin: 1.2rem auto 0;
    border-radius: 2px;
    transition: width 0.3s;
}

.feature-card-modern:hover .feature-accent {
    width: 70px;
}

/* Reviews / Testimonials */
.reviews-section,
.testimonials-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0D5F8F 0%, #1B7FA6 100%);
    color: #fff;
}

.reviews-section h2,
.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: #fff;
}

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

.review-card,
.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.rating,
.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p,
.testimonial-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.reviewer,
.testimonial-author {
    font-weight: 600;
    color: #5DADE2;
    margin-top: 1rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: #ecf0f1;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0D5F8F;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.feature,
.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.feature h3 {
    color: #4A90E2;
    margin-bottom: 1rem;
}

.feature-box {
    border-left: 4px solid #4A90E2;
}

.feature-box h3 {
    color: #4A90E2;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0D5F8F;
}

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

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #0D5F8F;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #666;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: #0D5F8F;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.contact-actions .btn {
    flex: 1;
    min-width: 120px;
}

/* Footer */
footer {
    background: #0D5F8F;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #5DADE2;
}

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #5DADE2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Auth Pages */
.auth-container {
    max-width: 500px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #0D5F8F;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0D5F8F;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4A90E2;
}

.error {
    background: #e74c3c;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.success {
    background: #2ecc71;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.96) 0%, rgba(26, 26, 26, 0.96) 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About & Contact Pages */
.about-page-content,
.contact-page-content {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    color: #0D5F8F;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #4A90E2;
}

.cta-section {
    text-align: center;
    background: #ecf0f1;
    padding: 4rem 2rem;
    border-radius: 10px;
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: #0D5F8F;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #0D5F8F;
    margin-bottom: 2rem;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 3px solid #4A90E2;
}

.contact-info-box h3 {
    color: #4A90E2;
    margin-bottom: 1rem;
}

.contact-info-box a {
    color: #4A90E2;
    text-decoration: none;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #4A90E2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.2s;
}

.social-link:hover {
    background: #6BA3E5;
}

.map-section { margin-top: 3rem; }
.map-section h2 { color: #0D5F8F; margin-bottom: 2rem; }

/* Auth Enhanced */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.auth-links a {
    color: #4A90E2;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

form small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* ========================================
   DASHBOARD STYLES
   ======================================== */

.dashboard-container {
    padding: 2rem 0;
    min-height: 70vh;
    background: #f8f9fa;
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    color: #0D5F8F;
    margin-bottom: 0.5rem;
}

.dashboard-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.35rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    border-top: 3px solid #4A90E2;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: normal;
    text-transform: uppercase;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4A90E2;
    margin: 0;
}

.stat-card small {
    color: #999;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.5rem;
}

.quick-actions {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.quick-actions h2 {
    margin-bottom: 1.5rem;
    color: #0D5F8F;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.dashboard-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.dashboard-section h2 {
    color: #0D5F8F;
    margin-bottom: 1.5rem;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tabs .tab,
.tab {
    padding: 0.6rem 1.2rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-tabs .tab:hover,
.tab:hover {
    border-color: #4A90E2;
    color: #4A90E2;
    background: #e9ecef;
}

.filter-tabs .tab.active,
.tab.active {
    background: #4A90E2;
    border-color: #4A90E2;
    color: white;
}

/* Vehicle List */
.vehicle-list { display: grid; gap: 1rem; }

.vehicle-list-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
    align-items: center;
}

.vehicle-list-image { flex-shrink: 0; }

.vehicle-list-image img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.vehicle-list-info { flex-grow: 1; }

.vehicle-list-info h3 {
    margin-bottom: 0.5rem;
    color: #0D5F8F;
}

.vehicle-list-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.vehicle-list-actions .btn-small {
    white-space: nowrap;
    font-size: 0.85rem;
}

/* Search Section */
.search-section {
    background: #fff;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.advanced-search {
    max-width: 900px;
    margin: 0 auto;
}

.search-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
}

.search-row input {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.search-row input:focus {
    outline: none;
    border-color: #4A90E2;
}

.search-results-info {
    margin-top: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.search-results-info p {
    margin: 0;
    color: #666;
}

/* ========================================
   DASHBOARD - VEHICLE FORMS
   ======================================== */

.form-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-section h3 {
    margin-bottom: 1.5rem;
    color: #0D5F8F;
    border-bottom: 2px solid #4A90E2;
    padding-bottom: 0.5rem;
}

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

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

.form-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

.image-upload-area {
    border: 2px dashed #ddd;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s;
}

.image-upload-area:hover {
    border-color: #4A90E2;
    background: #fff;
}

.image-upload-area input[type="file"] { display: none; }

.upload-icon {
    font-size: 3rem;
    color: #4A90E2;
    margin-bottom: 1rem;
}

.image-preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.image-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #ddd;
}

.image-preview-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.image-preview-item .remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.image-preview-item .remove-image:hover { background: #c0392b; }

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
}

textarea:focus { outline: none; border-color: #4A90E2; }

select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

select:focus { outline: none; border-color: #4A90E2; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { opacity: 1; }

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.85rem;
}

label.required::after { content: " *"; color: #e74c3c; }

.vehicle-description { color: #666; line-height: 1.6; margin-top: 0.5rem; }

/* ========================================
   DASHBOARD TABLES
   ======================================== */

.table-responsive { overflow-x: auto; margin-top: 1rem; }

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.data-table thead { background: #0D5F8F; color: white; }

.data-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.data-table td { padding: 1rem; border-bottom: 1px solid #eee; }

.data-table tbody tr:hover { background: #f7f3f0; }
.data-table tbody tr:last-child td { border-bottom: none; }

/* Inquiry list  Elong messages must not spill into Status / Quick */
.data-table-inquiries {
    table-layout: fixed;
    width: 100%;
}

.data-table-inquiries col.col-inq-date { width: 6.5rem; }
.data-table-inquiries col.col-inq-customer { width: 11%; }
.data-table-inquiries col.col-inq-vehicle { width: 15%; }
.data-table-inquiries col.col-inq-contact { width: 15%; }
.data-table-inquiries col.col-inq-message { width: 28%; }
.data-table-inquiries col.col-inq-status { width: 5.5rem; }
.data-table-inquiries col.col-inq-quick { width: 8.5rem; }

.data-table-inquiries td,
.data-table-inquiries th {
    vertical-align: top;
}

.data-table-inquiries .inquiry-message-cell {
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.data-table-inquiries .inquiry-message-preview {
    max-height: 5.4em;
    overflow: hidden;
    line-height: 1.35;
    font-size: 0.92rem;
    color: #444;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: #e9ecef;
    color: #495057;
}

/* ========================================
   STATUS BADGES
   ======================================== */

.status-new      { background: #3498db; color: white; }
.status-pending  { background: #3498db; color: white; }
.status-read     { background: #95a5a6; color: white; }
.status-replied  { background: #27ae60; color: white; }
.status-quoted   { background: #8e44ad; color: white; }
.status-closed   { background: #7f8c8d; color: white; }
.status-loading  { background: #3498db; color: white; }
.status-in_transit { background: #f39c12; color: white; }
.status-arrived  { background: #9b59b6; color: white; }
.status-cleared  { background: #1abc9c; color: white; }
.status-completed { background: #27ae60; color: white; }
.status-draft    { background: #95a5a6; color: white; }
.status-sent     { background: #3498db; color: white; }
.status-accepted { background: #27ae60; color: white; }
.status-rejected { background: #e74c3c; color: white; }
.status-expired  { background: #7f8c8d; color: white; }

/* ========================================
   IMPROVED NAVIGATION
   ======================================== */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
}

.logo h2 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-menu li { position: relative; }

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
    display: block;
    font-size: 0.95rem;
}

.nav-menu a:hover { background: rgba(255,255,255,0.1); color: white; }
.nav-menu a.active { background: rgba(14,165,233,0.85); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li { margin: 0; }

.dropdown-menu a {
    color: #0D5F8F;
    padding: 0.8rem 1.2rem;
    border-radius: 0;
    font-size: 0.9rem;
}

.dropdown-menu a:hover { background: #f7f3f0; color: #4A90E2; }

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1rem;
    margin-left: 0.5rem;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.user-greeting { color: rgba(255,255,255,0.9); font-size: 0.9rem; }

.btn-logout {
    background: #4A90E2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-logout:hover { background: #6BA3E5; transform: translateY(-2px); }

.btn-nav-outline {
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-nav-outline:hover { background: white; color: #0D5F8F; }

.btn-nav-primary {
    background: #4A90E2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-nav-primary:hover { background: #6BA3E5; transform: translateY(-2px); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .nav-menu { gap: 0.3rem; }
    .nav-menu a { padding: 0.5rem 0.7rem; font-size: 0.85rem; }
}

@media (max-width: 992px) {
    .form-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #0D5F8F;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-menu.active { max-height: 500px; }
    .nav-menu li { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-menu a { padding: 1rem; }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        margin-top: 0;
    }

    .user-menu {
        flex-direction: column;
        align-items: stretch;
        padding: 0; margin: 0;
        border: none; gap: 0;
    }

    .btn-logout { margin-top: 0.5rem; text-align: center; }

    .hero { padding: 5rem 1rem 4rem; }
    .hero-content h1 { font-size: 2.5rem; }

    .search-form, .search-box { flex-direction: column; border-radius: 15px; }
    .search-form input, .search-box input,
    .search-form button, .search-box button { width: 100%; }

    .search-row { grid-template-columns: 1fr; }
    .search-results-info { flex-direction: column; }

    .vehicles-grid { grid-template-columns: 1fr; }
    .vehicle-actions { flex-direction: column; }

    .form-grid, .form-grid-3, .form-grid-4 { grid-template-columns: 1fr; }
    .form-section { padding: 1.5rem; }
    .form-actions { flex-direction: column-reverse; }
    .form-actions .btn { width: 100%; }

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

    .vehicle-list-actions { flex-direction: column; width: 100%; }
    .vehicle-list-actions .btn-small { width: 100%; text-align: center; }

    .cta-buttons { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }

    .page-header h1 { font-size: 2rem; }
    .section-header h2 { font-size: 2rem; }

    .contact-actions { flex-direction: column; }
    .contact-actions .btn { width: 100%; }

    .data-table { font-size: 0.85rem; }
    .data-table th, .data-table td { padding: 0.75rem 0.5rem; }
}

@media (max-width: 480px) {
    .hero { padding: 4rem 1rem 3rem; }
    .hero h1 { font-size: 2rem; }
    .stat-item h3 { font-size: 2rem; }
    .section-header h2 { font-size: 1.8rem; }
    .upload-icon { font-size: 2rem; }
    .image-upload-area { padding: 1.5rem; }
}

/* Features table */
.features-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    background: #fff;
}

.features-table .feat-group-row th {
    background: #f4f4f4;
    color: #4A90E2;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    text-align: left;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.features-table tr:first-child th { border-top: none; }

.features-table td.feat-name {
    padding: 0.5rem 0.75rem 0.5rem 0.9rem;
    border-bottom: 1px solid #f2f2f2;
    color: #222;
    width: 35%;
}

.features-table td.feat-cb {
    padding: 0.5rem 1.6rem;
    border-bottom: 1px solid #f2f2f2;
    border-right: 2px solid #e0e0e0;
    width: 15%;
    text-align: center;
    vertical-align: middle;
}
.features-table td.feat-cb:last-child { border-right: none; }

.features-table tr:last-child td { border-bottom: none; }
.features-table tr:hover td { background: #fdf6f6; }

.features-table input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #4A90E2;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

/* ── CSS Variables (add to your global stylesheet if not present) ── */
:root {
    --navy:    #0f0f1e;
    --navy2:   #1a1a2e;
    --red:     #0EA5E9;
    --red-dim: #0284C7;
    --gold:    #38BDF8;
    --white:   #ffffff;
    --muted:   rgba(255,255,255,0.55);
}

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE SECTION
══════════════════════════════════════════════════════════ */
.wc-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 0;
}

/* Subtle grid texture overlay */
.wc-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Red glow top-right */
.wc-section::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.wc-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ── Section header ── */
.wc-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
}
.wc-eyebrow::before,
.wc-eyebrow::after {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--red);
    opacity: 0.5;
}

.wc-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin: 0 0 0.8rem;
}
.wc-title em {
    font-style: italic;
    color: var(--gold);
}

.wc-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--muted);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Feature cards grid ── */
.wc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px; /* creates hairline borders between cards */
    background: rgba(255,255,255,0.07); /* the gap colour */
    border: 1.5px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0;
}

.wc-card {
    background: #12121f;
    padding: 2.2rem 1.6rem;
    position: relative;
    transition: background 0.3s;
    overflow: hidden;
}
.wc-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.wc-card:hover { background: #16162a; }
.wc-card:hover::before { transform: scaleX(1); }

.wc-card-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    border: 1.5px solid rgba(14,165,233,0.35);
    background: rgba(14,165,233,0.08);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.3rem;
    transition: border-color 0.3s, background 0.3s;
}
.wc-card:hover .wc-card-icon {
    border-color: var(--red);
    background: rgba(14,165,233,0.15);
}

.wc-card-icon svg {
    width: 24px; height: 24px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wc-card-num {
    position: absolute;
    top: 1.2rem; right: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    user-select: none;
}

.wc-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.6rem;
}

.wc-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
}

/* ── Stat strip ── */
.wc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(14,165,233,0.08);
    border-top: 1px solid rgba(14,165,233,0.2);
}

.wc-stat {
    padding: 1.8rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(14,165,233,0.15);
}
.wc-stat:last-child { border-right: none; }

.wc-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.wc-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.4rem;
    display: block;
}

/* ══════════════════════════════════════════════════════════
   QUOTE FORM  Emid-page / bottom of section
══════════════════════════════════════════════════════════ */
.quote-section {
    background: var(--navy2);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    border-top: 1px solid rgba(14,165,233,0.2);
}

/* diagonal slash top edge */
.quote-section::before {
    content: '';
    position: absolute;
    top: -1px; left: 0;
    width: 100%; height: 60px;
    background: var(--navy);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
    pointer-events: none;
}

.quote-section::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -100px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.quote-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: center;
}

/* Left copy */
.quote-copy {}

.quote-copy .wc-eyebrow { margin-bottom: 1.2rem; }

.quote-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin: 0 0 1rem;
}
.quote-copy h2 span { color: var(--gold); font-style: italic; }

.quote-copy p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.75;
    margin: 0 0 1.5rem;
}

.quote-bullets {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.quote-bullets li {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.quote-bullets li::before {
    content: '';
    display: block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

/* Right form card */
.quote-card {
    background: #0d0d1c;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.quote-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.3rem;
}
.quote-card-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1.6rem;
    display: block;
}

.qf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.qf-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.qf-group.full { grid-column: span 2; }

.qf-group label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.qf-group input,
.qf-group select,
.qf-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}
.qf-group select option { background: #1a1a2e; }
.qf-group textarea { resize: vertical; min-height: 75px; }
.qf-group input::placeholder,
.qf-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.qf-group input:focus,
.qf-group select:focus,
.qf-group textarea:focus {
    border-color: var(--red);
    background: rgba(14,165,233,0.06);
}

.qf-submit {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
}

.qf-privacy {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    line-height: 1.5;
}

.btn-quote {
    flex-shrink: 0;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}
.btn-quote:hover {
    background: #0284C7;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(14,165,233,0.35);
}
.btn-quote:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.qf-message {
    grid-column: span 2;
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    display: none;
}
.qf-message.success {
    background: rgba(39,174,96,0.12);
    border: 1px solid rgba(39,174,96,0.35);
    color: #5ddd8a;
    display: block;
}
.qf-message.error {
    background: rgba(14,165,233,0.1);
    border: 1px solid rgba(14,165,233,0.35);
    color: #f17a8a;
    display: block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .wc-grid { grid-template-columns: repeat(2, 1fr); }
    .quote-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .quote-copy { text-align: center; }
    .quote-bullets { align-items: center; }
}

@media (max-width: 600px) {
    .wc-grid { grid-template-columns: 1fr; }
    .wc-stats { grid-template-columns: 1fr; }
    .wc-stat { border-right: none; border-bottom: 1px solid rgba(14,165,233,0.15); }
    .wc-stat:last-child { border-bottom: none; }
    .qf-grid { grid-template-columns: 1fr; }
    .qf-group.full,
    .qf-submit { grid-column: span 1; }
    .qf-submit { flex-direction: column; align-items: stretch; }
}

/* ══════════════════════════════════════════════════════════
   STYLE.CSS PATCH  Eadd these rules at the very bottom
   Fixes the white stats section so it flows dark into 
   the Why Choose section instead of breaking the palette.
══════════════════════════════════════════════════════════ */

/* Dark variant of the stats strip (used on homepage) */
.stats.stats-dark {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    border-bottom: 1px solid rgba(14,165,233,0.15);
    padding: 2.5rem 2rem;
}

.stats.stats-dark .stat-item h3 {
    color: #c9a84c;          /* gold  Ematches wc-stat-num */
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
}

.stats.stats-dark .stat-item p {
    color: rgba(255,255,255,0.5);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
