/* ===== SERVICE PAGES SPECIFIC STYLES ===== */

/* ===== SERVICE HERO SECTIONS ===== */
.service-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2d4a6f 100%);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Force visibility of all service sections */
.service-overview,
.service-overview *,
.service-hero *,
.service-hero .container,
.service-overview .container,
.overview-content,
.overview-text {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.ladies-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2d4a6f 100%);
}

.your-vehicle-hero {
    background: linear-gradient(135deg, #0a1628 0%, #2d4a6f 50%, #1e3a5f 100%);
}

.bike-driver-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 60%, #0a1628 100%);
}

.bike-transport-hero {
    background: linear-gradient(135deg, #2d4a6f, #1e3a5f, #0a1628);
}

.valet-parking-hero {
    background: linear-gradient(135deg, #0a1628, #2d4a6f, #1e3a5f);
}

.female-driver-hero {
    position: absolute;
    bottom: 150px;
    right: 10%;
    z-index: 5;
}

.female-driver-hero .car-container {
    position: relative;
    width: 200px;
    height: 80px;
}

.female-driver-hero .car-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 5rem;
    color: #ffffff;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
    animation: carMove 4s ease-in-out infinite;
}

.female-driver-hero .female-driver {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #ffffff;
    animation: driverFloat 3s ease-in-out infinite;
    z-index: 3;
}

.female-driver-hero .safety-badge {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

@keyframes driverFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

/* ===== SERVICE OVERVIEW ===== */
.service-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Force visibility for all text content */
.section-title,
.section-subtitle,
.overview-text p,
.safety-feature,
.safety-feature h4,
.safety-feature p,
.container,
.section-header {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    color: #ffffff !important;
}

/* Disable AOS animations temporarily */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.safety-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.safety-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.safety-feature i {
    color: #ffffff;
    font-size: 2rem;
    min-width: 40px;
}

.safety-feature h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.safety-feature p {
    color: #cccccc;
    margin: 0;
    line-height: 1.5;
}

.overview-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.female-driver-illustration {
    position: relative;
    width: 350px;
    height: 350px;
}

.female-driver-illustration .driver-silhouette {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: #ffffff;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.female-driver-illustration .car-outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    font-size: 7rem;
    color: rgba(0, 0, 0, 0.2);
    animation: carFloat 4s ease-in-out infinite;
}

.female-driver-illustration .safety-shield {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
}

/* ===== USE CASES ===== */
.use-cases {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

.use-case-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.1) rotate(5deg);
}

.use-case-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.use-case-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.use-case-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.use-case-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.use-case-features i {
    color: #ffffff;
    font-size: 0.9rem;
}

/* ===== SERVICE BOOKING ===== */
.service-booking {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.booking-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000000, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 50px;
}

.step-content h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #cccccc;
    margin: 0;
    line-height: 1.5;
}

.booking-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.booking-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.ladies-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ladies-booking-form .form-group {
    position: relative;
}

.ladies-booking-form label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.ladies-booking-form input,
.ladies-booking-form select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.ladies-booking-form input:focus,
.ladies-booking-form select:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.ladies-booking-form i {
    position: absolute;
    left: 1rem;
    top: 2.8rem;
    color: #ffffff;
    font-size: 1.2rem;
}

.ladies-booking-form select {
    appearance: none;
    cursor: pointer;
}

.ladies-booking-form .fa-chevron-down {
    top: 2.8rem;
    right: 1rem;
    left: auto;
    pointer-events: none;
}

.ladies-booking-form .submit-btn {
    background: linear-gradient(135deg, #000000, #ff6b6b);
    color: #ffffff;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.ladies-booking-form .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* ===== SERVICE CONTACT ===== */
.service-contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
}

.service-contact .contact-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-contact p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-method i {
    font-size: 2.5rem;
    color: #ffffff;
    min-width: 50px;
}

.contact-method h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin: 0;
}

.contact-method a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #ffffff;
}

/* ===== SERVICE FOOTER ===== */
.service-footer {
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ===== RESPONSIVE DESIGN FOR SERVICE PAGES ===== */
@media (max-width: 768px) {
    .service-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .female-driver-hero {
        bottom: 100px;
        right: 5%;
    }
    
    .female-driver-hero .car-container {
        width: 150px;
        height: 60px;
    }
    
    .female-driver-hero .car-body {
        font-size: 3.5rem;
    }
    
    .female-driver-hero .female-driver {
        font-size: 1.8rem;
    }
    
    .overview-content,
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-steps {
        gap: 1.5rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .female-driver-illustration {
        width: 250px;
        height: 250px;
    }
    
    .female-driver-illustration .driver-silhouette {
        font-size: 3.5rem;
    }
    
    .female-driver-illustration .car-outline {
        font-size: 5rem;
    }
    
    .female-driver-illustration .safety-shield {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .female-driver-hero {
        bottom: 80px;
        right: 2%;
    }
    
    .female-driver-hero .car-container {
        width: 120px;
        height: 50px;
    }
    
    .female-driver-hero .car-body {
        font-size: 2.8rem;
    }
    
    .female-driver-hero .female-driver {
        font-size: 1.5rem;
        top: -25px;
    }
    
    .booking-form {
        padding: 2rem;
    }
    
    .safety-features {
        gap: 1rem;
    }
    
    .safety-feature {
        padding: 1rem;
    }
    
    .use-case-card {
        padding: 2rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .contact-method i {
        font-size: 2rem;
    }
    
    .female-driver-illustration {
        width: 200px;
        height: 200px;
    }
    
    .female-driver-illustration .driver-silhouette {
        font-size: 3rem;
    }
    
    .female-driver-illustration .car-outline {
        font-size: 4rem;
    }
    
    .female-driver-illustration .safety-shield {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ===== ADDITIONAL SERVICE PAGE STYLES ===== */

/* Hero Bike Animation */
.hero-bike {
    position: absolute;
    bottom: 150px;
    right: 10%;
    z-index: 5;
}

.bike-container {
    position: relative;
    width: 200px;
    height: 100px;
}

.bike-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 5rem;
    color: #ffffff;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
    animation: bikeMove 3s ease-in-out infinite;
}

.bike-rider {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #ffffff;
    animation: riderFloat 3s ease-in-out infinite;
    z-index: 3;
}

.bike-motion {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.bike-motion span {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    animation: bikeMotion 1.5s linear infinite;
}

.bike-motion span:nth-child(1) {
    top: 40%;
    left: 0;
    width: 80%;
    animation-delay: 0s;
}

.bike-motion span:nth-child(2) {
    top: 50%;
    left: 0;
    width: 90%;
    animation-delay: 0.3s;
}

.bike-motion span:nth-child(3) {
    top: 60%;
    left: 0;
    width: 70%;
    animation-delay: 0.6s;
}

.speed-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.speed-lines span {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5), transparent);
    animation: speedLine 1s linear infinite;
}

.speed-lines span:nth-child(1) {
    top: 30%;
    left: 0;
    width: 60%;
    animation-delay: 0s;
}

.speed-lines span:nth-child(2) {
    top: 50%;
    left: 0;
    width: 80%;
    animation-delay: 0.2s;
}

.speed-lines span:nth-child(3) {
    top: 70%;
    left: 0;
    width: 70%;
    animation-delay: 0.4s;
}

@keyframes bikeMove {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes riderFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes bikeMotion {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

@keyframes speedLine {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

/* Luxury Car Animation */
.luxury-car-hero {
    position: absolute;
    bottom: 150px;
    right: 10%;
    z-index: 5;
}

.luxury-car-hero .car-container {
    position: relative;
    width: 250px;
    height: 100px;
}

.luxury-car-hero .car-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 6rem;
    color: #ffffff;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
    animation: luxuryCarMove 4s ease-in-out infinite;
}

.luxury-car-hero .professional-driver {
    position: absolute;
    top: -30px;
    left: 30%;
    font-size: 2.5rem;
    color: #ffffff;
    animation: driverEnter 4s ease-in-out infinite;
}

.luxury-car-hero .motion-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.luxury-car-hero .motion-lines span {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    animation: motionLine 2s linear infinite;
}

.luxury-car-hero .motion-lines span:nth-child(1) {
    top: 40%;
    left: 0;
    width: 80%;
    animation-delay: 0s;
}

.luxury-car-hero .motion-lines span:nth-child(2) {
    top: 50%;
    left: 0;
    width: 90%;
    animation-delay: 0.5s;
}

.luxury-car-hero .motion-lines span:nth-child(3) {
    top: 60%;
    left: 0;
    width: 70%;
    animation-delay: 1s;
}

@keyframes luxuryCarMove {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes driverEnter {
    0% { left: 30%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 55%; opacity: 1; }
}

/* Transport Hero Animation */
.hero-transport {
    position: absolute;
    bottom: 150px;
    right: 10%;
    z-index: 5;
}

/* Valet Hero Animation */
.hero-valet {
    position: absolute;
    bottom: 150px;
    right: 10%;
    z-index: 5;
}

.valet-container {
    position: relative;
    width: 300px;
    height: 150px;
}

.car-valet {
    position: absolute;
    top: 30px;
    left: 0;
    font-size: 4rem;
    color: #ffffff;
    animation: valetCarMove 3s ease-in-out infinite;
}

.valet-driver {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #ffffff;
    animation: valetDriverMove 3s ease-in-out infinite;
}

.parking-sign {
    position: absolute;
    top: 60px;
    right: 20px;
    font-size: 2.5rem;
    color: #ff6b6b;
    animation: parkingSignFloat 2s ease-in-out infinite;
}

.key-icon {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #ffffff;
    animation: keyFloat 2.5s ease-in-out infinite;
}

@keyframes valetCarMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

@keyframes valetDriverMove {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes parkingSignFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes keyFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.transport-container {
    position: relative;
    width: 300px;
    height: 150px;
}

.train-vehicle {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 4rem;
    color: #ffffff;
    animation: trainMove 3s linear infinite;
}

.truck-vehicle {
    position: absolute;
    top: 60px;
    left: 0;
    font-size: 3.5rem;
    color: #ff6b6b;
    animation: truckMove 3s linear infinite;
    animation-delay: 1.5s;
}

.transport-container .bike-icon {
    position: absolute;
    top: 40px;
    right: 20px;
    font-size: 2.5rem;
    color: #ffffff;
    animation: bikeFloat 2s ease-in-out infinite;
}

@keyframes trainMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes truckMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes bikeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Pricing Banner */
.pricing-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
}

.pricing-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.pricing-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.pricing-details {
    display: flex;
    gap: 3rem;
    margin-bottom: 1.5rem;
}

.pricing-details .price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.pricing-details .price-item.minimum {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
}

.pricing-details .price-label {
    color: #cccccc;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.pricing-details .price-amount {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

.pricing-info p {
    color: #cccccc;
    margin: 0;
}

/* Services List */
.services-list {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
}

.service-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-features i {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

.benefit-card .benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    min-width: 60px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

/* Transport Options Section */
.transport-options-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.transport-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.transport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

.transport-visual {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.train-animation-large,
.truck-animation-large {
    position: relative;
    width: 100%;
    height: 100%;
}

.train-animation-large i,
.truck-animation-large i {
    font-size: 5rem;
    color: #ffffff;
    animation: vehicleMove 3s linear infinite;
}

.train-tracks,
.road-lines {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 4px;
}

.train-tracks {
    background: repeating-linear-gradient(90deg, #000000 0px, #000000 30px, transparent 30px, transparent 60px);
    animation: tracksMove 2s linear infinite;
}

.road-lines {
    height: 2px;
    background: repeating-linear-gradient(90deg, #000000 0px, #000000 40px, transparent 40px, transparent 80px);
    animation: roadLinesMove 1.5s linear infinite;
}

.train-motion,
.truck-motion {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.train-motion span,
.truck-motion span {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    animation: motionLine 2s linear infinite;
}

.train-motion span:nth-child(1),
.truck-motion span:nth-child(1) {
    top: 40%;
    left: 0;
    width: 80%;
    animation-delay: 0s;
}

.train-motion span:nth-child(2),
.truck-motion span:nth-child(2) {
    top: 50%;
    left: 0;
    width: 90%;
    animation-delay: 0.5s;
}

.train-motion span:nth-child(3),
.truck-motion span:nth-child(3) {
    top: 60%;
    left: 0;
    width: 70%;
    animation-delay: 1s;
}

@keyframes vehicleMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.transport-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.transport-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.transport-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.transport-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.transport-features i {
    color: #ffffff;
    font-size: 0.9rem;
}

.transport-benefits {
    margin-bottom: 2rem;
}

.transport-benefits h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.transport-benefits ul {
    list-style: none;
    padding: 0;
}

.transport-benefits li {
    color: #cccccc;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.transport-benefits li::before {
    content: '»';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

.transport-btn {
    background: linear-gradient(135deg, #000000, #ff6b6b);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.transport-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.process-step .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #000000, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.process-step .step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #000000, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #ffffff;
}

.process-step h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: #cccccc;
    line-height: 1.5;
}

/* Quote Section */
.quote-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.quote-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.quote-form .form-group {
    position: relative;
}

.quote-form label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.quote-form input,
.quote-form select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.quote-form i {
    position: absolute;
    left: 1rem;
    top: 2.8rem;
    color: #ffffff;
    font-size: 1.2rem;
}

.quote-form select {
    appearance: none;
    cursor: pointer;
}

.quote-form .fa-chevron-down {
    top: 2.8rem;
    right: 1rem;
    left: auto;
    pointer-events: none;
}

.quote-form .submit-btn {
    background: linear-gradient(135deg, #000000, #ff6b6b);
    color: #ffffff;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.quote-form .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.quote-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-illustration {
    position: relative;
    width: 300px;
    height: 300px;
}

.bike-package {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #ffffff;
    animation: float 3s ease-in-out infinite;
}

.transport-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.transport-icons i {
    position: absolute;
    font-size: 2.5rem;
    color: #ff6b6b;
}

.transport-icons i:first-child {
    top: 20%;
    left: 20%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.transport-icons i:last-child {
    bottom: 20%;
    right: 20%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1s;
}

/* Bike Illustration */
.bike-illustration {
    position: relative;
    width: 350px;
    height: 350px;
}

.bike-illustration .bike-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: #ffffff;
    animation: bikeMove 2s ease-in-out infinite;
}

.bike-illustration .rider-icon {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #ffffff;
    animation: riderMove 2s ease-in-out infinite;
}

.bike-illustration .helmet-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #000000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Luxury Car Illustration */
.luxury-car-illustration {
    position: relative;
    width: 350px;
    height: 350px;
}

.luxury-car-illustration .user-car {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: #ffffff;
    animation: carMove 3s ease-in-out infinite;
}

.luxury-car-illustration .driver-entering {
    position: absolute;
    top: 35%;
    left: 30%;
    font-size: 2rem;
    color: #ffffff;
    animation: driverEnter 3s ease-in-out infinite;
}

.luxury-car-illustration .motion-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.luxury-car-illustration .motion-lines span {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    animation: motionLine 2s linear infinite;
}

.luxury-car-illustration .motion-lines span:nth-child(1) {
    top: 40%;
    left: 0;
    width: 80%;
    animation-delay: 0s;
}

.luxury-car-illustration .motion-lines span:nth-child(2) {
    top: 50%;
    left: 0;
    width: 90%;
    animation-delay: 0.5s;
}

.luxury-car-illustration .motion-lines span:nth-child(3) {
    top: 60%;
    left: 0;
    width: 70%;
    animation-delay: 1s;
}

/* Transport Illustration */
.transport-illustration {
    position: relative;
    width: 350px;
    height: 350px;
}

/* ===== VALET PARKING SERVICE STYLES ===== */

/* Service Types Section */
.service-types {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
}

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

.service-type-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-type-card:hover::before {
    opacity: 1;
}

.service-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

.service-type-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-type-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-type-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-type-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-type-card .service-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-type-card .service-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-type-card .service-features i {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Valet Pricing Section */
.valet-pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
}

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

.valet-pricing .pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.valet-pricing .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

.valet-pricing .pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.valet-pricing .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 2rem;
}

.valet-pricing .currency {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.valet-pricing .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.valet-pricing .period {
    font-size: 1rem;
    color: #cccccc;
}

.valet-pricing .pricing-features ul {
    list-style: none;
    padding: 0;
}

.valet-pricing .pricing-features li {
    padding: 0.8rem 0;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.valet-pricing .pricing-features i {
    color: #4caf50;
    font-size: 1rem;
}

/* Valet Illustration */
.valet-illustration {
    position: relative;
    width: 350px;
    height: 350px;
}

.valet-illustration .valet-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: #ffffff;
    animation: float 3s ease-in-out infinite;
}

.valet-illustration .car-icon {
    position: absolute;
    top: 30%;
    left: 20%;
    font-size: 3rem;
    color: #ff6b6b;
    animation: carFloat 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.valet-illustration .key-illustration {
    position: absolute;
    bottom: 30%;
    right: 20%;
    font-size: 2rem;
}

/* ===== WHY US PAGE STYLES ===== */
.why-us-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2d4a6f 100%);
}

.why-choose-section {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    padding: 6rem 0;
}

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

.why-choose-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.5);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.why-choose-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.why-choose-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: #e0f0ff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8ab4e0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.feature-list li i {
    color: #4caf50;
    font-size: 0.8rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    padding: 4rem 0;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.5);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #8ab4e0;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #e0f0ff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: #ffffff;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Responsive Design for Valet Service */
@media (max-width: 768px) {
    .hero-valet {
        bottom: 100px;
        right: 5%;
    }
    
    .valet-container {
        width: 200px;
        height: 100px;
    }
    
    .car-valet {
        font-size: 2.5rem;
    }
    
    .valet-driver {
        font-size: 1.5rem;
    }
    
    .parking-sign {
        font-size: 1.8rem;
    }
    
    .service-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .valet-pricing .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .valet-illustration {
        width: 250px;
        height: 250px;
    }
    
    .valet-illustration .valet-icon {
        font-size: 3.5rem;
    }
    
    .valet-illustration .car-icon {
        font-size: 2rem;
    }
    
    .valet-illustration .key-illustration {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-valet {
        bottom: 80px;
        right: 2%;
    }
    
    .valet-container {
        width: 150px;
        height: 80px;
    }
    
    .car-valet {
        font-size: 2rem;
    }
    
    .valet-driver {
        font-size: 1.2rem;
    }
    
    .parking-sign {
        font-size: 1.5rem;
    }
    
    .service-type-card {
        padding: 2rem;
    }
    
    .valet-pricing .pricing-card {
        padding: 2rem;
    }
    
    .valet-illustration {
        width: 200px;
        height: 200px;
    }
    
    .valet-illustration .valet-icon {
        font-size: 3rem;
    }
    
    .valet-illustration .car-icon {
        font-size: 1.5rem;
    }
    
    .valet-illustration .key-illustration {
        font-size: 1.2rem;
    }
}

.transport-illustration .train-animation {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    font-size: 4rem;
    color: #ffffff;
    animation: trainMove 3s linear infinite;
}

.transport-illustration .truck-animation {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    font-size: 3.5rem;
    color: #ff6b6b;
    animation: truckMove 3s linear infinite;
    animation-delay: 1.5s;
}

/* Responsive Design for Additional Elements */
@media (max-width: 768px) {
    .hero-bike,
    .luxury-car-hero,
    .hero-transport {
        bottom: 100px;
        right: 5%;
    }
    
    .bike-container,
    .luxury-car-hero .car-container {
        width: 150px;
    }
    
    .transport-container {
        width: 200px;
    }
    
    .pricing-highlight {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .pricing-details {
        justify-content: center;
    }
    
    .transport-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quote-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-bike,
    .luxury-car-hero,
    .hero-transport {
        bottom: 80px;
        right: 2%;
    }
    
    .bike-container,
    .luxury-car-hero .car-container {
        width: 120px;
    }
    
    .transport-container {
        width: 150px;
    }
    
    .bike-body {
        font-size: 3rem;
    }
    
    .luxury-car-hero .car-body {
        font-size: 3.5rem;
    }
    
    .train-vehicle,
    .truck-vehicle {
        font-size: 2.5rem;
    }
    
    .pricing-highlight {
        padding: 2rem;
    }
    
    .pricing-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .transport-card {
        padding: 2rem;
    }
    
    .quote-illustration,
    .bike-illustration,
    .luxury-car-illustration,
    .transport-illustration {
        width: 250px;
        height: 250px;
    }
    
    .bike-illustration .bike-icon,
    .luxury-car-illustration .user-car {
        font-size: 3.5rem;
    }
    
    .bike-illustration .rider-icon,
    .luxury-car-illustration .driver-entering {
        font-size: 1.5rem;
    }
    
    .transport-illustration .train-animation,
    .transport-illustration .truck-animation {
        font-size: 3rem;
    }
}
