/* ============================================================
   CAMBODIA ESCAPE — Karma Experience Landing Page
   Premium editorial travel design
   ============================================================ */

/* ---------- Google Fonts are loaded via <link> in HTML ---------- */

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

/* ---------- Custom font faces (local) ---------- */
@font-face {
    font-family: "Shoreline Skeletons Demo";
    src: url("fonts/ShorelineSkeletonsDemoRegular-AR2BM.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Stallion Attacks";
    src: url("fonts/StallionAttacks-KVoo7.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "KactigonaRegular-E4m3j";
    src: url("fonts/KactigonaRegular-E4m3j.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "RememberSummer-e97ap";
    src: url("fonts/RememberSummer-e97ap.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* === Phuket & Koh Samui Theme — Teal & Premium Yellow === */
    --teal: #004d4d;
    --teal-dark: #003333;
    --teal-light: #006666;
    --yellow: #ffd100;
    --yellow-accent: #f9d423;
    --bg-beige: #fdfbf6;
    --gold: var(--yellow);
    --gold-light: var(--yellow-accent);
    --gold-dark: #b89600;
    --cream: var(--bg-beige);
    --cream-dark: #e8e2d4;
    --bg-dark: #002d4b;
    --bg-section: #002d4c;
    --text-light: #f5f0e8;
    --text-muted: #a0b2b2;
    --overlay-dark: rgba(0, 45, 75, 0.7);
    --overlay-gradient: linear-gradient(180deg,
            rgba(0, 45, 75, 0.4) 0%,
            rgba(0, 45, 75, 0.75) 55%,
            rgba(0, 45, 75, 0.95) 100%);

    /* === Typography === */
    --ff-display: "Playfair Display", "Georgia", serif;
    --ff-script: "KactigonaRegular-E4m3j", "Cormorant Garamond", serif;
    --ff-body: "Inter", "Helvetica Neue", sans-serif;
    --ff-brush: "Inter", sans-serif;
    /* Switched to Inter as per request */

    /* === Sizing === */
    --header-h: 72px;
    --site-header-offset: calc(5rem + 2.75rem);
    --section-pad: clamp(2rem, 5vw, 5rem);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--ff-body);
    background: #ffffff;
    color: #333333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1520px;
    }
}

@media (min-width: 1800px) {
    .container {
        max-width: 1720px;
    }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
    /* Clear header */
    backdrop-filter: blur(10px);
    box-shadow: none;
    /* No shadow */
}

.site-header.scrolled {
    background: rgba(13, 9, 6, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    box-shadow: none;
}

.header-inner {
    /* max-width: 1400px; */
    margin: 0 auto;
    height: calc(var(--header-h) - 12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 3vw, 3rem);
}

/* Logo */
.header-logo img {
    height: 4rem;
    width: auto;
    transition: opacity 0.3s ease;
}

.header-logo:hover img {
    opacity: 0.85;
}

/* Desktop Nav */
.header-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: clamp(1.25rem, 2.8vw, 5rem);
}

.nav-link {
    font-family: var(--ff-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    /* Fully visible white */
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.35s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

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

/* CTA Button */
.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.btn-enquire {
    display: flex;
    align-items: center;
    background: #f6c435;
    width: fit-content;
    padding: 1.235rem;
    border-radius: 45px;
    color: #ffffff;
    font-weight: 600;
    /* font-size: 1rem; */
    /* justify-content: center; */
}

/* ============================================================
   MOBILE SIDEBAR
   ============================================================ */
.mobile-sidebar {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 3000;
    pointer-events: none;
    visibility: hidden;
}

.mobile-sidebar.open {
    pointer-events: auto;
    visibility: visible;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-sidebar.open .sidebar-overlay {
    opacity: 1;
}

.sidebar-content {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    max-width: 100vw;
    height: 100dvh;
    background: linear-gradient(180deg, #002d4b 0%, #001a2e 100%);
    padding: calc(var(--header-h) + 2rem) 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -16px 0 36px rgba(0, 0, 0, 0.55);
}

.mobile-sidebar.open .sidebar-content {
    transform: translateX(0);
}

.sidebar-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.sidebar-close:hover {
    color: var(--cream);
}

.sidebar-logo {
    width: 120px;
    margin: 0 auto 0.2rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-link {
    font-family: var(--ff-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cream-dark);
    padding: 0.9rem 0.35rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.sidebar-link:hover {
    color: var(--gold-light);
    padding-left: 1rem;
    background: rgba(201, 168, 76, 0.05);
}

.sidebar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.8rem;
    padding: 0.95rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

@media (max-width: 600px) {
    .sidebar-content {
        width: 100vw;
        padding: calc(var(--header-h) + 0.75rem) 1rem 1.1rem;
    }

    .sidebar-link {
        font-size: 1rem;
        padding: 0.85rem 0.25rem;
    }
}

/* ============================================================
   PHUKET & KOH SAMUI HERO BANNER — Editorial Redesign
   ============================================================ */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* Reduced from 120vh to end at visuals */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    /* Allow circles to overlap slightly if needed */
    padding-bottom: 5rem;
    background: var(--bg-beige);
    background-color: #004d4d;
    /* background-image: url("../images/KSPhuketGallery/texture-1.jpg"); */
    /* Reverting to local texture if needed, or keep previous */
    background-size: cover;
}

/* Background Top Section */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

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

.hero-overlay {
    display: none;
}

/* White Fade in Center (Vertical Strip) */
.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    /* Widened slightly */
    height: 100%;
    background: linear-gradient(to right,
            #00000000 0%,
            rgb(255 255 255 / 74%) 20%,
            rgb(255 255 255 / 74%) 80%,
            transparent 100%);
    z-index: 3;
    pointer-events: none;
}

/* Hero Decorations */
.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
}

.top-left-splash {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 400px;
    background: radial-gradient(circle at 20% 20%,
            rgba(50, 150, 200, 0.3),
            transparent 70%);
    filter: blur(40px);
    transform: rotate(-15deg);
}

.bottom-icons {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    gap: 30px;
    opacity: 0.3;
}

.decor-icon {
    font-size: 3rem !important;
    color: #004d4d;
}

.hero-leaf-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 30%;
    background: url("../images/KSPhuketGallery/coconut-leave-2.png") no-repeat center center;
    background-size: cover;
    /* opacity: 0.15; Subtle overlay effect */
    z-index: 4;
    pointer-events: none;
    mix-blend-mode: multiply;
    /* Helps blend with the sky/beach */
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    /* Above the leaf overlay */
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phuket-top-text {
    font-family: "Inter", sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 800;
    color: #004d4d;
    letter-spacing: 0px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.phuket-title {
    font-family: "Oswald", sans-serif;
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 900;
    line-height: 1;
    margin: 0;
    letter-spacing: -8px;
    background: #004d4d;
    /* Texture Background */
    /* background: url("../images/KSPhuketGallery/texture-1.jpg") center center; */
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.phuket-plus {
    font-family: "Inter", sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    color: #004d4d;
    margin: 0.5rem 0;
    letter-spacing: -1px;
}

.phuket-script {
    font-family: var(--ff-script);
    font-size: clamp(2rem, 6vw, 2rem);
    color: #004d4d;
    font-style: italic;
    margin: 0.2rem 0;
}

.phuket-title-2 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 1;
    margin: 0 0 0rem;
    letter-spacing: 0px;
    background: #004d4d;
    /* Texture Background */
    /* background: url("../images/KSPhuketGallery/texture-1.jpg") center center; */
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-main-title {
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.75rem, 11vw, 3.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    letter-spacing: -2px;
    text-transform: uppercase;
    background: #004d4d;
    /* Texture Background */
    /* background: url("../images/KSPhuketGallery/texture-1.jpg") center center; */
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub-title {
    font-family: "Inter", sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 500;
    color: #004d4d;
    margin-top: 0.5rem;
    /* margin-bottom: 1.5rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    letter-spacing: 1px;
}

.hero-sub-title::before,
.hero-sub-title::after {
    content: "";
    height: 1.5px;
    width: 40px;
    background: #004d4d;
}

.hero-offer-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.offer-line-1 {
    font-family: "Inter", sans-serif;
    font-size: clamp(1.1rem, 2.8vw, 1.8rem);
    font-weight: 800;
    color: #004d4d;
    letter-spacing: 0em;
    text-transform: uppercase;
}

.offer-line-2,
.hero-koh-samui-tag {
    font-family: "KactigonaRegular-E4m3j", serif;
    font-size: clamp(2rem, 4.5vw, 5.25rem);
    color: #000000;
    line-height: 1;
    text-shadow: 4px -1px #ffee01;
}

.hero-koh-samui-tag {
    display: block;
    margin: 0 0 0.35rem;
}

.hero-dest-details {
    font-family: "Inter", sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.4rem);
    font-weight: 600;
    color: #000000;
    opacity: 0.8;
    letter-spacing: 0.02em;
}

/* Pricing Splash Area */
.phuket-pricing-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    /* margin-top: 1rem; */
    width: 100%;
}

.price-splash {
    color: #fff;
    padding: 2.5rem 3rem;
    /* Increased vertical padding */
    font-family: "Inter", sans-serif;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    /* Slightly smaller to fit better */
    font-weight: 400;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    width: fit-content;
    z-index: 1;

    /* Patch/Brush Effect Using Uploaded Asset */
    background: url("images/KSPhuketGallery/stoke-bg.png") no-repeat center center;
    background-size: 100%;
    border-radius: 0;
    mask-image: none;
    -webkit-mask-image: none;
}

.price-splash .price-val {
    color: #f6c435;
    font-weight: 900;
    font-size: 1.4em;
    font-family: "Inter", sans-serif;
    font-style: normal;
    display: inline-block;
    margin: 0;
    transform: translateY(-2px);
    /* Vertical adjustment for script alignment */
}

.worth-splash {
    color: #000;
    padding: 1.2rem 2.9rem;
    /* Increased vertical padding */
    font-family: "Inter", sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.2rem);
    font-weight: 900;
    margin-top: -40px;
    /* Tighter overlap */
    width: fit-content;

    /* Patch/Brush Effect Using Uploaded Asset */
    background: url("images/KSPhuketGallery/stoke-yellow.png") no-repeat center center;
    background-size: 100%;
    mask-image: none;
    -webkit-mask-image: none;
    z-index: 1;
}

/* Badges */
.phuket-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

/* Three Circles */
.hero-visuals {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: -20px;
    /* Slight overlap */
    margin-top: 3rem;
    width: 100%;
}

.visual-circle {
    position: relative;
    width: clamp(150px, 20vw, 280px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    overflow: visible;
    /* To allow label to show on top */
    z-index: 4;
}

.visual-circle.circle-center {
    width: clamp(180px, 25vw, 350px);
    z-index: 5;
    margin: 0 -30px;
    /* Overlap effect */
}

.visual-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.circle-label-splash {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #004d4d;
    color: #fff;
    padding: 0.4rem 1.5rem;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 20px 40px 15px 30px / 10px 15px 10px 20px;
    white-space: nowrap;
}

/* Inclusions List */
.hero-inclusions {
    background: #f0f7f7;
    border: 1.5px solid rgba(0, 77, 77, 0.15);
    border-radius: 25px;
    padding: 45px 40px 30px;
    max-width: 680px;
    width: 92%;
    margin: 50px auto 80px;
    text-align: left;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.inclusions-section {
    position: relative;
    background: url("images/KSPhuketGallery/doodle.png") repeat;
    background-size: 600px;
    /* Adjust based on asset look */
    padding: 2rem 0 5rem;
    display: flex;
    justify-content: center;
    margin-top: -3px;
    /* Ensure no white gap */
}

.inclusions-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

.hero-inclusions {
    position: relative;
    z-index: 15;
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-inclusions::before {
    display: none;
    /* Removed the pseudo-element doodle */
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 77, 77, 0.15);
}

.inclusion-item:last-child {
    border-bottom: none;
}

.inclusion-icon {
    width: 50px;
    height: 50px;
    background: #004d4d;
    color: #f6c435;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.inclusion-text {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    color: #004d4d;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
}

.inclusion-text b {
    font-weight: 800;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: auto;
    }

    .hero-visuals {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
    }

    .visual-circle,
    .circle-center {
        width: 45% !important;
        height: auto !important;
        aspect-ratio: 1/1;
        margin: 0;
        border-width: 6px;
    }

    .circle-center {
        width: 90% !important;
        order: -1;
    }

    .hero-inclusions {
        padding: 35px 20px 20px;
    }

    .inclusion-item {
        gap: 15px;
    }

    .inclusion-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

.inclusions-section {
    position: relative;
    background: url("images/KSPhuketGallery/doodle.png") repeat;
    background-size: 600px;
    /* Adjust based on asset look */
    padding: 2rem 0 5rem;
    display: flex;
    justify-content: center;
    margin-top: -3px;
    /* Ensure no white gap */
}

.inclusions-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

.hero-inclusions {
    position: relative;
    z-index: 15;
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-inclusions::before {
    display: none;
    /* Removed the pseudo-element doodle */
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 77, 77, 0.15);
}

.inclusion-item:last-child {
    border-bottom: none;
}

.inclusion-icon {
    width: 50px;
    height: 50px;
    background: #004d4d;
    color: #f6c435;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.inclusion-text {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    color: #004d4d;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
}

.inclusion-text b {
    font-weight: 800;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: auto;
    }

    .hero-visuals {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
    }

    .visual-circle,
    .circle-center {
        width: 45% !important;
        height: auto !important;
        aspect-ratio: 1/1;
        margin: 0;
        border-width: 6px;
    }

    .circle-center {
        width: 90% !important;
        order: -1;
    }

    .hero-inclusions {
        padding: 35px 20px 20px;
    }

    .inclusion-item {
        gap: 15px;
    }

    .inclusion-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}


@font-face {
    font-family: "KactigonaRegular-E4m3j";
    src: url("fonts/KactigonaRegular-E4m3j.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "RememberSummer-e97ap";
    src: url("fonts/RememberSummer-e97ap.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

:root {
    --teal: #0d4c77;
    --yellow: #f6c435;
    --white: #ffffff;
    --ff-display: "Oswald", sans-serif;
    --ff-body: "Inter", sans-serif;
    --ff-script: "RememberSummer-e97ap", cursive;
}

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

body {
    font-family: var(--ff-body);
    overflow-x: hidden;
}

.banner-two {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background-image: url("images/KSPhuketGallery/banner-4.png");
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 0; */
    padding: 120px 1rem 4rem;
    overflow: hidden;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
    backdrop-filter: blur(10px);
}

.site-header.scrolled {
    background: rgba(5, 5, 5, 0.98);
    padding: 5px 0;
    backdrop-filter: blur(15px);
}

.site-header.scrolled .nav-link {
    color: #fff;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 3vw, 3rem);
}

.header-logo img {
    height: 4rem;
    /* filter: brightness(0); */
    transition: filter 0.3s ease;
}

.site-header.scrolled .header-logo img {
    filter: brightness(1);
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #0d4c77;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--yellow);
}

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

.header-cta {
    text-decoration: none;
    padding: 0.8rem 2.2rem;
    background: var(--yellow);
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Mobile Hamburger - Hidden on Desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 3px;
}

.banner-overlay-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    height: 100%;
    background: linear-gradient(to right, #00000000 0%, rgb(180 180 180 / 71%) 15%, rgb(255 255 255) 50%, rgb(180 180 180 / 57%) 85%, #00000000 100%);
    /* background: linear-gradient(to right, #00000000 0%, rgb(180 180 180 / 59%) 15%, rgb(255 255 255 / 70%) 50%, rgb(180 180 180 / 24%) 85%, #00000000 100%); */
    z-index: 5;
    pointer-events: none;
}

/* Base Background Image */
.banner-bg {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.8;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    /* Keeping it full if it's the main composite */
}

/* If banner-2.png is the whole mockup, we might want to overlay our HTML elements precisely */
.banner-overlay {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header Typography */
.hero-header {
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-main-title {
    font-family: "Oswald", sans-serif;
    font-size: clamp(4.5rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    letter-spacing: -2px;
    text-transform: uppercase;
    /* background: url("images/KSPhuketGallery/texture-1.jpg") center center; */
    background: #004d4d;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub-title {
    font-family: "Inter", sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    font-weight: 500;
    color: #004d4d;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    letter-spacing: 1px;
}

.hero-sub-title::before,
.hero-sub-title::after {
    content: "";
    height: 1.5px;
    width: 40px;
    background: #004d4d;
}

.hero-offer-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.offer-line-1 {
    font-family: "Inter", sans-serif;
    font-size: clamp(1.1rem, 2.8vw, 1.6rem);
    font-weight: 800;
    color: #004d4d;
    letter-spacing: 0em;
    text-transform: uppercase;
}

.offer-line-2,
.hero-koh-samui-tag {
    font-family: "RememberSummer-e97ap", cursive;
    font-size: clamp(2.5rem, 6.5vw, 5rem);
    color: #000000;
    line-height: 1;
    text-shadow: 4px -1px #ffee01;
}

.hero-koh-samui-tag {
    display: block;
    margin: 0 0 0.35rem;
}

.hero-dest-details {
    font-family: "Inter", sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.45rem);
    font-weight: 600;
    color: #000000;
    opacity: 0.8;
    letter-spacing: 0.02em;
}

/* Pricing Patch */
.pricing-patch {
    position: relative;
    margin: 0rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-inner {
    background: url("images/KSPhuketGallery/stoke-bg.png") no-repeat center;
    background-size: 100%;
    color: #fff;
    padding: 1rem 2rem;
    font-family: var(--ff-body);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0px;
}

.price-val {
    color: var(--yellow);
    font-size: 2rem;
}

.worth-badge {
    background: url("images/KSPhuketGallery/stoke-yellow.png") no-repeat center center;
    background-size: 100%;
    padding: 1.2rem 2.9rem;
    font-weight: 900;
    font-size: clamp(1.2rem, 3vw, 1.2rem);
    color: #000;
    margin-top: -6px;
    width: fit-content;
}

.price-inclusions-small {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    font-weight: 800;
    color: #004d4d;
    margin-top: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.92);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(0, 77, 77, 0.15);
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Visuals Row */
.visuals-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    /* margin-top: clamp(3rem, 8vw, 0rem); */
    margin-top: clamp(0rem, 8vw, 0rem);
    margin-bottom: 0rem;
}

.circle-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.group-label {
    background: url("images/KSPhuketGallery/stoke-bg.png") no-repeat center;
    background-size: 100%;
    color: #fff;
    padding: 8px 30px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0px;
}

.circles-wrap {
    display: flex;
    gap: -15px;
    /* Overlap effect */
}

.circle-item {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    border: 5px solid #fff;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-left: -20px;
    /* transition: transform 0.3s ease; */
}

.circles-wrap .circle-item:first-child {
    margin-left: 0;
}

/* .circle-item:hover {
  transform: translateY(-5px);
  z-index: 10;
} */

.circle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Transfer Divider */
.transfer-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.divider-line {
    width: 1px;
    height: 40px;
    border-left: 2px dashed rgba(0, 77, 77, 0.3);
}

.plane-icon {
    width: 40px;
    height: 40px;
    background: var(--teal);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Bottom Inclusions */
.inclusions-area {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.inclusions-badge {
    background: url("images/KSPhuketGallery/stoke-bg.png") no-repeat center;
    background-size: 100%;
    color: #fff;
    padding: 0.8rem 4rem;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-transform: uppercase;
}

.inclusions-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    padding: 2.5rem 3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.inc-icon {
    width: 55px;
    height: 55px;
    background: var(--teal);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0;
}

.inc-icon i {
    font-size: 1.3rem;
}

.inc-text {
    font-family: var(--ff-body);
    font-size: 1rem;
    color: #333;
    line-height: 1.25;
    font-weight: 500;
    text-align: left;
}

.inc-text b {
    color: var(--teal);
    font-weight: 800;
}

.inc-divider {
    width: 1px;
    height: 70px;
    border-left: 1px dashed rgba(0, 0, 0, 0.3);
}

/* Decor Leaves */
.decor-leaf {
    position: absolute;
    width: 350px;
    height: auto;
    pointer-events: none;
    z-index: 15;
}

.leaf-left {
    bottom: -50px;
    left: -50px;
    transform: rotate(30deg);
}

.leaf-right {
    bottom: -50px;
    right: -50px;
    transform: rotate(-30deg) scaleX(-1);
}

@media (max-width: 992px) {

    .site-header,
    .site-header.scrolled {
        padding: 15px 0;
        box-shadow: 0px 0px 9px 0px #848484;
    }

    .header-nav,
    .header-cta {
        display: none;
    }

    .hamburger span {
        background: #000;
        transition: background 0.3s ease;
    }

    .site-header.scrolled .hamburger span {
        background: #fff;
    }

    .hamburger {
        display: flex;
    }

    .banner-two {
        min-height: auto;
        padding-top: 6rem;
        background-image: url("images/KSPhuketGallery/mobile-3.png");
        background-position: center top;
    }

    .banner-overlay-center {
        background: none;
    }

    .visuals-row {
        flex-direction: column;
        gap: 30px;
    }

    .transfer-divider {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .divider-line {
        width: 60px;
        height: 1px;
        border-left: none;
        border-top: 2px dashed rgba(0, 77, 77, 0.3);
    }

    .inclusions-card {
        flex-direction: column;
        padding: 4rem 1.5rem 2rem;
        gap: 25px;
    }

    .inc-divider {
        width: 80%;
        height: 1px;
        border-left: none;
        border-top: 1px dashed rgba(0, 0, 0, 0.2);
    }

    .inc-item {
        width: 100%;
    }

    .inc-text {
        text-align: left;
    }

    .plus-nights {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .banner-two {
        background-attachment: scroll;
    }

    .hero-main-title {
        font-size: clamp(3rem, 10vw, 5rem);
    }

    .offer-line-1 {
        font-size: 1.1rem;
    }

    .hero-koh-samui-tag {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }

    .circle-item {
        width: 10rem;
        height: 10rem;
    }

    .group-label {
        padding: 6px 20px;
        font-size: 0.8rem;
    }

    .price-inner {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }

    .price-val {
        font-size: 1.6rem;
    }

    .worth-badge {
        font-size: 1rem;
        padding: 1rem 2.2rem;
    }

    .inclusions-badge {
        font-size: 1.2rem;
        padding: 0.6rem 3rem;
    }

    .testimonials-section .section-title {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .header-logo img {
        height: 3rem;
    }

    .hero-main-title {
        font-size: 3.2rem;
    }

    .hero-koh-samui-tag {
        font-size: 2.8rem;
    }

    .circle-item {
        width: 8.5rem;
        height: 8.5rem;
    }

    .circles-wrap {
        gap: -30px;
    }

    .pricing-patch {
        transform: scale(0.9);
    }

    .inc-text {
        font-size: 0.9rem;
    }

    .inclusions-card {
        padding: 2.5rem 1.5rem 1rem;
        gap: 15px;
    }

    .inc-item {
        text-align: center;
        gap: 10px;
    }



    .hero-dest-details {
        font-size: 1rem;
    }
}

@media (max-width: 380px) {
    .hero-main-title {
        font-size: 2.8rem;
    }

    .hero-koh-samui-tag {
        font-size: 2.4rem;
    }

    .circle-item {
        width: 7rem;
        height: 7rem;
    }

    .pricing-patch {
        transform: scale(0.8);
        margin-bottom: 0.5rem;
    }

    .inclusions-badge {
        font-size: 1.1rem;
        padding: 0.5rem 2.5rem;
    }



    .hero-dest-details {
        font-size: .8rem;
    }
}

.gallery-resort-name {
    text-align: center;
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--cream);
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.9;
}

.gallery-disclaimer {
    text-align: center;
    margin-top: 3rem;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    color: #fff;
    opacity: 0.6;
    font-style: italic;
    letter-spacing: 1px;
}

span.offer-line-2.hero-koh-samui-tag {
    font-family: "Inter", sans-serif;
    font-size: 85px;
    font-weight: bold;
    color: #004d4d;
    letter-spacing: 0em;
    text-transform: uppercase;
}

#about1 .bg-deco-box {
    left: -60px;
}

#about1 .accent-bar {
    right: 50px;
}

@media(max-width: 576px) {
    span.offer-line-2.hero-koh-samui-tag {
        font-size: 22px !important;
    }

    .hero-header {
        margin-top: 5em;
    }
}

/* Premium Roadmap Timeline Layout Overrides */
.itinerary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.itinerary-info-wrap {
    width: calc(50% - 40px);
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.itinerary-img-col {
    width: calc(50% - 40px);
}

.itinerary-day-col {
    width: 35% !important;
}

.itinerary-content-col {
    width: 65% !important;
    padding: 0 !important;
    /* Remove the old 0 60px padding */
}

/* Symmetrical alignment: reverse day/content layout */
.itinerary-item.reverse .itinerary-info-wrap {
    flex-direction: row-reverse;
}

.itinerary-item.reverse .itinerary-day-col {
    text-align: left;
}

.itinerary-item:not(.reverse) .itinerary-day-col {
    text-align: right;
}

/* Fix mobile responsive timeline behavior */
@media (max-width: 992px) {
    .timeline-vertical {
        display: none !important;
    }

    .day-marker {
        display: none !important;
    }

    .itinerary-item,
    .itinerary-item.reverse {
        flex-direction: column !important;
        gap: 30px;
        padding: 40px 0;
    }

    .itinerary-info-wrap,
    .itinerary-img-col {
        width: 100% !important;
    }

    .itinerary-info-wrap,
    .itinerary-item.reverse .itinerary-info-wrap {
        flex-direction: column !important;
        gap: 20px;
    }

    .itinerary-day-col,
    .itinerary-content-col {
        width: 100% !important;
        text-align: left !important;
    }
}

/* ============================================================
   INFO HIGHLIGHTS SECTION
   ============================================================ */
.info-highlights-section {
    padding: 80px 0;
    background-color: var(--bg-beige);
    position: relative;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(18, 104, 107, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--teal);
}

.info-card.why-card::before {
    background: var(--yellow);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.card-icon {
    font-size: 1.8rem;
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card .card-icon {
    color: var(--gold-dark);
}

.card-title {
    font-family: var(--ff-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin: 0;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-list .list-icon {
    font-size: 1.2rem;
    color: var(--teal-light);
    margin-top: 2px;
    flex-shrink: 0;
}

.why-card .list-icon {
    color: var(--gold-dark);
}

.info-list .list-text {
    font-family: var(--ff-body);
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

.info-list .list-text strong {
    color: #111;
}

/* Highlighted benefit (Pulse/Glow animation) */
.highlighted-benefit {
    background: rgba(255, 209, 0, 0.08);
    border-radius: 8px;
    padding: 10px 15px;
    margin: -10px -15px;
    border: 1px dashed rgba(255, 209, 0, 0.5);
    animation: infoPulseGlow 3s infinite ease-in-out;
}

@keyframes infoPulseGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 209, 0, 0.1);
        background-color: rgba(255, 209, 0, 0.08);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 209, 0, 0.3);
        background-color: rgba(255, 209, 0, 0.15);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-card {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .info-highlights-section {
        padding: 60px 0;
    }

    .info-card {
        padding: 25px 20px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .info-list .list-text {
        font-size: 0.95rem;
    }
}