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

:root {
    --primary: #1e88e5;
    --secondary: #00897b;
    --accent: #ff6d00;
    --gold: #c8a951;
    --navy: #0a1628;
    --whatsapp: #25D366;
    --light: #f8f9fa;
    --gray: #64748b;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1e293b;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.topbar {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2d4a 100%);
    color: #fff;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(200, 169, 81, 0.2);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-logo img {
    height: 70px;
    width: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.topbar-logo:hover img {
    transform: scale(1.05);
}

.topbar-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.topbar-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.topbar-info i {
    color: var(--gold);
    font-size: 14px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-right a {
    color: #fff;
    font-size: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(200, 169, 81, 0.15);
    border: 1px solid rgba(200, 169, 81, 0.3);
    transition: all 0.3s;
}

.topbar-right a:hover {
    color: var(--navy);
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.topbar-right a.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

/* Responsive topbar */
@media (max-width: 768px) {
    .topbar .container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .topbar-left {
        flex-direction: column;
        align-items: center;
    }
    
    .topbar-logo img {
        width: 160px;
        height: 50px;
    }
    
    .topbar-info {
        justify-content: center;
    }
}

/* Navbar - Natural Integration (Dark Navy with Gold Accents) */
.navbar {
    background: var(--navy);
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-links li a i {
    font-size: 14px;
    color: var(--gold);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--gold);
    background: rgba(200, 169, 81, 0.15);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gold);
}

/* Service Strip */
.service-strip {
    background: linear-gradient(135deg, #0d1f3c, #162d50);
    padding: 12px 0;
    border-bottom: 1px solid rgba(200, 169, 81, 0.2);
}

.service-strip .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.service-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200, 169, 81, 0.15);
}

.service-strip-item:hover {
    background: rgba(200, 169, 81, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.service-strip-item i {
    font-size: 16px;
    color: var(--gold);
}

.service-strip-item span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.3px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(10,22,40,0.7), rgba(30,136,229,0.4)), 
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=80') center/cover;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Search Section */
.search-section {
    background: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.search-tabs {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
    overflow-x: auto;
}

.search-tab {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
}

.search-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.search-tab:hover {
    color: var(--primary);
}

.search-form {
    display: none;
}

.search-form.active {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30,136,229,0.1);
}

.whatsapp-btn {
    background: var(--whatsapp);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* Destinations */
.destinations-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--navy);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--gray);
    font-size: 16px;
}

.category-title {
    font-size: 26px;
    color: var(--navy);
    margin: 40px 0 25px;
    font-weight: 700;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dest-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s;
}

.dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.dest-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.dest-card-body {
    padding: 15px;
}

.dest-card-body h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 5px;
}

.dest-card-body p {
    font-size: 12px;
    color: var(--gray);
}

/* Packages */
.packages-section {
    padding: 80px 0;
    background: var(--light);
}

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

.pkg-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pkg-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.pkg-card-body {
    padding: 20px;
}

.pkg-card-body h4 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
}

.pkg-card-body .duration {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pkg-card-body ul {
    list-style: none;
    font-size: 14px;
    color: #555;
    margin: 15px 0;
}

.pkg-card-body ul li {
    padding: 5px 0;
}

.pkg-card-body ul li i {
    color: var(--secondary);
    margin-right: 8px;
}

.pkg-price {
    background: var(--light);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pkg-price .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
}

.pkg-price .price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
}

.pkg-price .original {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 10px;
}

.whatsapp-enquire-btn {
    background: var(--whatsapp);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-enquire-btn:hover {
    background: #1da851;
}

/* Taxi Section */
.taxi-section {
    padding: 80px 0;
    background: var(--light);
}

.taxi-intro {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.taxi-intro p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.taxi-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.taxi-features .feature {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
}

.taxi-features .feature i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

.taxi-features .feature span {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.taxi-coverage {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
    margin-top: 20px;
}

.taxi-coverage h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}

.taxi-coverage p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.vehicle-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vehicle-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.vehicle-card-body {
    padding: 20px;
}

.vehicle-card-body h4 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.vehicle-card-body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.why-taxi {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.why-taxi h3 {
    font-size: 28px;
    color: var(--navy);
    text-align: center;
    margin-bottom: 30px;
}

.why-taxi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-taxi-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s;
}

.why-taxi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.why-taxi-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.why-taxi-card h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 10px;
}

.why-taxi-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* About */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.about-features .feature i {
    color: var(--primary);
    font-size: 18px;
}

.about-features .feature span {
    font-size: 14px;
    font-weight: 500;
}

/* Services */
.services-section {
    padding: 80px 0;
    background: var(--light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 3px solid var(--primary);
}

.service-card:nth-child(2) {
    border-top-color: var(--secondary);
}

.service-card:nth-child(3) {
    border-top-color: var(--accent);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card i {
    font-size: 42px;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Contact */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--navy);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    border-left: 3px solid var(--gold);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-card i {
    font-size: 24px;
    color: var(--gold);
    margin-top: 5px;
}

.contact-card h4 {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    opacity: 0.9;
}

.contact-card a {
    color: #fff;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-form-container {
    background: var(--light);
    border-radius: 12px;
    padding: 30px;
}

.contact-form-container h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 15px;
}

.contact-form-container p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.whatsapp-btn-large {
    background: var(--whatsapp);
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-btn-large:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* Footer */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h5 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul a {
    font-size: 13px;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: var(--gold);
}

.footer-logo {
    width: 220px;
    height: 70px;
    margin-bottom: 15px;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-section p i {
    margin-right: 8px;
    color: var(--gold);
    width: 16px;
}

.footer-section p a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-section p a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    opacity: 0.5;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

.whatsapp-float i {
    font-size: 32px;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .topbar .container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        border-top: 1px solid rgba(200, 169, 81, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        color: rgba(255,255,255,0.85);
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: var(--gold);
        background: rgba(200, 169, 81, 0.1);
    }

    .mobile-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .search-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .pkg-grid,
    .vehicle-grid,
    .service-grid,
    .why-taxi-grid {
        grid-template-columns: 1fr;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 26px;
    }
}
