:root {
    --primary: #0056B3;
    --primary-dark: #004494;
    --primary-light: #4dabf5;
    --secondary: #f5f5f7;
    --text-main: #1d1d1f;
    --text-light: #86868b;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #0056B3 0%, #00c6ff 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --radius: 12px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-main);
}

.logo img {
    height: 40px;
    width: 40px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, #f5f9ff 0%, #ffffff 70%);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transform: translateY(0);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 86, 179, 0.3);
}

/* Content Sections */


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    padding: 40px;
    background: var(--secondary);
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* City Tabs */
.city-tabs-container {
    overflow-x: auto;
    padding-bottom: 20px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.city-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    min-width: max-content;
    padding: 0 20px;
}

.city-tab {
    padding: 10px 24px;
    background: white;
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.2s;
    white-space: nowrap;
}

.city-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.city-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

.city-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.2s;
}

.service-link-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-light);
}

.service-emoji {
    font-size: 1.5rem;
}

.service-title {
    font-weight: 500;
    font-size: 0.95rem;
    flex: 1;
    /* Take up remaining space */
}

.service-chevron {
    color: #cbd5e1;
    font-size: 1.5rem;
    font-weight: 300;
}


.link-button {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
}

.link-button:hover {
    text-decoration: underline;
}


/* Accordion & FAQ Styling */
.accordion-header,
.faq-header {
    width: 100%;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1e293b;
    transition: all 0.2s ease;
    margin-bottom: 8px;
    text-align: left;
    font-family: inherit;
}

.accordion-header:hover,
.faq-header:hover {
    background: #f1f5f9;
    border-color: var(--primary-light);
}

.accordion-header.active,
.faq-header.active {
    border-color: var(--primary);
    background: #fff;
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
}

.accordion-icon,
.faq-icon {
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    display: inline-block;
}

.accordion-header.active .accordion-icon,
.faq-header.active .faq-icon {
    transform: rotate(45deg);
}

.accordion-content,
.faq-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.accordion-content.active,
.faq-content.active {
    max-height: 1000px;
    padding: 0 20px 20px;
}

.accordion-content p,
.faq-content p {
    margin-top: 15px;
    line-height: 1.7;
    color: #475569;
}

/* Global Table Responsiveness - Strong Overrides */
body .table-wrapper {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: auto !important;
    display: block !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 24px 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    background: white !important;
}

body .table-wrapper table,
body .fare-table,
body .pkg-table {
    width: 100% !important;
    min-width: 600px !important;
    /* Force a minimum width to trigger scrolling */
    border-collapse: collapse !important;
    margin: 0 !important;
}

@media (max-width: 640px) {

    body .table-wrapper table,
    body .fare-table,
    body .pkg-table {
        min-width: 500px !important;
        font-size: 0.85rem !important;
    }

    body .table-wrapper th,
    body .table-wrapper td {
        padding: 12px 8px !important;
        white-space: nowrap !important;
        /* Keep rows clean on one line */
    }
}


.taxi-page {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
}

.taxi-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../assets/2.jpg');
    background-size: cover;
    background-position: 100% 75%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.taxi-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.taxi-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.taxi-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

@media (max-width: 900px) {
    .taxi-layout {
        grid-template-columns: 1fr;
    }

    .taxi-hero h1 {
        font-size: 2rem;
    }
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1e293b;
}

.content-section {
    margin-bottom: 48px;
}

.content-section p {
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.fare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.fare-table th {
    background: #0056B3;
    color: white;
    text-align: left;
    padding: 16px;
}

.fare-table td {
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
    background: white;
}

.fare-table tr:last-child td {
    border-bottom: none;
}

.booking-sidebar {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 90px;
    height: fit-content;
}

.sidebar-price-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 4px;
}

.sidebar-price {
    font-size: 2rem;
    font-weight: 800;
    color: #0056B3;
    margin-bottom: 16px;
}

.sidebar-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}



.vendor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.v-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v-info h4 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.v-rating {
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Tour Packages Section */
.tour-packages-section {
    padding: 80px 0;
    background: #fff;
}

.packages-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pkg-card-mini {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.pkg-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pkg-img-mini {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.pkg-info-mini {
    padding: 24px;
}

.pkg-title-mini {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.pkg-footer-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.pkg-price-mini {
    font-weight: 800;
    color: #0056B3;
    font-size: 1.2rem;
}

.pkg-link-mini {
    color: #0056B3;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .city-tabs {
        justify-content: flex-start;
    }
}


/* Content Page (Privacy, Delete) */
.content-page {
    padding: 140px 0 100px;
    max-width: 800px;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.content-page h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: var(--text-main);
}

.content-page p,
.content-page ul {
    margin-bottom: 16px;
    color: var(--text-light);
}

.content-page ul {
    padding-left: 24px;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e1e1e1;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.delete-warning {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    color: #c53030;
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.contact-card {
    background: var(--secondary);
    padding: 24px;
    border-radius: var(--radius);
    margin: 20px 0;
    line-height: 1.6;
}

.contact-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

/* Footer */
footer {
    background: #fbfbfd;
    padding: 80px 0 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-info {
    flex: 1;
    max-width: 400px;
}

.footer-info p {
    margin: 20px 0;
    color: var(--text-light);
    font-size: 1rem;
}

.footer-links-grid {
    display: flex;
    gap: 80px;
}

.footer-links-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: var(--text-main);
}

.footer-links-col a {
    display: block;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-links-col a:hover {
    color: var(--primary);
}

.copyright {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 32px;
}

/* Footer SEO Section */
.footer-seo-section {
    margin-top: 40px;
}

.footer-section-title {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: var(--text-main);
    text-align: center;
}

.footer-seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
}

.footer-city-column h4 {
    margin-bottom: 18px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-city-column a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.footer-city-column a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links-grid {
        gap: 40px;
        flex-wrap: wrap;
    }
}

#for-vendors.section {
    padding: 100px 0
}

/* App Download Banner */
.app-banner-section {
    padding: 100px 0;
    margin-bottom: 40px;
}

.app-banner {
    background: var(--gradient);
    border-radius: 32px;
    padding: 60px;
    color: white;
    display: flex;
    align-items: center;
    gap: 60px;
    overflow: visible;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.2);
    min-height: 380px;
    margin: 100px 0;
}

.app-banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.app-banner-image img {
    max-width: 120%;
    width: auto;
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    object-fit: contain;
    transform: scale(1.1) translateY(-10px);
    margin-top: -60px;
    margin-bottom: -60px;
}

.app-banner-content {
    flex: 1.2;
    text-align: left;
    position: relative;
    z-index: 2;
}

.app-banner-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.app-banner-content .banner-buttons {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .app-banner {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px 40px;
        gap: 20px;
        margin-top: 80px;
    }

    .app-banner-image {
        display: flex;
        width: 100%;
        margin-top: -120px;
        margin-bottom: 0;
        justify-content: center;
    }

    .app-banner-image img {
        max-height: 300px;
        transform: none;
        margin: 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }

    .app-banner-content {
        text-align: center;
        padding-top: 10px;
    }

    .app-banner-content h2 {
        font-size: 2rem;
    }

    .banner-buttons {
        justify-content: center;
    }
}

/* Category Header Base Style */
.category-header {
    padding-top: 120px;
    /* Ensure space for fixed header on desktop */
    padding-bottom: 40px;
}

.faded-vendor {
    opacity: 0.5;
    filter: blur(2px);
    pointer-events: none;
    user-select: none;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.vendor-cta-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -40px 0 -40px;
    /* Overlap slightly */
    position: relative;
    z-index: 10;
    padding: 20px;
}

.vendor-cta-button {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
    border: 2px solid white;
    text-transform: none;
    /* Ensure no unwanted transform */
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.vendor-cta-button:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .category-header {
        /* margin-top: 80px; Removed redundant margin */
        padding-top: 100px;
        /* Add padding to prevent overlap */
    }

    .hero {
        padding: 140px 0 60px;
        /* Increase top padding for fixed header */
        margin-top: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .app-banner-section {
        padding: 60px 0;
    }

    .app-banner {
        border-radius: 24px;
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        height: auto;
        min-height: auto;
        overflow: visible;
        /* Ensure content is not clipped */
    }

    .app-banner-image {
        margin: 0 0 20px 0;
        /* Reset negative margins */
        display: block;
        /* Ensure it takes up space */
        order: -1;
    }

    .app-banner-image img {
        transform: none;
        max-width: 100%;
        max-height: 250px;
        margin: 0 auto;
    }

    .nav-links {
        display: none;
    }
}

/* Mobile Navigation & Accordion */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
    z-index: 1001;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    padding: 24px;
    overflow-y: auto;
    z-index: 1000;
}

.mobile-nav.active {
    display: block;
}

.mobile-main-links {
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 400;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    display: none;
    padding-bottom: 16px;
}

.accordion-content.active {
    display: block;
}

.accordion-content a {
    display: block;
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--secondary);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    padding: 20px 0;
}

.city-item {
    background: white;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: default;
}

.city-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* About Intro */
.about-intro {
    background: white;
    padding-bottom: 40px;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 24px;
    text-align: center;
    line-height: 1.8;
}

/* Alert Box Override */
.alert-box {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 86, 179, 0.2) !important;
    color: var(--text-main);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Updated shadow */
}

@media (max-width: 768px) {
    .about-intro h2 {
        font-size: 2rem;
    }
}

/* Reorder Taxi Layout on Mobile */
@media (max-width: 900px) {
    body .taxi-layout {
        display: flex !important;
        flex-direction: column !important;
    }

    body .sidebar-container {
        order: -1 !important;
        margin-bottom: 24px !important;
    }

    body .booking-sidebar {
        position: static !important;
        width: 100% !important;
    }
}

/* Taxi Calculator Styles */
.taxi-calculator {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.calc-field {
    margin-bottom: 12px;
}

.calc-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.calc-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #1e293b;
    transition: all 0.2s;
    cursor: pointer;
}

.calc-input:focus {
    outline: none;
    border-color: #0056B3;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.calc-result-box {
    background: linear-gradient(135deg, #0056B3 0%, #00c6ff 100%);
    color: white;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    margin-top: 16px;
}

.calc-result-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-bottom: 2px;
}

.calc-result-value {
    font-size: 1.5rem;
    font-weight: 800;
}

.calc-tabs {
    margin-bottom: 16px;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 10px;
    display: flex;
}

.calc-type-btn {
    flex: 1;
    padding: 8px;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.2s;
}

.calc-type-btn.active {
    background: white;
    color: #0056B3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* WhatsApp Buttons */
.whatsapp-card-button {
    background: #25D366;
    color: white;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: all 0.2s;
    border: 2px solid transparent;
}

.whatsapp-card-button:hover {
    background: #20b857;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    color: white;
}

.whatsapp-card-button img {
    width: 20px;
    height: 20px;
}

.whatsapp-card-button::after {
    content: " →";
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.whatsapp-card-button:hover::after {
    transform: translateX(4px);
}

/* Mini WhatsApp Button for Tour Packages */
.whatsapp-mini-btn {
    background: #25D366;
    color: white;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    border: 1px solid transparent;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.15);
}

.whatsapp-mini-btn:hover {
    background: #20b857;
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.25);
}

.whatsapp-mini-btn img {
    width: 18px;
    height: 18px;
}

.whatsapp-mini-btn::after {
    content: " →";
    font-size: 1rem;
    transition: transform 0.2s;
}

.whatsapp-mini-btn:hover::after {
    transform: translateX(4px);
}

/* Darker Premium Gradient Price Box */
.calc-result-box {
    margin-top: 24px;
    padding: 24px 20px; /* More vertical breath */
    background: linear-gradient(135deg, #004494 0%, #002e62 100%); /* CUSTOM DARKER GRADIENT */
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.calc-result-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 10px; /* MORE GAP */
}

.calc-result-value {
    font-size: 1.7rem !important;
    font-weight: 800;
    color: white !important;
    line-height: 1;
}

/* Compact WhatsApp Button (Darker Green) */
.calc-whatsapp-link {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px; /* MORE GAP */
    background: white;
    color: #15803d !important; /* DARKER GREEN */
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: underline;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.calc-whatsapp-link:hover {
    transform: scale(1.02);
    color: #15803d !important;
}

.calc-whatsapp-link img {
    width: 16px;
    height: 16px;
}
