/* 
 * Diamond Cars - Global Styles
 * Theme: Luxury, Professional, London Chauffeur Service
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Diamond Cars - Logo-Led Palette (Blue & Orange) */
    --primary-color: #008bd6;
    /* Darker Sky Blue */
    --secondary-color: #ff9d00;
    /* Sunset Orange */
    --secondary-hover: #e68a00;
    /* Darker Orange */
    --accent-silver: #f4f4f9;
    /* Light Grey/Blue Tint */
    --accent-red: #ea2c2c;
    /* Deep Logo Red */
    --accent-color: #e63946;
    /* Bright Red for Validation */
    --bg-dark-refined: #0d1245;
    /* Deep Navy for depth */
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);

    /* Neutral Colors */
    --text-dark: #111827;
    /* Nearly Black */
    --text-light: #ffffff;
    --text-muted: #64748b;
    /* Slate Gray */
    --bg-light: #f8fafc;
    /* Soft Gray-Blue */
    --bg-deep: #0f172a;
    /* Dark Section BG */
    --bg-white: #ffffff;
    --bg-soft: #f4f7fa;
    /* New soft background to replace stark white */

    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
    /* Slightly more rounded for modern look */

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Animation Tokens */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animations Framework */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, opacity;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal.active {
    opacity: 1;
    transform: none !important;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-down {
    transform: translateY(-50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-soft {
    background-color: var(--bg-soft) !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(45deg, var(--secondary-color), #ffbd00);
    /* Sunset Orange */
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 159, 28, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Background Patterns */
.bg-diamond-pattern {
    background-color: var(--bg-soft);
    background-image: linear-gradient(45deg, rgba(0, 139, 214, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 139, 214, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0, 74, 173, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 74, 173, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal.active {
    opacity: 1 !important;
    transform: none !important;
}

/* Header & Navigation */
header {
    background-color: #ffffff;
    /* FORCE WHITE */
    height: var(--header-height);
    position: sticky;
    /* Make it stick to the top */
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

header .container {
    height: 100%;
    /* Ensure container takes full header height for centering */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* This effectively centers vertically now */
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: auto;
    width: 200px;
    max-height: 60px;
    /* Reduced max-height */
    object-fit: contain;
}

/* Removed text logic since we use img now */

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--primary-color);
    /* Dark text for white header */
    font-weight: 600;
    font-size: 16px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
}

.btn-header-book {
    background-color: #6a3ab2;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: background 0.3s;
    margin-left: 15px;
}

.btn-header-book:hover {
    background-color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--text-muted);
}

/* Hero Section Styles (Moved from Inline) */
.hero {
    position: relative;
    background: url('../images/banner3.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
    /* White Text */
    /* Dark Text for readability since overlay is gone */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to right, rgba(22, 29, 111, 0.9), rgba(22, 29, 111, 0.4)); */
    /* Remove shadow overlay to show real picture */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
    padding-top: 60px;
    padding-bottom: 40px;
}

.hero-text {
    flex: 1;
    text-align: left;
    color: #fff;
    /* White Text */
    /* Dark Text */
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    /* Enhanced Shadow */
    margin-bottom: 25px;
    letter-spacing: -1px;
    letter-spacing: -1px;
    color: #fff;
    /* background: linear-gradient(to right, var(--primary-color), #0d2847); Removed to allow span color to show */
    /* -webkit-background-clip: text; */
    /* background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.9));
    /* Dropshadow for gradient text */
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-text p {
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 35px;
    /* opacity: 0.95; Removed for animation control */
    max-width: 600px;
    color: #fff;
    /* White */
    font-weight: 500;
    /* Increased weight */
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.booking-widget {
    flex: 0 0 480px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tabs Styling */
.booking-tabs-new {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px;
    gap: 6px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.tab-btn.active {
    background: var(--bg-white);
    color: var(--primary-color) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-btn:not(.active):hover {
    background: #222;
}

/* Content Header */
.booking-content-new {
    padding: 15px 20px;
    /* Reduced from 25px */
}

.booking-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    /* Reduced from 20px */
}

.booking-header-flex h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.card-logos {
    display: flex;
    gap: 5px;
}

.card-logos i {
    font-size: 22px !important;
    background: #fff;
    padding: 4px 6px;
    border-radius: 4px;
    color: #008bd6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Form Groups */
.input-row {
    margin-bottom: 10px;
    /* Reduced from 15px */
}

.input-row.split {
    display: flex;
    gap: 15px;
}

.input-group-custom {
    flex: 1;
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    overflow: hidden;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
}

.input-group-custom:focus-within {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(212, 154, 61, 0.2);
    transform: translateY(-2px);
}

.input-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eee;
    color: #333;
    font-size: 14px;
}

.input-group-custom input,
.input-group-custom select,
.input-group-custom textarea {
    flex: 1;
    border: none;
    padding: 0 12px;
    font-size: 14px;
    color: #333;
    outline: none;
    background: transparent;
}

.input-group-custom select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.input-end-icon {
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--secondary-color);
    font-size: 18px;
}

/* Time Input Specialized Styling */
.time-group {
    flex-direction: column;
    height: auto;
    background: transparent;
    border: none;
    justify-content: center;
}

.time-label {
    font-size: 10px;
    color: #333;
    font-weight: 700;
    margin-bottom: 2px;
    text-align: center;
    background: #fff;
    padding-top: 5px;
    border-radius: 4px 4px 0 0;
}

.time-input-wrapper {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 10px 5px;
    border-radius: 0 0 4px 4px;
}

.time-input-wrapper i {
    color: #333;
    margin-right: 5px;
}

.time-input-wrapper input {
    width: 100%;
    border: none;
    font-weight: 600;
    background: transparent;
    outline: none;
    cursor: pointer;
}

/* Base adjustment for native date/time pickers */
input[type="date"],
input[type="time"] {
    position: relative;
    padding-right: 30px;
    /* Space for native icon if browser shows it */
}

/* Fix height for native inputs to match others */
.input-group-custom input[type="date"],
.input-group-custom input[type="time"] {
    height: 100%;
}

.textarea-group {
    height: auto;
}

.textarea-group textarea {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Submit Button - PREMIUM LOOK */
.btn-instant-quote {
    width: 100%;
    margin-top: 15px;
    background: linear-gradient(45deg, var(--secondary-color), #fcd34d);
    color: #fff;
    border: none;
    padding: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px -5px rgba(212, 154, 61, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-instant-quote::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50px;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(25deg);
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.btn-instant-quote:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(212, 154, 61, 0.6);
}

.btn-instant-quote:hover::after {
    left: 120%;
}

.btn-instant-quote:active {
    transform: translateY(1px);
}

/* Ensure Logo sizing is consistent on mobile */
@media (max-width: 576px) {
    .logo img {
        width: 150px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-contact-links {
        flex-direction: column;
        gap: 10px;
    }

    .input-row.split {
        flex-direction: column;
        gap: 10px;
    }

    .booking-header-flex h2 {
        font-size: 18px;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .header .container {
        padding: 0 20px;
    }

    .hero {
        background-attachment: scroll;
        /* Fix background issues on mobile */
        padding-top: 40px;
        min-height: auto;
        /* Allow content to dictate size on mobile */
        background-position: top center;
        /* Focus on the top part of the image if needed */
    }

    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 40px;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        /* Reduced for mobile */
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* Hero Section Cleanup Styles */
    .hero-text-inner {
        margin-bottom: 20px;
    }

    .hero-contact-links {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        /* Allow wrapping on small screens */
        justify-content: center;
        margin-bottom: 25px;
    }

    .hero-contact-link {
        color: #fff;
        /* White */
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        /* Slightly smaller */
        font-weight: 600;
    }

    .booking-widget {
        flex: 1;
        width: 100%;
        max-width: 100%;
        /* Take full width */
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--primary-color);
        /* Dark navy for menu */
        width: 80%;
        /* Don't take full width, let controls be visible */
        max-width: 300px;
        height: 100vh;
        padding-top: 80px;
        /* Space for close button */
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: #fff;
        /* White text on dark menu */
        margin: 15px 0;
        font-size: 1.1rem;
    }

    .nav-links .btn-header-book {
        margin: 20px 0 0 0;
        width: 80%;
        text-align: center;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        color: var(--primary-color);
        font-size: 24px;
        cursor: pointer;
        position: relative;
        z-index: 1002;
        /* Ensure above the menu overlay */
    }

    /* Toggle Icon Animation or Change can be handled via JS/CSS class */
    .mobile-menu-btn i.fa-times {
        color: #fff;
        /* White close icon on dark menu */
    }
}

/* Fleet Section - Enhanced Layout & Swiper */
.fleet-card-new {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column;
}

.fleet-card-left {
    height: 250px;
    background: #eee;
    /* image placeholder */
}

.fleet-card-right {
    padding: 15px;
}

.fleet-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-btn-new {
    background: #000;
    color: #fff;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.book-btn-new:hover {
    background: var(--secondary-color);
}

/* Fleet Navigation & Pagination (Custom Layout) */
.fleetSwiper {
    position: relative;
    padding: 20px 50px;
    /* Add padding for buttons */
}

/* Position buttons on sides */
.fleetSwiper .swiper-button-next,
.fleetSwiper .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0;
}

.fleetSwiper .swiper-button-next {
    right: 0;
    left: auto;
}

.fleetSwiper .swiper-button-prev {
    left: 0;
    right: auto;
}

.fleetSwiper .swiper-button-next:after,
.fleetSwiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.fleetSwiper .swiper-button-next:hover,
.fleetSwiper .swiper-button-prev:hover {
    background: var(--secondary-color);
}

.swiper-pagination {
    position: static;
    /* Remove default absolute positioning */
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #000;
    opacity: 0.2;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
    /* Purple active dot */
    opacity: 1;
    transform: scale(1.2);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.fleet-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 50px;
    flex-wrap: wrap;
}

.fleet-badge {
    padding: 10px 25px;
    background: rgba(22, 29, 111, 0.05);
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.fleet-badge i {
    color: var(--secondary-color);
}

.fleet-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.fleet-card-new {
    display: flex;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 280px;
    position: relative;
}

.fleet-card-new:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(13, 18, 43, 0.1);
}

.fleet-card-left {
    flex: 0 0 40%;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fleet-card-left img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
}

.specs-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ebebeb;
    padding: 5px 15px;
    border-radius: 20px;
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.specs-overlay span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fleet-card-right {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.fleet-card-right .fleet-category {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.fleet-card-right .fleet-model {
    font-size: 1rem;
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.fleet-features-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 0.9rem;
    opacity: 0.7;
}

.fleet-features-mini span {
    display: flex;
    align-items: center;
}

.fleet-features-mini .separator {
    width: 1px;
    height: 12px;
    background: #ccc;
    margin: 0 5px;
}

.fleet-description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
    height: 4.5em;
    overflow: hidden;
}

.read-more {
    font-weight: 700;
    color: #000;
    font-size: 0.9rem;
    margin-bottom: 20px;
    cursor: pointer;
    text-decoration: none;
}

.fleet-card-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.price-tag-new {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

.specs-overlay {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e5e5e5;
    padding: 6px 15px;
    border-radius: 25px;
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 991px) {
    .fleet-card-new {
        flex-direction: column;
    }

    .fleet-card-left {
        height: 200px;
    }
}


/* Testimonials */
.testimonials-section {
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    margin: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card i {
    color: var(--secondary-color);
    font-size: 30px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.client-name {
    font-weight: 700;
    color: var(--secondary-color);
}


/* Reusable Components for Cleanup */
.service-card-white {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #ebebeb;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card-white:hover {
    transform: translateY(-5px);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(22, 29, 111, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
    margin: 0 auto 20px;
    font-size: 24px;
}

.testimonial-card-v2 {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.user-avatar-mini {
    width: 45px;
    height: 45px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
}


/* Top Bar Cleanup */
.top-bar {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact span {
    margin-right: 20px;
}

/* Why Choose Diamond Cars Section Styles */
.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.premium-feature-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: var(--secondary-color);
    transition: var(--transition-smooth);
    z-index: -1;
}

.premium-feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
}

.premium-feature-card:hover::before {
    height: 100%;
}

.diamond-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--secondary-color);
    transition: var(--transition-smooth);
    position: relative;
}

.premium-feature-card:hover .diamond-icon-wrapper {
    background: var(--secondary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.premium-feature-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.premium-feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Staggered Layout for unique feel */
@media (min-width: 992px) {

    .premium-feature-card.card-2,
    .premium-feature-card.card-4 {
        margin-top: 40px;
    }
}


/* Airport Transfers Section Styles */
.airport-card-new {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.airport-card-new img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.airport-card-content {
    padding: 20px;
}

.airport-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.airport-card-content p {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 20px;
}

.airport-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.airport-card-footer .price {
    font-weight: 700;
    color: #555;
    font-size: 1rem;
}

.airport-card-footer .price span {
    color: var(--secondary-color);
}

.airport-card-footer .btn {
    padding: 10px 20px;
    font-size: 12px;
    border-radius: 5px;
    background: var(--secondary-color);
    box-shadow: none;
}

/* Side-by-Side Features Styles */
.feature-side-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    flex-wrap: wrap;
}

.feature-side-box {
    flex: 1;
    min-width: 300px;
    padding: 0 40px;
}

.feature-side-box.left {
    text-align: right;
}

.feature-side-box.right {
    text-align: left;
}

.feature-side-box h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-side-box.left .feature-list-item {
    justify-content: flex-end;
}

.feature-side-box.right .feature-list-item {
    justify-content: flex-start;
}

.feature-icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(22, 29, 111, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.desktop-only-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    border-color: var(--secondary-color);
    transform: translateX(-50%);
    display: none;
}

@media (min-width: 992px) {
    .desktop-only-divider {
        display: block !important;
    }
}

@media (max-width: 991px) {
    .feature-side-box {
        text-align: center !important;
        padding: 20px !important;
    }

    .feature-side-box.left .feature-list-item,
    .feature-side-box.right .feature-list-item {
        justify-content: center !important;
    }
}


/* FAQ Accordion Base Styles */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item-header {
    background: #f8f8fb;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: background 0.3s;
}

.faq-item-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-content {
    padding: 20px 0;
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Accordion Active States */
.faq-item.active .faq-item-body {
    max-height: 200px;
}

.faq-item.active .faq-item-header i {
    transform: rotate(45deg);
}

.faq-item.active .faq-item-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* Premium Footer Styles */
.footer-premium {
    background: var(--primary-color);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand-logo {
    width: 180px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    font-size: 0.9rem;
    line-height: 1.8;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #fff;
    /* White */
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-links a {
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-social-links a:hover {
    color: var(--secondary-color);
}

.footer-section-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    border-left: 3px solid var(--secondary-color);
    padding-left: 15px;
    color: #fff;
}

.footer-link-list {
    list-style: none;
    padding: 0;
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list a {
    color: #fff;
    /* White */
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-link-list a:hover {
    color: var(--secondary-color);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    align-items: flex-start;
}

.footer-contact-list i {
    color: var(--secondary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 50px;
}

/* =========================================
   Contact Page Styles (Refined & Responsive)
   ========================================= */

.page-header {
    background-color: var(--primary-color);
    padding: 140px 0 80px;
    color: var(--text-light);
    text-align: center;
    background-image: url('../images/img1.jfif');
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark Overlay for readability */
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: -60px;
    /* Overlap effect */
    position: relative;
    z-index: 10;
}

/* Contact Info Card (Blue) */
.contact-info-card-premium {
    background: #008bd6;
    /* Primary Blue */
    color: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-card-premium h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-info-item h4 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 5px 0;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Contact Form Card (White) */
.contact-form-card-premium {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.contact-form-card-premium h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Form Styles */
.form-group-unique {
    margin-bottom: 25px;
}

.form-group-unique label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #008bd6;
    /* Blue Labels */
    font-size: 0.9rem;
}

.form-group-unique input,
.form-group-unique textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f0f4f8;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
}

.form-group-unique input:focus,
.form-group-unique textarea:focus {
    background: #fff;
    border-color: #008bd6;
    box-shadow: 0 0 0 4px rgba(0, 139, 214, 0.1);
    outline: none;
}

.btn-premium {
    background: #008bd6;
    color: #fff;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.btn-premium:hover {
    background: #0077b6;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 139, 214, 0.2);
}

/* Validation Styles */
.error-text {
    color: #e63946;
    font-size: 0.85rem;
    margin-top: 8px;
    display: none;
    font-weight: 600;
    text-align: left;
}

.form-group-unique.has-error input,
.form-group-unique.has-error textarea {
    border-color: #e63946 !important;
    background-color: rgba(230, 57, 70, 0.05);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1) !important;
}

.form-group-unique.has-error label {
    color: #e63946 !important;
}

/* =========================================
   Responsive Design (Mobile & Tablet)
   ========================================= */

@media (max-width: 991px) {
    .container {
        padding: 0 20px;
    }

    /* Contact Page Responsiveness */
    .contact-section {
        grid-template-columns: 1fr;
        /* Stack vertically */
        margin-top: 30px;
        /* Remove negative margin overlap */
        gap: 30px;
    }

    .contact-info-card-premium,
    .contact-form-card-premium {
        padding: 30px 25px;
        /* Reduce padding */
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {

    .contact-info-card-premium,
    .contact-form-card-premium {
        padding: 25px 20px;
    }

    .contact-form-card-premium h2,
    .contact-info-card-premium h2 {
        font-size: 1.8rem;
    }


    .btn-premium {
        padding: 15px;
    }
}

/* =========================================
   Success Modal Styles
   ========================================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    /* Light Green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.modal-icon i {
    font-size: 2.5rem;
    color: #4caf50;
    /* Green */
}

/* Variant for Contact Form (Blue) if preferred, but Green for success is standard */

.modal-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.modal-message {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1rem;
}

.modal-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.modal-btn:hover {
    background: var(--secondary-color);
}

/* =========================================
   Floating WhatsApp Button
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    color: #fff;
}