/* Uber-Inspired Premium Modern Design */

/* CSS Variables */
:root {
    --black: #000000;
    --white: #ffffff;
    --off-white: #f6f6f6;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --primary: #000000;
    --accent: #276EF1;
    /* Uber blue-ish accent for focus/links - Darkened for professionalism */
    --green: #05a357;
    /* Keep green for call-to-actions */
    --green-light: #f0fdf4;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    /* Crisper shadow */
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    --font-family: 'Outfit', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    background: var(--white);
    color: var(--black);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-size: 18px;
    /* Base body text 18px */
}

/* App Container */
.app-container {
    max-width: 480px;
    /* Mobile-first container */
    margin: 0 auto;
    background: var(--white);
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for desktop view */
}

/* Header */
/* Header */
.app-header {
    background: var(--white);
    padding: 15px 25px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    /* Subtle border/shadow */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    /* Increased gap */
}


.hamburger-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    /* Slightly smaller touch target visual */
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
}

.hamburger-line {
    width: 26px;
    /* Longer lines */
    height: 2.5px;
    /* Thicker lines */
    background: var(--black);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 4px;
}

.header-cta-btn {
    background: #25D366;
    /* WhatsApp Green */
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.header-cta-btn i {
    font-size: 22px;
    /* Larger icon */
    margin-top: 2px;
    /* Optical centering */
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Main Content */
.main-content {
    padding: 0 0 80px 0;
}

/* Hero Section */
.hero-section {
    padding: 48px 32px 64px;
    background: var(--white);
}

.hero-content {
    margin-bottom: 48px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--black);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-600);
}

/* Form Styles - Uber Style */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.input-group {
    position: relative;
}

.input-field {
    position: relative;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.input-field:focus-within {
    background: var(--white);
    box-shadow: 0 0 0 2px var(--black);
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--black);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific icons using simple geometry or specific characters can mimic Uber's square/circle indicators */
.input-group:nth-child(3) .input-icon i::before {
    content: "\f12f";
    /* Circle for pickup */
    font-size: 12px;
}

.input-group:nth-child(4) .input-icon i::before {
    content: "\f5a0";
    /* Square for dropoff (custom mapped or fallback) */
    font-size: 12px;
}

.form-input {
    width: 100%;
    height: 56px;
    padding: 0 16px 0 48px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-family);
    color: var(--black);
    outline: none;
}

.form-input::placeholder {
    color: var(--gray-500);
    font-weight: 400;
}

/* Book Button */
.book-btn {
    width: 100%;
    height: 56px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
    transition: transform 0.1s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-btn:hover {
    background: var(--gray-900);
}

.book-btn:active {
    transform: scale(0.98);
}

.btn-loader {
    display: none;
}

.book-btn.loading .btn-text {
    display: none;
}

.book-btn.loading .btn-loader {
    display: block;
}

.loader-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Features Section - Horizontal Scroll or Grid */
.features-section {
    padding: 48px 32px;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-item {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: 0.2s;
}

.feature-item:hover {
    transform: translateY(-2px);
    background: var(--gray-100);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 20px;
    box-shadow: var(--shadow-sm);
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

/* FAQ Section */
.faq-section {
    padding: 64px 32px;
    background: var(--white);
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.5;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 24px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.4;
    margin: 0;
}

.faq-toggle {
    color: var(--black);
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    /* Use rotate for plus icon to become cross */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 12px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Footer */
.app-footer {
    background: var(--black);
    color: var(--white);
    padding: 64px 32px 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 32px;
}

.footer-links h4,
.footer-service h4,
.footer-team h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.footer-links ul,
.footer-service ul,
.footer-team ul {
    list-style: none;
    margin-bottom: 32px;
}

.footer-links li,
.footer-service li,
.footer-team li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-service li,
.footer-team a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.2s;
}

.footer-links a:hover,
.footer-team a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
}

/* About Screen Overlay */
.about-section {
    position: absolute;
    /* Changed from fixed to absolute */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* WILL cover the .app-container fully */
    min-height: 100vh;
    background: var(--white);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow-y: auto;
    padding: 24px;
}

.about-section.open {
    transform: translateY(0);
}

.about-header {
    margin-bottom: 32px;
    position: relative;
    padding-top: 40px;
}

.about-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
    line-height: 1.2;
}

.about-header p {
    font-size: 16px;
    color: var(--gray-600);
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
}

.about-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin: 32px 0 16px;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.about-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--gray-600);
    line-height: 1.5;
}

.about-content li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--black);
    border-radius: 50%;
}

.about-content strong {
    color: var(--black);
    font-weight: 600;
}

.about-content a {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
}

/* Fix visibility for feature list in about section */
.about-content .feature span {
    color: var(--gray-600);
    font-size: 15px;
}

.about-content .feature i {
    color: var(--black);
    /* Or var(--green) if preferred */
}

/* Fix visibility for contact details in about section */
.about-content .contact-item span {
    color: var(--gray-600);
    font-size: 15px;
}

.about-content .contact-item i {
    color: var(--black);
}

.about-content .contact-item strong {
    color: var(--black);
}

/* Close button for about section (hidden by default, can be added via JS or reusing hamburguer logic) */


/* --- New Mobile Menu Styles --- */

/* Header Override for Menu Area */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-top: 10px;
}

.menu-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
}

/* Close Button */
.close-menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--off-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 18px;
    transition: background 0.2s, transform 0.2s;
}

.close-menu-btn:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

/* Navigation Links */
.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--gray-700);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: transparent;
}

.menu-link i {
    font-size: 22px;
    margin-right: 16px;
    color: var(--gray-500);
    transition: color 0.2s;
}

.menu-link:hover,
.menu-link.active {
    background: var(--off-white);
    color: var(--black);
    font-weight: 600;
}

.menu-link:hover i,
.menu-link.active i {
    color: var(--black);
}

/* Social Section */
.menu-social-section {
    margin-bottom: 40px;
    padding: 0 4px;
}

.menu-social-section h4 {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.social-icons-row {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn.whatsapp:hover {
    background: #25D366;
    color: white;
}

.social-btn.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.google:hover {
    background: #DB4437;
    color: white;
}

/* Footer Info in Menu */
.menu-footer-info {
    padding: 24px 4px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-top: 1px solid var(--gray-100);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-item i {
    font-size: 20px;
    color: var(--black);
    background: var(--off-white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-item div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40px;
}

.info-item strong {
    font-size: 15px;
    color: var(--black);
    margin-bottom: 2px;
    display: block;
}

.info-item p,
.info-item a {
    font-size: 15px;
    color: var(--gray-500);
    text-decoration: none;
    margin: 0;
    line-height: 1.4;
}


/* --- content Sections --- */

.section-container {
    padding: 32px;
    border-bottom: 1px solid var(--gray-100);
}

.section-container.bg-gray {
    background: var(--off-white);
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.see-all-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
}

/* Fleet Styles */
.fleet-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 16px;
    /* Hide scrollbar spacing */
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -32px;
    /* Break container padding */
    padding: 0 32px 16px;
    /* Restore padding */
}

.fleet-scroll-container::-webkit-scrollbar {
    display: none;
}

.fleet-card {
    min-width: 200px;
    /* Fixed width for scroll items */
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s;
}

.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.fleet-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 28px;
    color: var(--black);
}

.fleet-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--black);
}

.fleet-info p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.price-tag {
    background: var(--black);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-card {
    background: var(--white);
    padding: 20px 16px;
    border-radius: var(--radius-md);
    text-align: left;
    /* Aligned left for cleaner look */
    border: 1px solid var(--gray-200);
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    border-color: var(--black);
    transform: translateY(-2px);
}

.service-icon {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 12px;
    background: var(--gray-50);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

/* Packages Cards - Clean Professional Look */
.package-card {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.2s ease;
}

.package-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--gray-300);
}

/* Removed gradients for clean white look */
.package-card.honey,
.package-card.temple,
.package-card.weekend {
    background: var(--white);
}

.package-content {
    position: relative;
    z-index: 2;
}

.tag {
    background: var(--black);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    /* Sharper corners */
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.package-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--black);
}

.package-card p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 0;
    max-width: 85%;
    line-height: 1.5;
}

.btn-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--gray-50);
    color: var(--black);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-arrow:hover {
    background: var(--black);
    color: var(--white);
}

/* --- Hero Banner Section --- */
.hero-banner {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    background: var(--gray-900);
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.hero-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-headline {
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    margin: 0;
}

.hero-subtext {
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.95;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.hero-cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* --- Intro Section --- */
.intro-section {
    background: var(--white);
    padding: 48px 24px;
}

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

.intro-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* --- Vehicle Selection Section --- */
.vehicle-list {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vehicle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.vehicle-item:hover {
    border-color: var(--black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: var(--gray-50);
}

.vehicle-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vehicle-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--black);
}

.vehicle-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 4px 0;
}

.vehicle-details p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.vehicle-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 100px;
}

.price-rate {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.book-vehicle-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.book-vehicle-btn:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
}

/* --- Curated Experiences Section --- */
.experiences-section {
    padding: 56px 20px;
    background: var(--gray-50);
}

.experiences-header {
    text-align: center;
    margin-bottom: 40px;
}

.experiences-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.experiences-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    font-weight: 400;
}

.experiences-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.experience-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s ease;
    position: relative;
}

.experience-card:hover {
    border-color: var(--black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.experience-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.experience-tag.spiritual {
    background: #FFF4E6;
    color: #E67E22;
}

.experience-tag.romantic {
    background: #FCE4EC;
    color: #E91E63;
}

.experience-tag.adventure {
    background: #E8F5E9;
    color: #4CAF50;
}

.experience-tag.business {
    background: #E3F2FD;
    color: #2196F3;
}

.experience-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.3;
}

.experience-desc {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 16px;
}

.experience-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.experience-btn:hover {
    background: #1fb855;
    transform: scale(1.02);
}

.experience-btn i {
    font-size: 18px;
}

/* Responsive: 2 columns on tablets and up */
@media (min-width: 640px) {
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 900px;
    }
}

/* Old package styles - keeping for backward compatibility */

/* Responsive: 2 columns on larger screens */
@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-headline {
        font-size: 38px;
    }

    .hero-subtext {
        font-size: 20px;
    }
}

/* Adjust form to overlap slightly */
.booking-form {
    position: relative;
    z-index: 10;
    margin: 20px 0 32px;
    /* Reset overlap margin */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    background: var(--white);
    padding: 24px;
}

.hero-section {
    padding: 0;
    /* Reset padding for form container */
}

/* Remove old hero title styles that clash */
.hero-content {
    display: block;
    text-align: center;
    margin-bottom: 24px;
}

/* About Section Styles */
.about-card {
    background: var(--white);
    padding: 16px 8px 32px;
    text-align: center;
}

.about-lead {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-text {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: transparent;
    padding: 24px 0 0;
    border-top: 1px solid var(--gray-100);
    border-radius: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    font-size: 28px;
    color: #05a357;
    /* Green brand color */
    margin-bottom: 8px;
    opacity: 0.9;
}

.stat-num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--gray-500);
    letter-spacing: 1px;
    font-weight: 600;
}

/* Responsive specific overrides */
@media (min-width: 481px) {
    .hero-title {
        font-size: 44px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .app-container {
        border-left: 1px solid var(--gray-100);
        border-right: 1px solid var(--gray-100);
    }
}

/* --- Popular Packages Section --- */
.popular-packages-section {
    padding: 64px 24px;
    background: var(--white);
}

.popular-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid Layout - List everything on scroll */
.popular-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

/* Mobile: Stack vertically */
@media (max-width: 991px) {
    .popular-packages-section {
        padding: 48px 24px;
    }

    .popular-packages-grid {
        grid-template-columns: 1fr;
        /* Single column stack */
        gap: 32px;
        /* More space between stacked cards */
    }
}

/* Card Styling */
.popular-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    /* Equal height cards */
}

.popular-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--gray-300);
}

.popular-image-wrapper {
    position: relative;
    height: 240px;
    /* Taller image for better visuals */
    overflow: hidden;
}

.popular-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.popular-card:hover .popular-image {
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    color: var(--black);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.popular-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.popular-content h3 {
    font-size: 20px;
    font-weight: 800;
    /* Bolder font */
    margin-bottom: 12px;
    color: var(--black);
    /* Capitalize and Letter Spacing */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.popular-info {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: center;
}

.popular-info span {
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.popular-price {
    margin-bottom: 24px;
    margin-top: auto;
    /* Push to bottom if content varies */
}

.price-label {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Wide spacing */
    font-weight: 700;
}

.price-val {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1px;
}

.popular-btn {
    width: 100%;
    padding: 14px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.popular-btn:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
}