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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

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;
}

.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;
    min-height: 620px;
    height: auto;
    width: 100%;
    overflow: hidden;
}

.slider-container, .slide {
    width: 100%;
    min-height: 620px;
}

.slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.slide .content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    transform: translateY(-50px);
}

.slide h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.slide p {
    font-size: 18px;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation Arrows */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: white;
}

.nav-btn.prev {
    left: 40px;
}

.nav-btn.next {
    right: 40px;
}


/* Booking Widget */
.booking-widget-wrapper {
    position: absolute;
    bottom: -60px; /* To push it out of the slider */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 20;
}

.booking-widget {
    background: #f8fafc; /* Updated background color */
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 40px;
    position: relative;
}

.widget-tabs {
    display: flex;
    gap: 15px;
    position: absolute;
    top: -24px;
    left: 40px;
}

.tab-btn {
    background: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

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

.tab-btn.active {
    background: #16377c; /* Blue background */
    color: white;
}
.tab-btn.active i {
    color: white !important;
}

.widget-form {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    align-items: center;
}

.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    gap: 15px;
    transition: border-color 0.3s;
    height: 70px;
}

.input-group:hover {
    border-color: #16377c;
}

.input-group .icon {
    font-size: 18px;
    color: #6b7280;
}

.input-content {
    display: flex;
    flex-direction: column;
}

.input-content label {
    font-weight: 700;
    font-size: 15px;
    color: #111827;
}

.input-content span {
    font-size: 12px;
    color: #6b7280;
}

.search-btn {
    background: #16377c;
    color: white;
    border: none;
    padding: 0 35px;
    height: 70px; /* Match the height of inputs approx */
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

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

.widget-footer {
    margin-top: 20px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.widget-footer a {
    color: #16377c;
    text-decoration: none;
    font-weight: 600;
}

.widget-footer a:hover {
    text-decoration: underline;
}

/* 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: 120px 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;
}

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

.feature-icon {
    font-size: 32px;
}

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

.feature-text p {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.4;
}

@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: 100px 50px;
    background-color: #ffffff;
}

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

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

.wcu-img-main {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.wcu-content {
    flex: 7;
}

.wcu-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fdf2f2;
    color: #f97316; /* Orange color from the image */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

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

.explore-btn {
    background-color: #f97316; /* Orange button */
    color: white;
    border: none;
    padding: 15px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.explore-btn:hover {
    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: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}

.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 {
    padding: 60px 20px;
    background-color: #f8f9fa;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info-box, .contact-form-box {
    background: #fff;
    padding: 40px;
    border-top: 4px solid #f97316;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.contact-info-box h2, .contact-form-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #111;
}
.contact-info-box p {
    color: #555;
    margin-bottom: 30px;
}
.c-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.c-icon {
    width: 40px;
    height: 40px;
    background: #fff5f0;
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}
.c-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-form-box input, .contact-form-box select, .contact-form-box textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}
.contact-form-box input:focus, .contact-form-box select:focus, .contact-form-box textarea:focus {
    outline: none;
    border-color: #f97316;
}
.captcha-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}
.captcha-text {
    font-size: 14px;
    color: #555;
}
.captcha-input {
    width: 60px !important;
    text-align: center;
}
.submit-btn {
    background-color: #f97316;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.submit-btn:hover {
    background-color: #d85c07;
}

.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;
    }
}

/* ==========================================================================
   Tour Guide / Article Layout (Image 1 Style)
   ========================================================================== */

/* Hero Banner */
.guide-hero-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 70px 20px 80px;
    text-align: center;
    color: #ffffff;
}
.guide-hero-banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.88) 100%);
    z-index: 1;
}
.guide-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.category-badge {
    display: inline-block;
    background-color: #f59e0b;
    color: #0f172a;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 15px;
}
.guide-hero-content h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #ffffff;
}
.guide-hero-subtitle {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 20px;
}
.hero-meta-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #cbd5e1;
    flex-wrap: wrap;
}
.hero-meta-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Page Container & Layout */
.guide-page-wrapper {
    background-color: #f8fafc;
    padding: 50px 20px 70px;
}
.guide-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 35px;
    align-items: start;
}

/* Left Main Content Card */
.guide-main-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

/* Featured Image Header */
.guide-featured-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}
.article-sub-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.article-sub-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Article Body Typography */
.guide-body {
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}
.guide-body p {
    margin-bottom: 18px;
}
.guide-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}
.guide-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1e293b;
    margin: 22px 0 10px;
}

/* List Formatting */
.guide-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}
.guide-body ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    line-height: 1.6;
}
.guide-body ul li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: -1px;
    color: #f97316;
    font-size: 20px;
}

/* Highlight / Callout Box */
.guide-callout-box {
    background-color: #fff7ed;
    border-left: 4px solid #f97316;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}
.guide-callout-box p {
    margin: 0;
    font-size: 15px;
    color: #9a3412;
    font-weight: 500;
}

/* Tour Itinerary Card Section */
.itinerary-section-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    margin: 30px 0;
}
.itinerary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.itinerary-header i {
    font-size: 24px;
    color: #f97316;
}
.itinerary-header h3 {
    margin: 0;
    font-size: 20px;
    color: #0f172a;
}
.itinerary-timeline {
    position: relative;
    padding-left: 30px;
}
.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: #cbd5e1;
}
.itinerary-step {
    position: relative;
    margin-bottom: 22px;
}
.itinerary-step:last-child {
    margin-bottom: 0;
}
.itinerary-node {
    position: absolute;
    left: -30px;
    top: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #f97316;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 1px #cbd5e1;
}
.itinerary-time {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    background-color: #fff7ed;
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 4px;
}
.itinerary-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.itinerary-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Pricing / Cab Option Cards Grid */
.cab-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 25px 0;
}
.cab-price-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cab-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-color: #f97316;
}
.cab-price-card img {
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}
.cab-price-card h4 {
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 4px;
}
.cab-price-card .price {
    font-size: 18px;
    font-weight: 800;
    color: #f97316;
}

/* FAQ Box */
.faq-box {
    margin-top: 30px;
}
.faq-item {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 18px 22px;
    margin-bottom: 14px;
}
.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.faq-answer {
    font-size: 14px;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* Social Share Bar */
.social-share-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
    margin-top: 35px;
}
.social-share-bar span {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    margin-right: 5px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
}
.share-btn:hover {
    opacity: 0.9;
}
.share-facebook { background-color: #3b5998; }
.share-twitter { background-color: #1da1f2; }
.share-whatsapp { background-color: #25d366; }

/* Sidebar Widgets */
.guide-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}
.widget-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}
.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #f97316;
}

/* Recent Articles List */
.recent-articles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.recent-article-item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
}
.recent-article-item img {
    width: 65px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.article-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 4px;
    transition: color 0.2s;
}
.recent-article-item:hover h4 {
    color: #f97316;
}
.article-info span {
    font-size: 11px;
    color: #94a3b8;
}

/* Quote Sidebar Widget Card (Image 1 Green Box) */
.quote-widget-card {
    background-color: #0d2e24; /* Deep dark green matching image 1 */
    color: #ffffff;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(13, 46, 36, 0.25);
    margin-bottom: 25px;
}
.quote-widget-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}
.quote-widget-card p {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 22px;
    line-height: 1.5;
}
.quote-consultation-btn {
    display: inline-block;
    width: 100%;
    background-color: #f59e0b; /* Golden amber button */
    color: #0f172a;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
}
.quote-consultation-btn:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

/* Sidebar Car Cards (Home Page Style) */
.sidebar-car-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    padding: 0 0 20px 0;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}
.sidebar-car-card:hover {
    transform: translateY(-5px);
    border-color: #f97316;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.sidebar-card-image {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}
.sidebar-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.sidebar-car-card:hover .sidebar-card-image img {
    transform: scale(1.08);
}
.sidebar-car-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 16px 0 14px;
    padding: 0 16px;
}
.sidebar-car-book-btn {
    display: block;
    margin: 0 16px;
    width: calc(100% - 32px);
    background-color: #f97316;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
    box-sizing: border-box;
}
.sidebar-car-book-btn:hover {
    background-color: #d95c07;
    transform: translateY(-2px);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .guide-container {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .guide-main-card {
        padding: 22px;
    }
    .guide-hero-content h1 {
        font-size: 26px;
    }
    .guide-featured-img {
        height: 230px;
    }
    .social-share-bar {
        flex-wrap: wrap;
    }
}
/* SEO Services Directory Section (Above Footer) */
.seo-services-section {
    background-color: #ffffff;
    padding: 50px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.seo-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.seo-services-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
}
.seo-services-header i {
    color: #f97316;
    font-size: 22px;
}
.seo-services-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}
.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
@media (max-width: 992px) {
    .seo-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .seo-services-grid {
        grid-template-columns: 1fr;
    }
}
.seo-services-col h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    padding-bottom: 8px;
    margin-top: 0;
    margin-bottom: 16px;
    border-bottom: 2px solid #f97316;
    display: inline-block;
    width: 100%;
}
.seo-services-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.seo-services-col ul li {
    margin-bottom: 10px;
}
.seo-services-col ul li a {
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}
.seo-services-col ul li a i {
    color: #f97316;
    font-size: 12px;
    transition: transform 0.2s ease;
}
.seo-services-col ul li a:hover {
    color: #f97316;
    transform: translateX(4px);
}

/* Tour Package Section (Light Grid Style) */
.pkg-tour-section {
    padding: 60px 20px;
    background: #f8fafc;
}
.pkg-tour-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px auto;
}
.pkg-tour-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.pkg-tour-header p {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}
.pkg-tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.pkg-tour-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}
.pkg-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.pkg-card-img {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}
.pkg-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pkg-tour-card:hover .pkg-card-img img {
    transform: scale(1.05);
}
.pkg-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f97316;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}
.pkg-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.pkg-card-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 8px;
}
.pkg-location {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pkg-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.pkg-book-btn {
    background: #f97316;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.pkg-book-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
}
.pkg-price-box {
    text-align: right;
}
.pkg-price-label {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pkg-price-amount {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}
.pkg-card-footer {
    border-top: 1px dashed #e2e8f0;
    padding-top: 15px;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}
.pkg-card-footer span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.pkg-card-footer i.info-icon {
    color: #94a3b8;
    font-size: 11px;
}
@media (max-width: 992px) {
    .pkg-tour-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 640px) {
    .pkg-tour-grid {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Button for Cards */
.card-wa-btn {
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.card-wa-btn:hover {
    background: #1eb954;
    transform: translateY(-2px);
}

/* Global Mobile Version & Responsiveness Fixes */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    /* Prevent horizontal overflow on all structural elements */
    html, body, header, footer, main, section, div {
        max-width: 100% !important;
    }

    /* Standardize padding and margins on all 4 sides for mobile */
    section {
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-top: 35px !important;
        padding-bottom: 35px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Top Bar Mobile View */
    .top-bar {
        padding: 10px 16px !important;
        flex-direction: column !important;
        gap: 8px !important;
        text-align: center !important;
    }

    .top-bar-left, .top-bar-right, .top-bar-center {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    /* Main Navigation Header Mobile View */
    .mobile-toggle-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        background: #f97316;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        padding: 10px 14px;
        font-size: 20px;
        cursor: pointer;
        z-index: 1001;
        transition: background 0.2s ease;
    }
    .mobile-toggle-btn:hover {
        background: #ea580c;
    }

    .main-header {
        position: relative !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        justify-content: space-between !important;
    }

    .main-menu {
        display: none;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
        padding: 20px !important;
        z-index: 1000 !important;
        border-top: 3px solid #f97316 !important;
    }

    .main-menu.active {
        display: block !important;
    }

    .main-menu ul {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .main-menu ul li a {
        display: block !important;
        padding: 10px 15px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        border-radius: 8px !important;
    }

    .main-menu ul li a:hover,
    .main-menu ul li a.active {
        background: #fff7ed !important;
        color: #f97316 !important;
    }

    .header-actions {
        display: none !important;
    }

    .navbar, .header-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Mobile Headings Scaling */
    h1 {
        font-size: 30px !important;
        line-height: 1.25 !important;
    }
    h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    h3 {
        font-size: 18px !important;
    }
    p {
        font-size: 14px !important;
    }

    /* Hero Slider Mobile View */
    .hero-slider {
        min-height: auto !important;
        padding: 30px 12px !important;
    }
    .hero-slider .content {
        padding: 15px 10px !important;
        transform: none !important;
    }
    .hero-booking-card {
        padding: 16px 12px !important;
        margin-top: 20px !important;
        border-radius: 16px !important;
    }

    /* 1-Column Grids on Mobile */
    .tours-grid, 
    .package-grid, 
    .fleet-section .tours-grid,
    .features-grid,
    .pkg-tour-grid,
    .wcu-container,
    .tp-main {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* 2-Column Grid for Smart Services on Mobile */
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Tour & Fleet Cards Layout */
    .tour-card, .pack-card, .pkg-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .card-action, .pack-action {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
    }

    .book-btn, .whatsapp-card-btn, .book-btn-sm {
        padding: 8px 12px !important;
        font-size: 13px !important;
    }

    /* Footer Mobile View */
    footer, .site-footer {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .footer-content, .footer-grid, .footer-container {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
}


