/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif; /* Using Inter for the whole page */
}

body {
    line-height: 1.6;
    background: linear-gradient(to bottom, #004d4d, #001f33);
    color: #f0f0f0;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    background-color: #f0f0f0; /* Light gray background */
    text-align: center;
    color: #333; /* Dark text for contrast on light background */
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #004d4d; /* Dark teal heading color */
}

.quote-slider {
    display: flex;
    justify-content: center; /* Center the cards */
    gap: 20px; /* Add space between cards */
    overflow: visible; /* Ensure all cards are visible */
    position: relative;
    width: 100%; /* Ensure the container takes full width */
    flex-wrap: wrap; /* Allow cards to wrap to the next line */
}

.testimonial-card {
    background-color: #001f33; /* Dark background for cards */
    color: #f0f0f0; /* Light text for contrast */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px; /* Set a fixed width or use flex-basis for responsive width */
    flex-basis: auto; /* Allow flex items to shrink or grow as needed */
    box-sizing: border-box; /* Include padding and border in the element's total width */
    margin: 0; /* Remove margin between cards */
    opacity: 1; /* Keep all cards visible */
    transform: none; /* Remove any transform */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Keep hover transition if desired */
}

/* Stars within testimonial cards */
.testimonial-card .stars {
    color: #ffc107; /* Yellow color for stars */
    margin-top: 10px;
    font-size: 1.2rem;
}

.testimonial-card .star {
    margin: 0 2px;
}


/* Hero Section */
/* Keep the base hero style as is for now, will override with .new-hero */
header.hero {
    background: url('cityscape.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 5rem 1rem;
    position: relative;
}

/* Main Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8); /* Glossy, blends with dark themes */
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 30px;
    color: #fff;
    display: flex;
    align-items: center;
    height: 90px; /* Increased fixed height for the navbar */
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo - Targeting the image inside the logo div */
.logo img {
    height: 85px; /* Increased height for the logo image */
    display: block; /* Ensure it behaves as a block element */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.sign-in-btn {
    background-color: #00b5ad;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sign-in-btn:hover {
    background-color: #009f8a;
}

/* Language Selector */
.lang-selector {
    position: relative;
    cursor: pointer;
    font-size: 1rem;
}

.lang-options {
    display: none;
    position: absolute;
    top: 25px;
    right: 0;
    background: white;
    color: black;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.lang-selector:hover .lang-options {
    display: block;
}

.lang-option {
    padding: 8px 12px;
    cursor: pointer;
}

.lang-option:hover {
    background: #f0f0f0;
}

/* Hero Overlay/Content */
.hero .overlay-bg {
    background-color: rgba(0, 0, 0, 0.65);
    padding: 4rem 4rem;
    border-radius: 8px;
    max-width: 3000px;
    margin: 0 auto;
    text-align: center;
}

/* Global text styles */
h1, h2, h3 {
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}


/* Footer Styles - Updated */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    padding: 1.5rem 2rem; /* Increased padding */
    color: white;
    font-family: 'Inter', sans-serif;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    gap: 1rem; /* Add gap between flex items */
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Added flex-basis to control width on wrap */
    flex-basis: 100%; /* Default to full width on small screens */
    justify-content: center; /* Center content when full width */
}

/* Adjust flex-basis for larger screens */
@media (min-width: 768px) { /* Medium screens and up */
    .footer-left {
        flex-basis: auto; /* Auto width */
        justify-content: flex-start; /* Align left */
    }
    .footer-center {
        flex: 1; /* Take available space */
        justify-content: center; /* Center content */
        order: 1; /* Ensure it's in the middle */
    }
    .footer-right {
        flex-basis: auto; /* Auto width */
        justify-content: flex-end; /* Align right */
    }
}


.footer-center {
    flex: 1; /* Allows the center section to take up space */
    justify-content: center;
    text-align: center;
}

.footer-left a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* New styles for footer links container */
.footer-links {
    display: flex;
    flex-wrap: wrap; /* Allow links to wrap */
    gap: 1rem; /* Space between links */
    justify-content: center; /* Center links */
    align-items: center;
}

.footer-links a {
    color: #a0aec0; /* Light gray color for links */
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff; /* White on hover */
    text-decoration: underline;
}


/* Button Styles */
.btn.cta {
    background: linear-gradient(45deg, #00b3b3, #006666);
}
.btn.cta:hover {
    transform: scale(1.05);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    background-color: #00b3b3;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #007a7a;
    transform: scale(1.05);
}

/* Section Padding */
section {
    padding: 4rem 1rem;
    text-align: center;
}

/* Cards Layout */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.1); /* semi-transparent white */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* List Styles */
ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 0;
}

/* Why Choose Section */
ul li {
    background: rgba(0, 191, 255, 0.2);
    padding: 1rem;
    border-radius: 6px;
    backdrop-filter: blur(6px);
    color: #e0f7fa;
}

.why-choose {
    background-image: url('/assets/dar.jpg'); /* replace with your image path */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 20px;
    color: white;
}

.why-choose .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 8px;
    animation: fadeInDown 1s ease;
}

.why-choose h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-choose p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.why-choose ul {
    list-style: none;
    font-size: 1.2rem;
    padding: 0;
}

.why-choose li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-choose i {
    font-size: 1.5rem;
    color: #00b5ad;
}

/* Animations */
@keyframes slideFade {
    0% { opacity: 0; transform: translateX(100%); }
    10% { opacity: 1; transform: translateX(0); }
    40% { opacity: 1; transform: translateX(0); }
    50% { opacity: 0; transform: translateX(-100%); }
    100% { opacity: 0; transform: translateX(-100%); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Levitate and Bounce Animation - Reintroduced subtle bounce */
@keyframes levitateBounce {
    0%, 100% {
        transform: translateY(0); /* Base position */
    }
    50% {
        transform: translateY(-10px); /* Subtle upward bounce */
    }
}


/* Download/Contact Buttons */
.download-contact a.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem;
}

/* Media Queries */
@media (min-width: 768px) { /* Medium screens and up */
    .footer-left {
        flex-basis: auto; /* Auto width */
        justify-content: flex-start; /* Align left */
    }
    .footer-center {
        flex: 1; /* Take available space */
        justify-content: center; /* Center content */
        order: 1; /* Ensure it's in the middle */
    }
    .footer-right {
        flex-basis: auto; /* Auto width */
        justify-content: flex-end; /* Align right */
    }
}

@media (max-width: 768px) {
    header.hero {
        padding: 3rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .cards, ul {
        grid-template-columns: 1fr;
    }

    /* Footer adjustments for small screens */
    .footer {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
        padding: 1.5rem 1rem;
    }
     .footer-left, .footer-center, .footer-right {
        flex-basis: 100%; /* Full width */
        justify-content: center; /* Center content */
        text-align: center;
    }
    .footer-links {
        flex-direction: column; /* Stack links vertically */
        gap: 0.5rem; /* Reduce gap */
    }

    /* Adjust phone position and alignment on smaller screens */
     .hero-left {
        /* Center the flex item when it wraps */
        margin: 0 auto;
        /* Ensure text inside is centered if needed, though phone is a block */
        text-align: center;
     }

     .hero-left .phone-frame {
        margin-top: 120px; /* Increased margin top for more space below navbar on small screens */
        margin-bottom: 40px; /* Add some space below the phone */
     }

     /* Adjust alignment of hero content when stacked */
     .hero-content {
        align-items: center; /* Center items along the cross axis when stacked */
     }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        text-align: center;
    }

    header.hero h1 {
        font-size: 1.5rem;
    }

    header.hero p {
        font-size: 1rem;
    }

    .hero-right h2 {
        font-size: 1.5rem;
    }
}

/* New Hero Section Specific Styles - Modified */
.hero.new-hero {
    background: none; /* Ensure no background image is applied */
    background-color: #ffffff; /* Set background to white */
    padding: 6rem 2rem;
    position: relative;
    padding-top: 100px; /* Adjust based on header height */
}

/* Ensure text elements within new-hero are the desired color and centered */
.hero.new-hero .hero-center h1,
.hero.new-hero .hero-center p,
.hero.new-hero .hero-right h2 {
    color: #006666; /* Explicitly set text color for elements within new-hero */
    text-align: center; /* Ensure text is centered within its flex container */
}

/* Ensure the hero-center and hero-right flex items are centered within the flex container */
.hero-content {
    display: flex;
    justify-content: center; /* Center items along the main axis */
    align-items: center; /* Keep centered for larger screens */
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-left,
.hero-center,
.hero-right {
    flex: 1;
    min-width: 280px;
}

/* Style for the CTA buttons container to ensure centering */
.hero-right .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Reduced gap slightly for better spacing */
    align-items: center; /* Center items along the cross axis (horizontally in a column) */
    justify-content: center; /* Center items along the main axis (vertically in a column) */
}

/* Style for all CTA links within the cta-buttons div */
.hero-right .cta-buttons a {
    display: flex; /* Use flexbox for centering content within the link */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    min-width: 200px; /* Set a minimum width for consistent size */
    padding: 12px 24px; /* Adjust padding as needed */
    border-radius: 30px; /* Keep rounded corners */
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, border-color 0.3s ease; /* Added border-color to transition */
    border: none; /* Keep specific borders */
    cursor: pointer;
}

/* Style for all images within CTA links */
.hero-right .cta-buttons a img {
    height: 40px; /* Set a consistent height for all images (badges and WhatsApp icon) */
    width: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Add some space between the image and text if any */
}

/* Specific styles for the store badge links (Google Play and Apple Store) */
.hero-right .cta-buttons a:not(.whatsapp-btn) {
    background-color: #000; /* Set background to black */
    color: white; /* Set text color to white */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border for definition */
}

.hero-right .cta-buttons a:not(.whatsapp-btn):hover {
     background-color: #333; /* Darker black on hover */
     border-color: rgba(255, 255, 255, 0.2); /* Slightly lighter border on hover */
}


/* Specific styles for the WhatsApp button */
.whatsapp-btn {
    background-color: #25D366; /* WhatsApp green */
    color: white; /* White text */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle border for visibility on white */
}
.whatsapp-btn:hover {
    background-color: #1ebe5d; /* Darker green on hover */
    border-color: rgba(0, 0, 0, 0.2); /* Darker border on hover */
}

/* Phone Mockup Styles - Updated */
.phone-frame {
    width: 280px; /* Reduced width */
    height: 580px; /* Reduced height */
    background-color: #222; /* Darker background for bezel effect */
    border-radius: 30px; /* Rounded corners for the phone frame */
    padding: 8px; /* Padding to create bezel illusion */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden; /* Hide anything outside the screen */
    margin-top: 100px; /* Adjusted margin to move it down from the navbar */
    animation: levitateBounce 3s ease-in-out infinite;
}

.screen {
    width: 100%;
    height: 100%;
    background-color: #fff; /* White screen background */
    border-radius: 22px; /* Adjusted border-radius for inner screen */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative; /* Needed for notch positioning */
}

/* Phone Notch (Bezel detail) */
.iphone-notch {
    position: absolute;
    top: 0; /* Position at the very top of the screen */
    left: 50%;
    transform: translateX(-50%);
    width: 120px; /* Wider notch */
    height: 25px; /* Taller notch */
    background-color: #000; /* Black notch */
    border-bottom-left-radius: 12px; /* More rounded bottom corners */
    border-bottom-right-radius: 12px;
    z-index: 10; /* Ensure notch is above content */ 
    display: flex; /* Use flexbox to easily arrange items inside the notch */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    gap: 10px; 
}

.notch-camera {
    width: 8px; /* Size of the camera lens */
    height: 8px; /* Size of the camera lens */
    background-color: #333; /* Dark grey for the camera */
    border-radius: 50%; /* Make it circular */
}

.notch-speaker {
    width: 40px; /* Width of the speaker grille */
    height: 4px; /* Height of the speaker grille */
    background-color: #444; /* Slightly lighter grey for the speaker */
    border-radius: 2px; /* Slightly rounded corners for the speaker */
}

/* Status bar styling */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    font-size: 12px;
    color: #333; /* Dark grey text */
    position: relative; /* Needed for z-index */
    z-index: 11; /* Ensure status bar is above the notch */
}

/* Header styling */
.header {
    background-color: #008080; /* A teal color closer to the image */
    color: #fff; /* White text */
    padding: 10px; /* Slightly reduced padding */
    text-align: center;
    font-size: 20px; /* Slightly reduced font size */
    font-weight: bold;
    position: relative; /* Needed for z-index */
    z-index: 5; /* Ensure header is below status bar but above map */
}

/* Map area styling */
.map-area {
    flex-grow: 1; /* Take up remaining space */
    background-color: #e0e0e0; /* Light grey background for map base */
    position: relative; /* Needed for absolute positioning of map elements */
    overflow: hidden; /* Hide elements outside the map area */
}

/* Simplified map elements - More realistic connecting roads */
.map-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #c8e6c9 0%, #a5d6a7 100%); /* Greenish tint for land */
    opacity: 0.5; /* Make it slightly transparent */
}

.map-road {
    position: absolute;
    background-color: #bdbdbd; /* Grey color for roads */
    z-index: 1; /* Ensure roads are above the background gradient */
    transform-origin: top left; /* Set transform origin for easier positioning */
    box-sizing: border-box; /* Include border and padding in the element's total width and height */
}

/* Defined road segments for a more realistic network with connections */
.map-road.road-v1 { top: 0; left: 25%; width: 6px; height: 65%; } /* Vertical road segment */
.map-road.road-v2 { top: 35%; left: 70%; width: 6px; height: 65%; } /* Vertical road segment */
.map-road.road-h1 { top: 65%; left: 0; width: 100%; height: 6px; } /* Horizontal road */
.map-road.road-h2 { top: 30%; left: 0; width: 70%; height: 6px; } /* Horizontal road */
.map-road.road-v3 { top: 0; left: 45%; width: 6px; height: 38%; } /* Vertical segment connecting h2 */
.map-road.road-h3 { top: 38%; left: 45%; width: 25%; height: 6px; } /* Horizontal segment connecting v3 and v2 */
.map-road.road-v4 { top: 73%; left: 10%; width: 6px; height: 27%; } /* Vertical segment */
.map-road.road-h4 { top: 80%; left: 10%; width: 80%; height: 6px; } /* Horizontal road */
.map-road.road-h5 { top: 45%; left: 0; width: 25%; height: 6px; } /* Horizontal segment connecting v1 */


/* Font Awesome Car icon styling on Map */
.car-icon {
    position: absolute;
    font-size: 14px;
    color: #0d47a1; /* Dark blue color for cars */
    z-index: 2; /* Ensure cars are above roads */
    transform: translate(-50%, -50%);
}

/* Input and action area */
.input-area {
    padding: 15px; /* Slightly reduced padding */
    background-color: #fff; /* White background */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.input-area input {
    width: 100%;
    padding: 10px; /* Slightly reduced padding */
    margin-bottom: 10px; /* Slightly reduced margin */
    border: 1px solid #e0f7fa; /* Light teal border */
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    color: #333; /* Dark grey text for input */
}

.input-area input::placeholder {
    color: #999; /* Lighter grey for placeholder text */
}


.input-area input:focus {
    border-color: #008080; /* Teal focus */
    box-shadow: 0 0 5px rgba(0, 128, 128, 0.3);
}

.ride-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px; /* Slightly reduced margin */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    padding: 0 5px; /* Add padding to the container */
}

.ride-option {
    text-align: center;
    cursor: pointer;
    padding: 8px 0; /* Slightly reduced padding */
    border-radius: 6px;
    transition: background-color 0.3s ease;
    flex: 0 1 calc(25% - 10px); /* Calculate width considering margin */
    margin: 4px; /* Slightly reduced margin */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    display: flex; /* Use flexbox for internal alignment */
    flex-direction: column; /* Stack icon and text vertically */
    align-items: center; /* Center items horizontally */
}

.ride-option:hover {
    background-color: #e0f7fa; /* Light teal hover */
}

/* Styling for the new SVG ride icons */
.ride-option .ride-icon {
    width: 24px; /* Set a size for the SVG icons */
    height: 24px; /* Set a size for the SVG icons */
    margin-bottom: 4px; /* Space between icon and text */
}

/* Styling for the ride option text */
.ride-option span {
    font-size: 10px; /* Slightly smaller font size */
    color: #000; /* Black text color */
    display: block; /* Make span a block element for better spacing */
    word-break: break-word; /* Break long words if necessary */
    line-height: 1.2; /* Adjust line height for better readability */
}

/* Specific colors for SVG ride icons */
.ride-option.zyft-xl .ride-icon {
    color: #ff5722; /* Deep Orange for XL */
}

.ride-option.zyft-rides .ride-icon {
    color: #008080; /* Teal for Standard Rides */
}

.ride-option.zyft-pro .ride-icon {
    color: #ffc107; /* Amber for Pro */
}

.ride-option.zyft-business .ride-icon {
    color: #3f51b5; /* Indigo for Business */
}


/* Button Styles - Updated for glossy and rounded look */
.button {
    width: 100%;
    padding: 12px; /* Slightly reduced padding */
    background: linear-gradient(to bottom, #00b3b3, #006666); /* Glossy gradient */
    color: #fff;
    border: none;
    border-radius: 25px; /* More rounded corners */
    font-size: 16px; /* Slightly reduced font size */
    font-weight: 700; /* Bolder font weight */
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease; /* Transition for hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    font-family: 'Inter', sans-serif; /* Ensure Inter font is used */
}

.button:hover {
    background: linear-gradient(to bottom, #009f9f, #005a5a); /* Darker gradient on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}


/* Styles for the side buttons removed */

