/* ==========================================================================
   1. CSS VARIABLES & BASE STYLES
   ========================================================================== */
:root {
    --primary-emerald: #0A5C36;
    --emerald-dark: #053B21;
    --emerald-light: #148F54;
    --water-cyan: #00A896;
    --water-blue-bg: #EAF8F6;
    --sunset-gold: #F4A261;
    --sunset-hover: #E76F51;
    --soft-white: #FAF9F6;
    --text-dark: #1D2D2A;
    --text-muted: #526360;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(10, 92, 54, 0.08);
    --shadow-lg: 0 16px 36px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

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

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

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-subtitle {
    color: var(--water-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--emerald-dark);
    line-height: 1.2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background-color: var(--sunset-gold);
    color: var(--emerald-dark);
}

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

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

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

/* Scroll Animations */
.fade-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form Alert Status Banner */
.form-status {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-status.success {
    background-color: #E6F4EA;
    color: #137333;
    border: 1px solid #CEEAD6;
}

.form-status.error {
    background-color: #FCE8E6;
    color: #C5221F;
    border: 1px solid #FAD2CF;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}

header.scrolled .logo {
    color: var(--emerald-dark);
}

.logo i {
    color: var(--sunset-gold);
}

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

.nav-link {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

header.scrolled .nav-link {
    color: var(--text-dark);
}

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

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

header.scrolled .hamburger {
    color: var(--emerald-dark);
}

/* ==========================================================================
   3. HERO SECTION (CAROUSEL)
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.hero-slider, .slick-list, .slick-track {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 59, 33, 0.4) 0%, rgba(5, 59, 33, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 850px;
    padding: 0 20px;
}

.hero-tagline {
    display: inline-block;
    background: rgba(244, 162, 97, 0.25);
    border: 1px solid var(--sunset-gold);
    color: var(--sunset-gold);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Custom Slick Arrows */
.slick-prev, .slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.slick-prev:hover, .slick-next:hover {
    background: var(--sunset-gold);
}

.slick-prev { left: 30px; }
.slick-next { right: 30px; }

.slick-prev:before, .slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--white);
}
.slick-prev:before { content: "\f053"; }
.slick-next:before { content: "\f054"; }

/* Custom Slick Dots */
.slick-dots {
    bottom: 30px;
    z-index: 10;
}

.slick-dots li {
    margin: 0 4px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: var(--white);
    opacity: 0.5;
    transition: var(--transition);
}

.slick-dots li.slick-active button:before {
    color: var(--sunset-gold);
    opacity: 1;
    font-size: 14px;
}

/* ==========================================================================
   4. THINGS TO DO (ACTIVITIES)
   ========================================================================== */
.activities {
    background-color: var(--soft-white);
}

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

.activity-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

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

.activity-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.activity-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.activity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(5, 59, 33, 0.85);
    backdrop-filter: blur(4px);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.activity-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activity-title {
    font-size: 1.3rem;
    color: var(--emerald-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.activity-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
/* ==========================================================================
   4.1 POPULAR DESTINATIONS SECTION
   ========================================================================== */
/* ==========================================================================
   4.1 POPULAR DESTINATIONS SECTION (MODERN & ATTRACTIVE CARDS)
   ========================================================================== */
.destinations {
    background-color: #F5F8F6;
    position: relative;
}

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

.destination-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 92, 54, 0.05), 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(10, 92, 54, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 48px rgba(10, 92, 54, 0.14), 0 6px 16px rgba(0, 0, 0, 0.04);
    border-color: rgba(184, 92, 32, 0.25);
}

.destination-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.destination-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease;
}

.destination-img-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 30, 20, 0.45) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-img-box img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.destination-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    background: rgba(10, 92, 54, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.destination-rating {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #1A362B;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.destination-rating i {
    color: #F4A261;
    font-size: 0.85rem;
}

.destination-info {
    padding: 26px 26px 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 14px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #EBF4F0;
    color: #0A5C36;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(10, 92, 54, 0.08);
}

.meta-pill i {
    color: #B85C20;
    font-size: 0.82rem;
}

.destination-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1A2B23;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.destination-card:hover .destination-title {
    color: #0A5C36;
}

.destination-desc {
    color: #5C6E66;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 22px;
    flex-grow: 1;
}

.destination-card-footer {
    border-top: 1px solid #EEF3F0;
    padding-top: 16px;
    margin-top: auto;
}

.btn-dest-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(10, 92, 54, 0.07);
    color: #0A5C36;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-dest-action i {
    width: 28px;
    height: 28px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: #0A5C36;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.destination-card:hover .btn-dest-action,
.btn-dest-action:hover {
    background: #0A5C36;
    color: #FFFFFF;
}

.destination-card:hover .btn-dest-action i,
.btn-dest-action:hover i {
    background: #B85C20;
    color: #FFFFFF;
    transform: translateX(4px);
}

/* ==========================================================================
   5. ABOUT US (REDESIGNED MATCHING MOCKUP)
   ========================================================================== */
.about {
    background-color: #FAF5EE;
    position: relative;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Left Column: Overlapping Dual Cards */
.about-media-wrapper {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-start;
}

.about-card-back {
    position: relative;
    width: 78%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(61, 37, 23, 0.12);
}

.about-back-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-back-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 25px;
    background: linear-gradient(180deg, rgba(184, 92, 32, 0.55) 0%, rgba(30, 20, 10, 0.75) 100%);
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.about-logo-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-top: 10px;
}

.about-logo-sub {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.about-tagline-badge {
    font-size: 0.88rem;
    font-weight: 600;
    opacity: 0.95;
    margin-top: auto;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Front Overlapping Card */
.about-card-front {
    position: absolute;
    bottom: -15px;
    right: 5px;
    width: 54%;
    height: 370px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
    border: 6px solid #FAF5EE;
    background-color: #E27B2B;
}

.about-front-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-travel-stroke {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
    pointer-events: none;
    text-transform: uppercase;
}

/* Right Column: Content & Commitment */
.about-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-kicker {
    color: #B85C20;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2E1E14;
    line-height: 1.2;
}

.about-lead {
    color: #5C4A3E;
    font-size: 0.98rem;
    line-height: 1.65;
}

/* Feature Box Containers */
.about-cards-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 10px 0 10px;
}

.about-feature-box {
    background: #FFFDF9;
    border: 1px solid #F2E3D5;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(184, 92, 32, 0.04);
}

.about-feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 92, 32, 0.08);
    border-color: #E27B2B;
}

.about-box-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background-color: #FDF3E9;
    color: #B85C20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.about-box-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2E1E14;
    margin-bottom: 4px;
}

.about-box-text p {
    font-size: 0.9rem;
    color: #786456;
}

/* Terracotta CTA Button */
.btn-terracotta {
    background-color: #C46628;
    color: var(--white);
    padding: 16px 34px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.98rem;
    align-self: flex-start;
    box-shadow: 0 6px 18px rgba(196, 102, 40, 0.28);
    transition: var(--transition);
}

.btn-terracotta:hover {
    background-color: #A65019;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(196, 102, 40, 0.38);
}
/* ==========================================================================
   5.1 KOGGALA LAKE BEAUTY & HISTORY SECTION (REDESIGNED MATCHING ABOUT US)
   ========================================================================== */
.lake-history {
    background-color: #FFFFFF;
    position: relative;
    padding: 100px 0;
    border-top: 1px solid rgba(184, 92, 32, 0.08);
}

.lake-history .about-card-front {
    border-color: #FFFFFF;
}

/* ==========================================================================
   6. PACKAGES (PRICING)
   ========================================================================== */
.packages {
    background-color: var(--soft-white);
}

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

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

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

.package-card.popular {
    border-color: var(--sunset-gold);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sunset-gold);
    color: var(--emerald-dark);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 25px;
}

.package-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--emerald-dark);
    margin-bottom: 10px;
}

.package-duration {
    color: var(--water-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    background: var(--water-blue-bg);
    padding: 4px 12px;
    border-radius: 12px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--emerald-dark);
    margin-top: 15px;
}

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

.package-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li i {
    color: var(--emerald-light);
    font-size: 0.9rem;
}

.package-card .btn {
    width: 100%;
}

/* ==========================================================================
   7. GALLERY (CATEGORIZED PHOTO GALLERY)
   ========================================================================== */
.gallery {
    background-color: var(--white);
    position: relative;
}

.gallery-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.gallery-filter-btn {
    background: #FFFFFF;
    color: var(--emerald-dark);
    border: 1px solid rgba(10, 92, 54, 0.15);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    outline: none;
}

.gallery-filter-btn i {
    color: #B85C20;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-emerald);
    color: #FFFFFF;
    border-color: var(--primary-emerald);
    box-shadow: 0 8px 20px rgba(10, 92, 54, 0.25);
    transform: translateY(-2px);
}

.gallery-filter-btn:hover i,
.gallery-filter-btn.active i {
    color: #F4A261;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 260px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    opacity: 1;
}

.gallery-item.fade-element.visible,
.gallery-item.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.gallery-item.hidden-item {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(10, 92, 54, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(10, 30, 20, 0.88) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #FFFFFF;
}

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

.gallery-item-tag {
    display: inline-block;
    background: rgba(184, 92, 32, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
    line-height: 1.3;
}

.gallery-zoom-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom-icon {
    transform: scale(1.1);
    background: var(--sunset-gold);
    color: var(--emerald-dark);
}

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

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

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

/* ==========================================================================
   8. BOOKING FORM
   ========================================================================== */
.booking {
    background-color: var(--water-blue-bg);
    position: relative;
}

.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    max-width: 850px;
    margin: 0 auto;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--emerald-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #DCE4E2;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: var(--soft-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--water-cyan);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 168, 150, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================================================
   9. CONTACT & MAP
   ========================================================================== */
.contact {
    background-color: var(--white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--water-blue-bg);
    color: var(--water-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--emerald-dark);
    margin-bottom: 4px;
}

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

.contact-details a:hover {
    color: var(--water-cyan);
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    min-height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
footer {
    background-color: var(--emerald-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-about p {
    color: rgba(255,255,255,0.7);
    margin: 20px 0;
    max-width: 350px;
    font-size: 0.95rem;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--sunset-gold);
    color: var(--emerald-dark);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--sunset-gold);
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F4A261 0%, #B85C20 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 8px 24px rgba(184, 92, 32, 0.35), 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #0A5C36 0%, #063821 100%);
    color: #FFFFFF;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 14px 30px rgba(10, 92, 54, 0.4);
}

/* Page Banner Styles for Standalone Pages */
.page-banner {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, rgba(5, 59, 33, 0.85) 0%, rgba(10, 92, 54, 0.95) 100%), url('../images/about/1.png') center/cover;
    color: var(--white);
    text-align: center;
}

.page-banner-subtitle {
    display: inline-block;
    background: rgba(244, 162, 97, 0.25);
    border: 1px solid var(--sunset-gold);
    color: var(--sunset-gold);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.page-banner-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.page-banner-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Gallery CTA Banner */
.gallery-cta-section {
    background: #FAF5EE;
    padding: 70px 0;
    text-align: center;
}

.gallery-cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.gallery-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--emerald-dark);
    margin-bottom: 15px;
}

.gallery-cta-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

/* ==========================================================================
   11. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-media-wrapper { max-width: 520px; margin: 0 auto; width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 2.2rem; }
    
    .hamburger { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--emerald-dark);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }
    .nav-menu.active { right: 0; }
    .nav-link { color: var(--white) !important; font-size: 1.1rem; }

    .booking-card { padding: 30px 20px; }
    .booking-form { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }

    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    
    .slick-prev { left: 10px; }
    .slick-next { right: 10px; }
}

@media (max-width: 576px) {
    .container { width: 92%; }
    .hero-title { font-size: 1.85rem; line-height: 1.25; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 25px; }
    .hero-tagline { font-size: 0.75rem; padding: 4px 14px; }
    .activity-grid { grid-template-columns: 1fr; }
    .destinations-grid { grid-template-columns: 1fr; }
    .destination-info { padding: 20px 18px 18px; }
    .destination-title { font-size: 1.22rem; }
    .destination-desc { font-size: 0.88rem; margin-bottom: 18px; }
    .about-heading { font-size: 1.9rem; }
    .about-media-wrapper { min-height: 440px; }
    .about-card-back { width: 82%; height: 380px; }
    .about-card-front { width: 62%; height: 300px; bottom: -10px; right: 0; border-width: 4px; }
    .about-travel-stroke { font-size: 2.2rem; }
    .about-feature-box { padding: 16px; gap: 15px; }
    .btn-terracotta { width: 100%; text-align: center; justify-content: center; }
    .package-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
    .lightbox-close { top: 15px; right: 20px; font-size: 2rem; }
    .slick-prev, .slick-next { width: 40px; height: 40px; }
    .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 0.95rem; }
}

@media (max-width: 400px) {
    .hero-title { font-size: 1.65rem; }
    .section-title { font-size: 1.65rem; }
    .btn { padding: 12px 22px; font-size: 0.88rem; }
    .booking-card { padding: 25px 15px; }
}

