/* ============================================================
   SECTION BASE
============================================================ */

.section {
    padding: 40px 40px 60px;
}

.section.alt-bg {
    background: #fff3e0;
}

.container {
   
    margin: 0 auto;
}

.textcenter {
    text-align: center;
}

/* ============================================================
   HEADINGS
============================================================ */

.section h2 {
    font-family: var(--font-accent);
    font-size: clamp(2.0em, 2.5vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 0px;
    letter-spacing: -0.01em;
    color: var(--color-olive);
}
.section h3 {
    font-family: var(--font-accent);
    font-size: clamp(1.6em, 2.0vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    color: #502511;
}

.section h4 {
    font-family: var(--font-accent);
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* ============================================================
   TEXT
============================================================ */

.section p {
    font-family: var(--font-main);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin: 0 auto 20px;
}

/* ============================================================
   ICON LIST (TOP SECTION)
============================================================ */

.icon-list {
    margin-top: 20px;
    margin: 0 auto;
}

.icon-list p {
    font-weight: 500;
    margin: 6px 0;
}

/* ============================================================
   TWO COLUMN
============================================================ */

.two-col {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.two-col > div {
    flex: 1;
}
/* ============================================================
   GRID SYSTEM (REUSABLE)
============================================================ */

.grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

/* Column variations */

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

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

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

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

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1024px) {
    .grid.cols-4,
    .grid.cols-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr !important;
    }
}

small {
    display: inline-block;
    font-size: 10px !important;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #4d5f33;
    color: #fff;
    font-weight: 500;
    margin-bottom: 18px !important;
     padding: 3px 8px;
}
/* LISTS */

.section ul {
    padding-left: 0;
    list-style: none;
}

.section ul li {
    margin-bottom: 8px;
    font-family: var(--font-main);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-family: var(--font-main);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    
}

/* Custom checkmark */
.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--ember-orange);
    font-weight: bold;
}
/* ============================================================
   PRICING BOXES
============================================================ */

.pricing-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin: 20px auto;
    max-width: 500px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.pricing-box h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.pricing-box strong {
    font-size: 1.2rem;
    color: var(--ember-orange);
}

/* ============================================================
   TESTIMONIALS
============================================================ */

blockquote {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;

    max-width: 700px;
    margin: 20px auto;
    color: #333;
}

blockquote strong {
    display: block;
    margin-top: 10px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-style: normal;
    color: #777;
}

/* ============================================================
   LINKS
============================================================ */

.section a:not(.btn) {
    font-weight: 600;
    text-decoration: underline;
    color: var(--ember-orange);
}

.section a:not(.btn):hover {
    opacity: 0.8;
}

/* ============================================================
   CTA SECTION (FINAL BLOCK)
============================================================ */

.section:last-of-type {
    background: linear-gradient(
    135deg,
    #2f1a0f,
    #3b2416,
    #2e2a1c
);
    color: #fff;
}

.section:last-of-type h2,
.section:last-of-type p {
    color: #fff;
}
.cta-section {
    position: relative;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0)
    );

    pointer-events: none;
}
/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 768px) {

    .section {
        padding: 60px 20px;
    }

    .two-col {
        flex-direction: column;
        gap: 20px;
    }

    .section p {
        font-size: 1rem;
    }

    blockquote {
        font-size: 1.05rem;
    }
}



.highlight{
    font-weight: bold;
}

/* ============================================================
   EMOTIONAL BLOCK
============================================================ */

.emotional-block {
    position: relative;

    padding: 140px 20px; /* keep spacing */

    background-image: url('/_system/assets/img/gallery/all/new-body-and-mind-koh-samui-309.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    color: #fff;
    overflow: hidden;
}
.emotional-block::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: inherit;
    background-size: cover;
    background-position: center;

    z-index: 0;
}
/* Dark overlay */

.emotional-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.7)
    );
    z-index: 1;
}
 
/* Content above overlay */

.emotional-block .container {
    position: relative;
    z-index: 2;
}

/* Headline */

.emotional-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF !important;
}

.emotional-block h2 span {
    display: block;
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
    margin-top: 5px;
}

/* Text */

.emotional-text {
    max-width: 650px;
    margin: 20px auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #FFF !important;
}

/* Button spacing */

.emotional-block .btn {
    margin-top: 20px;
}

/* Optional subtle zoom effect */

.emotional-block {
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { background-size: 100%; }
    100% { background-size: 110%; }
}

/* ============================================================
   BENEFIT CARDS (FINAL POLISHED)
============================================================ */

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

/* Title */

.benefit-card h4 {
    font-family: var(--font-main);
    font-size: 1.4em;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    color: #502511;
}

/* List */

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Item */

.benefit-card ul li {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 14px;

    font-family: var(--font-main);
    font-size: 1em;
    line-height: 1.5;

    color: #333;
}

/* Icon */

.benefit-card ul li::before {
    content: "✔";

    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    font-size: 0.75rem;
    font-weight: bold;

    color: #fff;
    background: var(--ember-orange);

    flex-shrink: 0;

    transform: translateY(1px); /* subtle optical alignment */
}

/* Hover subtle lift */

.benefit-card:hover ul li::before {
    transform: translateY(1px) scale(1.05);
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center; /* center everything horizontally */
}

/* Limit width of list so it doesn't stretch */

.benefit-card ul {
    max-width: 260px;
    width: 100%;
    border: 1px solid #000;
}

.benefit-card ul li {
    justify-content: flex-start; /* keeps icon + text aligned properly */
}

.benefit-card h4 {
    text-align: center;
    margin-bottom: 25px;
}

/* ============================================================
   BENEFIT LIST (P-BASED SYSTEM)
============================================================ */

.benefit-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Each line */

.benefit-list p {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-family: var(--font-main);
    font-size: 1rem;

    color: #333;

    margin: 0;
}

/* Icon */

.benefit-list p::before {
    content: "✔";

    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    font-size: 0.75rem;
    font-weight: bold;

    color: #fff;
    background: var(--ember-orange);

    flex-shrink: 0;
}

.benefit-card {
    max-width: 320px;
    margin: 0 auto;
}

/* ============================================================
   PROGRAM GRID
============================================================ */

.program-grid {
    margin-top: 50px;
}

/* Card */

.program-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

/* Hover */

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Featured card */

.program-card.featured {
    border: 2px solid var(--ember-orange);
    transform: scale(1.03);
}

/* Badge */

.badge {
    background: var(--ember-orange);
    color: #fff;

    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;

    font-size: 0.75rem;
    margin-bottom: 15px;
}

/* Title */

.program-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

/* Subtitle */

.subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

/* Main price */

.price-main {
    font-size: 1.1rem;
    margin: 15px 0;
}

/* Highlight price */

.price-main strong {
    color: var(--ember-orange);
    font-size: 1.4rem;
}

/* Options */

.price-options p {
    margin: 5px 0;
    
}

/* Text */

.program-text {
    font-size: 0.95rem;
    color: #555;
    margin: 15px 0;
}

/* Note */

.note {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

/* Button spacing */

.program-card .btn {
    margin-top: 15px;
}

.program-card.featured {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    align-items: stretch; /* KEY */
}

.program-card.featured {
    transform: scale(1.08);
 }

.program-card {
    display: flex;
    flex-direction: column;
    height: 100%;
 
    padding: 30px;
    justify-content: space-between;
}
.program-card .btn {
    margin-top: auto;
}

.program-card .price-options {
    margin-bottom: 20px;
}

.testimonial-card {
    background: #FFF;
    box-shadow:0px 10px 10px #aaa;
    border-radius: 25px;
    color: #fff;
     background-size: 300% 300%;
    animation: footerFlow 28s ease infinite; /* slower than header */
    padding: 5px;
} 

.img-box{
    border-radius: 25px;
    padding: 5px;
    background-color: #FFF;
    box-shadow: 0px 10px 10px #aaa;
}
.testimonial-card p {
    color: #FFF;
}

.testimonial-author strong {
    color: #fff;
}

.testimonial-author span {
    color: rgba(255,255,255,0.6);
}

/* ============================================================
   VIDEO FADE-IN
============================================================ */

.video-fade {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: all 0.8s ease;
}

/* When AOS triggers */
.video-fade.aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.video-wrap iframe {
    transition: transform 0.4s ease;
}

.video-wrap:hover iframe {
    transform: scale(1.02);
}

/* ============================================================
   DAY GRID
============================================================ */

.day-grid {
    margin-top: 40px;
}

/* Individual item */

.day-item {
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    padding: 25px 20px;

    text-align: center;

    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Hover lift */

.day-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Icon */

.day-item .icon {
    width: 50px;
    height: 50px;

    margin: 0 auto 15px;

    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--ember-orange),
        #ff9a4d
    );

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.4rem;
    color: #fff;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Title */

.day-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #502511;
}

/* Text */

.day-item p {
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(0,0,0,0.65);
    margin: 0;
}
@media (max-width: 768px) {
    .day-grid {
        margin-top: 25px;
    }

    .day-item {
        padding: 20px 15px;
    }
}

/* ============================================================
   404 PAGE
============================================================ */

.error-code {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 10px;

    color: var(--ember-orange);
    opacity: 0.9;
}

/* ============================================================
   TESTIMONIAL CARD
============================================================ */

.testimonial-card {
    background: #fff;
    border-radius: 20px;

    padding: 30px 30px 25px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    position: relative;

    transition: all 0.3s ease;
}

/* subtle hover lift */
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* quote text */
.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.8);

    margin-bottom: 20px;

    font-style: italic;
}

/* author */
.testimonial-card strong {
    display: block;

    font-size: 0.9rem;
    font-weight: 600;

    color: var(--olive-green, #6b7d2d);
}

/* subtle quote mark decoration */
.testimonial-card::before {
    content: "“";
    position: absolute;

    top: 10px;
    left: 18px;

    font-size: 3rem;
    line-height: 1;

    color: rgba(0,0,0,0.05);

    font-family: serif;
}



.daily-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.daily-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.daily-card-header {
    margin-bottom: 25px;
}

.daily-label {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.6;
    display: none;
    visibility: hidden;
}

.daily-card h3 {
    margin-bottom: 15px;
}

.accordion details {
    border-top: 1px solid #e5e5e5;
    padding: 15px 0;
}

.accordion summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 20px;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
}

.accordion details[open] summary::after {
    content: "−";
}

.accordion p {
    padding-top: 12px;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width: 980px) {
    .daily-grid {
        grid-template-columns: 1fr;
    }

    .daily-card {
        padding: 25px;
    }
}

.inclusion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.inclusion-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.inclusion-card h3 {
    margin-bottom: 20px;
}

.inclusion-card details {
    border-top: 1px solid #e5e5e5;
    padding: 15px 0;
}

.inclusion-card summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 20px;
}

.inclusion-card summary::-webkit-details-marker {
    display: none;
}

.inclusion-card summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
}

.inclusion-card details[open] summary::after {
    content: "−";
}

.inclusion-card p {
    padding-top: 12px;
    line-height: 1.7;
}

@media (max-width: 980px) {
    .inclusion-grid {
        grid-template-columns: 1fr;
    }
}

.complimentary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.complimentary-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.complimentary-card h3 {
    margin-bottom: 20px;
}

.complimentary-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.complimentary-card li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    line-height: 1.6;
}

.complimentary-card li:last-child {
    border-bottom: none;
}

@media (max-width: 980px) {
    .complimentary-grid {
        grid-template-columns: 1fr;
    }
}

.section-intro {
    font-size: 17px;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}

.accordion summary {
    font-size: 15px;
    font-weight: 600;
}

.content-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(122, 92, 48, 0.12);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.content-card:hover {
    border-color: rgba(122, 92, 48, 0.25);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.section.lifestyle-programs-intro {
    padding-top: 50px;
}

.content-card p {
    line-height: 1.8;
}

.program-card {
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-6px);
}

/* BASE */
.icon-wrap {
    width: 120px;
    height: 120px;
    margin: 15px auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.icon-wrap i,
.icon-wrap svg {
    width: 52px;
    height: 52px;
    color: #fff;
    stroke: #fff;
    stroke-width: 1.4;
}

/* MORNING */
.day-item:nth-child(1) .icon-wrap {
    background: linear-gradient(145deg, #D98A29, #F2B544);
    border: 2px solid rgba(217,138,41,0.2);
}

/* AFTERNOON */
.day-item:nth-child(2) .icon-wrap {
    background: linear-gradient(145deg, #518B3A, #6BA14E);
    border: 2px solid rgba(81,139,58,0.2);
}

/* EVENING */
.day-item:nth-child(3) .icon-wrap {
    background: linear-gradient(145deg, #6C5B8C, #8A76B8);
    border: 2px solid rgba(108,91,140,0.2);
}

/* HOVER */
.icon-wrap:hover {
    transform: translateY(-4px) scale(1.03);
}
/* BENEFIT BOX ICON COLORS (1–5) */

/* 1. Experience / Time */
.benefit-box:nth-child(1) .icon-wrap {
    background: linear-gradient(145deg, #D98A29, #F2B544);
    border: 2px solid rgba(217,138,41,0.2);
}

/* 2. Detox / Wellness */
.benefit-box:nth-child(2) .icon-wrap {
    background: linear-gradient(145deg, #518B3A, #6BA14E);
    border: 2px solid rgba(81,139,58,0.2);
}

/* 3. Recovery / Healing */
.benefit-box:nth-child(3) .icon-wrap {
    background: linear-gradient(145deg, #4A90A4, #63B5C8);
    border: 2px solid rgba(74,144,164,0.2);
}

/* 4. Support / Guidance */
.benefit-box:nth-child(4) .icon-wrap {
    background: linear-gradient(145deg, #8B5E3C, #B07A52);
    border: 2px solid rgba(139,94,60,0.2);
}

/* 5. Lifestyle / Balance */
.benefit-box:nth-child(5) .icon-wrap {
    background: linear-gradient(145deg, #6C5B8C, #8A76B8);
    border: 2px solid rgba(108,91,140,0.2);
}
@media (max-width: 768px) {
    .icon-wrap {
        width: 70px;
        height: 70px;
    }

    .icon-wrap i,
    .icon-wrap svg {
        width: 30px;
        height: 30px;
    }
}


.image-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
}

.image-grid-2x2 .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.image-grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.image-grid-3x3 .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    border: none;
    display: block;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.image-grid-3x3 .img-box:hover {
    transform: scale(1.02);
}
.image-grid-3x3 > * {
    margin: 0;
    padding: 0;
}
.image-grid-3x3 .img-box {
    transition: transform 0.3s ease;
}

.image-grid-3x3 .img-box:hover {
    transform: scale(1.03);
}

.image-grid-3x3 a {
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

/* ============================================================
   IMAGE GRID 4x4
============================================================ */

.image-grid-4x4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.image-grid-4x4 > * {
    margin: 0;
    padding: 0;
}

.image-grid-4x4 a {
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

.image-grid-4x4 .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;

    border: none;
    border-radius: 16px;
    box-shadow: none;

    margin: 0;
    padding: 0;

    transition: transform 0.3s ease;
}

.image-grid-4x4 .img-box:hover {
    transform: scale(1.03);
}

/* tablet */
@media (max-width: 1024px) {
    .image-grid-4x4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* mobile */
@media (max-width: 768px) {
    .image-grid-4x4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .image-grid-2x2, .image-grid-3x3 {
        grid-template-columns: 1fr;
        gap: 15px;
        display: none;
        visibility: hidden;
    }
}

/* PRICES */

.pricing-table-section{
    background-color: #502511;
  
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.pricing-card h3 {
    margin-bottom: 30px;
    color: #4b2d1e !important;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.duration {
    font-weight: 600;
    color: #2f2f2f;
    font-size: 17px;
}

.price-wrap {
    text-align: right;
}

.old-price {
    display: block;
    text-decoration: line-through;
    opacity: 0.45;
    font-size: 14px;
    color: #666;
}

.price {
    font-weight: 700;
    font-size: 20px;
    color: #2f2f2f;
}

.promo-price {
    display: block;
    color: #ff6b00;
    font-weight: 700;
    font-size: 20px;
}

.promo-line {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 6px;
}

.promo-badge {
    font-size: 11px;
    text-transform: uppercase;
    background: rgba(255,107,0,0.1);
    color: #ff6b00;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* INTENSIVE CARE */
.intensive-card {
    border: 1px solid rgba(255,107,0,0.12);
}

.intensive-note {
    margin-bottom: 25px;
    line-height: 1.7;
    opacity: 0.85;
}

.intensive-row {
    margin-bottom: 25px;
}

.intensive-content {
    margin-top: 10px;
}

.intensive-content p {
    margin-bottom: 18px;
    line-height: 1.7;
}

.intensive-cta {
    margin: 20px auto;
    padding-top: 20px;
}

.intensive-cta .btn-primary {
    width: 100%;
}

/* NOTES */
.pricing-note {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.75;
}
.intensive-note {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #5a5a5a !important; 
    font-size: 15px; 
}

.intensive-content {
    margin-top: 20px;
    color: #2f2f2f;
}

.intensive-content p {
    color: #2f2f2f !important;
    line-height: 1.8;
    margin-bottom: 16px;
}
/* MOBILE */
@media (max-width: 980px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }

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

    .promo-line {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

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

/* ============================================================
   FAQ ACCORDION
============================================================ */

/* GRID LAYOUT */
.faq-accordion {
    width: 100%;
    max-width: 100%;
    margin: 25px 0 0;
}
.faq-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* FAQ CARD */

.narrow{
    max-width:700px;
}
.faq-section-card {
    width: 100%;
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    height: 100%;
}

/* ACCORDION WRAPPER */

.faq-accordion {
    width: 100%;
    max-width: 100%;
    margin-top: 25px;
}

/* ITEM */

.faq-item {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* HIDE CHECKBOX */

.faq-item input {
    display: none;
}

/* QUESTION BUTTON */

.faq-question {
    width: 100%;
    display: block;
    padding: 18px 30px 18px 0;

    background: none;
    border: none;
    outline: none;

    text-align: left;

    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;

    cursor: pointer;
    position: relative;

    transition: color 0.2s ease;
}

/* HOVER */

.faq-question:hover {
    color: var(--ember-orange);
}

/* PLUS ICON */

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    font-size: 1.2rem;
    font-weight: 400;

    transition: transform 0.3s ease;
}

/* ANSWER PANEL */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition: max-height 0.35s ease;
}

/* ANSWER TEXT */

.faq-answer p {
    margin: 0;
    padding: 0 0 15px;

    color: rgba(0,0,0,0.75);
    line-height: 1.7;
    font-size: 15px;
}

/* ACTIVE STATE */

.faq-item input:checked ~ .faq-answer {
    max-height: 1000px;
}

.faq-item input:checked ~ .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

/* PAYMENT BLOCK */

.faq-payments-wrap {
     margin: 60px auto 0;
}
.faq-section-grid {
    align-items: stretch;
}

.faq-section-card {
    display: flex;
    flex-direction: column;
}

/* 2 COLUMN FAQ */
.faq-accordion-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
    align-items: start;
}

/* keep items clean in grid */
.faq-accordion-2col .faq-item {
    width: 100%;
}

/* answers span full item width */
.faq-accordion-2col .faq-answer {
    grid-column: span 1;
}

/* mobile fallback */
@media (max-width: 768px) {
    .faq-accordion-2col {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* MOBILE */

@media (max-width: 980px) {
    .faq-section-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .faq-section-card {
        padding: 25px;
    }

    .faq-payments-wrap {
        max-width: 100%;
        margin-top: 30px;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}

/* ============================================================
   GALLERY GRID 5
============================================================ */

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

.gallery-grid-5 a {
    display: block;
    overflow: hidden;
    border-radius: 14px;
}

.gallery-grid-5 img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-grid-5 a:hover img {
    transform: scale(1.04);
}

/* tablet */
@media (max-width: 1024px) {
    .gallery-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* mobile */
@media (max-width: 768px) {
    .gallery-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* ============================================================
   GALLERY GRID 6
============================================================ */

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

.gallery-grid-6 a {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-grid-6 img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-grid-6 a:hover img {
    transform: scale(1.04);
}

/* large tablet */
@media (max-width: 1200px) {
    .gallery-grid-6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* tablet */
@media (max-width: 1024px) {
    .gallery-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* mobile */
@media (max-width: 768px) {
    .gallery-grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}
/* ============================================================
   GALLERY GRID 8
============================================================ */

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

.gallery-grid-8 a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-grid-8 img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-grid-8 a:hover img {
    transform: scale(1.04);
}

/* large tablet / small desktop */
@media (max-width: 1200px) {
    .gallery-grid-8 {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* tablet */
@media (max-width: 1024px) {
    .gallery-grid-8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* mobile */
@media (max-width: 768px) {
    .gallery-grid-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

/* STACK RIGHT SIDE */
.benefit-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARDS */
.benefit-box {
    background: #fff;
    border-radius: 18px;
    padding: 25px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
}

/* HEADINGS */
.benefit-box h4 {
    margin-bottom: 15px;
    color: var(--olive-green);
}

/* LIST */
.benefit-box ul {
    list-style: none;
    padding: 0;
}

.benefit-box li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.benefit-box li::before {
    /*
    content: "✔";
    position: relative;
    color: var(--ember-orange);
    margin-right: 10px;
    */
}

.gallery-highlights {
    max-width: 800px;
    margin: 25px auto;
    line-height: 1.9;
    font-size: 1rem;
    color: rgba(0,0,0,0.75);
}

/* ============================================================
   CLEAN FEATURE LIST
============================================================ */

.feature-list-clean {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.feature-list-clean li {
    padding: 14px 0;
    margin: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);

    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.8);
}

/* optional subtle hover */
.feature-list-clean li:hover {
    padding-left: 8px;
    transition: all 0.25s ease;
}

/* mobile */
@media (max-width: 768px) {
    .feature-list-clean li {
        padding: 12px 0;
        font-size: 0.95rem;
    }
}

.diagonal-divider {
    width: 100%;
    aspect-ratio: 19 / 12;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 220px;
}
/* overlay */
.diagonal-divider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

/* left diagonal */
.diagonal-left {
    clip-path: polygon(
        0 15%,     /* top left inset */
        100% 0,    /* top right peak */
        100% 85%,  /* bottom right inset */
        0 100%     /* bottom left drop */
    );
}

/* right diagonal */
.diagonal-right {
    clip-path: polygon(
        0 0,       /* top left peak */
        100% 15%,  /* top right inset */
        100% 100%, /* bottom right */
        0 85%      /* bottom left inset */
    );
}

.footer-socials {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.footer-socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
}
.footer-socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: all 0.3s ease;
}

.footer-socials li a:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* Facebook */
.footer-socials li a.facebook:hover {
    background-color: #1877F2;
}

/* Google */
.footer-socials li a.google:hover {
    background-color: #EA4335;
}

/* TripAdvisor */
.footer-socials li a.tripadvisor:hover,
.social-tripadvisor:hover {
    background-color: #34E0A1;
}

/* YouTube */
.footer-socials li a.youtube:hover {
    background-color: #FF0000;
}

/* Keep icons white */
.footer-socials li a i,
.footer-socials li a svg {
    color: #fff;
    fill: currentColor;
}

.footer-socials a,
.footer-socials a:link,
.footer-socials a:visited,
.footer-socials a:hover,
.footer-socials a:active,
.footer-socials a:focus {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.footer-socials a::before,
.footer-socials a::after {
    display: none !important;
    content: none !important;
}

.footer-socials a i,
.footer-socials a svg {
    text-decoration: none !important;
    display: block;
}

.social-tripadvisor svg {
    display: block;
    width: 30px;
    height: 30px;
    transform: translateY(2px);
}

/* ============================================================
   BOOKING FORM
============================================================ */

.booking-form {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    color: #333;
}

/* GRID */

.booking-form .form-grid {
    gap: 20px;
    margin-bottom: 20px;
}

/* FORM GROUP */

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

/* INPUTS */

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 18px 20px;

    background: #fafafa;
    border: 2px solid rgba(125, 135, 55, 0.45);
    border-radius: 10px;

    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);

    transition: all 0.25s ease;
}

/* FOCUS */

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--ember-orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,120,0,0.08);
    outline: none;
}
.booking-form input {
    color: #333 !important;
}

.booking-form input::placeholder {
    color: #999 !important;
    opacity: 1;
}
/* SELECT */
.booking-form select {
    appearance: none;
    cursor: pointer;
    color: #333 !important;
}

.booking-form select:invalid {
    color: #999 !important;
}

.booking-form select option {
    color: #333;
}

.booking-form select option[value=""] {
    color: #999 !important;
}

/* TEXTAREA */

.booking-form textarea {
    min-height: 180px;
    resize: vertical;
}

/* SECTION BLOCKS */

.booking-form .form-section {
    margin: 35px 0;
    padding: 25px;
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
}

/* HEADINGS */

.booking-form .form-section h4 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.08);

    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* CHECKBOX */

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin-bottom: 16px;
    cursor: pointer;

    line-height: 1.6;
}

/* CHECKBOX INPUT */

.checkbox-wrap input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* CAPTCHA + BUTTON BAR */

.form-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.08);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* CAPTCHA */

.captcha-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;

    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
}

.captcha-wrap span {
    font-weight: 600;
}

.captcha-wrap input {
    width: 70px;
    text-align: center;
    padding: 14px;
}

/* BUTTON */

.form-footer .btn {
    min-width: 180px;
}

/* PLACEHOLDERS */

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: rgba(0,0,0,0.45);
}

/* MOBILE */

@media (max-width: 768px) {

    .booking-form {
        padding: 25px;
    }

    .booking-form .form-grid {
        grid-template-columns: 1fr !important;
    }

    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-wrap {
        justify-content: center;
    }

    .form-footer .btn {
        width: 100%;
    }

}

/* BRAND COLOR RADIO / CHECKBOX */

.checkbox-wrap input[type="radio"],
.checkbox-wrap input[type="checkbox"] {
    accent-color: var(--olive-green);
}

/* PAYMENT EXTRA BLOCK */

.payment-extra {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* BANK BOX */

.bank-box {
    padding: 20px;
    background: #fafafa;
    border: 1px solid rgba(125,135,55,0.25);
    border-radius: 12px;
}

.bank-box p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ============================================================
   CHECKBOX / RADIO FIX
============================================================ */

.checkbox-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;

    width: 100%;
    margin-bottom: 16px;

    cursor: pointer;
    text-align: left;
    line-height: 1.6;
}

/* RADIO + CHECKBOX */

.checkbox-wrap input[type="radio"],
.checkbox-wrap input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;

    accent-color: var(--olive-green) !important;
}

/* LABEL TEXT */

.checkbox-wrap span,
.checkbox-wrap {
    color: var(--text-color);
}

.success-message{
    color: #447039 !important;
}


.booking-form input,
.booking-form select,
.booking-form textarea {
    color: #333 !important;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

.booking-form input::-webkit-input-placeholder,
.booking-form textarea::-webkit-input-placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

.booking-form input::-moz-placeholder,
.booking-form textarea::-moz-placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

.booking-form select:invalid {
    color: #999 !important;
}

.booking-form select option {
    color: #333;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}