/*
Theme Name: Mentawai Secret
Theme URI: https://mentawaisecret.com/
Author: Peri Aldi (Haiweb.id)
Author URI: https://haiweb.id
Description: Custom premium theme for Mentawai Secret. Replicates the authentic layout and detail of mentawaiculture.com but styled using an organic logo-derived palette (Olive Forest Green, Terracotta Accent Red, Warm Light Sand, Dark Charcoal).
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: mentawai-secret
*/

/* ---------------------------------------------------------
   1. DESIGN TOKENS & DESIGN SYSTEM
   --------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-primary: #3E5138;        /* Dark Forest/Olive Green */
    --color-primary-rgb: 62, 81, 56;
    --color-accent: #B54E31;         /* Terracotta/Rust Red */
    --color-accent-rgb: 181, 78, 49;
    --color-bg-light: #EAE3CC;       /* Warm Light Sand/Cream */
    --color-bg-light-rgb: 234, 227, 204;
    --color-dark: #22241D;           /* Dark Charcoal/Warm Black */
    --color-white: #ffffff;
    --color-soft-white: #FAF8F5;
    --color-gray-light: #EAEAEA;
    --color-gray-medium: #8A8B88;
    
    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Reset and Core Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
}

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

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

ul, ol {
    list-style: none;
}

/* Utility Containers */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* ---------------------------------------------------------
   2. HEADER & TOP BAR & MENU
   --------------------------------------------------------- */
.top-bar {
    background-color: var(--color-primary);
    color: var(--color-bg-light);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 2px solid var(--color-accent);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info a:hover {
    color: var(--color-white);
}

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

.top-bar-socials a {
    color: var(--color-bg-light);
    font-size: 16px;
}

.top-bar-socials a:hover {
    color: var(--color-white);
    transform: scale(1.15);
}

/* Main Navigation */
.main-header {
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 65px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--color-primary);
}

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

/* Menu Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--color-dark);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu a.active {
    color: var(--color-accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.btn-header-cta {
    background-color: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px 28px !important;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(181, 78, 49, 0.25);
    margin-left: 15px;
}

.nav-menu a.btn-header-cta:hover {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 81, 56, 0.35);
}

.nav-menu a.btn-header-cta::after {
    display: none !important;
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-primary);
    position: relative;
    z-index: 1005;
}

/* ---------------------------------------------------------
   3. HERO SLIDER
   --------------------------------------------------------- */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 130px);
    min-height: 550px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 90%;
    max-width: 900px;
    color: var(--color-white);
    text-align: center;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 35px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    font-weight: 400;
    line-height: 1.5;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1.2s ease;
}

/* General Buttons */
.btn-premium {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-premium-filled {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 6px 15px rgba(181, 78, 49, 0.3);
}

.btn-premium-filled:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(62, 81, 56, 0.4);
}

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

.btn-premium-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.25);
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

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

/* ---------------------------------------------------------
   4. WELCOME & INTRO SECTIONS
   --------------------------------------------------------- */
.welcome-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.grid-ratio-contact {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.grid-ratio-profile {
    grid-template-columns: 0.95fr 1.05fr;
}

.grid-ratio-tour {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
    gap: 40px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.welcome-img-wrapper {
    position: relative;
}

.welcome-img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.welcome-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.welcome-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(181, 78, 49, 0.3);
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.welcome-content p {
    font-size: 16.5px;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.btn-inline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--color-accent);
    margin-top: 15px;
}

.btn-inline:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateX(5px);
}

/* ---------------------------------------------------------
   5. WHY CHOOSE US & SLANTED COLUMNS
   --------------------------------------------------------- */
.why-choose-bg {
    background-color: var(--color-soft-white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-feature-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 20px 25px;
    display: flex;
    gap: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-left: 4px solid var(--color-primary);
}

.why-feature-card:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow-hover);
    border-left-color: var(--color-accent);
}

.why-feature-icon {
    font-size: 32px;
    color: var(--color-accent);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.why-feature-info p {
    font-size: 14.5px;
    color: var(--color-dark);
}

/* Clean Grid Layout */
.why-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ---------------------------------------------------------
   6. TOUR PACKAGES GRID
   --------------------------------------------------------- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 45px;
}

.package-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--color-gray-light);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.package-card-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.package-card:hover .package-card-img {
    transform: scale(1.08);
}

.package-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.badge-tag {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    color: var(--color-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.badge-category {
    background-color: var(--color-primary);
}

.badge-route {
    background-color: var(--color-accent);
}

.package-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-card-body h3 {
    font-size: 19px;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--color-bg-light);
    padding-bottom: 8px;
    line-height: 1.3;
}

.package-card-body h3 a:hover {
    color: var(--color-accent);
}

.package-pricing-list {
    margin: 20px 0;
    flex-grow: 1;
}

.package-pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    padding: 6px 0;
    border-bottom: 1px dashed var(--color-gray-light);
    line-height: 1.4;
}

.package-pricing-list li:last-child {
    border-bottom: none;
}

.package-pricing-list li i {
    color: var(--color-accent);
    font-size: 16px;
}

.package-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-card {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11.5px;
    text-transform: uppercase;
    padding: 12px 0;
    border-radius: 6px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    cursor: pointer;
    flex: 1;
}

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

.btn-card-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-card-filled {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-card-filled:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.package-views-counter {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 12px;
    color: var(--color-gray-medium);
    margin-top: 15px;
}

/* ---------------------------------------------------------
   7. GALLERY RESPONSIVE GRID
   --------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    height: 250px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(62, 81, 56, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: var(--transition);
    color: var(--color-white);
    padding: 20px;
    text-align: center;
}

.gallery-overlay i {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--color-bg-light);
    transform: translateY(15px);
    transition: var(--transition);
}

.gallery-overlay h4 {
    color: var(--color-white);
    font-size: 18px;
    transform: translateY(15px);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* Custom Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 3px solid var(--color-bg-light);
}

.lightbox-caption {
    color: var(--color-bg-light);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--color-white);
    font-size: 36px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--color-accent);
}

/* ---------------------------------------------------------
   8. TESTIMONIALS SECTION
   --------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 45px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--color-gray-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-accent);
    margin-bottom: 20px;
}

.testimonial-stars {
    color: #F1C40F;
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-role {
    font-size: 13px;
    color: var(--color-gray-medium);
}

/* ---------------------------------------------------------
   9. PARALLAX CALL-TO-ACTION BANNER
   --------------------------------------------------------- */
.cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: var(--color-white);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(62, 81, 56, 0.85); /* Green brand overlay */
    z-index: 1;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.cta-banner-text {
    flex: 1;
    min-width: 300px;
}

.cta-banner-text h2 {
    color: var(--color-white);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-banner-text p {
    font-size: 17px;
    color: var(--color-bg-light);
}

.cta-banner-btn-wrapper {
    flex-shrink: 0;
}

/* ---------------------------------------------------------
   10. FOOTER
   --------------------------------------------------------- */
.main-footer {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding-top: 80px;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(34,36,29,0.92) 0%, rgba(18,20,15,0.98) 100%);
    z-index: 1;
}

.main-footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 0.8fr 1.1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(234, 227, 204, 0.15);
    padding-bottom: 50px;
}

.footer-col h3 {
    color: var(--color-bg-light);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
}

/* Footer Col 1: About */
.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-bg-light);
}

.footer-logo-text span {
    color: var(--color-accent);
}

.footer-col p {
    font-size: 14.5px;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    background-color: rgba(255,255,255,0.08);
    color: var(--color-white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.footer-socials a:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Footer Col 2: Contact Details */
.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact-list li i {
    color: var(--color-accent);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-list li a:hover {
    color: var(--color-accent);
}

/* Footer Col 3: Menu */
.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    font-size: 14.5px;
    color: #CCCCCC;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-menu li a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

/* Footer Col 4: Maps */
.footer-map-embed {
    width: 100%;
    height: 180px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(234, 227, 204, 0.2);
    overflow: hidden;
}

/* Copyright Bar */
.footer-copyright-bar {
    position: relative;
    z-index: 2;
    background-color: rgba(0,0,0,0.3);
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    color: #999999;
}

.footer-copyright-bar a {
    color: var(--color-bg-light);
    font-weight: 600;
}

.footer-copyright-bar a:hover {
    color: var(--color-accent);
}

/* ---------------------------------------------------------
   11. FLOATING WIDGETS
   --------------------------------------------------------- */
/* WhatsApp Floating Button */
.whatsapp-floating {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    z-index: 999999 !important;
    background-color: #25D366 !important;
    color: #ffffff !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.whatsapp-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Scroll To Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

/* Animations */
@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------------------------------------------------
   12. RESPONSIVENESS (MOBILE AND TABLETS)
   --------------------------------------------------------- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .skew-columns-container {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    .section-title {
        font-size: 32px;
    }
    .top-bar {
        display: none; /* Hide top bar on mobile */
    }
    .mobile-nav-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--color-white);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        z-index: 998;
    }
    .nav-menu.active {
        left: 0 !important;
    }
    .btn-header-cta {
        display: none; /* Hide header cta on mobile menu bar */
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn-premium {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-grid-2, .tour-details-grid {
        grid-template-columns: 1fr;
    }
    .welcome-badge {
        right: 10px;
        bottom: 10px;
    }
    .skew-columns-container {
        height: 300px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .whatsapp-floating {
        bottom: 20px !important;
        left: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 26px !important;
    }
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ---------------------------------------------------------
   PREMIUM FEATURES SECTION (HOME PAGE)
   --------------------------------------------------------- */
.premium-features-section {
    position: relative;
    background: linear-gradient(135deg, rgba(62, 81, 56, 0.08) 0%, rgba(62, 81, 56, 0.03) 100%);
    overflow: hidden;
}

.premium-features-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181, 78, 49, 0.04) 0%, transparent 70%);
    z-index: 0;
}

.premium-features-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(62, 81, 56, 0.04) 0%, transparent 70%);
    z-index: 0;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.premium-feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03), 0 5px 15px rgba(62, 81, 56, 0.04);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.premium-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06), 0 15px 25px rgba(181, 78, 49, 0.08);
    background: rgba(255, 255, 255, 1);
}

.premium-feature-card:hover::before {
    transform: scaleX(1);
}

.premium-feature-icon-wrapper {
    width: 85px;
    height: 85px;
    margin: 0 auto 35px;
    background: linear-gradient(135deg, rgba(62, 81, 56, 0.08), rgba(181, 78, 49, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    position: relative;
}

.premium-feature-card:hover .premium-feature-icon-wrapper {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    transform: rotateY(180deg);
    box-shadow: 0 10px 20px rgba(181, 78, 49, 0.2);
}

.premium-feature-icon {
    font-size: 34px;
    color: var(--color-accent);
    transition: all 0.6s ease;
}

.premium-feature-card:hover .premium-feature-icon {
    color: var(--color-white);
    transform: rotateY(180deg);
}

.premium-feature-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.premium-feature-card:hover .premium-feature-title {
    color: var(--color-accent);
}

.premium-feature-text {
    font-size: 15.5px;
    color: var(--color-gray-medium);
    line-height: 1.7;
    font-weight: 400;
}

/* Mobile Adjustments for Premium Section */
@media (max-width: 768px) {
    .premium-feature-card {
        padding: 40px 25px;
    }
    .premium-feature-title {
        font-size: 20px;
    }
    .premium-feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    .premium-feature-icon {
        font-size: 28px;
    }
    .premium-features-grid {
        gap: 25px;
    }
}

/* ---------------------------------------------------------
   TESTIMONIALS SECTION
   --------------------------------------------------------- */
.testimonials-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.85); /* White overlay to make text readable */
    z-index: 1;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.testimonials-intro h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 20px;
    line-height: 1.3;
}

.testimonials-intro p {
    font-size: 15px;
    color: var(--color-gray-medium);
    line-height: 1.7;
}

.swiper.mySwiperTesti {
    width: 100%;
    overflow: hidden;
    padding-bottom: 50px;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    width: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-bg-light);
}

.testimonial-meta h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 5px;
}

.testimonial-stars {
    color: #FFA500;
    font-size: 12px;
}

.testimonial-divider {
    height: 1px;
    background-color: var(--color-gray-light);
    margin: 15px 0;
}

.testimonial-text {
    font-size: 14.5px;
    color: var(--color-gray-medium);
    line-height: 1.7;
    font-style: italic;
}

/* Swiper Pagination Dots Customization */
.swiper-pagination-bullet {
    background: var(--color-accent) !important;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 992px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ---------------------------------------------------------
   BLOG ARTICLE TYPOGRAPHY
   --------------------------------------------------------- */
.mentawai-article-content {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.85;
    color: #333333;
}

.mentawai-article-content p {
    margin-bottom: 25px;
}

.mentawai-article-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 45px 0 20px;
}

.mentawai-article-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 35px 0 15px;
}

.mentawai-article-content ul, 
.mentawai-article-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.mentawai-article-content li {
    margin-bottom: 10px;
}

.mentawai-article-content img {
    border-radius: var(--border-radius);
    margin: 30px 0;
    box-shadow: var(--box-shadow);
}

.mentawai-article-content blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--color-accent);
    border-left: 4px solid var(--color-accent);
    padding: 15px 20px;
    margin: 30px 0;
    background: var(--color-soft-white);
    border-radius: 0 8px 8px 0;
}

@media (max-width: 768px) {
    .mentawai-article-content {
        font-size: 16px;
    }
    .mentawai-article-content h2 {
        font-size: 24px;
    }
    .author-box {
        flex-direction: column;
        text-align: center;
    }
}
