/* Custom Styles for Vietnam Unique Travels Replica */

/* --- Global Colors --- */
:root {
    --primary-color: #2563EB;
    /* Royal Blue */
    --secondary-color: #101010;
    /* Dark Footer */
    --accent-color: #F8A437;
    /* Orange */
    --text-color: #333;
    --light-gray: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    /* Assumed font */
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #222;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-color);
}

.ast-container {
    max-width: 1600px;
    /* Increased from 1200px for wider layout */
    margin: 0 auto;
    padding: 0 40px;
}

/* Extra breathing room for header menu from left/right edges */
.main-header-bar .ast-container {
    padding-left: 60px;
    padding-right: 60px;
}

/* --- Main Header --- */
.site-header.custom-astra-header {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 10px 0;
    /* Add padding to header itself for extra space */
}

.header-container {
    display: flex;
    align-items: center;
    /* Critical for vertical centering */
    justify-content: space-between;
    height: 110px;
    /* Taller height (110px + 20px padding = 130px visual space) */
    padding: 0 20px;
}

/* Branding */
.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    /* Ensure it takes vertical space */
}

.site-branding img,
.custom-logo-link img {
    max-height: 85px;
    /* Increased from 65px */
    width: auto;
    display: block;
}

.site-title {
    font-size: 26px;
    /* Even Larger */
    font-weight: 700;
    color: #d4af37;
    /* Gold/Bronze color */
    text-transform: capitalize;
    line-height: 1;
    /* Reset line height to prevent offset */
    margin: 0;
    /* Remove default margins */
    display: flex;
    align-items: center;
}

.site-title a {
    color: inherit;
    text-decoration: none;
}

.site-branding-text {
    display: flex;
    align-items: center;
}

/* Navigation */
.main-navigation {
    height: 100%;
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    line-height: 1;
    /* Reset line-height for precise alignment */
}

.main-navigation ul li a {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
    text-decoration: none;
    position: relative;
    padding-bottom: 8px;
    /* Slight gap for underline */
    transition: color 0.3s;
    display: block;
    /* Ensure padding works */
}

/* Hover & Active Underline Effect */
.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item>a::after,
.main-navigation ul li.current_page_item>a::after {
    width: 100%;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item>a,
.main-navigation ul li.current_page_item>a {
    color: var(--primary-color);
}

/* Booking Button Style (Class added via JS) */
.main-navigation ul li.nav-btn-booking a {
    background: var(--primary-color);
    color: #fff !important;
    padding: 14px 35px;
    /* Even bigger button */
    border-radius: 50px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.main-navigation ul li.nav-btn-booking a::after {
    display: none;
}

.main-navigation ul li.nav-btn-booking a:hover,
.main-navigation ul li.nav-btn-booking.current-menu-item a {
    background: #1d4ed8;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
}

.home .main-navigation ul li.nav-btn-booking a {
    background: #63AB45;
    box-shadow: 0 8px 20px rgba(99, 171, 69, 0.3);
}

.home .main-navigation ul li.nav-btn-booking a:hover,
.home .main-navigation ul li.nav-btn-booking.current-menu-item a {
    background: #528f3a;
    box-shadow: 0 12px 28px rgba(99, 171, 69, 0.45);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #333;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    /* Negative margin to pull under header if header is transparent/sticky */
    margin-top: -80px;
    padding-top: 80px;
}

/* Mobile hero/cover optimizations */
@media (max-width: 768px) {
    .hero-section {
        min-height: 55vh;
        padding-top: 60px;
        margin-top: -60px;
    }

    /* Limit WP Cover blocks height on mobile for all pages (About, Services, Contact…) */
    .wp-block-cover {
        min-height: clamp(220px, 48vh, 420px) !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
    /* Vignette style */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Center vertically if container has height */
}

.amaanah-title {
    font-family: 'Lato', sans-serif;
    /* Or closest match */
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.amaanah-desc {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
    max-width: 600px;
}

.btn-hero-amaanah {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 50px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-hero-amaanah:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* --- Search Overlay --- */
.search-overlay-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 30px;
    border-radius: 8px;
    margin-top: 40px;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    /* Reset text align */
}

.tour-search-form {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
    /* Handle mobile */
}

.search-field-group {
    flex: 1;
    min-width: 200px;
}

.search-field-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #444;
}

.search-field-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    color: #333;
    font-size: 15px;
}

.submit-group {
    flex: 0 0 auto;
}

.submit-group button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.submit-group button:hover {
    background: #4a8c35;
}

/* --- Content Sections --- */
.section-tours,
.section-about,
.section-why-choose {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tour-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.tour-card-image {
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-color);
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 3px;
    font-weight: 700;
}

.tour-card-content {
    padding: 20px;
}

.tour-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #777;
    font-size: 14px;
}

.tour-meta .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.about-tags ul {
    list-style: none;
    padding: 0;
}

.about-tags li a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.about-tags li a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat strong {
    display: block;
    font-size: 36px;
    color: var(--primary-color);
}

.btn-read-more {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-color);
}

/* --- Why Choose Us --- */
.section-why-choose {
    background: #fcfcfc;
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* --- Footer --- */
.site-footer.custom-astra-footer {
    background: var(--secondary-color);
    color: #aaa;
    padding: 70px 0 20px;
    font-size: 16px;
    /* Increased from 14px */
}

.footer-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1.2fr 1.5fr;
    /* Even wider first column to push others right */
    gap: 100px;
    /* Increased gap */
    margin-bottom: 50px;
}

.site-footer h3 {
    color: #fff;
    font-size: 22px;
    /* Increased from 18px */
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
}

.site-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-custom-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    /* Ensures logo fits inside */
    background: #fff;
    /* White background for the circle */
    border-radius: 50%;
    /* Perfect circle */
    padding: 5px;
    /* Spacing from edge */
    display: block;
}

.footer-site-title {
    color: #d4af37;
    /* Gold/Bronze color matching logo */
    font-size: 22px;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.site-tagline {
    font-style: italic;
    font-size: 12px;
    color: #ccc;
}

.license-info {
    font-size: 13px;
    color: #888;
    margin-top: 15px;
    line-height: 1.6;
}

.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 30px;
    height: 30px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.contact-list {
    list-style: none;
    padding: 0 !important;
    /* Force reset padding */
    margin: 0 !important;
    /* Force reset margin */
}

.contact-list li {
    display: grid;
    grid-template-columns: 35px 1fr;
    /* Fixed icon width, rest for text */
    gap: 15px;
    margin-bottom: 20px;
    align-items: start;
    /* Top align for multi-line consistency */
}

.contact-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    /* Prevent shrinking */
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    /* Align with first line of text */
}

.contact-icon.icon-phone {
    color: #f1c40f;
}

.contact-icon.icon-email {
    color: #e67e22;
}

.contact-icon.icon-map {
    color: #3498db;
}

.contact-icon.icon-facebook {
    color: #1877f2;
}

.contact-icon.icon-instagram {
    color: #e4405f;
}

.contact-icon.icon-tiktok {
    color: #fff;
    /* White Icon */
    background: #222;
    /* Standard Dark Background */
}

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-footer .contact-details .value {
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.15);
}

.site-footer .contact-details .value:hover {
    color: #63AB45 !important;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: #2a2a2a;
    /* Dark grey input */
    border: none;
    color: #ccc;
    font-size: 15px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #777;
}

.newsletter-form button {
    width: auto;
    background: var(--primary-color);
    /* Green */
    border: none;
    padding: 14px 30px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #4a8c35;
}

.newsletter-form button svg {
    width: 20px;
    height: 20px;
}

.agree-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agree-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #aaa;
}

.agree-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

/* Footer Menu Override */
.site-footer ul.menu {
    display: block !important;
    flex-direction: column !important;
    padding: 0;
    margin: 0;
}

.site-footer ul.menu li {
    display: block !important;
    margin-bottom: 12px;
}

.site-footer ul.menu li a {
    padding: 0 !important;
    font-weight: 400 !important;
    font-size: 17px !important;
    /* Increased from 15px */
    color: #ccc !important;
    text-transform: capitalize;
}

.site-footer ul.menu li a:hover {
    color: var(--primary-color) !important;
    padding-left: 5px !important;
}

/* Remove Booking Button from Footer */
.site-footer .nav-btn-booking,
.site-footer .manual-booking-btn,
.site-footer ul.menu li.nav-btn-booking {
    display: none !important;
}

.site-info {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
}

/* Floating Socials */
.floating-socials {
    position: fixed;
    right: 30px;
    bottom: 120px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
    z-index: 9998;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

@media (max-width: 768px) {
    .floating-socials {
        bottom: 100px;
        right: 18px;
    }
}

/* Footer Grid Spacing Update */
.footer-grid {
    gap: 80px !important;
    /* Force increased gap */
}

.social-list {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: none;
    pointer-events: auto;
}



/* Common Float Icon Style */
.float-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    border: none;
    position: relative;
    background: #fff;
    /* Default fallback */
    z-index: 10000 !important;
}

.floating-socials.footer-in-view {
    transform: translateX(160%);
    opacity: 0.5;
    pointer-events: none;
}

.floating-socials.contact-in-view {
    transform: translateX(160%);
    opacity: 0.5;
    pointer-events: none;
}

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

.float-icon svg {
    width: 24px;
    height: 24px;
}

/* Specific Colors matching Reference */
.float-icon.email-action {
    background: #0ea5e9;
    /* Light Blue */
}

.float-icon.messenger {
    background: #8b5cf6;
    /* Purple */
}

.float-icon.zalo {
    background: #0284c7;
    /* Zalo Blue */
}

.float-icon.whatsapp {
    background: #22c55e;
    /* Green */
}

.float-icon.phone {
    background: #d97706;
    /* Phone Orange/Gold */
}

/* Toggle Button - Green with Pulse */
.toggle-btn {
    background: #22c55e !important;
    /* Bright Green */
    width: 60px;
    height: 60px;
    z-index: 9998 !important;
    /* Higher Z-Index */
    overflow: visible;
    /* Allow pulse to show */
    box-shadow: none;
    animation: none;
    display: none;
    display: flex;
    /* Critical for centering */
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    color: #fff !important;
    /* Force text color */
}

/* Force SVG visibility and color */
/* Force SVG visibility and color */
.toggle-btn svg {
    width: 32px !important;
    /* Increased size */
    height: 32px !important;
    display: block !important;
    transition: all 0.3s;
    min-width: 32px;
    /* Prevent squishing */
    min-height: 32px;
}

.toggle-btn .icon-envelope {
    display: block !important;
    fill: #ffffff !important;
    stroke: none !important;
}

.toggle-btn .icon-close {
    display: none !important;
    fill: none !important;
    stroke: #ffffff !important;
    stroke-width: 2.5px;
    /* Thicker stroke */
}

.floating-socials.active .toggle-btn {
    background: #444 !important;
    animation: none;
    box-shadow: none;
}

/* Swap Icons on Active */
.floating-socials.active .toggle-btn .icon-envelope {
    display: none !important;
}

.floating-socials.active .toggle-btn .icon-close {
    display: block !important;
    transform: none !important;
    /* Reset rotation */
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pulse Animation */
@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
        padding: 10px 16px;
        gap: 8px;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

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

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

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

    .search-overlay-box {
        position: relative;
        margin-top: 20px;
    }
}

/* --- Scroll To Top Custom Style --- */
#ast-scroll-top {
    display: none;
    /* Controlled by JS */
    background-color: #d4af37;
    /* Gold theme */
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    left: 30px !important;
    /* Move to left to avoid social icons */
    right: auto !important;
    bottom: 30px;
    z-index: 9998;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#ast-scroll-top.ast-scroll-top-show {
    display: flex !important;
}

#ast-scroll-top:hover {
    background-color: #b8962d;
    transform: translateY(-5px);
}

#ast-scroll-top .ast-icon svg {
    fill: #fff;
    width: 25px;
    height: 25px;
}

/* Fix for Astra default icon alignment */
#ast-scroll-top .ast-icon.icon-arrow svg {
    transform: rotate(180deg);
}

/* Remove any glow/shimmer rings around Back to Top */
#ast-scroll-top::before,
#ast-scroll-top::after {
    content: none !important;
    display: none !important;
}

/* --- Home Page New Sections --- */
.home-section {
    padding: 80px 0;
}

/* About Us Section */
.section-about-us {
    background: #fff;
}

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
}

.section-title-alt {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.btn-outline-gold {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: #d4af37;
    color: #fff;
}

/* Our Services Section */
.section-our-services {
    background: #0f1113;
    /* Very dark grey/black */
    color: #fff;
    text-align: center;
}

.section-title-white {
    font-size: 42px;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.service-card {
    text-align: left;
}

.service-img {
    margin-bottom: 20px;
}

.service-img img {
    width: 100%;
    border-radius: 15px;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img img {
    transform: translateY(-10px);
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    padding: 0 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-flex {
        flex-direction: column;
        gap: 40px;
    }

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

    .section-title-alt,
    .section-title-white {
        font-size: 32px;
    }
}

/* --- Tour Packages Archive --- */
.tour-package-archive {
    background-color: #f9f9f9;
    padding-bottom: 80px;
}

.tour-header {
    position: relative;
    padding: 160px 0;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    overflow: hidden;
    background: #000;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -1px;
    width: 100%;
}

.tour-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tour-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.tour-slide.active {
    opacity: 1;
}

.tour-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.tour-header-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center !important;
}

.tour-header h1.page-title {
    color: #fff !important;
    font-size: 72px !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
}

.tour-header .taxonomy-description {
    font-size: 24px;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0.9;
    text-align: center !important;
}

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

.tour-item-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.tour-featured-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.tour-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-services article {
    cursor: pointer;
}

.tour-item-card .stretched-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    text-indent: -9999px;
    overflow: hidden;
}

.tour-item-card:hover .stretched-link {
    cursor: pointer;
}

.tour-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.tour-title a:hover {
    color: #d4af37;
}

.tour-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 72px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-footer {
    display: none !important;
}

.btn-tour-detail {
    display: inline-block;
    padding: 10px 25px;
    background: #d4af37;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background 0.3s;
    font-size: 14px;
}

.btn-tour-detail:hover {
    background: #b8962d;
}

/* Responsive */
@media (max-width: 991px) {
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }

    .tour-header h1 {
        font-size: 32px;
    }
}

/* ======================================================
   PREMIUM LUXURY CONTACT PAGE STYLING
   ====================================================== */

/* 1. Global Page Transitions */
@keyframes fadeInUpCustom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.get-in-touch-modern,
.premium-office-info {
    animation: fadeInUpCustom 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* 2. Premium Get in Touch Section */
.get-in-touch-modern {
    padding: 120px 0;
    background: #ffffff;
    background-image: radial-gradient(circle at 10% 20%, rgba(99, 171, 69, 0.03) 0%, rgba(255, 255, 255, 1) 90.2%);
    position: relative;
}

.get-in-touch-modern .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.git-flex {
    display: flex;
    gap: 100px;
    align-items: center;
}

.git-content {
    flex: 1;
}

.git-badge {
    color: #F8A437;
    /* Luxury Gold/Orange accent */
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 4px;
    display: block;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.git-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 30px;
    font-weight: 900;
}

.git-title span {
    color: #63AB45;
    font-style: italic;
}

.git-text {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 400;
}

.git-stats {
    display: flex;
    gap: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item strong {
    display: block;
    font-size: 42px;
    color: #111827;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.stat-item span {
    font-size: 13px;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* 3. Sleek Premium Form */
.git-form {
    flex: 1.2;
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
}

.git-form::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(99, 171, 69, 0.05);
    border-radius: 50%;
    z-index: -1;
}

.ama-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.ama-contact-form input,
.ama-contact-form textarea {
    width: 100%;
    padding: 20px 25px;
    border: 1px solid #f3f4f6;
    background: #f9fafb;
    border-radius: 16px;
    font-family: inherit;
    font-size: 16px;
    color: #111827;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ama-contact-form input:focus,
.ama-contact-form textarea:focus {
    outline: none;
    border-color: #63AB45;
    background: #fff;
    box-shadow: 0 10px 30px rgba(99, 171, 69, 0.08);
    transform: translateY(-2px);
}

.ama-contact-form .form-group {
    margin-bottom: 30px;
}

.git-submit {
    background: linear-gradient(135deg, #63AB45 0%, #4a8d34 100%);
    color: #fff;
    border: none;
    padding: 22px 50px;
    border-radius: 100px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 15px 35px rgba(99, 171, 69, 0.25);
}

.git-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(99, 171, 69, 0.35);
    filter: brightness(110%);
}

/* 4. Luxury Office Section */
.premium-office-info {
    padding: 100px 0;
    background: #fcfcfc;
}

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

.office-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: left;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.office-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #63AB45;
    transition: width 0.4s ease;
}

.office-card:hover::after {
    width: 100%;
}

.office-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #111827;
    margin-bottom: 15px;
    font-weight: 700;
}

.office-card p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

.office-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 30px;
    background: #f0fdf4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #63AB45;
}

/* 5. Premium Map Experience */
.premium-map-section {
    padding-bottom: 120px;
    background: #fcfcfc;
}

.premium-map-section .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.map-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    height: 600px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-overlay-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-overlay-badge span {
    font-weight: 700;
    color: #111827;
    font-size: 14px;
}

.map-overlay-badge .dot {
    width: 10px;
    height: 10px;
    background: #63AB45;
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 171, 69, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(99, 171, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(99, 171, 69, 0);
    }
}

/* 6. Responsive Optimization */
@media (max-width: 1100px) {
    .git-flex {
        gap: 50px;
    }

    .git-title {
        font-size: 46px;
    }
}

@media (max-width: 991px) {
    .git-flex {
        flex-direction: column;
        text-align: center;
    }

    .git-stats {
        justify-content: center;
    }

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

    .git-form {
        width: 100%;
        padding: 40px;
    }

    .map-wrapper {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .git-title {
        font-size: 34px;
    }

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

    .stat-item strong {
        font-size: 32px;
    }

    .stat-item span {
        font-size: 11px;
    }

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

    .map-wrapper {
        height: 350px;
    }

    .container {
        padding: 0 20px !important;
    }
}

/* --- Tour Package Layout Overhaul --- */
.tour-package-archive .ast-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.tour-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 100px;
}

.tour-main-content {
    flex: 1;
}

/* Sidebar Widgets */
.tour-sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.search-field-group {
    margin-bottom: 20px;
}

.search-field-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0 15px;
}

.search-input-wrapper input {
    border: none;
    background: transparent;
    padding: 12px 10px;
    font-size: 14px;
    width: 100%;
}

.price-slider-group {
    margin-top: 30px;
}

.price-range-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 14px;
}

.price-range-info span {
    color: #63AB45;
}

.btn-sidebar-search {
    width: 100%;
    background: #63AB45;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-sidebar-search:hover {
    background: #528f3a;
    transform: translateY(-2px);
}

/* Last Minute Tours Widget */
.last-minute-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.lm-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.lm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lm-info h4 {
    font-size: 14px;
    margin: 0 0 5px;
    line-height: 1.4;
}

.lm-info .price {
    font-size: 13px;
    color: #666;
}

.lm-info .price span {
    color: #63AB45;
    font-weight: 700;
}

/* Top Filter Bar */
.tour-top-filter {
    background: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.tour-count {
    font-weight: 700;
    color: #1a1a1a;
}

.tour-count span {
    color: #63AB45;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.sort-wrapper label {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1;
}

.sort-select {
    border: 1px solid #eee;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
}

@media (max-width: 991px) {
    .tour-package-archive .ast-container {
        flex-direction: column;
    }

    .tour-sidebar {
        width: 100%;
        flex: none;
        position: static;
    }
}

/* --- Tour Details Slider --- */
.tour-details-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 0 50px 0;
    background: #000;
    overflow: hidden;
}

.tour-details-swiper {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .tour-details-swiper {
        height: clamp(200px, 56vw, 320px);
    }
}

.tour-slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    /* Show it's clickable */
}

.tour-slide-img:hover {
    transform: scale(1.02);
}

.swiper-slide-active .tour-slide-img {
    transform: scale(1.05);
}

.tour-details-swiper .swiper-button-next,
.tour-details-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    color: #000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.tour-details-swiper .swiper-button-next {
    right: 20px;
}

.tour-details-swiper .swiper-button-prev {
    left: 20px;
}

.tour-details-swiper .swiper-button-next:after,
.tour-details-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 900;
}

.tour-details-swiper .swiper-button-next:hover,
.tour-details-swiper .swiper-button-prev:hover {
    background: #63AB45;
    color: #fff;
    transform: scale(1.05);
}

/* Image Counter Badge */
.tour-image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Lightbox Modal */
.tour-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tour-lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.tour-lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100000;
    line-height: 1;
}

.tour-lightbox-close:hover {
    color: #63AB45;
    transform: rotate(90deg);
}

.tour-lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .tour-details-slider-wrapper {
        width: 100%;
    }

    .tour-details-swiper {
        height: 300px;
        overflow: hidden;
    }

    .tour-lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }

    .tour-lightbox-content {
        max-width: 95%;
    }
}

/* --- Premium Tour Details Overhaul --- */
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;500;600;700&display=swap');

/* NUCLEAR OPTION: Force Full Width for Tour Pages */
body.is-premium-tour {
    overflow-x: hidden;
}

body.is-premium-tour #page,
body.is-premium-tour #primary,
body.is-premium-tour .site-content,
body.is-premium-tour .ast-container {
    max-width: none !important;
    width: 100% !important;
}

body.is-premium-tour.ast-narrow-container .site-content>.ast-container {
    max-width: 100% !important;
    width: 100% !important;
}

body.is-premium-tour .entry-content>* {
    max-width: none !important;
}

.single-post.is-premium-tour {
    font-family: 'Kumbh Sans', sans-serif;
    background: #fdfdfd;
}

/* Force Astra Container to be wider for Tours */
#page.single-post.is-premium-tour .site-content .ast-container,
#page.single-post.is-premium-tour .site-content #primary,
#page.single-post.is-premium-tour .site-content #content,
#page.single-post.is-premium-tour .site-content .entry-content {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide Old Astra Headers */
.single-post.is-premium-tour .entry-header,
.single-post.is-premium-tour header.entry-header {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single-post.is-premium-tour .entry-content {
    max-width: 100% !important;
}

/* 1. Header & Info Bar */
.tour-header-wrap {
    background: #fff;
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

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

.tour-header-left h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.tour-info-horizontal {
    display: flex;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item .icon {
    width: 45px;
    height: 45px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #63AB45;
}

.info-item .label {
    display: block;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
}

.info-item .value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

/* 2. Main Content Grid */
.tour-details-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.tour-main-content-area {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(26, 26, 26, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 28px 28px;
}

.tour-header-wrap .ast-container {
    max-width: 1400px;
}

/* Align mobile detail frame width with slider above */
@media (max-width: 768px) {
    .tour-header-wrap .ast-container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .tour-details-container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .site-content>.ast-container:has(.tour-details-container) {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .single-post.is-premium-tour .entry-content {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .single-post.is-premium-tour .entry-content>*,
    .single-post.is-premium-tour .tour-details-container>* {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .tour-main-content-area {
        border-radius: 12px;
        padding: 16px 14px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }
}

/* 3. Sticky Booking Sidebar */
.tour-booking-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.booking-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    padding: 35px;
    border: 1px solid #f0f0f0;
}

.booking-header {
    margin-bottom: 25px;
}

.booking-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.booking-price {
    font-size: 28px;
    color: #f7941d;
    font-weight: 700;
}

.booking-price span {
    font-size: 16px;
    color: #999;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form input {
    width: 100%;
    padding: 15px;
    border: 1px dashed #ddd;
    border-radius: 10px;
    font-size: 15px;
    background: #fcfcfc;
}

.btn-book-now {
    width: 100%;
    background: #63AB45;
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 171, 69, 0.3);
}

.btn-book-now:hover {
    background: #528f3a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 171, 69, 0.4);
}

/* Tour Information Card */
.tour-info-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    padding: 35px;
    border: 1px solid #f0f0f0;
    margin-top: 30px;
}

.tour-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.tour-info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tour-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f5f5f5;
}

.tour-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tour-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #f0f8ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #63AB45;
}

.tour-info-icon svg {
    width: 24px;
    height: 24px;
}

.tour-info-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.tour-info-label {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.tour-info-value {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

/* 4. Itinerary Accordion */
.itinerary-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.itinerary-accordion {
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
}

.itinerary-item {
    border-bottom: 1px solid #f0f0f0;
}

.itinerary-item:last-child {
    border-bottom: none;
}

.itinerary-header {
    padding: 25px 30px;
    background: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.itinerary-header:hover {
    background: #f0f0f0;
}

.itinerary-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.itinerary-content {
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.itinerary-item.active .itinerary-content {
    padding: 30px;
    height: auto;
}

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

.itinerary-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.itinerary-content li:before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #63AB45;
}

/* 5. Included/Excluded */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.inc-box h3,
.exc-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.inc-list,
.exc-list {
    list-style: none;
    padding: 0;
}

.inc-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: #555;
}

.inc-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #63AB45;
    font-weight: bold;
}

.exc-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: #888;
}

.exc-list li:before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ff4d4d;
    font-weight: bold;
}

/* Responsive Overrides */
@media (max-width: 1100px) {
    .tour-details-container {
        grid-template-columns: 1fr;
    }

    .tour-booking-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .tour-header-flex {
        flex-direction: column;
        gap: 20px;
    }

    .tour-header-left h1 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .tour-info-horizontal {
        flex-direction: column;
        gap: 15px;
    }

    .inc-exc-grid {
        grid-template-columns: 1fr;
    }
}

/* === Related Tours Section === */
.related-tours-section {
    background: #f9f9f9;
    padding: 80px 0;
    margin-top: 60px;
}

.related-tours-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.related-tours-swiper {
    position: relative;
    padding: 0 50px;
}

.related-tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.related-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.related-tour-card .tour-card-image {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.related-tour-card .featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #63AB45;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.related-tour-card .wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.related-tour-card .wishlist-btn:hover {
    background: #fff;
    color: #e74c3c;
    transform: scale(1.1);
}

.related-tour-card .tour-card-content {
    padding: 25px;
}

.related-tour-card .tour-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-tour-card .tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.related-tour-card .tour-price {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #63AB45;
    font-size: 14px;
}

.related-tour-card .tour-price strong {
    color: #f7941d;
    font-size: 18px;
}

.related-tour-card .tour-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 14px;
}

.related-tour-card .explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #63AB45;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-tour-card .explore-btn:hover {
    color: #528f3a;
    gap: 8px;
}

/* Swiper Navigation Buttons */
.related-tours-section .swiper-button-next,
.related-tours-section .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.related-tours-section .swiper-button-next:after,
.related-tours-section .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
}

.related-tours-section .swiper-button-next:hover,
.related-tours-section .swiper-button-prev:hover {
    background: #63AB45;
    color: #fff;
    transform: scale(1.1);
}

.related-tours-section .swiper-button-next {
    right: 0;
}

.related-tours-section .swiper-button-prev {
    left: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .related-tours-swiper {
        padding: 0 40px;
    }

    .related-tours-section .swiper-button-next,
    .related-tours-section .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .related-tours-section {
        padding: 60px 0;
    }

    .related-tours-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .related-tours-swiper {
        padding: 0;
    }

    .related-tours-section .swiper-button-next,
    .related-tours-section .swiper-button-prev {
        display: none;
    }

    .related-tour-card .tour-card-image {
        height: 200px;
    }

    .related-tour-card .tour-card-content h3 {
        font-size: 16px;
        min-height: auto;
    }
}

/* ====================================
   HOME PAGE - TOUR PACKAGES SECTION
   ==================================== */

.section-tour-packages {
    padding: 80px 0;
    background: #fff;
}

/* Remove decorative corner markers around Tour Packages header on Home */
.section-tour-packages::before,
.section-tour-packages::after,
.section-tour-packages .ast-container::before,
.section-tour-packages .ast-container::after {
    content: none !important;
    display: none !important;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header-flex .section-title-alt {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view-more {
    background: #63AB45;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view-more:hover {
    background: #528f3a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 171, 69, 0.3);
    color: white;
}

/* Home Tours Swiper */
.home-tours-swiper {
    position: relative;
    padding: 10px 0 20px;
}

.home-tours-swiper .swiper-slide {
    height: auto;
}

/* Home Tour Card */
.home-tour-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Make entire cards clickable when used as anchor */
.home-tour-card.card-link,
.home-service-card.card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.home-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Featured Badge */
.home-tour-card .featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00BCD4;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
    text-transform: uppercase;
}

/* Wishlist Button */
.wishlist-btn-home {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.wishlist-btn-home:hover {
    background: white;
    transform: scale(1.1);
}

.wishlist-btn-home svg {
    stroke: #ff4757;
    transition: all 0.3s ease;
}

.wishlist-btn-home:hover svg {
    fill: #ff4757;
}

/* Tour Image */
.home-tour-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Tour Content */
.home-tour-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-tour-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.4;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tour Meta */
.home-tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.tour-meta-item svg {
    stroke: #63AB45;
    flex-shrink: 0;
}

.tour-meta-item strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Explore Button */
.btn-tour-explore {
    background: #f8f8f8;
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    margin-top: auto;
}

.btn-tour-explore:hover {
    background: #63AB45;
    color: white;
    transform: translateX(5px);
}

/* Navigation Arrows */
.home-tours-prev,
.home-tours-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.home-tours-prev:after,
.home-tours-next:after {
    font-size: 20px;
    font-weight: 900;
    color: #1a1a1a;
}

.home-tours-prev:hover,
.home-tours-next:hover {
    background: #63AB45;
    box-shadow: 0 6px 20px rgba(99, 171, 69, 0.3);
}

.home-tours-prev:hover:after,
.home-tours-next:hover:after {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .section-tour-packages {
        padding: 50px 0;
    }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-header-flex .section-title-alt {
        font-size: 24px;
    }

    .home-tour-image {
        height: 200px;
    }

    .home-tour-content h3 {
        font-size: 16px;
        min-height: auto;
    }

    .home-tours-prev,
    .home-tours-next {
        width: 40px;
        height: 40px;
    }
}


/* Section Title Centered */
.section-title-center {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 50px 0;
}

/* View More Container Below Slider */
.view-more-container {
    text-align: center;
    margin-top: 40px;
}

.btn-view-more-bottom {
    display: inline-block;
    background: #63AB45;
    color: white;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-more-bottom:hover {
    background: #528f3a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 171, 69, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .section-title-center {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .view-more-container {
        margin-top: 30px;
    }

    .btn-view-more-bottom {
        padding: 12px 30px;
        font-size: 14px;
    }
}


/* Section Header Compact - Title with View More button below */
.section-header-compact {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-compact .section-title-center {
    margin: 0 0 15px 0;
}

.btn-view-more-top {
    display: inline-block;
    background: #63AB45;
    color: white;
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-more-top:hover {
    background: #528f3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 171, 69, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .section-header-compact {
        margin-bottom: 30px;
    }

    .btn-view-more-top {
        padding: 8px 24px;
        font-size: 13px;
    }
}


/* ====================================
   HOME PAGE - OUR SERVICES SECTION
   ==================================== */

.section-our-services {
    padding: 80px 0;
    background: #1a1a1a;
}

.section-our-services .section-header-compact {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-white {
    color: white;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.btn-view-more-services {
    display: inline-block;
    background: white;
    color: #1a1a1a;
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-more-services:hover {
    background: #63AB45;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 171, 69, 0.3);
}

/* Home Services Swiper */
.home-services-swiper {
    position: relative;
    padding: 10px 0 20px;
}

.home-services-swiper .swiper-slide {
    height: auto;
}

/* Home Service Card */
.home-service-card {
    position: relative;
    background: #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 171, 69, 0.2);
}

/* Service Image */
.home-service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Service Content */
.home-service-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.home-service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
    margin: 0 0 20px 0;
    flex: 1;
}

/* Learn More Button */
.btn-service-learn {
    background: #63AB45;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    align-self: flex-start;
}

.btn-service-learn:hover {
    background: #528f3a;
    color: white;
    transform: translateX(5px);
}

/* Navigation Arrows for Services */
.home-services-prev,
.home-services-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.home-services-prev:after,
.home-services-next:after {
    font-size: 20px;
    font-weight: 900;
    color: #1a1a1a;
}

.home-services-prev:hover,
.home-services-next:hover {
    background: #63AB45;
    box-shadow: 0 6px 20px rgba(99, 171, 69, 0.4);
}

.home-services-prev:hover:after,
.home-services-next:hover:after {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .section-our-services {
        padding: 50px 0;
    }

    .section-title-white {
        font-size: 28px;
    }

    .btn-view-more-services {
        padding: 8px 24px;
        font-size: 13px;
    }

    .home-service-image {
        height: 200px;
    }

    .home-service-content h3 {
        font-size: 18px;
    }

    .home-service-content p {
        font-size: 14px;
    }

    .home-services-prev,
    .home-services-next {
        width: 40px;
        height: 40px;
    }
}


/* ====================================
   OUR SERVICES - LIGHT BACKGROUND
   ==================================== */

/* Override dark background to light */
.section-our-services {
    background: #f8f9fa !important;
    /* Light gray background */
}

/* Update title for light background */
.section-our-services .section-header-compact .section-title-white {
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
}

.section-our-services .section-header-compact .section-title-white::after {
    background: linear-gradient(90deg, #63AB45, #85C765) !important;
    box-shadow: 0 2px 10px rgba(99, 171, 69, 0.4) !important;
}

/* Update View More button for light background */
.btn-view-more-services {
    background: linear-gradient(135deg, #63AB45 0%, #85C765 100%) !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(99, 171, 69, 0.35) !important;
}

.btn-view-more-services:hover {
    background: linear-gradient(135deg, #528f3a 0%, #6fb54d 100%) !important;
    color: white !important;
    box-shadow: 0 12px 35px rgba(99, 171, 69, 0.5) !important;
}

/* Update service cards for light background */
.home-service-card {
    background: white !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.home-service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
    border-color: #63AB45 !important;
}

/* Update service content text colors */
.home-service-content h3 {
    color: #1a1a1a !important;
}

.home-service-content p {
    color: #666 !important;
}

/* Navigation arrows for light background */
.home-services-prev,
.home-services-next {
    background: white !important;
    border: 2px solid #e0e0e0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.home-services-prev:hover,
.home-services-next:hover {
    background: #63AB45 !important;
    border-color: #63AB45 !important;
}

.section-our-services {
    background: #ffffff !important;
}

.section-our-services .section-header-compact::before,
.section-our-services .section-header-compact::after,
.section-our-services .section-header-compact .section-title-white::after {
    content: none !important;
    display: none !important;
    background: none !important;
    box-shadow: none !important;
}

.section-tour-packages .section-header-compact::before,
.section-tour-packages .section-header-compact::after {
    content: none !important;
    display: none !important;
}

/* ====================================
   OUR SERVICES - SWAP LAYOUT (IMG LEFT, TEXT RIGHT)
   ==================================== */
/* Tour Packages: center text column vertically within the row */
.section-tour-packages .ast-container {
    display: block;
}

.section-tour-packages .section-header-compact {
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.section-tour-packages .home-tours-swiper {
    width: 100%;
}

.section-tour-packages .home-tours-swiper .swiper-wrapper {
    align-items: stretch;
}

.section-our-services .ast-container {
    display: block;
}

.section-our-services .home-services-swiper {
    width: 100%;
}

.section-our-services .section-header-compact {
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.section-our-services .section-header-compact .btn-view-more-services {
    padding: 8px 22px;
    font-size: 13px;
    border-radius: 30px;
    width: auto;
    max-width: none;
    box-shadow: 0 6px 16px rgba(99, 171, 69, 0.28);
}

@media (max-width: 768px) {

    .section-tour-packages .section-header-compact,
    .section-our-services .section-header-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
        margin-bottom: 16px;
    }

    .section-tour-packages .section-header-compact .btn-view-more-top,
    .section-our-services .section-header-compact .btn-view-more-services {
        align-self: flex-start;
        padding: 10px 22px;
        font-size: 14px;
    }
}

.premium-content-frame {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.premium-content {
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(26, 26, 26, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 32px 36px;
    margin: 0 auto;
}

.premium-content-frame .premium-content {
    margin-left: 0;
}

@media (max-width: 768px) {
    .premium-content {
        margin-left: 0;
    }
}

.premium-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.premium-content {
    direction: ltr;
    text-align: left;
}

html[dir="ltr"] .premium-content-frame {
    justify-content: flex-start;
}

html[dir="ltr"] .premium-content {
    margin-left: 24px;
    margin-right: 0;
    direction: ltr;
    text-align: left;
}

html[dir="rtl"] .premium-content-frame {
    justify-content: flex-end;
}

html[dir="rtl"] .premium-content {
    margin-right: 24px;
    margin-left: 0;
    direction: rtl;
    text-align: right;
}

.premium-content .wp-block-image img {
    border-radius: 12px;
}

.premium-content .wp-block-gallery,
.premium-content .wp-block-image,
.premium-content .wp-block-group,
.premium-content .wp-block-cover {
    margin-bottom: 24px;
}

.page .wp-block-cover.has-background-dim::before,
.is-about-page .wp-block-cover::before,
.is-service-detail .wp-block-cover::before {
    opacity: 0.15 !important;
}

.premium-content h2,
.premium-content h3,
.premium-content h4 {
    margin-top: 18px;
    margin-bottom: 12px;
}

/* Smaller View More button in Tour Packages */
.section-tour-packages .section-header-compact .btn-view-more-top {
    padding: 8px 22px;
    font-size: 13px;
    border-radius: 30px;
    width: auto;
    max-width: none;
    box-shadow: 0 6px 16px rgba(99, 171, 69, 0.28);
}

/* Services details: make premium frame wider and centered like tours */
.category-services .premium-content-frame {
    justify-content: center !important;
}

.category-services .premium-content {
    max-width: 1400px;
    padding: 32px 40px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.is-service-detail .premium-content-frame {
    justify-content: center !important;
}

.is-service-detail .premium-content {
    max-width: 1400px;
    padding: 32px 40px;
    padding-inline-end: 56px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.is-service-detail .site-content .ast-container {
    max-width: 1500px !important;
    padding-left: 24px;
    padding-right: 24px;
}

.is-about-page .about-page-wrap {
    display: flex;
    justify-content: center;
    padding: 48px 24px;
}

.is-about-page .premium-about {
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 22px 60px rgba(26, 26, 26, 0.10);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 48px 56px;
    position: relative;
}

.is-about-page .premium-about:before {
    display: none;
}

.is-about-page .premium-about h1,
.is-about-page .premium-about h2,
.is-about-page .premium-about h3 {
    color: #1a1a1a;
}

.is-about-page .premium-about p {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 17px;
}

.is-about-page .premium-about ul {
    padding-left: 1.2em;
}

.is-about-page .premium-about li {
    margin: 6px 0;
}

@media (max-width: 768px) {

    .is-premium-tour .site-content .ast-container,
    .is-service-detail .site-content .ast-container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .is-premium-tour .ast-container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    html[dir="ltr"] .is-premium-tour .premium-content,
    html[dir="rtl"] .is-premium-tour .premium-content,
    html[dir="ltr"] .is-service-detail .premium-content,
    html[dir="rtl"] .is-service-detail .premium-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 12px;
        border-radius: 12px;
    }

    .single-post.is-premium-tour .entry-content .wp-block-group,
    .single-post.is-premium-tour .entry-content .wp-block-cover,
    .single-post.is-premium-tour .entry-content .wp-block-columns {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
}

/* ===============================
   MOBILE RESPONSIVE ENHANCEMENTS
   =============================== */
@media (max-width: 1024px) {
    .home-section {
        padding: 60px 0;
    }

    .hero-section.custom-amaanah-hero {
        padding: 80px 0;
    }

    .hero-title.amaanah-title {
        font-size: 40px;
    }

    .hero-desc.amaanah-desc {
        font-size: 16px;
        max-width: 680px;
        margin: 10px auto 24px;
    }
}

/* Hide custom mobile menu toggle on desktop */
.custom-astra-header .mobile-menu-toggle {
    display: none;
}

@media (max-width: 768px) {

    /* Header & Menu */
    .main-header-bar .ast-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: relative;
        padding-bottom: 0;
    }

    .site-branding img {
        max-height: 38px;
        height: auto;
        width: auto;
    }

    #ast-mobile-header .site-branding,
    #ast-mobile-header .ast-site-identity {
        display: flex !important;
        align-items: center;
        gap: 8px;
    }

    #ast-mobile-header .custom-logo-link,
    #ast-mobile-header .custom-mobile-logo-link {
        display: inline-flex !important;
        align-items: center;
    }

    #ast-mobile-header .custom-logo,
    #ast-mobile-header .ast-mobile-header-logo {
        display: block !important;
        max-height: 38px;
        width: auto !important;
        height: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .menu-toggle,
    .ast-mobile-menu-trigger {
        padding: 6px 10px;
        border-radius: 8px;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    /* Collapse menu by default; open when Astra adds 'toggle-on' */
    .main-header-bar .site-navigation {
        display: none;
    }

    .main-header-bar .site-navigation.toggle-on {
        display: block;
    }

    #ast-mobile-header .ast-mobile-header-content {
        display: none;
    }

    .ast-mobile-popup-active #ast-mobile-header .ast-mobile-header-content,
    .ast-mobile-header-active #ast-mobile-header .ast-mobile-header-content {
        display: block;
    }

    /* ====== Custom header mobile layout (this theme) ====== */
    /* Single row: Logo+Title | Flag-only | Menu toggle */
    .custom-astra-header .header-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        align-items: center;
        padding: 10px 16px;
        height: auto;
        gap: 0;
    }

    /* Force order on ALL direct children */
    .custom-astra-header .header-container>* {
        order: 10;
        /* default fallback */
    }

    /* 1) Logo + Title: left, takes remaining space */
    .custom-astra-header .header-container .site-branding {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex: 1 1 0%;
        min-width: 0;
        order: 1 !important;
        height: auto;
    }

    .custom-astra-header .header-container .site-branding .custom-logo-link,
    .custom-astra-header .header-container .site-branding .custom-mobile-logo-link {
        display: inline-flex !important;
        align-items: center;
        line-height: 0;
        flex-shrink: 0;
    }

    .custom-astra-header .header-container .site-branding img {
        max-height: 40px;
        width: auto;
        height: auto;
    }

    .custom-astra-header .header-container .site-branding .site-branding-text {
        display: block;
        min-width: 0;
        flex: 1 1 0%;
    }

    .custom-astra-header .header-container .site-branding .site-title {
        display: block;
        font-size: 14px;
        line-height: 1.2;
        margin: 0;
        padding: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* 2) Language switcher slot (injected by JS) — flag icon only */
    .custom-astra-header .header-container .mobile-lang-slot {
        order: 2 !important;
        flex-shrink: 0;
        margin: 0 8px;
        display: flex !important;
        align-items: center;
        height: 36px;
        position: static !important;
        transform: none !important;
    }

    .custom-astra-header .header-container .gt_switcher_wrapper,
    .custom-astra-header .header-container .gtranslate_wrapper,
    .custom-astra-header .header-container .gtranslate,
    .custom-astra-header .header-container .glink,
    .custom-astra-header .header-container .goog-te-gadget,
    .custom-astra-header .header-container .switcher {
        position: static !important;
        transform: none !important;
        flex-shrink: 0;
        margin: 0;
        height: 36px;
        display: flex;
        align-items: center;
        order: 2 !important;
        z-index: 1000;
    }

    /* Hide ALL text in language switcher — keep only flag image
       GTranslate HTML: <div class="gt_selected"><a><img/> English</a></div>
       Text sits directly inside <a> next to <img>, plugin injects inline width.
       Strategy: constrain <a> width to flag-only, hide overflow text. */
    .custom-astra-header .gt_selected a,
    .custom-astra-header .mobile-lang-slot .gt_selected a {
        width: 30px !important;
        min-width: 30px !important;
        max-width: 30px !important;
        overflow: hidden !important;
        text-indent: -9999px !important;
        display: inline-flex !important;
        align-items: center;
        padding: 3px !important;
        border: none !important;
    }

    /* Reset text-indent on flag icon so it stays visible */
    .custom-astra-header .gt_selected a img,
    .custom-astra-header .mobile-lang-slot .gt_selected a img {
        text-indent: 0 !important;
        display: inline-block !important;
        width: 24px !important;
        height: 24px !important;
        flex-shrink: 0;
        visibility: visible !important;
    }

    /* Hide the dropdown arrow ▼ */
    .custom-astra-header .gt_selected a::after,
    .custom-astra-header .mobile-lang-slot .gt_selected a::after {
        content: '' !important;
        display: none !important;
    }

    /* 3) Hamburger menu button: right side */
    .custom-astra-header .mobile-menu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        height: 38px;
        width: 42px;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        background: #fff;
        color: #333;
        font-size: 20px;
        cursor: pointer;
        flex-shrink: 0;
        order: 3 !important;
        margin-left: 0;
    }

    /* Mobile nav: full width below both rows */
    .custom-astra-header .main-navigation {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        padding: 12px 0 4px;
    }

    .custom-astra-header .main-navigation.is-open {
        display: block;
    }

    .custom-astra-header .main-navigation ul {
        width: 100%;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .custom-astra-header .main-navigation ul li a {
        padding: 10px 0;
        font-size: 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Hero */
    .hero-section.custom-amaanah-hero {
        padding: 70px 0;
    }

    .hero-title.amaanah-title {
        font-size: 32px;
        line-height: 1.25;
    }

    .hero-desc.amaanah-desc {
        font-size: 15px;
        padding: 0 12px;
    }

    .btn-hero-amaanah {
        padding: 12px 22px;
        font-size: 14px;
    }

    /* Section headers */
    .section-tour-packages .section-header-compact,
    .section-our-services .section-header-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
        margin-bottom: 16px;
    }

    .section-tour-packages .section-header-compact .btn-view-more-top,
    .section-our-services .section-header-compact .btn-view-more-services {
        align-self: flex-start;
        padding: 10px 22px;
        font-size: 14px;
    }

    /* Reserve space for language switcher; prevent overlap with the site title */
    .site-branding {
        flex: 1 1 auto;
        min-width: 0;
    }

    .main-header-bar .site-title {
        font-size: clamp(18px, 5vw, 24px);
        padding-right: 48px;
        padding-left: 96px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Position GTranslate/Switcher aligned with menu button (Astra default header) */
    .main-header-bar .ast-container .gt_switcher_wrapper,
    .main-header-bar .ast-container .gtranslate_wrapper,
    .main-header-bar .ast-container .gtranslate,
    .main-header-bar .ast-container .glink,
    .main-header-bar .ast-container .goog-te-gadget,
    .main-header-bar .ast-container .switcher {
        position: absolute !important;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        max-width: 44vw;
        height: 36px;
        display: flex;
        align-items: center;
    }

    /* Dedicated slot to hold language switcher */
    .main-header-bar .ast-container .mobile-lang-slot {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        max-width: 44vw;
        display: flex;
        align-items: center;
        gap: 6px;
        height: 36px;
    }

    #ast-mobile-header .ast-container {
        display: flex;
        align-items: center;
    }

    #ast-mobile-header .ast-container .mobile-lang-slot {
        position: static;
        transform: none;
        z-index: 1000;
        max-width: 44vw;
        display: flex;
        align-items: center;
        gap: 6px;
        height: 36px;
        margin-left: 10px;
        margin-right: 10px;
        order: 2;
    }

    #ast-mobile-header .ast-container .gt_switcher_wrapper,
    #ast-mobile-header .ast-container .gtranslate_wrapper,
    #ast-mobile-header .ast-container .gtranslate,
    #ast-mobile-header .ast-container .glink,
    #ast-mobile-header .ast-container .goog-te-gadget,
    #ast-mobile-header .ast-container .switcher {
        position: static !important;
        transform: none !important;
    }

    #ast-mobile-header .ast-container .ast-site-identity,
    #ast-mobile-header .ast-container .site-branding {
        order: 1;
    }

    #ast-mobile-header .ast-container .ast-mobile-menu-trigger,
    #ast-mobile-header .ast-container .menu-toggle,
    #ast-mobile-header .ast-container .mobile-menu-toggle {
        order: 3;
        margin-left: auto;
    }

    /* Neutralize absolute styles inside the slot */
    .mobile-lang-slot .gt_switcher_wrapper,
    .mobile-lang-slot .gtranslate_wrapper,
    .mobile-lang-slot .gtranslate,
    .mobile-lang-slot .glink,
    .mobile-lang-slot .goog-te-gadget,
    .mobile-lang-slot .switcher {
        position: static !important;
    }

    .main-header-bar .ast-container .gt_switcher_wrapper .gt_selected,
    .main-header-bar .ast-container .gtranslate_wrapper .gt_selected,
    #ast-mobile-header .ast-container .gt_switcher_wrapper .gt_selected,
    #ast-mobile-header .ast-container .gtranslate_wrapper .gt_selected {
        font-size: 12px;
        line-height: 1.2;
        white-space: nowrap;
    }

    #ast-mobile-header .site-title {
        padding-left: 0;
    }

    .main-header-bar .ast-container.header-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "branding menu"
            "lang menu";
        align-items: center;
        column-gap: 10px;
        row-gap: 4px;
        padding: 10px 12px;
        height: auto;
        min-height: 72px;
    }

    .main-header-bar .ast-container.header-container .site-branding {
        grid-area: branding;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 2px;
        min-width: 0;
        height: auto;
        margin: 0;
    }

    .main-header-bar .ast-container.header-container .site-branding .custom-logo-link,
    .main-header-bar .ast-container.header-container .site-branding .custom-mobile-logo-link {
        display: inline-flex !important;
        align-items: center;
        line-height: 0;
    }

    .main-header-bar .ast-container.header-container .site-branding img,
    .main-header-bar .ast-container.header-container .site-branding .custom-logo,
    .main-header-bar .ast-container.header-container .site-branding .ast-mobile-header-logo {
        max-height: 40px;
        width: auto !important;
        height: auto !important;
        display: block !important;
    }

    .main-header-bar .ast-container.header-container .site-branding .site-branding-text {
        width: 100%;
    }

    .main-header-bar .ast-container.header-container .site-branding .site-title {
        display: block;
        font-size: 15px;
        line-height: 1.2;
        margin: 0;
        padding: 0;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .main-header-bar .ast-container.header-container .mobile-lang-slot {
        grid-area: lang;
        position: static !important;
        left: auto;
        top: auto;
        transform: none !important;
        margin: 0;
        max-width: 100%;
        height: 30px;
        display: flex;
        align-items: center;
    }

    .main-header-bar .ast-container.header-container .gt_switcher_wrapper,
    .main-header-bar .ast-container.header-container .gtranslate_wrapper,
    .main-header-bar .ast-container.header-container .gtranslate,
    .main-header-bar .ast-container.header-container .glink,
    .main-header-bar .ast-container.header-container .goog-te-gadget,
    .main-header-bar .ast-container.header-container .switcher {
        position: static !important;
        left: auto;
        top: auto;
        transform: none !important;
        max-width: 100%;
        height: auto;
    }

    .main-header-bar .ast-container.header-container .mobile-menu-toggle,
    .main-header-bar .ast-container.header-container .ast-mobile-menu-trigger,
    .main-header-bar .ast-container.header-container .menu-toggle {
        grid-area: menu;
        align-self: center;
        justify-self: end;
        margin: 0;
    }

    /* Cards & sliders */
    .home-service-image {
        height: 200px;
    }

    .home-service-content {
        padding: 20px 18px;
    }

    .home-tour-image {
        height: 200px !important;
    }

    .home-tour-content {
        padding: 18px !important;
    }

    /* Swiper arrows smaller */
    .home-services-prev,
    .home-services-next,
    .home-tours-prev,
    .home-tours-next {
        width: 36px !important;
        height: 36px !important;
    }

    /* Footer */
    .footer-grid,
    .site-footer .ast-container {
        grid-template-columns: 1fr !important;
    }

    .site-footer .contact-list li {
        gap: 10px;
    }

    .site-footer .contact-details .value {
        font-size: 16px;
    }

    /* Floating social icons */
    .social-list {
        right: 12px !important;
        gap: 14px !important;
    }
}

@media (max-width: 480px) {
    .hero-title.amaanah-title {
        font-size: 28px;
    }

    .hero-desc.amaanah-desc {
        font-size: 14px;
    }

    .home-section {
        padding: 48px 0;
    }

    .btn-hero-amaanah {
        font-size: 13px;
        padding: 10px 18px;
    }
}