/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables & Design Tokens */
:root {
    /* Color Palette */
    --primary-color: #0b2f1d;       /* Deep Forest Green */
    --primary-light: #164e32;      /* Medium Forest Green */
    --secondary-color: #d4af37;    /* Sand Gold */
    --secondary-hover: #bfa030;    /* Dark Sand Gold */
    --text-dark: #1e2521;          /* Warm Black */
    --text-muted: #5e6661;         /* Charcoal Sage */
    --bg-light: #fdfbf7;           /* Warm Sand White */
    --bg-white: #ffffff;
    --bg-accent: #f5f1e9;          /* Slightly darker warm tone */
    --bg-green-light: #dcefe3;     /* Elegant Signature Light Green */
    --whatsapp-color: #25D366;     /* Official WhatsApp Green */
    --whatsapp-hover: #20ba5a;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 47, 29, 0.04);
    --shadow-md: 0 10px 30px rgba(11, 47, 29, 0.08);
    --shadow-lg: 0 20px 40px rgba(11, 47, 29, 0.12);
    
    /* Spacing */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

header.scrolled {
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff4b7a;
    font-family: 'Outfit', sans-serif;
}

.logo-accent {
    color: var(--secondary-color);
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

/* Banner Component (Used on sub-pages) */
.page-banner {
    position: relative;
    padding: 180px 0 100px 0;
    background-color: transparent;
    color: var(--bg-white);
    text-align: center;
    background-size: cover;
    background-position: center 45%;
    background-blend-mode: normal;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner-content h1 {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: 12px;
}

.page-banner-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Home Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    background-size: cover;
    background-position: left center;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 47, 29, 0.22) 0%, rgba(11, 47, 29, 0.12) 50%, rgba(11, 47, 29, 0.06) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-tagline {
    font-family: 'Outfit', sans-serif;
    color: #ffdd00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
}

.hero-content h1 {
    color: var(--bg-white);
    font-size: 4.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 32px;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
    font-style: italic;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Tour Categories Section */
.section-subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 40px;
}

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

.category-card {
    background: var(--bg-white);
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(11, 47, 29, 0.06) !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--secondary-color) !important;
}

.category-image-wrapper {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-card:hover .category-image {
    transform: scale(1.05);
}

.category-body {
    padding: 16px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.category-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.category-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.category-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Featured Tour Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--bg-white);
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(11, 47, 29, 0.06) !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

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

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.package-card:hover .package-image {
    transform: scale(1.05);
}

.package-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e05e5e; /* GetYourGuide red accent banner */
    color: var(--bg-white);
    padding: 4px 8px;
    font-weight: 700;
    font-size: 0.65rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

/* Wishlist Heart Button overlay */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 10;
    color: #555;
    transition: var(--transition-smooth);
}

.wishlist-btn:hover {
    transform: scale(1.1);
    background: #fff0f0;
    color: #e05e5e;
}

.wishlist-btn.active {
    color: #e05e5e;
}

.wishlist-btn.active .heart-icon {
    fill: #e05e5e;
    stroke: #e05e5e;
}

.package-body {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.package-meta-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
    height: 2.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal !important;
}

.package-specs-row {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.package-specs-row span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.package-price-rating-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(11, 47, 29, 0.06);
    margin-bottom: 16px;
}

.package-rating-info {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-rating-info .rating-star {
    color: #f1c40f;
    font-size: 1rem;
}

.package-rating-info .reviews-count {
    color: var(--text-muted);
    font-weight: normal;
    font-size: 0.8rem;
}

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

.price-from-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 1px;
}

.price-amount {
    font-size: 1.15rem;
    font-weight: 800;
    color: #e05e5e; /* GetYourGuide coral price styling */
}

.price-unit {
    font-size: 0.7rem;
    font-weight: normal;
    color: var(--text-muted);
}

.package-card-actions {
    display: flex;
    gap: 8px;
}

.package-card-actions .btn {
    flex: 1;
    padding: 10px 12px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
}

/* Category Filters (Packages page) */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    border-radius: 30px;
    background-color: var(--bg-accent);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-tab:hover,
.filter-tab.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* Bali Charter Car Styles */
.charter-intro {
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

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

.car-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 47, 29, 0.05);
    transition: var(--transition-smooth);
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.car-image-wrapper {
    position: relative;
    height: 200px;
    background-color: var(--bg-accent);
    overflow: hidden;
}

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

.car-body {
    padding: 24px;
}

.car-name {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.car-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(11, 47, 29, 0.08);
}

.spec-item {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.car-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.car-price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.car-price-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.car-price-unit {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Inclusion Info Box */
.info-section {
    background-color: var(--bg-accent);
    border-radius: var(--radius-md);
    padding: 40px;
    margin-top: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 24px;
}

.info-box h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-list {
    list-style: none;
}

.info-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.info-list li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
}

.info-list.exclusions li::before {
    content: "✗";
    color: #e05e5e;
}

/* Bali Tour Destination (Articles) */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 47, 29, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.article-image-wrapper {
    height: 220px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
}

.article-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.article-readmore {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.article-readmore:hover {
    color: var(--secondary-color);
}

/* Why Choose Us & Testimonials */
.features-section {
    background-color: var(--bg-accent);
}

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

.feature-box {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.feature-box h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Pulsing effect for WhatsApp floating button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Call to Action Banner */
.cta-banner {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 47, 29, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer styling */
footer {
    background-color: #06180f;
    color: rgba(253, 251, 247, 0.8);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(253, 251, 247, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    color: #ff4b7a;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(253, 251, 247, 0.7);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact-info {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 251, 247, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    html {
        font-size: 15px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .page-banner-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 50px 40px;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-link {
        color: var(--primary-color);
        font-size: 1.1rem;
    }
    
    .hero {
        height: auto;
        min-height: auto !important;
        padding: 140px 0 70px 0 !important;
    }
    
    .hero::before {
        background: rgba(11, 47, 29, 0.15) !important;
        display: block !important;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    }
    
    .hero-content p {
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    }
    
    .hero-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center;
        gap: 10px;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero-actions .btn {
        flex: 1;
        padding: 12px 10px !important;
        font-size: 0.82rem !important;
        white-space: nowrap;
        text-align: center;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.85rem;
        margin-bottom: 30px;
    }
    
    .info-section {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }
    .page-banner-content h1 {
        font-size: 2rem;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}

/* Modal Styling for Tour Details */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 24, 15, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 11000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-white);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: var(--radius-md);
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(11, 47, 29, 0.1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.modal-hero {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.modal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 47, 29, 0) 0%, rgba(11, 47, 29, 0.85) 100%);
    z-index: 1;
}

.modal-hero h3 {
    color: var(--bg-white);
    font-size: 2rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-body {
    padding: 30px;
}

.modal-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.modal-desc ul, .modal-desc ol {
    margin-top: 12px;
    margin-bottom: 12px;
    padding-left: 20px;
}

.modal-desc li {
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.modal-details-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
}

.modal-itinerary h4, .modal-sidebar h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--bg-accent);
    padding-bottom: 8px;
}

.modal-itinerary ul {
    list-style: none;
}

.modal-itinerary li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.modal-itinerary li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.modal-itinerary li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 16px;
    width: 2px;
    height: calc(100% + 8px);
    background-color: rgba(11, 47, 29, 0.15);
}

.modal-itinerary li:last-child::after {
    display: none;
}

.sidebar-box {
    background-color: var(--bg-accent);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border: 1px solid rgba(11, 47, 29, 0.05);
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box li {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.sidebar-box li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

.modal-price-box {
    text-align: center;
    background-color: var(--bg-white);
    border: 1px dashed var(--secondary-color);
    padding: 20px;
    border-radius: var(--radius-md);
}

.modal-price-box span {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .modal-details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .modal-hero h3 {
        font-size: 1.5rem;
    }
    .modal-hero {
        height: 180px;
        padding: 20px;
    }
    .modal-body {
        padding: 20px;
    }
}

/* Language Switcher header pill */
.lang-switcher {
    display: inline-flex;
    background-color: var(--bg-accent);
    border: 1px solid rgba(11, 47, 29, 0.1);
    border-radius: 30px;
    padding: 3px;
    gap: 2px;
    align-items: center;
    margin-left: 12px;
}

.lang-btn {
    border: none;
    background: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    color: var(--primary-color);
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* Modal Image Slider */
.modal-hero-slider {
    position: relative;
    height: 420px;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.slider-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--primary-color);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Modal Title (No longer floats over Slider) */
#modalTitle {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .modal-hero-slider {
        height: 280px;
    }
    #modalTitle {
        font-size: 1.35rem !important;
        margin-bottom: 12px !important;
    }
    .slider-prev, .slider-next {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    .slider-prev {
        left: 10px;
    }
    .slider-next {
        right: 10px;
    }

    /* Horizontal list-style tour cards on mobile */
    .packages-grid, #packagesCatalog, #featuredPackagesGrid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    .package-card {
        flex-direction: row !important;
        align-items: center !important;
        height: auto !important;
        border-radius: 12px !important;
    }

    .package-image-wrapper {
        width: 120px !important;
        height: 120px !important;
        min-height: 120px !important;
        flex-shrink: 0 !important;
        position: relative !important;
        margin: 10px 0 10px 10px !important;
        border-radius: 8px !important;
    }

    .package-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .package-body {
        padding: 0 12px 0 10px !important;
        height: 120px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        flex-grow: 1 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .package-meta-category {
        font-size: 0.65rem !important;
        margin-bottom: 0 !important;
        padding-right: 90px !important;
    }

    .package-tag {
        position: absolute !important;
        top: 0 !important;
        left: auto !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 5px 10px !important;
        border-radius: 0 12px 0 12px !important;
        z-index: 10 !important;
    }

    .package-title {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        height: auto !important;
        max-height: 2.4rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .package-specs-row {
        margin-bottom: 0 !important;
        gap: 8px !important;
        font-size: 0.65rem !important;
    }

    .package-desc {
        display: none !important;
    }

    .package-price-rating-section {
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        border-top: none !important;
    }

    .price-amount {
        font-size: 1rem !important;
    }

    .package-card-actions {
        display: flex !important;
        gap: 6px !important;
    }

    .package-card-actions .btn {
        padding: 4px 8px !important;
        font-size: 0.7rem !important;
    }
    }



    /* Horizontal Why Choose Us on Mobile */
    .features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    .feature-box {
        display: grid !important;
        grid-template-columns: auto 1fr !important;
        grid-template-rows: auto auto !important;
        column-gap: 16px !important;
        row-gap: 4px !important;
        text-align: left !important;
        padding: 16px 20px !important;
        background: var(--bg-white) !important;
        border-radius: var(--radius-md) !important;
        box-shadow: var(--shadow-sm) !important;
        border: 1px solid rgba(11, 47, 29, 0.05) !important;
        align-items: start !important;
    }

    .feature-icon {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        font-size: 2.2rem !important;
        margin-bottom: 0 !important;
        align-self: center !important;
    }

    .feature-box h3 {
        grid-column: 2 !important;
        grid-row: 1 !important;
        margin-bottom: 0 !important;
        font-size: 1.1rem !important;
    }

    .feature-box p {
        grid-column: 2 !important;
        grid-row: 2 !important;
        margin-bottom: 0 !important;
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
}



/* Floating Back to Home Button */
.home-float {
    position: fixed !important;
    bottom: 24px !important;
    left: 24px !important;
    background-color: var(--primary-color) !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
    z-index: 999 !important;
    text-decoration: none !important;
    transition: var(--transition-smooth) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    font-family: 'Outfit', sans-serif !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    letter-spacing: 0.5px !important;
}

.home-float:hover {
    transform: translateY(-3px) scale(1.03) !important;
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35) !important;
}

@media (max-width: 768px) {
    .home-float {
        bottom: 16px !important;
        left: 16px !important;
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
    }
}

/* Mobile Responsive Horizontal Scroll for Tour Categories Cards */
@media (max-width: 768px) {
    .categories-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding-bottom: 12px !important;
        scroll-padding-left: 16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
    }
    
    .categories-grid::-webkit-scrollbar {
        height: 4px !important;
    }
    
    .categories-grid::-webkit-scrollbar-track {
        background: rgba(11, 47, 29, 0.05) !important;
        border-radius: 2px !important;
    }
    
    .categories-grid::-webkit-scrollbar-thumb {
        background: var(--primary-color) !important;
        border-radius: 2px !important;
    }

    .categories-grid .category-card {
        flex: 0 0 240px !important;
        scroll-snap-align: start !important;
        height: 250px !important;
        padding: 0 !important;
    }
}

/* Mobile Responsive Vertical Layout for Car Charter Cards (to match Articles/Destinations) */
@media (max-width: 768px) {
    .fleet-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .car-card {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        background: var(--bg-white) !important;
        border-radius: var(--radius-md) !important;
        overflow: hidden !important;
        box-shadow: var(--shadow-sm) !important;
        border: 1px solid rgba(11, 47, 29, 0.05) !important;
    }

    .car-image-wrapper {
        width: 100% !important;
        height: 200px !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }

    .car-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .car-body {
        padding: 20px !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .car-name {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        margin: 0 !important;
        color: var(--primary-color) !important;
    }

    .car-specs {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        margin: 8px 0 !important;
        padding-bottom: 12px !important;
        border-bottom: 1px solid rgba(11, 47, 29, 0.08) !important;
    }

    .spec-item {
        font-size: 0.85rem !important;
        color: var(--text-muted) !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .car-price-box {
        margin: 4px 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .car-price-label {
        font-size: 0.8rem !important;
        color: var(--text-muted) !important;
    }

    .car-price-val {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        color: var(--primary-color) !important;
    }

    .car-price-unit {
        font-size: 0.8rem !important;
        color: var(--text-muted) !important;
    }

    .book-car-btn {
        padding: 10px 16px !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        margin-top: 8px !important;
        width: 100% !important;
        text-align: center !important;
        border-radius: 6px !important;
    }
}

/* Responsive Quill Video (YouTube) Embeds */
.ql-video {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .ql-video {
        height: 220px;
    }
}

/* Floating Back to Home Button */
.back-to-home-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background-color: var(--primary-color, #0b2f1d);
    color: white !important;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.back-to-home-float:hover {
    background-color: var(--secondary-color, #e7a03c) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .back-to-home-float {
        bottom: 16px;
        left: 16px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* Hero Badge & Statistics Grid */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 16px;
    border-radius: 50px;
    margin-top: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.badge-icon {
    font-size: 0.95rem;
}

.badge-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bg-white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.stat-rating {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.stat-rating .stars {
    color: var(--secondary-color, #e7a03c);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--bg-white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-stats {
        justify-content: center;
        gap: 24px;
        margin-top: 35px;
        padding-top: 20px;
    }
    .stat-item {
        text-align: center;
    }
}

/* Mengubah warna tombol See Tour Packages di Hero utama menjadi Orange Muda Cerah */
.hero-actions .btn-secondary {
    background-color: #ffa502 !important; /* Orange muda cerah */
    color: #0b2f1d !important;            /* Teks hijau tua agar kontras & terbaca jelas */
}

.hero-actions .btn-secondary:hover {
    background-color: #ff9f43 !important; /* Orange sedikit lebih terang saat disentuh/hover */
    transform: translateY(-2px);
}