/* ============================================================
   PAZHAVERKADU PALM TOURISM — styles.css
   Design: Tropical Eco-Tourism Theme
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --green: #2F6B3F;
    --green-dark: #1a3d2a;
    --green-light: #4a8f5c;
    --brown: #8B5E34;
    --brown-light: #a8764d;
    --orange: #F29E4C;
    --orange-warm: #e8873a;
    --sand: #F5F1E9;
    --sand-dark: #f5ede0;
    --blue: #4DA8DA;
    --blue-dark: #2a85be;
    --white: #ffffff;
    --text-dark: #1e2d1f;
    --text-mid: #3d5c41;
    --text-light: #7a9e7e;
    --font-head: 'Playfair Display', Georgia, serif;
    --font-script: 'Dancing Script', cursive;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --shadow-sm: 0 2px 8px rgba(47, 107, 63, 0.12);
    --shadow-md: 0 8px 32px rgba(47, 107, 63, 0.15);
    --shadow-lg: 0 20px 60px rgba(47, 107, 63, 0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::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(--sand);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== FLOATING LEAVES ===== */
.floating-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.leaf {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.18;
    animation: floatLeaf linear infinite;
}

.leaf-1 {
    left: 5%;
    animation-duration: 18s;
    animation-delay: 0s;
    font-size: 2rem;
}

.leaf-2 {
    left: 85%;
    animation-duration: 22s;
    animation-delay: -5s;
    font-size: 1.3rem;
}

.leaf-3 {
    left: 20%;
    animation-duration: 26s;
    animation-delay: -10s;
}

.leaf-4 {
    left: 70%;
    animation-duration: 20s;
    animation-delay: -8s;
    font-size: 1.8rem;
}

.leaf-5 {
    left: 50%;
    animation-duration: 24s;
    animation-delay: -3s;
    font-size: 2.2rem;
}

@keyframes floatLeaf {
    0% {
        transform: translateY(110vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.18;
    }

    90% {
        opacity: 0.18;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION BASE ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--green-dark);
}

.section-warm {
    background: var(--sand-dark);
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--orange);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

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

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

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

.title-leaf {
    font-size: 1.5rem;
    animation: sway 3s ease-in-out infinite;
    display: inline-block;
    margin: 8px 0 16px;
}

.section-sub {
    max-width: 560px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.05rem;
}

.section-sub.light {
    color: rgba(255, 255, 255, 0.75);
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(8deg);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(47, 107, 63, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(47, 107, 63, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: transparent;
    transition: var(--transition-slow);
}

.navbar.scrolled {
    background: rgba(26, 61, 42, 0.97);
    backdrop-filter: blur(16px);
    padding: 12px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
}

/* ===== BRAND PALMULA LOGO ===== */
.brand-palmula {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1;
}

.brand-palm-icon {
    display: inline-block;
    width: 1.1em;
    height: 1.8em;
    vertical-align: middle;
    color: var(--orange);
    animation: sway 3s ease-in-out infinite;
    flex-shrink: 0;
    margin: 0 1px;
    position: relative;
    top: -2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-warm)) !important;
    color: var(--white) !important;
    padding: 8px 22px;
    border-radius: 25px;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(242, 158, 76, 0.4);
    transition: var(--transition) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(242, 158, 76, 0.5);
}

.nav-cta::after {
    display: none !important;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: heroZoom 20s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1.18);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(26, 61, 42, 0.72) 0%,
            rgba(47, 107, 63, 0.45) 40%,
            rgba(139, 94, 52, 0.3) 70%,
            rgba(242, 158, 76, 0.25) 100%);
}

.hero-palm {
    position: absolute;
    bottom: 0;
    width: 180px;
    height: auto;
    opacity: 0.7;
}

.hero-palm-left {
    left: -20px;
}

.hero-palm-right {
    right: -20px;
    transform: scaleX(-1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 24px;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.hero-tagline {
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--orange);
    margin-bottom: 16px;
    animation: fadeInUp 1s 0.2s both;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s 0.4s both;
}

.hero-title span {
    color: var(--orange);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 580px;
    margin: 0 auto 36px;
    animation: fadeInUp 1s 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.8s both;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 1s 1s both;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 16px 36px;
    max-width: fit-content;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    animation: fadeInUp 1s 1.2s both;
}

.scroll-indicator {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-indicator span {
    display: block;
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.8;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}

/* ===== WAVE DIVIDERS ===== */
.wave-divider {
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    width: 100%;
}

.wave-divider-top {
    background: var(--green-dark);
}

.wave-mid {
    background: var(--sand);
}

.wave-mid-2 {
    background: var(--sand);
}

.wave-pkg {
    background: var(--sand-dark);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--sand);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 72px;
}

.about-desc {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.badge {
    padding: 6px 16px;
    background: rgba(47, 107, 63, 0.08);
    border: 1px solid rgba(47, 107, 63, 0.2);
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 600;
}

.about-image-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    height: 460px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
}

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

.about-img-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--green-dark);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-img-badge span {
    font-size: 2rem;
    display: block;
    margin-bottom: 4px;
}

.about-img-badge p {
    font-family: var(--font-head);
    font-weight: 700;
    margin: 0;
}

.about-img-badge small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

/* Highlight Cards */
.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.h-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(47, 107, 63, 0.1);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: default;
}

.h-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}

.h-card-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: block;
    animation: sway 3s ease-in-out infinite;
}

.h-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.h-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== ITINERARY SECTION ===== */
.itinerary {
    background: var(--green-dark);
}

.timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), rgba(242, 158, 76, 0.1));
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--orange-warm));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 0 6px rgba(242, 158, 76, 0.15);
    z-index: 1;
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    box-shadow: 0 0 0 10px rgba(242, 158, 76, 0.2);
    transform: scale(1.1);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    flex: 1;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(6px);
}

.t-time {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 8px;
    background: rgba(242, 158, 76, 0.12);
    padding: 4px 12px;
    border-radius: 25px;
}

.timeline-content h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== ACTIVITIES SECTION ===== */
.activities {
    background: var(--sand);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.activity-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(47, 107, 63, 0.08);
}

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

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

.activity-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.activity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 61, 42, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.activity-card:hover .activity-overlay {
    opacity: 1;
}

.activity-book-btn {
    background: var(--orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.activity-book-btn:hover {
    background: var(--orange-warm);
}

.activity-body {
    padding: 24px;
}

.activity-tag {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--green);
    background: rgba(47, 107, 63, 0.08);
    padding: 3px 10px;
    border-radius: 25px;
    margin-bottom: 10px;
}

.activity-body h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.activity-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.activity-meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== PACKAGES SECTION ===== */
.packages {
    background: var(--sand-dark);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: start;
}

.pkg-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.pkg-card:hover {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(47, 107, 63, 0.08), var(--shadow-md);
    transform: translateY(-6px);
}

.pkg-featured {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--orange) !important;
    box-shadow: 0 0 0 4px rgba(242, 158, 76, 0.15), var(--shadow-lg) !important;
    transform: scale(1.03);
}

.pkg-featured:hover {
    transform: scale(1.03) translateY(-6px) !important;
}

.pkg-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange), var(--orange-warm));
    color: var(--white);
    padding: 4px 20px;
    border-radius: 25px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(242, 158, 76, 0.4);
}

.pkg-header {
    margin-bottom: 24px;
}

.pkg-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
    animation: sway 3s ease-in-out infinite;
}

.pkg-header h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.pkg-featured .pkg-header h3 {
    color: var(--white);
}

.pkg-duration {
    font-size: 0.85rem;
    color: var(--text-light);
}

.pkg-featured .pkg-duration {
    color: rgba(255, 255, 255, 0.65);
}

.pkg-price {
    margin-bottom: 28px;
    padding: 16px 0;
    border-top: 1px solid rgba(47, 107, 63, 0.1);
    border-bottom: 1px solid rgba(47, 107, 63, 0.1);
}

.pkg-featured .pkg-price {
    border-color: rgba(255, 255, 255, 0.12);
}

.price {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--orange);
}

.per {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 4px;
}

.pkg-featured .per {
    color: rgba(255, 255, 255, 0.6);
}

.pkg-features {
    text-align: left;
    margin-bottom: 32px;
}

.pkg-features li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text-mid);
    border-bottom: 1px solid rgba(47, 107, 63, 0.06);
}

.pkg-featured .pkg-features li {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.08);
}

.pkg-features li.disabled {
    color: var(--text-light);
    opacity: 0.5;
}

.btn-pkg {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--green);
    color: var(--green);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: var(--transition);
    background: transparent;
    cursor: pointer;
}

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

.btn-pkg-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-warm));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(242, 158, 76, 0.4);
}

.btn-pkg-primary:hover {
    border-color: transparent !important;
    background: var(--orange-warm);
    color: var(--white) !important;
}

/* ===== LOCATION SECTION ===== */
.location {
    background: var(--sand);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}

.loc-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.loc-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(47, 107, 63, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loc-detail h4 {
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loc-detail p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.5;
}

.loc-detail a {
    color: var(--green);
}

.btn-directions {
    margin-top: 8px;
}

.map-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid rgba(47, 107, 63, 0.1);
    height: 440px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--sand-dark);
}

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

.gallery-large {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    min-height: 220px;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 61, 42, 0.85), transparent 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-zoom {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    text-align: center;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

#lightboxCaption {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 16px;
    font-size: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 1rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

/* ===== BOOKING SECTION ===== */
.booking {
    background: var(--green-dark);
    position: relative;
    overflow: hidden;
}

.booking-palm-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(242, 158, 76, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(77, 168, 218, 0.06) 0%, transparent 60%);
}

.booking-wrap {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.booking-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 48px;
    backdrop-filter: blur(12px);
}

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

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

.form-full {
    margin-bottom: 28px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    z-index: 1;
    pointer-events: none;
}

.form-full .input-icon {
    top: 18px;
    transform: none;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    width: 100%;
    padding: 14px 14px 14px 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}

.input-wrap textarea {
    padding-top: 16px;
    resize: vertical;
    min-height: 100px;
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-wrap select {
    color: rgba(255, 255, 255, 0.8);
}

.input-wrap select option {
    background: var(--green-dark);
    color: var(--white);
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(242, 158, 76, 0.15);
}

.btn-book {
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--orange), var(--orange-warm));
    border-color: transparent;
    box-shadow: 0 6px 32px rgba(242, 158, 76, 0.35);
    margin-bottom: 16px;
}

.btn-book:hover {
    box-shadow: 0 10px 40px rgba(242, 158, 76, 0.5);
}

.form-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.booking-success {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 64px;
    text-align: center;
    backdrop-filter: blur(12px);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: sway 2s ease-in-out infinite;
}

.booking-success h3 {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.booking-success p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--green-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-palms {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.footer-palm-svg {
    position: absolute;
    bottom: 0;
    width: 200px;
}

.footer-palm-l {
    left: -40px;
}

.footer-palm-r {
    right: -40px;
    transform: scaleX(-1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.footer-brand .brand-logo {
    font-size: 3rem;
    margin-bottom: 8px;
    animation: sway 3s ease-in-out infinite;
}

.footer-brand h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

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

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(242, 158, 76, 0.4);
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-col ul a:hover {
    color: var(--orange);
    padding-left: 6px;
}

.footer-contact-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact-col a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-contact-col a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-wave {
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

.footer-sub {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.35) !important;
    font-size: 0.8rem !important;
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children reveals */
.highlight-cards .h-card:nth-child(1) {
    transition-delay: 0.1s;
}

.highlight-cards .h-card:nth-child(2) {
    transition-delay: 0.2s;
}

.highlight-cards .h-card:nth-child(3) {
    transition-delay: 0.3s;
}

.highlight-cards .h-card:nth-child(4) {
    transition-delay: 0.4s;
}

.timeline-item:nth-child(1) {
    transition-delay: 0.05s;
}

.timeline-item:nth-child(2) {
    transition-delay: 0.12s;
}

.timeline-item:nth-child(3) {
    transition-delay: 0.19s;
}

.timeline-item:nth-child(4) {
    transition-delay: 0.26s;
}

.timeline-item:nth-child(5) {
    transition-delay: 0.33s;
}

.timeline-item:nth-child(6) {
    transition-delay: 0.40s;
}

.packages-grid .pkg-card:nth-child(1) {
    transition-delay: 0.1s;
}

.packages-grid .pkg-card:nth-child(2) {
    transition-delay: 0.2s;
}

.packages-grid .pkg-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img {
        height: 320px;
    }

    .about-img-badge {
        bottom: -10px;
        left: 10px;
    }

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

    .map-wrap {
        height: 320px;
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

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

    .navbar {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--green-dark);
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 14px 32px;
        width: 100%;
    }

    .nav-cta {
        margin: 8px 20px;
        width: calc(100% - 40px);
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-stats {
        gap: 20px;
        padding: 12px 20px;
        flex-wrap: wrap;
    }

    .stat-divider {
        display: none;
    }

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

    .gallery-large {
        grid-column: span 2;
    }

    .gallery-tall {
        grid-row: span 1;
    }

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

    .pkg-featured {
        transform: none;
    }

    .pkg-featured:hover {
        transform: translateY(-6px) !important;
    }

    .booking-form {
        padding: 28px 20px;
    }

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

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

    .footer-brand {
        grid-column: span 1;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .gallery-large {
        grid-column: span 1;
    }

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

    .highlight-cards {
        grid-template-columns: 1fr;
    }
}