/* ==========================================
   ATV NATURE HILL AONANG — Design System
   Theme: Forest Adventure (Green + Gold)
   ========================================== */

:root {
    /* --- Color Palette — Forest Green & Light Brown --- */
    --primary: #2d6a4f;
    --primary-light: #52b788;
    --primary-dark: #1b4332;
    --accent: #c8a96e;
    --accent-light: #ddc9a1;
    --accent-dark: #a68b4b;

    --bg-dark: #0a0f0c;
    --bg-section: #0f1a14;
    --bg-card: #142318;
    --bg-card-hover: #1c3025;

    --text-light: #f0f5f0;
    --text-dim: #95b0a0;
    --text-muted: #5e7d6a;

    --glass: rgba(45, 106, 79, 0.08);
    --glass-strong: rgba(45, 106, 79, 0.15);
    --border-subtle: rgba(45, 106, 79, 0.2);
    --border-accent: rgba(200, 169, 110, 0.3);

    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', sans-serif;
    background-color: var(--bg-dark);
    /* Watermark Background */
    background-image: url('../Image Logo/Logo.png');
    background-repeat: repeat;
    background-position: center;
    background-size: 300px;
    background-attachment: fixed;
    /* Blend mode or opacity approach to make it subtle */
    background-blend-mode: overlay;

    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* --- Utilities --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 6px 16px;
    border: 1px solid var(--border-accent);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 550px;
    line-height: 1.8;
}

.text-accent {
    color: var(--accent);
}

.text-primary {
    color: var(--primary-light);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.15s;
    opacity: 0;
}

.fade-in-delay-2 {
    animation-delay: 0.3s;
    opacity: 0;
}

.fade-in-delay-3 {
    animation-delay: 0.45s;
    opacity: 0;
}

.fade-in-delay-4 {
    animation-delay: 0.6s;
    opacity: 0;
}

.fade-in-delay-5 {
    animation-delay: 0.75s;
    opacity: 0;
}

.fade-in-delay-6 {
    animation-delay: 0.9s;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.pill-nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 35px;
    gap: 50px;
    z-index: 1000;
    background: rgba(45, 106, 79, 0.55);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pill-nav.scrolled {
    top: 15px;
    background: rgba(27, 67, 50, 0.85);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 6px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

/* Header Content & Actions */
.nav-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-btn-book {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--bg-dark);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
}

.cta-btn-book:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.4);
}

.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lang-btn img {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    object-fit: cover;
}

.lang-btn .arrow {
    font-size: 0.6rem;
    margin-left: 2px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-hover);
    z-index: 1002;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    font-weight: 500;
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
}

.lang-dropdown img {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    object-fit: cover;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================
   HERO SECTION (Homepage)
   ========================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(10, 15, 12, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 5%;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0 auto 35px;
    line-height: 1.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Social bar */
.social-bar {
    position: absolute;
    bottom: 35px;
    left: 8%;
    display: flex;
    gap: 25px;
    z-index: 10;
}

.social-bar a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    font-weight: 500;
}

.social-bar a:hover {
    color: var(--accent);
}

/* ==========================================
   BUTTONS
   ========================================== */
.cta-btn {
    display: inline-block;
    width: fit-content;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    font-family: 'Kanit', sans-serif;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 106, 79, 0.4);
}

.cta-btn-accent {
    display: inline-block;
    width: fit-content;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
}

.cta-btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 169, 110, 0.3);
}

.cta-btn-outline {
    display: inline-block;
    width: fit-content;
    padding: 14px 36px;
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 2px solid var(--accent);
    cursor: pointer;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
}

.cta-btn-outline:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 169, 110, 0.3);
}

/* ==========================================
   PAGE HEADER (Sub-pages)
   ========================================== */
.page-header {
    padding: 160px 8% 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(45, 106, 79, 0.15), transparent 65%);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
}

.page-header p {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}

/* ==========================================
   IMAGE PLACEHOLDER
   ========================================== */
.img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    border: 2px dashed var(--border-subtle);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-subtle);
    border-radius: 50%;
    top: calc(50% - 45px);
}

.img-placeholder::after {
    content: '📷';
    font-size: 1.5rem;
    position: absolute;
    top: calc(50% - 42px);
}

.img-placeholder span {
    margin-top: 40px;
    font-size: 0.75rem;
}

.img-placeholder.square {
    aspect-ratio: 1;
}

.img-placeholder.tall {
    aspect-ratio: 3 / 4;
}

.img-placeholder.wide {
    aspect-ratio: 21 / 9;
}

.img-placeholder.hero-size {
    aspect-ratio: 16 / 7;
}

/* ==========================================
   ABOUT SECTION (Homepage)
   ========================================== */
.about-section {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
}

.about-image .img-placeholder {
    border-radius: 16px;
    aspect-ratio: 4 / 3;
}

.about-content {
    padding: 20px 0;
}

.about-content .section-desc {
    margin-bottom: 30px;
}

/* ==========================================
   FAQ SECTION (Homepage)
   ========================================== */
.faq-section {
    padding: 100px 8%;
    background: var(--bg-section);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.15);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(200, 169, 110, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 40px 28px 70px;
    background: none;
    border: none;
    color: var(--text-light);
    font-family: 'Kanit', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-accent);
    line-height: 0;
    padding-bottom: 3px; /* Fine-tune optical centering for the plus sign */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 40px 0 70px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 40px 28px 70px;
}

.faq-answer p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ==========================================
   BOOKING STEPS SECTION (Homepage)
   ========================================== */
.booking-steps-section {
    padding: 100px 8%;
}

.booking-steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.booking-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.booking-step {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px 30px 35px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.booking-step:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--bg-dark);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
    display: block;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ==========================================
   SERVICES PREVIEW (Homepage)
   ========================================== */
.services-preview {
    padding: 100px 8%;
    background: var(--bg-section);
    position: relative;
}

.services-preview-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-hover);
}

.service-preview-card .card-image {
    overflow: hidden;
}

.service-preview-card .card-image .img-placeholder {
    aspect-ratio: 16 / 10;
    border-radius: 0;
    border: none;
    transition: var(--transition);
}

.service-preview-card:hover .card-image .img-placeholder {
    transform: scale(1.05);
}

.service-preview-card .card-body {
    padding: 28px 25px;
}

.service-preview-card .card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.service-preview-card .card-body p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-preview-card .card-body .price-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 168, 67, 0.12);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 1px solid var(--border-accent);
}

.service-preview-card .card-body .card-link {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--bg-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
    border-radius: 6px;
    transition: var(--transition);
    text-align: center;
    width: 100%;
}

.service-preview-card:hover .card-body .card-link {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.3);
}

/* ==========================================
   FEATURES / WHY US
   ========================================== */
.features-section {
    padding: 100px 8%;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-card);
}

.feature-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ==========================================
   TESTIMONIAL / REVIEW CARDS
   ========================================== */
.testimonial-section,
.reviews-section {
    padding: 100px 8%;
    background: var(--bg-section);
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-cards,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card,
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 35px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover,
.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card .stars,
.review-card .stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-card .quote,
.review-card .quote {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-card .reviewer,
.review-card .reviewer {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-subtle);
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
}

.reviewer-info h3 {
    font-size: 1rem;
    margin: 0 0 4px 0;
    color: var(--text-light);
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery-section {
    padding: 100px 8%;
    background: var(--bg-section);
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 3 / 4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .img-placeholder {
    aspect-ratio: 3 / 4;
    border: none;
    border-radius: 0;
    transition: var(--transition);
}

.gallery-item:hover .img-placeholder {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ---- Lightbox Modal ---- */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    padding-bottom: 3px;
    opacity: 0.9;
    transition: 0.3s;
}

.lightbox-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 28px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* ==========================================
   VIDEO SECTION (Homepage)
   ========================================== */
.video-section {
    padding: 100px 8%;
    text-align: center;
}

.video-header {
    margin-bottom: 50px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.video-container {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(45, 106, 79, 0.1);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   TESTIMONIAL SECTION (Homepage)
   ========================================== */
.testimonial-section {
    padding: 100px 8%;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 35px 30px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: var(--shadow-card);
}

.testimonial-card .stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-card .quote {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 18px;
    border-left: 3px solid var(--primary-light);
}

.testimonial-card .reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-card .reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.testimonial-card .reviewer-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.testimonial-card .reviewer-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 100px 8%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-section), var(--bg-dark));
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(45, 106, 79, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
}

.cta-section p {
    color: var(--text-dim);
    margin-bottom: 35px;
    font-size: 1.05rem;
    position: relative;
}

.cta-section .cta-btn,
.cta-section .cta-btn-accent {
    position: relative;
}

/* ==========================================
   SERVICES PAGE
   ========================================== */
.services-section {
    padding: 80px 8%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-hover);
}

.service-card .service-card-image {
    overflow: hidden;
}

.service-card .service-card-image .img-placeholder {
    aspect-ratio: 16 / 9;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.service-card:hover .service-card-image .img-placeholder {
    transform: scale(1.05);
}

.service-card .service-card-body {
    padding: 30px 28px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-card .includes {
    list-style: none;
    margin-bottom: 20px;
}

.service-card .includes li {
    color: var(--text-dim);
    font-size: 0.85rem;
    padding: 5px 0;
    padding-left: 22px;
    position: relative;
}

.service-card .includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
}

.service-card .price {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(212, 168, 67, 0.12);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    border: 1px solid var(--border-accent);
    letter-spacing: 1px;
}

/* --- FAQ --- */
.faq-section {
    padding: 80px 8%;
    background: var(--bg-section);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-light);
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 22px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question .icon {
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--primary-light);
}

.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.8;
    padding-bottom: 20px;
}

/* ==========================================
   REVIEWS PAGE
   ========================================== */
.reviews-section {
    padding: 80px 8%;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px 28px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: var(--shadow-card);
}

.review-card .stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.review-card .quote {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    padding-left: 18px;
    border-left: 3px solid var(--primary-light);
}

.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-card .reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.review-card .reviewer-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.review-card .reviewer-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Stats --- */
.stats-section {
    padding: 50px 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-dim);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Trip Gallery (Reviews) --- */
.trip-gallery {
    padding: 80px 8%;
    background: var(--bg-section);
}

.trip-gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.trip-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.trip-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.trip-gallery-item .img-placeholder {
    aspect-ratio: 4 / 3;
    border: none;
    border-radius: 0;
    transition: var(--transition);
}

.trip-gallery-item:hover .img-placeholder {
    transform: scale(1.05);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
    padding: 80px 8%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-info-item:hover {
    border-color: var(--primary-light);
    transform: translateX(5px);
}

.contact-info-item .contact-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--accent);
}

.contact-info-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.contact-info-item a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* --- Form --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Kanit', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 25px rgba(45, 106, 79, 0.15);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

/* --- Map --- */
.map-section {
    padding: 0 8% 80px;
}

.map-container {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.7) contrast(1.1) invert(0.92) hue-rotate(180deg);
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    padding: 60px 8% 25px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-section);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.85rem;
    max-width: 280px;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* Social Links in Footer */
.social-links {
    list-style: none;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: var(--transition);
}

.social-link:hover .social-icon {
    transform: scale(1.15);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .pill-nav {
        width: 92%;
        padding: 10px 20px;
        gap: 15px;
    }

    .hamburger {
        display: flex;
        order: 3;
    }

    .nav-content {
        order: 2;
        gap: 15px;
    }

    /* Hide nav-links and header-actions on desktop layout, show in mobile menu */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 15, 12, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .nav-links li {
        list-style: none;
    }

    /* Only hide book button on mobile, keep lang-switcher visible */
    .cta-btn-book {
        display: none;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.span-2 {
        grid-column: span 1;
    }

    .gallery-item.span-2 .img-placeholder {
        aspect-ratio: 1;
    }

    .trip-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .services-preview-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    /* --- Homepage edge-to-edge on mobile --- */
    .services-preview,
    .testimonial-section,
    .video-section,
    .features-section,
    .gallery-section,
    .booking-steps-section,
    .faq-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .about-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .booking-steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-question {
        padding: 20px 16px 20px 16px !important;
    }

    .faq-answer {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 20px 16px !important;
    }
}

@media (max-width: 600px) {
    .page-header {
        padding: 130px 6% 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trip-gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .cta-btn,
    .hero-btns .cta-btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .pill-nav {
        width: 96%;
        padding: 8px 15px;
        top: 10px;
        gap: 10px;
    }

    .pill-nav .logo img {
        height: 35px !important;
    }
}

/* --- Extra Small Screens (iPhone SE, small phones) --- */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .services-preview,
    .testimonial-section,
    .video-section,
    .features-section,
    .gallery-section,
    .booking-steps-section,
    .faq-section {
        padding: 60px 8px;
    }

    .about-section {
        padding: 60px 8px;
    }

    .booking-steps-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cta-btn {
        padding: 14px 30px;
        font-size: 0.8rem;
    }

    .cta-btn-outline {
        padding: 12px 28px;
        font-size: 0.8rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   TEAM SECTION
   ========================================== */
.team-section {
    padding: 80px 8%;
    background: var(--bg-section);
    text-align: center;
}

.team-header {
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    max-width: 700px;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-hover);
}

.team-image-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
}

.team-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.team-image-wrapper:hover .team-photo {
    transform: scale(1.03);
}

.team-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-image-wrapper:hover .team-image-overlay {
    opacity: 1;
}

.team-image-overlay span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 28px;
    background: rgba(164, 113, 72, 0.7);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    letter-spacing: 1px;
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.floating-wa svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.floating-wa .wa-text {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    font-weight: 600;
    font-family: inherit;
    font-size: 0.95rem;
    padding-left: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floating-wa:hover {
    padding: 12px 20px 12px 16px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    transform: translateY(-3px);
}

.floating-wa:hover svg {
    transform: scale(1.1);
}

.floating-wa:hover .wa-text {
    max-width: 200px;
    opacity: 1;
    padding-left: 10px;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.4s ease;
    object-fit: contain;
}

.lightbox-overlay.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    padding-bottom: 3px;
    font-family: 'Kanit', sans-serif;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .team-card {
        max-width: 100%;
    }

    .team-image-overlay span {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .lightbox-image {
        max-width: 95%;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
}

/* ==========================================
   PACKAGE MODAL (Services Page)
   ========================================== */
.package-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(8px);
}

.package-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.package-modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 16px;
    border: 1px solid var(--border-accent);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.package-modal-overlay.active .package-modal-content {
    transform: translateY(0);
}

.package-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.package-modal-close:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.package-modal-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.package-modal-img-wrapper {
    width: 100%;
    height: 40vh;
    min-height: 250px;
    flex-shrink: 0;
    position: relative;
    background-color: var(--bg-card); /* Match modal content background */
}

.package-modal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.package-modal-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.package-modal-info h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.package-price-row {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.package-price-icon {
    font-size: 1.5rem;
}

.package-price-text {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

@media (min-width: 768px) {
    .package-modal-body {
        flex-direction: column;
        overflow-y: auto;
    }
    .package-modal-img-wrapper {
        width: 100%;
        height: 50vh;
    }
    .package-modal-info {
        width: 100%;
        padding: 40px;
    }
}