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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f0f8ff; /* Soft blueish background for the page below the slider */
}

/* Top Bar Styles */
.top-bar {
    background-color: #16377c;
    color: #e5e7eb;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}

.top-bar a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #f97316;
}

.top-bar i {
    color: #f97316;
    margin-right: 6px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-center {
    display: flex;
    gap: 15px;
}

.top-bar-center i {
    color: #e5e7eb;
    margin: 0;
    font-size: 14px;
    transition: color 0.3s;
}

.top-bar-center a:hover i {
    color: #f97316;
}

/* Header Styles */
.main-header {
    background-color: white;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    color: #111;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: #fff5f0;
    color: #f97316;
    border: 1px solid #ffd8c4;
    font-size: 22px;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-toggle:hover {
    background-color: #f97316;
    color: #ffffff;
}

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

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-menu a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-menu a .arrow {
    font-size: 12px;
    color: #6b7280;
    transition: color 0.3s;
}

.main-menu a.active, .main-menu a:hover {
    color: #16377c; /* Blue */
}
.main-menu a.active .arrow, .main-menu a:hover .arrow {
    color: #16377c;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff5f0;
    border: 1px solid #ffd8c4;
    border-radius: 8px;
    padding: 10px 18px;
    height: 46px;
    box-sizing: border-box;
}

.contact-card i {
    color: #f97316;
    font-size: 22px;
}

.contact-card-text {
    line-height: 1.3;
}

.contact-card-text .phone-number {
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

.contact-card-text .availability {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.book-now-btn {
    background-color: #f97316;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.book-now-btn:hover {
    background-color: #d85c07;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: auto;
    min-height: 600px;
    width: 100%;
    margin-bottom: 50px;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 20px 50px;
}

.slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 55, 124, 0.52) 0%, rgba(12, 35, 86, 0.42) 50%, rgba(249, 115, 22, 0.3) 100%);
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.45);
    border: 1.5px solid #f59e0b;
    color: #fbbf24;
    font-size: 12.5px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 25px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.slide .content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    max-width: 950px;
    margin: 0 auto 35px;
    transform: none;
}

.slide h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.slide p {
    font-size: 16px;
    font-weight: 500;
    max-width: 720px;
    margin: 0 auto 25px;
    color: #f1f5f9;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.primary-btn {
    background: linear-gradient(135deg, #ff8c00, #f97316);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    border: none;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.whatsapp-btn {
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    border: 1.5px solid #ffffff;
    backdrop-filter: blur(4px);
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: #25D366;
    color: #ffffff;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    font-size: 18px;
    color: #25D366;
}

/* Navigation Arrows (Hidden) */
.nav-btn {
    display: none !important;
}


/* Booking Widget Bar (2nd Image Style) */
.booking-widget-wrapper {
    position: relative;
    z-index: 25;
    width: 92%;
    max-width: 1150px;
    margin: 0 auto;
}

.booking-widget-bar {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    padding: 14px 24px;
    border: 1px solid #e2e8f0;
}

.hero-booking-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.booking-field-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.field-icon {
    font-size: 22px;
    color: #f97316;
    flex-shrink: 0;
}

.field-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.field-label {
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.field-select {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
    cursor: pointer;
    padding: 2px 0;
    font-family: 'Inter', sans-serif;
    width: 100%;
    text-overflow: ellipsis;
}

.field-date {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
    cursor: pointer;
    padding: 2px 0;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.field-divider {
    width: 1px;
    height: 38px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.search-cabs-btn {
    background: linear-gradient(135deg, #ff8c00, #f97316);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.search-cabs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.45);
    background: linear-gradient(135deg, #f97316, #ea580c);
}

/* Specific styling for the 'simplicity' blue background highlight */
.highlight-text {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.highlight-text::after {
    content: '';
    position: absolute;
    right: -4px;
    bottom: 2px;
    width: 18px;
    height: 18px;
    background-color: #16377c;
    border-radius: 50%;
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .widget-form {
        flex-wrap: wrap;
    }
    .search-btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .slide h1 { font-size: 48px; }
    .widget-tabs {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .booking-widget {
        padding: 20px;
    }
    .booking-widget-wrapper {
        bottom: -20px;
    }
}

/* About Section */
.about-section {
    padding: 70px 50px 80px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-btn {
    background: #111;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.about-btn:hover {
    background: #16377c; /* Blue on hover */
}

.customer-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -15px;
    object-fit: cover;
}

.avatars .avatar:first-child {
    margin-left: 0;
}

.stats-text {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.stats-text strong {
    color: #111;
    font-weight: 700;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-mask {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    overflow: hidden;
    /* Adding a subtle uneven clip-path for that brush look if desired, or just rounded corners */
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-mask img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: 20px;
    background-color: #f97316; /* Dark green from the design */
    color: white;
    padding: 30px 40px;
    border-radius: 20px;
    /* Hexagon-ish shape using clip path */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 5px solid white; /* To create separation */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-content .years {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
}
.badge-content .years sup {
    font-size: 24px;
    position: absolute;
    top: 5px;
    right: -20px;
}

.badge-content .text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        gap: 60px;
    }
    .about-image-wrapper {
        justify-content: center;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .about-section {
        padding: 80px 20px 60px;
    }
    .about-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Features Banner Section */
.features-banner {
    background-color: #f97316;
    padding: 30px 50px;
    color: #ffffff;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.features-banner .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 240px;
}

.features-banner .feature-icon {
    font-size: 32px;
    color: #ffffff !important;
    flex-shrink: 0;
}

.features-banner .feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff !important;
}

.features-banner .feature-text p {
    font-size: 13.5px;
    color: #ffffff !important;
    opacity: 0.95;
    line-height: 1.4;
    font-weight: 400;
}

@media (max-width: 992px) {
    .features-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}

/* Tours Section */
.tours-section {
    padding: 80px 50px;
    background-color: #f9f9f9;
    background-image: url('../images/background-1.webp');
    background-size: cover;
    background-position: center;
}

.tours-header {
    text-align: center;
    margin-bottom: 50px;
}

.tours-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.tours-header p {
    font-size: 16px;
    color: #f1f1f1;
    max-width: 600px;
    margin: 0 auto;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-card:hover .card-image img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.badge.hot {
    background: #f97316; /* Red badge */
}

.card-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.location {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: auto;
}

.book-btn {
    background: #16377c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #0d2254;
}

.price {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.price .label {
    font-size: 12px;
    color: #666;
}

.price .amount {
    font-size: 22px;
    font-weight: 800;
    color: #111;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eaeaea;
    padding-top: 15px;
    font-size: 13px;
    color: #444;
    font-weight: 600;
}

.card-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-footer i:not(.info-icon) {
    color: #666;
    font-size: 14px;
}

.card-footer .info-icon {
    color: #aaa;
    font-size: 12px;
}

@media (max-width: 1200px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .tours-section {
        padding: 60px 20px;
    }
    .tours-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 90px 50px;
    background-color: #ffffff;
}

.wcu-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.wcu-images {
    flex: 5;
    min-height: 480px;
}

.wcu-img-main {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.wcu-content {
    flex: 7;
}

.wcu-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 35px;
    position: relative;
}

.wcu-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #f97316;
    border-radius: 2px;
    margin-top: 10px;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.why-choose-us .feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.why-choose-us .feature-item:hover {
    background: #ffffff;
    border-color: #ffd8c4;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.08);
    transform: translateY(-3px);
}

.why-choose-us .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #fff5f0;
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.12);
}

.why-choose-us .feature-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.why-choose-us .feature-text p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
}

.explore-btn {
    background-color: #f97316;
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.25);
}

.explore-btn:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
}
    background-color: #ea580c;
}

@media (max-width: 1024px) {
    .wcu-container {
        flex-direction: column;
    }
    .wcu-images {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 20px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .wcu-images {
        height: 300px;
    }
}

/* Our Fleet Section */
.fleet-section {
    padding: 80px 50px;
    background-color: #f7f8f9;
}

.fleet-header {
    text-align: center;
    margin-bottom: 50px;
}

.fleet-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.fleet-header p {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    /* Thick grey border effect as per design */
    border: 15px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.car-image {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.car-details h3 {
    color: #facc15; /* Yellow */
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.car-details h4 {
    color: #555;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.car-details p {
    color: #777;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.black-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.black-btn:hover {
    background: #333;
}

@media (max-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .fleet-section {
        padding: 60px 20px;
    }
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

/* Trust Section */
.trust-section {
    padding: 60px 50px;
    background-color: #ffffff;
}

.trust-container {
    max-width: 1300px;
    margin: 0 auto;
    background-color: #f97316;
    border-radius: 20px;
    padding: 50px;
}

.trust-container h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 50px;
}

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

.trust-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.trust-icon {
    font-size: 40px;
}

.trust-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.trust-text p {
    font-size: 14px;
    color: #f1f1f1;
    line-height: 1.6;
}

.trust-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 30px 0;
}

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

.rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    color: #ffffff; /* White stars */
    font-size: 14px;
    letter-spacing: 2px;
}

.rating span {
    font-size: 15px;
    color: #ffffff;
}

.trustpilot {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
    font-weight: 700;
}

.trustpilot i {
    color: #ffffff;
}

.action-link a {
    color: #16377c;
    background-color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.action-link a:hover {
    background-color: #f1f1f1;
}

.action-link i {
    margin-left: 5px;
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .trust-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}
@media (max-width: 768px) {
    .trust-section {
        padding: 40px 20px;
    }
    .trust-container {
        padding: 30px 20px;
    }
    .trust-container h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* Trustpoint Section */
.trustpoint-section {
    padding: 50px 50px;
    background-color: #FDF8F0; /* Soft beige background fallback */
    background-image: url('../images/background-1.webp');
    background-size: cover;
    background-position: center;
}

.tp-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 25px;
}

.tp-content {
    flex: 1;
}

.tp-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.tp-content p {
    font-size: 16px;
    color: #f1f1f1;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tp-content p:last-of-type {
    margin-bottom: 40px;
}

.tp-experience {
    display: flex;
    align-items: center;
    gap: 15px;
}

.exp-number {
    font-size: 70px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.exp-number span {
    font-size: 30px;
    margin-top: 10px;
}

.exp-text {
    font-size: 16px;
    color: #eee;
    font-weight: 600;
    line-height: 1.4;
}

.tp-images {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    position: relative;
}

.arch-img-wrapper {
    width: 50%;
    border-radius: 150px 150px 0 0;
    overflow: hidden;
}

.arch-left {
    height: 350px;
}

.arch-right {
    height: 450px;
}

.arch-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.arch-img-wrapper:hover img {
    transform: scale(1.05);
}

.arch-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    font-size: 35px;
    color: #f97316; /* TripAdvisor green */
    z-index: 10;
}

.tp-services {
    max-width: 1200px;
    margin: 0 auto;
}

.tp-services h3 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    letter-spacing: 0.2px;
}

.tp-services h3::after {
    content: '';
    display: block;
    width: 45px;
    height: 3px;
    background: #f97316;
    margin-top: 8px;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.service-box {
    background: #fff;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-box i {
    font-size: 28px;
    color: #888;
    transition: color 0.3s ease;
}

.service-box:hover i {
    color: #f97316; /* Orange color on hover */
}

.service-box span {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .tp-main {
        flex-direction: column;
    }
    .tp-images {
        width: 100%;
        justify-content: center;
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .trustpoint-section {
        padding: 50px 20px;
    }
    .arch-left {
        height: 250px;
    }
    .arch-right {
        height: 350px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tp-content h2 {
        font-size: 32px;
    }
}

/* Tour Package Section */
.tour-package-section {
    padding: 80px 50px;
    background-color: #ffffff; /* White background */
}

.package-container {
    max-width: 1400px;
    margin: 0 auto;
}

.package-header {
    text-align: center;
    margin-bottom: 50px;
}

.package-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.package-header p {
    font-size: 16px;
    color: #555;
}

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

.pack-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #f2f2f2;
}

.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.pack-img {
    height: 250px;
    position: relative;
    padding: 15px 15px 0 15px;
}

.pack-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.pack-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: #f97316;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
}

.pack-content {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pack-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    text-align: left;
}

.pack-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.pack-meta i {
    color: #999;
}

.pack-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.book-btn-sm {
    background-color: #f97316; /* Dark green as in design */
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.book-btn-sm:hover {
    background-color: #d86210;
}

.pack-price {
    text-align: right;
}

.pack-price .label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 2px;
    font-weight: 500;
}

.pack-price .amount {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #111;
}

.pack-footer {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
}

.pack-footer span {
    font-size: 13px;
    color: #111;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pack-footer span i {
    color: #aaa;
}

@media (max-width: 1200px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background-color: #f2f6fc; /* Light blueish background */
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
}

.testi-header {
    text-align: center;
    margin-bottom: 50px;
}

.testi-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.testi-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.testi-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.testi-card .stars {
    color: #f97316; /* Orange stars */
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testi-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.testi-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.rev-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.rev-info span {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 900px) {
    .testi-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .testi-container {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.site-footer {
    background-color: #111;
    background-size: cover;
    background-position: center;
    padding: 80px 50px;
    color: #f1f1f1;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

/* Brand Col */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo-icon {
    font-size: 32px;
    color: #f97316;
}

.logo-text h2 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.logo-text p {
    font-size: 13px;
    color: #ccc;
    margin-top: 2px;
}

.footer-address h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-address p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #222;
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #f97316;
    color: #ffffff;
}

/* Links Col */
.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col ul li {
    margin-bottom: 15px;
}

.links-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.links-col ul li a:hover {
    color: #f97316;
}

/* Contact Col */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #222;
    color: #f97316; /* Orange brand color */
    font-size: 18px;
    transition: background 0.3s;
}

.contact-item:hover .contact-icon {
    background-color: #f97316;
    color: #ffffff;
}

.contact-text span {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 2px;
}

.contact-text p {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-banner {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-banner .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 50, 0.6);
}
.contact-banner-content {
    position: relative;
    z-index: 10;
    color: #fff;
    text-align: center;
}
.contact-banner-content h1 {
    font-size: 42px;
    font-weight: 700;
}

/* Contact Page Section Professional Redesign */
.contact-page-section {
    padding: 70px 20px;
    background-color: #f8fafc;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-box, .contact-form-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    position: relative;
}

.contact-badge, .form-badge {
    display: inline-block;
    background: #fff5f0;
    color: #f97316;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid #ffd8c4;
}

.contact-info-box h2, .contact-form-box h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0f172a;
    line-height: 1.3;
}

.contact-info-box p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.c-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.c-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.c-info-item:hover {
    transform: translateX(5px);
    background: #fff5f0;
    border-color: #ffd8c4;
}

.c-icon {
    width: 44px;
    height: 44px;
    background: #ffffff;
    color: #f97316;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.12);
    flex-shrink: 0;
}

.c-details {
    display: flex;
    flex-direction: column;
}

.c-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.c-text {
    font-size: 15px;
    color: #0f172a;
    font-weight: 700;
    word-break: break-word;
}

.c-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.c-social-links span {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    margin-right: 5px;
}

.c-social-links a {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    color: #0f172a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.c-social-links a:hover {
    background: #f97316;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Contact Form Styling */
.styled-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.styled-contact-form .form-row {
    display: flex;
    gap: 18px;
    margin-bottom: 0;
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.textarea-wrapper .input-icon {
    top: 18px;
    transform: none;
}

.styled-contact-form input,
.styled-contact-form select,
.styled-contact-form textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0f172a;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.styled-contact-form select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.styled-contact-form input:focus,
.styled-contact-form select:focus,
.styled-contact-form textarea:focus {
    outline: none;
    border-color: #f97316;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.styled-contact-form input:focus + .input-icon,
.styled-contact-form select:focus + .input-icon,
.styled-contact-form textarea:focus + .input-icon {
    color: #f97316;
}

.form-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.captcha-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.captcha-question {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.captcha-input {
    width: 60px !important;
    padding: 8px !important;
    text-align: center;
    border-radius: 6px !important;
    font-weight: 700;
    border: 1px solid #cbd5e1 !important;
}

.submit-btn {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

.map-section {
    line-height: 0;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* About Us Page Styles */
.about-page-header {
    padding: 100px 20px;
    background-color: #fff;
    overflow: hidden;
}
.about-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}
.about-page-left {
    flex: 1;
    position: relative;
}
.about-page-left .img-group {
    position: relative;
    height: 500px;
}
.about-page-left .img-1 {
    width: 320px;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-page-left .img-2 {
    width: 300px;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    bottom: 0;
    right: 20px;
    z-index: 3;
    border: 10px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.watch-now-btn {
    position: absolute;
    bottom: 30px;
    left: 100px;
    z-index: 4;
    background-color: #ff4d4f;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 77, 79, 0.4);
}
.bg-curve {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 600px;
    height: 600px;
    z-index: 1;
    opacity: 0.5;
}

.about-page-right {
    flex: 1;
}
.sub-title {
    font-family: 'Inter', sans-serif;
    color: #ff4d4f;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}
.sub-title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -60px;
    width: 50px;
    height: 1px;
    background-color: #e0e0e0;
}
.about-page-right h2, .features-header h2 {
    font-size: 42px;
    color: #0b1c3c;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}
.about-page-right .text-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.features-page-section {
    padding: 80px 20px;
    background-color: #f5f7fa;
}
.features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}
.features-header .sub-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -60px;
    width: 50px;
    height: 1px;
    background-color: #e0e0e0;
}
.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.f-icon {
    font-size: 32px;
    color: #0b1c3c;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}
.red-dot {
    position: absolute;
    top: -5px;
    right: -10px;
    width: 15px;
    height: 15px;
    background-color: #ff4d4f;
    border-radius: 50%;
    opacity: 0.8;
}
.feature-card h3 {
    font-size: 20px;
    color: #0b1c3c;
    margin-bottom: 15px;
    font-weight: 700;
}
.feature-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-page-container {
        flex-direction: column;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    background-color: #f97316;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}
.cta-container {
    max-width: 900px;
    margin: 0 auto;
}
.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}
.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #fff;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s, opacity 0.3s;
}
.cta-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}
.cta-call {
    background-color: #fff;
    color: #111;
}
.cta-whatsapp {
    background-color: #25D366;
    color: #fff;
}
.cta-email {
    background-color: #eab308;
    color: #fff;
}

/* Dropdown Menu Styles */
.main-menu li.has-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
    padding: 0; /* Removed top/bottom padding to avoid white gaps */
    overflow: hidden;
}
.main-menu li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    display: block;
    margin: 0;
    width: 100%;
}
.main-menu .dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    color: #333;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}
.main-menu .dropdown-menu li a:hover {
    background-color: #f97316;
    color: #fff !important; /* Force white color on hover */
}

/* Sightseeing Page Styles */
.sightseeing-desc {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}
.sightseeing-container {
    max-width: 1000px;
    margin: 0 auto;
}
.sightseeing-title {
    font-size: 36px;
    color: #eab308;
    font-weight: 700;
}
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0 30px;
    color: #eab308;
    font-size: 20px;
}
.title-divider span {
    width: 150px;
    height: 3px;
    background: repeating-linear-gradient(to right, #eab308, #eab308 5px, transparent 5px, transparent 10px);
}
.sightseeing-desc p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}
.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.place-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.place-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.place-info {
    padding: 20px;
    text-align: left;
}
.place-info h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 10px;
    font-weight: 700;
}
.place-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .places-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Mobile Navigation Styles */
@media (max-width: 992px) {
    .main-header {
        padding: 12px 20px;
        position: relative;
        flex-wrap: wrap;
    }
    
    .mobile-toggle {
        display: flex;
    }

    .main-menu {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #ffffff;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        padding: 15px 25px;
        z-index: 999;
        border-top: 3px solid #f97316;
    }

    .main-menu.active {
        display: block;
        animation: fadeInDownMenu 0.3s ease forwards;
    }

    .main-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .main-menu ul li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }

    .main-menu ul li:last-child {
        border-bottom: none;
    }

    .main-menu a {
        padding: 12px 0;
        font-size: 15px;
        justify-content: space-between;
        color: #0f172a;
    }

    .main-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 15px;
        background: #f8fafc;
        border-radius: 6px;
        margin: 5px 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .main-menu .has-dropdown.open .dropdown-menu {
        display: block;
    }
    
    .header-actions .contact-card {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .why-choose-us .features-grid {
        grid-template-columns: 1fr;
    }
    
    .wcu-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-slider {
        height: auto;
        min-height: auto;
        padding-top: 15px;
        padding-bottom: 25px;
        margin-bottom: 0;
    }

    .slider-container, .slide {
        height: auto;
    }

    .slide {
        padding: 20px 0;
        flex-direction: column;
    }

    .slide .content {
        transform: none;
        max-width: 100%;
        padding: 0 15px;
        margin-bottom: 15px;
    }

    .booking-widget-wrapper {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: 5px;
        padding: 0 15px;
        z-index: 25;
    }

    .hero-booking-form {
        flex-direction: column;
        gap: 10px;
    }

    .booking-field-item {
        width: 100%;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        padding: 10px 14px;
        border-radius: 10px;
        gap: 10px;
    }

    .field-icon {
        font-size: 18px;
    }

    .field-label {
        font-size: 10px;
    }

    .field-select, .field-date {
        font-size: 13.5px;
    }

    .field-divider {
        display: none;
    }

    .search-cabs-btn {
        width: 100%;
        padding: 13px 0;
        font-size: 15px;
        border-radius: 10px;
        margin-top: 4px;
    }
}

/* Mobile Responsive Fix for Top Bar & Hero Slider */
@media (max-width: 768px) {
    .slide h1 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .slide p {
        font-size: 12.5px;
        margin-bottom: 14px;
        line-height: 1.45;
    }

    .hero-badge {
        font-size: 9.5px;
        padding: 4px 12px;
        margin-bottom: 10px;
    }

    .hero-cta-group {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        gap: 8px;
        justify-content: center;
        margin-bottom: 12px;
    }

    .hero-btn {
        flex: 1;
        min-width: 130px;
        justify-content: center;
        padding: 10px 12px;
        font-size: 13px;
    }

    .top-bar {
        padding: 8px 12px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
        font-size: 12px;
    }
    
    .top-bar-left a {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }

    .top-bar-right {
        display: none;
    }

    .top-bar-center {
        gap: 10px;
    }
}

@keyframes fadeInDownMenu {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* WhatsApp Button & Floating CTA Styles */
.whatsapp-card-btn,
.whatsapp-pack-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    margin-top: 5px;
}

.whatsapp-card-btn:hover,
.whatsapp-pack-btn:hover {
    background-color: #1ebe57;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.whatsapp-card-btn i,
.whatsapp-pack-btn i {
    font-size: 18px;
}

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff !important;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    background-color: #1ebe57;
    color: #fff !important;
    transform: scale(1.1);
}

.logo img {
    max-height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}


/* Side WhatsApp Button (Replaces Price spot on right side of cards) */
.whatsapp-side-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #25D366;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.25);
    white-space: nowrap;
}

.whatsapp-side-btn:hover {
    background-color: #1ebe57;
    color: #ffffff !important;
    box-shadow: 0 5px 14px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.whatsapp-side-btn i {
    font-size: 16px;
}
