/* Uber/Ola Style Modern Design */

/* CSS Variables */
:root {
    --black: #000000;
    --white: #ffffff;
    --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;

    --green: #10b981;
    --green-dark: #059669;
    --blue: #3b82f6;
    --red: #ef4444;
    --yellow: #f59e0b;
    --whatsapp: #25d366;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Status Bar */
.status-bar {
    background: var(--black);
    color: var(--white);
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.status-left .time {
    font-weight: 700;
}

.status-right {
    display: flex;
    gap: 6px;
    align-items: center;
}

.status-right i {
    font-size: 16px;
}

/* App Container */
.app-container {
    max-width: 428px;
    margin: 0 auto;
    background: var(--white);
    min-height: calc(100vh - 44px);
    position: relative;
    box-shadow: var(--shadow-xl);
}

/* Header */
.app-header {
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
}

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

.location-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.location-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 18px;
}

.header-logo {
    height: 50px;
    width: auto;
}

.location-text {
    display: flex;
    flex-direction: column;
}

.location-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 400;
}

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

/* Hamburger Menu */
.menu-section {
    margin-left: 16px;
}

.hamburger-menu {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1100;
}

.hamburger-menu:hover {
    border-color: var(--black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hamburger-menu.active {
    border-color: var(--black);
    background: var(--gray-50);
}

.hamburger-line {
    width: 18px;
    height: 2px;
    background: var(--gray-600);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

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

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

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

/* About Section */
.about-section {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-section.open {
    left: 0;
}

.about-container {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    border-radius: 20px;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.about-section.open .about-container {
    transform: scale(1);
}

.about-header {
    background: var(--black);
    color: var(--white);
    padding: 24px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.about-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.about-header p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

.about-content {
    padding: 24px;
    line-height: 1.6;
}

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

.about-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.about-content li {
    margin-bottom: 8px;
    color: var(--gray-700);
}

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

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}

.feature i {
    color: var(--green);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-section {
    margin-top: 24px;
    padding: 20px 0 0;
    border-top: 2px solid var(--gray-100);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.contact-item i {
    color: var(--gray-600);
    font-size: 20px;
    width: 22px;
    flex-shrink: 0;
}

.contact-item span {
    color: var(--gray-700);
    font-size: 15px;
}

.contact-item strong {
    color: var(--black);
    font-weight: 600;
}

/* Navigation Menu Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 1049;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-menu.open {
    right: 0;
}

.nav-menu-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-400);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.close-menu:hover {
    background: var(--gray-100);
    color: var(--black);
}

.nav-content {
    flex: 1;
    padding: 24px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--gray-700);
    border-radius: 12px;
    transition: all 0.15s ease;
    margin-bottom: 2px;
}

.nav-link:hover {
    background: var(--gray-50);
    color: var(--black);
}

.nav-link:active {
    background: var(--gray-100);
    transform: scale(0.98);
}

.nav-link span {
    font-size: 16px;
    font-weight: 500;
}

.nav-spacer {
    height: 40px;
}

.nav-footer {
    margin-top: auto;
    padding: 24px;
    border-top: 1px solid var(--gray-100);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 24px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-btn:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.contact-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

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

/* Hero Section */
.hero-section {
    padding: 48px 0 64px;
}

.hero-content {
    text-align: left;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

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

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.action-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.action-card:active {
    transform: translateY(0);
}

.primary-action {
    background: var(--black);
    color: var(--white);
    border: none;
}

.primary-action:hover {
    color: var(--white);
    background: var(--gray-800);
}

.secondary-action {
    background: var(--whatsapp);
    color: var(--white);
    border: none;
}

.secondary-action:hover {
    color: var(--white);
    background: #22c55e;
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.call-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.whatsapp-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.action-content {
    flex: 1;
}

.action-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.action-subtitle {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    font-weight: 400;
}

.action-badge {
    position: absolute;
    top: 12px;
    right: 16px;
}

.action-badge span {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Booking Section */
.booking-section {
    margin-bottom: 80px;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

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

/* Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-group {
    position: relative;
}

.input-field {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    z-index: 2;
    color: var(--gray-400);
    font-size: 18px;
}

.form-input {
    width: 100%;
    height: 56px;
    padding: 0 16px 0 52px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-family);
    background: var(--white);
    color: var(--black);
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-input:focus + .input-icon {
    color: var(--black);
}

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

/* Book Button */
.book-btn {
    width: 100%;
    height: 56px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

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

.book-btn:active {
    transform: translateY(0);
}

.book-btn.loading .btn-text {
    opacity: 0;
}

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

.btn-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Features Section */
.features-section {
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gray-600);
    font-size: 20px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
}

.feature-desc {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 400;
}



/* Pricing Section */
.pricing-section {
    margin-bottom: 40px;
}

.pricing-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.pricing-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.pricing-desc {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.pricing-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}

.highlight-item i {
    color: var(--green);
    font-size: 18px;
    flex-shrink: 0;
}



/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 428px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 12px 0 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--gray-500);
}

.nav-item.active {
    color: var(--black);
    background: var(--gray-100);
}

.nav-item:hover {
    color: var(--black);
    background: var(--gray-50);
}

.nav-icon {
    font-size: 20px;
}

.nav-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Call Button */
.call-button {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 200;
}

.call-btn {
    width: 56px;
    height: 56px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: all 0.2s ease;
    animation: pulse-call 3s infinite;
}

.call-btn:hover {
    color: var(--white);
    background: var(--gray-800);
    transform: scale(1.05);
}

.call-btn:active {
    transform: scale(0.95);
}

.call-icon {
    font-size: 24px;
}

@keyframes pulse-call {
    0% {
        box-shadow: var(--shadow-xl), 0 0 0 0 rgba(0, 0, 0, 0.3);
    }
    70% {
        box-shadow: var(--shadow-xl), 0 0 0 20px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: var(--shadow-xl), 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Responsive Design */
@media (max-width: 428px) {
    .app-container {
        max-width: 100%;
        box-shadow: none;
    }

    .main-content {
        padding: 24px 20px 120px;
    }

    .hero-section {
        padding: 24px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 22px;
    }

    .quick-actions {
        gap: 12px;
    }

    .action-card {
        padding: 16px;
    }

    .action-title {
        font-size: 16px;
    }

    .features-grid {
        gap: 12px;
    }

    .feature-item {
        padding: 16px 12px;
    }

    .service-card {
        padding: 16px;
    }

    .call-button {
        right: 20px;
        bottom: 90px;
    }

    .call-btn {
        width: 52px;
        height: 52px;
    }

    .call-icon {
        font-size: 22px;
    }
}

@media (max-width: 375px) {
    .main-content {
        padding: 24px 16px 120px;
    }

    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 20px;
    }

    .action-card {
        padding: 14px;
    }

    .action-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .action-title {
        font-size: 16px;
    }

    .action-subtitle {
        font-size: 16px;
    }

    .feature-item {
        padding: 14px 10px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .feature-title {
        font-size: 13px;
    }

    .feature-desc {
        font-size: 11px;
    }
}

/* Accessibility */
.action-card:focus,
.service-card:focus,
.book-btn:focus,
.call-btn:focus {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.form-input:focus {
    outline: none;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
        --shadow-md: 0 6px 8px -1px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 12px 16px -3px rgba(0, 0, 0, 0.3);
        --shadow-xl: 0 24px 30px -5px rgba(0, 0, 0, 0.3);
    }

    .action-card,
    .feature-item,
    .service-card {
        border-width: 2px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .call-btn {
        animation: none;
    }
}

/* Drop Taxi Section */
.drop-taxi-section {
    padding: 0 24px 120px;
}

.drop-taxi-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drop-taxi-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.drop-taxi-card:hover {
    box-shadow: var(--shadow-md);
}

.drop-taxi-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.drop-taxi-header:hover {
    background: var(--gray-50);
}

.drop-taxi-info {
    flex: 1;
}

.drop-taxi-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.3;
}

.vehicle-types {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vehicle-type {
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drop-taxi-arrow {
    color: var(--gray-400);
    font-size: 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.drop-taxi-expanded {
    border-top: 1px solid var(--gray-100);
    padding: 20px;
    background: var(--gray-50);
}

.drop-taxi-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .input-group {
    flex: 1;
}

.drop-taxi-submit {
    width: 100%;
    height: 48px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.drop-taxi-submit:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.drop-taxi-submit:active {
    transform: translateY(0);
}

.drop-taxi-submit.loading .btn-text {
    opacity: 0;
}

.drop-taxi-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive adjustments for drop taxi */
@media (max-width: 428px) {
    .drop-taxi-section {
        padding: 0 20px 120px;
    }

    .drop-taxi-header {
        padding: 16px;
    }

    .drop-taxi-expanded {
        padding: 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 375px) {
    .drop-taxi-section {
       padding: 40px 16px 120px;
    }

    .drop-taxi-title {
        font-size: 15px;
    }

    .vehicle-type {
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* Outstation Section */
.outstation-section {
    padding: 0 24px 120px;
}

.service-overview {
    margin-bottom: 24px;
}

.overview-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

.overview-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.overview-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.destinations-section {
    margin-bottom: 24px;
}

.destinations-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin: 50px 16px 30px 16px;
    text-align: center;
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

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

.destination-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.destination-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 18px;
    flex-shrink: 0;
}

.destination-info {
    flex: 1;
}

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

.destination-info p {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 6px;
    line-height: 1.3;
}

.destination-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    display: block;
}

.booking-section {
    margin-bottom: 24px;
}

.booking-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: center;
}

.booking-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
    margin: 0 auto;
}

.booking-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.booking-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.contact-phone:hover {
    color: var(--white);
    background: var(--gray-800);
    transform: translateY(-1px);
}

.contact-phone i {
    font-size: 18px;
}

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

.availability i {
    color: var(--green);
    font-size: 16px;
}

.key-features {
    margin-bottom: 24px;
}

.key-features h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.key-features .feature-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.key-features .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.key-features .feature-item i {
    display: block;
    font-size: 24px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.key-features .feature-item span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
}

/* Bus Tempo Section */
.bus-tempo-section {
    padding: 0 24px 120px;
}

.service-overview {
    margin-bottom: 24px;
}

.overview-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

.overview-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.overview-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.booking-section {
    margin-bottom: 24px;
}

.booking-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: center;
}

.booking-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
    margin: 0 auto;
}

.booking-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.booking-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.contact-phone:hover {
    color: var(--white);
    background: var(--gray-800);
    transform: translateY(-1px);
}

.contact-phone i {
    font-size: 18px;
}

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

.availability i {
    color: var(--green);
    font-size: 16px;
}

.key-features {
    margin-bottom: 24px;
}

.key-features h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin: 50px 16px 30px 16px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.key-features .feature-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.key-features .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.key-features .feature-item i {
    display: block;
    font-size: 24px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.key-features .feature-item span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
}

/* Responsive adjustments for outstation */
@media (max-width: 428px) {
    .outstation-section {
        padding: 0 20px 120px;
    }

    .outstation-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .outstation-header {
        padding: 14px;
    }

    .outstation-image {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .outstation-title {
        font-size: 13px;
    }

    .tour-duration,
    .vehicle-custom {
        font-size: 9px;
        padding: 2px 5px;
    }

    .outstation-expanded {
        padding: 14px;
    }

    .tour-itinerary h4,
    .tour-pricing h4 {
        font-size: 13px;
    }

    .tour-itinerary li {
        font-size: 11px;
    }

    .tour-pricing p {
        font-size: 13px;
    }

    .tour-pricing small {
        font-size: 10px;
    }
}

/* Responsive adjustments for bus tempo */
@media (max-width: 428px) {
    .bus-tempo-section {
        padding: 0 20px 120px;
    }

    .description-card {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }

    .description-icon {
        align-self: center;
    }

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

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

    .event-item {
        padding: 14px;
    }

    .info-card {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        align-self: center;
    }
}

@media (max-width: 375px) {
    .outstation-section {
       padding: 40px 16px 120px;
    }

    .bus-tempo-section {
       padding: 40px 16px 120px;
    }

    .description-card {
        padding: 14px;
    }

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

    .area-item {
        padding: 10px;
    }

    .event-item {
        padding: 12px;
    }

    .info-card {
        padding: 14px;
    }
}

/* FAQ Section */
.faq-section {
    margin-bottom: 60px;
}

/* Section Header Spacing */
.section-header {
    margin-bottom: 32px;
}

.section-header .section-title {
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-header .section-subtitle {
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* FAQ Item Styles */
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    flex-shrink: 0;
    color: var(--gray-400);
    font-size: 20px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--gray-50);
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 16px 0 0 0;
}

.faq-answer a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-cta {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    color: var(--white);
    margin-top: 24px;
}

.faq-cta h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.faq-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0 0 24px 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.primary {
    background: var(--white);
    color: var(--black);
}

.cta-button.primary:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.cta-button i {
    font-size: 18px;
}

/* Footer Styles */
.app-footer {
    background: var(--black);
    color: var(--gray-50);
    padding: 60px 24px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-300);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.footer-content h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-content li {
    margin-bottom: 12px;
}

.footer-content a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.footer-content a:hover {
    color: var(--white);
}

.footer-content p {
    margin: 0;
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-content i {
    color: var(--gray-400);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 14px;
    margin: 0;
}

/* Enhanced Features Grid Styles */
.features-section {
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    border-color: var(--gray-200);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 16px -4px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.feature-item:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
    box-shadow: 0 8px 16px -4px rgba(59, 130, 246, 0.4);
}

.feature-item:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--red) 0%, #dc2626 100%);
    box-shadow: 0 8px 16px -4px rgba(220, 38, 38, 0.4);
}

.feature-item:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, var(--yellow) 0%, #d97706 100%);
    box-shadow: 0 8px 16px -4px rgba(217, 119, 6, 0.4);
}

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

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

    .feature-desc {
        font-size: 16px;
        color: var(--gray-600);
        font-weight: 400;
        line-height: 1.5;
    }

/* Responsive styles for footer and enhanced features */
@media (max-width: 768px) {
    .app-footer {
        padding: 40px 20px 20px;
        margin-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content h4 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: none;
    }

    .feature-item {
        padding: 24px 16px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 16px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-desc {
        font-size: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 60px;
    }
}

@media (max-width: 375px) {
    .footer-content {
        gap: 24px;
    }

    .footer-brand h3 {
        font-size: 22px;
    }

    .footer-content h4 {
        font-size: 16px;
    }

    .feature-item {
        padding: 24px 20px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
        margin-bottom: 16px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-desc {
        font-size: 14px;
    }
}
