/* ==========================================================================
   Mthuzi Nadi Lodge CSS Stylesheet
   Design System: Forest Green (#0A5C36) & Sunset Orange (#E75A24)
   ========================================================================== */

/* Variables & Theme configuration */
:root {
    /* Color Palette */
    --primary: #0A5C36;
    --primary-dark: #074025;
    --primary-light: #168050;
    --accent: #E75A24;
    --accent-light: #f57444;
    --accent-dark: #b83d10;
    --bg-light: #FAF8F5;
    --bg-white: #ffffff;
    --text-dark: #1D2120;
    --text-muted: #5B6360;
    --text-light: #FAF8F5;
    
    /* Layout Variables */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --box-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --box-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --box-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
}

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

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

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

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

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

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--text-dark);
}

.text-white {
    color: var(--text-light);
}

.text-gray {
    color: #A3ACA8;
}

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

.rounded {
    border-radius: var(--border-radius-md);
}

.shadow {
    box-shadow: var(--box-shadow-md);
}

.img-responsive {
    width: 100%;
    object-fit: cover;
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    font-size: 1rem;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-md);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-md);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full-width {
    width: 100%;
}

/* Section Header Styles */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 10px;
}

.section-tag.style-orange {
    color: var(--accent);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-underline.bg-orange {
    background-color: var(--accent);
}

.section-desc {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Glassmorphism Card Hover Effect */
.card-hover-fx {
    transition: var(--transition-smooth);
}

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

/* Scroll Animation Base */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow-sm);
    padding: 10px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--primary);
    line-height: 1.1;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    color: var(--text-dark);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

.nav-item:hover,
.nav-item.active {
    color: var(--primary);
}

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

.nav-cta {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--text-light);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(29, 33, 32, 0.45) 0%, rgba(29, 33, 32, 0.85) 100%);
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: 1;
    transform: scale(1.02);
    animation: zoomHeroBg 20s infinite alternate ease-in-out;
}

@keyframes zoomHeroBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-content-container {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 0 24px;
    margin-top: 60px;
}

.hero-tag {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
    background-color: rgba(231, 90, 36, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px dashed rgba(231, 90, 36, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    color: var(--text-light);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #D3DAD7;
    font-weight: 300;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 40px;
    border-radius: 100px;
    gap: 35px;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-light);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #CCD3D0;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.2);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-down-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #CCD3D0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mouse-icon {
    width: 22px;
    height: 36px;
    border: 2px solid #CCD3D0;
    border-radius: 20px;
    position: relative;
    margin-bottom: 8px;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ==========================================================================
   Vision & Mission Section
   ========================================================================== */
.purpose-section {
    background: var(--bg-light);
    margin-top: -50px;
    position: relative;
    z-index: 4;
    padding-bottom: 50px;
}

.purpose-card {
    background: var(--bg-white);
    padding: 45px 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-md);
    border-top: 4px solid var(--primary);
    position: relative;
}

.mission-card {
    border-top-color: var(--accent);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(10, 92, 54, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.mission-card .card-icon {
    background-color: rgba(231, 90, 36, 0.08);
    color: var(--accent);
}

.purpose-card h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.purpose-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.card-accent-line {
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background-color: #EBEBEB;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    border-bottom: 1px solid #ECEAE6;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.35;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.about-features {
    margin: 30px 0;
}

.feature-bullet {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.bullet-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(10, 92, 54, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.overlap-image-container {
    position: relative;
    height: 480px;
}

.image-box {
    position: absolute;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.main-img {
    width: 75%;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 2;
}

.main-img img {
    height: 100%;
    object-position: center;
}

.sub-img {
    width: 55%;
    height: 260px;
    bottom: 20px;
    right: 0;
    z-index: 3;
    border: 8px solid var(--bg-white);
}

.sub-img img {
    height: 100%;
}

.experience-badge {
    position: absolute;
    bottom: 10px;
    left: 40px;
    z-index: 4;
    background-color: var(--accent);
    color: var(--text-light);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 3px solid var(--bg-white);
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.badge-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ==========================================================================
   Accommodations Section
   ========================================================================== */
.room-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
    display: flex;
    flex-direction: column;
}

.room-img-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-top-left-radius: var(--border-radius-md);
    border-top-right-radius: var(--border-radius-md);
}

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

.room-card:hover .room-img {
    transform: scale(1.06);
}

.room-price {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--accent);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow-md);
}

.room-price span {
    font-size: 0.85rem;
    font-weight: 400;
}

.room-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.room-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #ECEAE6;
    margin-bottom: 25px;
}

.room-amenities span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--bg-light);
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 500;
}

.room-amenities i {
    color: var(--primary);
}

/* ==========================================================================
   3D Flip Cards & Details Modal
   ========================================================================== */

/* 3D Flip Cards */
.room-card-wrapper {
    background: transparent;
    perspective: 1200px;
    height: 440px;
}

.room-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.2);
    transform-style: preserve-3d;
    cursor: pointer;
}

.room-card-wrapper:hover .room-card-inner,
.room-card-wrapper.flipped .room-card-inner {
    transform: rotateY(180deg);
}

.room-card-front, 
.room-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-md);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transform: translateZ(0); /* Force GPU acceleration */
}

.room-card-front {
    display: flex;
    flex-direction: column;
    z-index: 2;
    transform: rotateY(0deg);
}

.room-card-front .room-img-container {
    height: 280px;
}

.room-card-front .room-front-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.room-card-front h3 {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    color: var(--primary-dark);
}

.flip-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.flip-hint i {
    color: var(--accent);
}

.room-card-back {
    transform: rotateY(180deg);
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
    z-index: 1;
}

/* Toggle z-index of card faces when hovered or flipped to prevent invisible back face blocking click events */
.room-card-wrapper:hover .room-card-front,
.room-card-wrapper.flipped .room-card-front {
    z-index: 1;
}

.room-card-wrapper:hover .room-card-back,
.room-card-wrapper.flipped .room-card-back {
    z-index: 2;
}

.room-back-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-card-back h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.room-card-back p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.room-card-back .room-amenities {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
    margin-bottom: 20px;
    gap: 8px;
    justify-content: center;
}

.room-card-back .room-amenities span {
    font-size: 0.75rem;
    padding: 4px 10px;
}

/* Detail Modal Styles */
.room-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 33, 32, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-detail-modal.active {
    display: flex;
    opacity: 1;
}

.room-detail-content {
    background-color: var(--bg-white);
    max-width: 900px;
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.room-detail-modal.active .room-detail-content {
    transform: scale(1);
}

.room-detail-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-light);
    background-color: rgba(29, 33, 32, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.room-detail-close:hover {
    background-color: var(--accent);
    color: var(--text-light);
}

.room-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.room-detail-image-side {
    height: 480px;
    overflow: hidden;
}

.room-detail-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-detail-info-side {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-room-header {
    border-bottom: 1px solid #ECEAE6;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.modal-room-header h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.modal-room-price {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-room-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

#modal-room-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.modal-room-amenities-section h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.modal-room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.modal-room-amenities span {
    font-size: 0.8rem;
    color: var(--text-muted);
    background-color: var(--bg-light);
    padding: 6px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.modal-room-amenities span i {
    color: var(--primary);
}

/* Responsive details modal and flips */
@media (max-width: 991px) {
    .room-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .room-detail-image-side {
        height: 250px;
    }
    
    .room-detail-info-side {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .room-detail-close {
        color: var(--text-dark);
        background-color: rgba(255, 255, 255, 0.8);
        box-shadow: var(--box-shadow-sm);
    }
}

/* ==========================================================================
   Services Section (Dark Style)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.service-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-box h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-box p {
    color: #A3ACA8;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Activities Section
   ========================================================================== */
.activity-card {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    border-bottom: 3px solid transparent;
    transition: var(--transition-smooth);
}

.activity-card:hover {
    border-bottom-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
}

.activity-icon-container {
    width: 50px;
    height: 50px;
    background-color: rgba(10, 92, 54, 0.08);
    color: var(--primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.activity-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.activity-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.travel-tip-banner {
    display: flex;
    gap: 25px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent);
    padding: 30px;
    border-radius: var(--border-radius-sm);
    margin-top: 50px;
    box-shadow: var(--box-shadow-sm);
    align-items: center;
}

.tip-icon {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.tip-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--bg-white);
    border: 1px solid #ECEAE6;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.filter-btn.active {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

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

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

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

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

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

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

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
}

.gallery-item-zoom {
    font-size: 1.25rem;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.gallery-item:hover .gallery-item-zoom {
    transform: translateY(0);
}

/* ==========================================================================
   Booking & Contact Section
   ========================================================================== */
.booking-form-wrapper {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    padding: 45px;
    border: 1px solid #ECEAE6;
}

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

.booking-header h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

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

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

.booking-form label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.booking-form label i {
    color: var(--primary);
    margin-right: 5px;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="date"],
.booking-form select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid #CCD3D0;
    background-color: var(--bg-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(10, 92, 54, 0.08);
}

.addons-grid {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.addon-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    color: var(--text-muted) !important;
}

.addon-checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-box {
    width: 20px;
    height: 20px;
    border: 1px solid #CCD3D0;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    background-color: var(--bg-light);
    transition: var(--transition-smooth);
}

.addon-checkbox-label input[type="checkbox"]:checked + .checkbox-box {
    background-color: var(--primary);
    border-color: var(--primary);
}

.addon-checkbox-label input[type="checkbox"]:checked + .checkbox-box::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--text-light);
    font-size: 0.75rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cost-summary-card {
    background-color: rgba(10, 92, 54, 0.03);
    border: 1px dashed var(--primary);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin: 25px 0;
    animation: fadeInReceipt 0.4s ease-out;
}

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

.cost-summary-card h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(10, 92, 54, 0.1);
    padding-bottom: 8px;
}

.summary-details .summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.summary-details .total-row {
    margin-top: 15px;
    border-top: 1.5px solid #CCD3D0;
    padding-top: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.summary-details .total-row span:last-child {
    color: var(--accent);
}

.booking-submit-wrapper {
    margin-top: 25px;
}

/* Contact Column */
.contact-info-wrapper {
    padding: 20px 0 20px 40px;
    display: flex;
    flex-direction: column;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

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

.contact-details-list {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--bg-white);
    box-shadow: var(--box-shadow-sm);
    border-radius: 50%;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid #ECEAE6;
}

.contact-text span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.contact-text p,
.contact-text a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-dark);
}

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

/* Map Graphics */
.map-placeholder {
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
    border: 1px solid #ECEAE6;
}

.map-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(29,33,32,0.9) 35%, rgba(29,33,32,0.4) 100%);
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-light);
}

.map-pin {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.map-overlay h5 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.map-overlay p {
    font-size: 0.85rem;
    color: #CCD3D0;
    margin-bottom: 15px;
}

.map-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-light);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-link:hover {
    color: var(--text-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    padding: 80px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.brand-col {
    padding-right: 50px;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo .logo-title {
    font-size: 1.4rem;
}

.footer-desc {
    color: #A3ACA8;
    font-size: 0.9rem;
    margin-bottom: 25px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--text-light);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

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

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

.footer-links a {
    color: #A3ACA8;
    font-size: 0.9rem;
}

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

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #A3ACA8;
    font-size: 0.9rem;
}

.footer-contact i {
    font-size: 1rem;
    margin-top: 3px;
}

.footer-contact a:hover {
    color: var(--text-light);
}

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

.footer-bottom {
    background-color: #111413;
    padding: 25px 0;
    font-size: 0.8rem;
    color: #7D8683;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* ==========================================================================
   Custom Lightbox Modal
   ========================================================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 33, 32, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: auto;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2010;
}

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

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2008;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-arrow:hover {
    background: var(--accent);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.lightbox-modal.active .lightbox-content img {
    transform: scale(1);
    opacity: 1;
}

.lightbox-caption {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 20px;
    text-align: center;
}

/* ==========================================================================
   Booking Success Modal
   ========================================================================== */
.success-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 33, 32, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.success-modal.active {
    display: flex;
}

.success-modal-content {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 90%;
    box-shadow: var(--box-shadow-lg);
    border-top: 6px solid var(--primary);
    transform: scale(0.8);
    opacity: 0;
    transition: var(--transition-smooth);
}

.success-modal.active .success-modal-content {
    transform: scale(1);
    opacity: 1;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.success-modal-content h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.success-modal-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 15px;
}

.success-details {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem !important;
    text-align: left;
    border: 1px solid #ECEAE6;
}

.success-details strong {
    color: var(--primary-dark);
}

.success-modal-content button {
    margin-top: 25px;
    width: 150px;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .brand-col {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        flex-direction: column;
        padding: 20px;
        border-radius: var(--border-radius-md);
        width: 100%;
        max-width: 280px;
        gap: 15px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    /* Navigation on mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: var(--box-shadow-lg);
        z-index: 1000;
        padding: 100px 30px 30px;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-item {
        font-size: 1.1rem;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    /* Hamburger animation to cross */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .overlap-image-container {
        height: 380px;
        margin-top: 30px;
    }
    
    .main-img {
        width: 85%;
        height: 300px;
    }
    
    .sub-img {
        width: 60%;
        height: 180px;
        border-width: 4px;
    }
    
    .experience-badge {
        left: 20px;
        padding: 10px 16px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-wrapper {
        padding-left: 0;
    }
    
    .booking-form-wrapper {
        padding: 25px;
    }
    
    .lightbox-arrow {
        width: 40px;
        height: 40px;
    }
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        height: 200px;
    }
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .brand-col {
        grid-column: 1;
    }
}

/* ==========================================================================
   WhatsApp Integration Styles
   ========================================================================== */

/* Floating Widget */
.whatsapp-floating-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-floating-widget:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-floating-widget .widget-tooltip {
    position: absolute;
    right: 75px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
}

.whatsapp-floating-widget:hover .widget-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Button style */
.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff !important;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Adjustments for Mobile devices */
@media (max-width: 768px) {
    .whatsapp-floating-widget {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .whatsapp-floating-widget .widget-tooltip {
        display: none;
    }
}
