/* ─────────────────────────────────────────
   REGION TEMPLATE STYLES
   Golf Travel People - Region Pages (e.g., Costa del Sol)
───────────────────────────────────────── */

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
    --reg-green: #008d36;
    --reg-mid: #6ba439;
    --reg-yellow: #fec803;
    --reg-forest: #375543;
    --reg-ink: #1a3322;
    --reg-muted: rgba(26,51,34,0.50);
    --reg-rule: rgba(26,51,34,0.10);
    --reg-sand: #faf7f2;
    --reg-border: #e4dfd6;
    --reg-r: 6px;
    --reg-rlg: 12px;
    --reg-max: 1400px;
}

/* ─────────────────────────────────────────
   BASE
───────────────────────────────────────── */
.reg-page {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: var(--reg-ink);
    line-height: 1.6;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.reg-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 100px;
}

.reg-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    animation: regHzoom 20s ease-in-out infinite alternate;
}

@keyframes regHzoom {
    from { transform: scale(1.07); }
    to { transform: scale(1.0) translate(-0.6%, 0.3%); }
}

.reg-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(5,15,8,.40) 0%,
            rgba(5,15,8,.15) 28%,
            rgba(5,15,8,.42) 58%,
            rgba(5,15,8,.84) 100%),
        radial-gradient(ellipse at center, transparent 40%, rgba(5,15,8,.28) 100%);
}

.reg-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 860px;
    animation: regHfade 1.2s ease forwards;
}

@keyframes regHfade {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.reg-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--reg-yellow);
    margin-bottom: 1.5rem;
}

.reg-hero-eyebrow::before,
.reg-hero-eyebrow::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--reg-yellow);
}

.reg-hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 7vw, 6.2rem);
    font-weight: 300;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 1.4rem;
    letter-spacing: -0.01em;
}

.reg-hero-h1 em {
    font-style: italic;
    color: var(--reg-yellow);
}

.reg-hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.75;
    color: rgba(237,233,224,0.78);
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.reg-hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.reg-btn-primary {
    background: var(--reg-forest);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: inline-block;
    text-decoration: none;
}

.reg-btn-primary:hover {
    background: var(--reg-green);
    transform: translateY(-2px);
}

.reg-btn-ghost {
    border: 1px solid rgba(255,255,255,.55);
    color: #fff;
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    cursor: pointer;
    display: inline-block;
    transition: border-color .2s, background .2s;
    text-decoration: none;
}

.reg-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,.06);
}

/* Hero Stats Bar */
.reg-hero-stats {
    position: relative;
    z-index: 2;
    display: inline-flex;
    gap: 0;
    justify-content: center;
    border: 1px solid rgba(237,233,224,0.15);
    background: rgba(10,13,9,0.55);
    backdrop-filter: blur(6px);
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.reg-h-stat {
    padding: 1rem 1.8rem;
    border-right: 1px solid rgba(237,233,224,0.1);
    text-align: center;
}

.reg-h-stat:last-child {
    border-right: none;
}

.reg-h-stat strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--reg-yellow);
    line-height: 1.1;
}

.reg-h-stat span {
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    color: rgba(237,233,224,0.65);
}

/* Hero Breadcrumb */
.reg-hero-breadcrumb {
    position: absolute;
    bottom: 1.5rem;
    left: 3rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(237,233,224,0.45);
}

.reg-hero-breadcrumb a {
    color: rgba(237,233,224,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.reg-hero-breadcrumb a:hover {
    color: var(--reg-yellow);
}

.reg-hero-breadcrumb span {
    color: rgba(237,233,224,0.25);
}

.reg-hero-breadcrumb strong {
    color: rgba(237,233,224,0.7);
    font-weight: 400;
}

/* Scroll Cue */
.reg-scroll-cue {
    position: absolute;
    bottom: 1.5rem;
    right: 3rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
}

.reg-scroll-cue span {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(237,233,224,0.35);
}

.reg-scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, transparent, var(--reg-forest));
    animation: regSp 2s ease-in-out infinite;
}

@keyframes regSp {
    0%,100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ─────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────── */
.reg-trust-bar {
    background: var(--reg-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    padding: 0.72rem 2rem;
    flex-wrap: wrap;
}

.reg-trust-bar span {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--reg-forest);
}

.reg-trust-bar span::before {
    content: '◆  ';
    font-size: 0.38rem;
    opacity: 0.5;
}

/* ─────────────────────────────────────────
   GETTING THERE STRIP
───────────────────────────────────────── */
.reg-getting-there {
    background: var(--reg-forest);
    padding: 1.6rem 3rem;
    text-align: center;
    color: #ffffff;
    font-size: 0.85rem;
    width: 100%;
}

.reg-getting-there strong {
    color: var(--reg-yellow);
    font-weight: 500;
}

/* ─────────────────────────────────────────
   SPLIT LAYOUT
───────────────────────────────────────── */
.reg-split-wrap {
    display: flex;
    gap: 3rem;
    padding: 4.5rem 3rem;
    background: #ffffff;
    max-width: var(--reg-max);
    margin: 0 auto;
    overflow: visible;
}

.reg-split-main {
    flex: 7;
}

.reg-split-side {
    flex: 3;
    position: sticky;
    top: 110px;
    align-self: flex-start;
    min-width: 280px;
    max-width: 320px;
}

/* ─────────────────────────────────────────
   SHARED SECTION CHROME
───────────────────────────────────────── */
.reg-sec {
    padding: 3rem 0;
}

.reg-sec-full {
    padding: 5.5rem 3rem;
    width: 100%;
}

.reg-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--reg-yellow);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reg-eyebrow::before {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: var(--reg-yellow);
}

.reg-eyebrow-green {
    color: var(--reg-green);
}

.reg-eyebrow-green::before {
    background: var(--reg-green);
}

.reg-stitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    font-weight: 300;
    line-height: 1.18;
    color: var(--reg-ink);
}

.reg-stitle em {
    font-style: italic;
    color: var(--reg-mid);
}

.reg-stitle-white {
    color: #ffffff;
}

.reg-stitle-white em {
    color: var(--reg-yellow);
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reg-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.reg-reveal.vis {
    opacity: 1;
    transform: translateY(0);
}

.reg-reveal-2 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease .14s, transform .6s ease .14s;
}

.reg-reveal-2.vis {
    opacity: 1;
    transform: translateY(0);
}

.reg-reveal-3 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease .26s, transform .6s ease .26s;
}

.reg-reveal-3.vis {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────────────────
   SUB-AREA PANELS (Expand on Hover)
───────────────────────────────────────── */
.reg-subarea-panels {
    display: flex;
    gap: 3px;
    margin-top: 2rem;
    height: 420px;
    overflow: hidden;
}

.reg-sap {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    cursor: default;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reg-sap.reg-sap-active,
.reg-sap:hover {
    flex: 3.5;
}

.reg-sap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reg-sap:hover img {
    transform: scale(1.05);
}

.reg-sap-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--reg-forest) 0%, #1a3328 100%);
}

.reg-sap-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5,15,8,0.10) 0%,
        rgba(5,15,8,0.25) 50%,
        rgba(5,15,8,0.75) 100%
    );
    z-index: 1;
}

/* Vertical rotated label — visible when collapsed */
.reg-sap-flag {
    position: absolute;
    top: 1.2rem;
    left: 0.8rem;
    z-index: 3;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.reg-sap.reg-sap-active .reg-sap-flag,
.reg-sap:hover .reg-sap-flag {
    opacity: 0;
}

/* Horizontal name — visible when expanded */
.reg-sap-name {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 3;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
    white-space: nowrap;
}

.reg-sap.reg-sap-active .reg-sap-name,
.reg-sap:hover .reg-sap-name {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────────────────
   HOTELS GRID (2-column for region)
───────────────────────────────────────── */
.reg-hotel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-top: 2rem;
}

.reg-hc {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
}

.reg-hc.hidden {
    display: none;
}

.reg-hc img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: brightness(0.68);
    transition: transform 0.55s ease, filter 0.3s;
}

.reg-hc:hover img {
    transform: scale(1.05);
    filter: brightness(0.84);
}

.reg-ho {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,20,10,0.92) 0%, rgba(5,20,10,0.55) 38%, rgba(5,20,10,0.1) 62%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.reg-htag {
    display: inline-block;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--reg-yellow);
    color: var(--reg-ink);
    font-weight: 500;
    padding: 0.2rem 0.58rem;
    margin-bottom: 0.6rem;
    width: fit-content;
}

.reg-hstars {
    font-size: 0.68rem;
    color: var(--reg-yellow);
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.reg-hname {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    color: #ffffff;
}

.reg-hmeta {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.35rem;
}

.reg-hfeats {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.55);
}

.reg-hbtn {
    display: inline-block;
    margin-top: 0.85rem;
    border: 1px solid rgba(237,233,224,0.35);
    color: #ffffff;
    background: transparent;
    padding: 0.42rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s;
    width: fit-content;
}

.reg-hc:hover .reg-hbtn {
    opacity: 1;
    transform: translateY(0);
}

.reg-hbtn:hover {
    background: var(--reg-yellow);
    border-color: var(--reg-yellow);
    color: var(--reg-ink);
}

/* ─────────────────────────────────────────
   COURSES GRID — Image Overlay Cards
───────────────────────────────────────── */
.reg-courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-top: 2rem;
}

.reg-cc {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
}

.reg-cc img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.68);
    transition: transform 0.55s ease, filter 0.3s;
}

.reg-cc:hover img {
    transform: scale(1.05);
    filter: brightness(0.84);
}

.reg-cc-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--reg-forest) 0%, #1a3328 100%);
}

.reg-co {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,20,10,0.92) 0%, rgba(5,20,10,0.55) 38%, rgba(5,20,10,0.1) 62%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.reg-ctag {
    display: inline-block;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--reg-yellow);
    color: var(--reg-ink);
    font-weight: 500;
    padding: 0.2rem 0.58rem;
    margin-bottom: 0.6rem;
    width: fit-content;
}

.reg-cname {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    color: #ffffff;
}

.reg-cdesc {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.45rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reg-ctags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
}

.reg-ctag-chip {
    font-size: 0.6rem;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
    letter-spacing: 0.03em;
}

.reg-cbtn {
    display: inline-block;
    margin-top: 0.6rem;
    border: 1px solid rgba(237,233,224,0.35);
    color: #ffffff;
    background: transparent;
    padding: 0.42rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s;
    width: fit-content;
}

.reg-cc:hover .reg-cbtn {
    opacity: 1;
    transform: translateY(0);
}

.reg-cbtn:hover {
    background: var(--reg-yellow);
    border-color: var(--reg-yellow);
    color: var(--reg-ink);
}

/* ─────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────── */
.reg-faq-container {
    margin-top: 2rem;
    max-width: 100%;
}

.reg-faq-item {
    border: 1px solid var(--reg-rule);
    background: #ffffff;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.reg-faq-item:hover {
    border-color: var(--reg-mid);
    background: var(--reg-sand);
}

.reg-faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--reg-ink);
    user-select: none;
}

.reg-faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--reg-yellow);
    transition: transform 0.2s, color 0.2s;
}

.reg-faq-item.open .reg-faq-question::after {
    transform: rotate(45deg);
}

.reg-faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--reg-muted);
    font-size: 0.85rem;
    line-height: 1.75;
}

.reg-faq-item.open .reg-faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.2rem 1.5rem;
}

/* ─────────────────────────────────────────
   TRIP TYPES (Replaces Sample Itinerary)
───────────────────────────────────────── */
.reg-trip-types-sec {
    background: var(--reg-sand);
    padding: 3rem;
    margin-top: 2rem;
}

.reg-trip-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.reg-trip-card {
    background: #ffffff;
    border-left: 3px solid var(--reg-yellow);
    padding: 1.8rem 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.reg-trip-card:hover {
    box-shadow: 0 4px 20px rgba(26,51,34,0.08);
    transform: translateY(-2px);
}

.reg-trip-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--reg-muted);
    margin-bottom: 0.6rem;
    display: block;
}

.reg-trip-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    color: var(--reg-ink);
    margin-bottom: 0.6rem;
}

.reg-trip-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--reg-muted);
    margin-bottom: 1rem;
}

.reg-trip-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}

.reg-trip-list li {
    font-size: 0.8rem;
    color: var(--reg-muted);
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.reg-trip-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--reg-yellow);
    font-weight: bold;
}

.reg-trip-cta {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--reg-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.reg-trip-cta:hover {
    color: var(--reg-mid);
}

/* ─────────────────────────────────────────
   SIDEBAR
───────────────────────────────────────── */
.reg-sidebar-cta {
    background: var(--reg-forest);
    color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.reg-sidebar-cta .reg-btn-primary {
    width: 100%;
    margin-bottom: 0;
}

.reg-sidebar-phone {
    text-align: center;
    font-size: 0.9rem;
    color: var(--reg-ink);
    margin-bottom: 2rem;
}

.reg-sidebar-phone p {
    margin-bottom: 0.3rem;
}

.reg-sidebar-phone a {
    text-decoration: none;
    color: var(--reg-green);
    font-weight: 500;
}

.reg-mini-form {
    background: var(--reg-sand);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.reg-mini-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--reg-ink);
}

.reg-mf-input {
    width: 100%;
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.8rem;
    border: 1px solid var(--reg-rule);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: var(--reg-ink);
}

.reg-mf-input::placeholder {
    color: var(--reg-muted);
}

.reg-mf-submit {
    width: 100%;
    padding: 0.6rem;
    background: var(--reg-yellow);
    color: var(--reg-ink);
    border: none;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background 0.2s;
}

.reg-mf-submit:hover {
    background: #f5c000;
}

.reg-quick-facts {
    border-left: 3px solid var(--reg-yellow);
    padding: 1.5rem;
    background: var(--reg-sand);
    font-size: 0.85rem;
}

.reg-qf-item {
    margin-bottom: 1rem;
}

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

.reg-qf-label {
    color: var(--reg-yellow);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.reg-qf-value {
    color: var(--reg-ink);
    margin-top: 0.2rem;
}

/* ─────────────────────────────────────────
   EXPERT QUOTE (Full Width)
───────────────────────────────────────── */
.reg-expert-sec {
    background: var(--reg-sand);
    padding: 5.5rem 3rem;
    width: 100%;
}

.reg-expert-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--reg-max);
    margin: 0 auto;
}

.reg-expert-img {
    position: relative;
    overflow: hidden;
}

.reg-expert-img img {
    width: 100%;
    aspect-ratio: 6/3;
    object-fit: cover;
    display: block;
    filter: brightness(.82) saturate(.92);
}

.reg-expert-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(55,85,67,.96) 0%, transparent 100%);
    padding: 2.5rem 1.5rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
}

.reg-expert-caption strong {
    display: block;
    color: #fff;
    font-weight: 400;
    font-size: 0.82rem;
    margin-bottom: 0.2rem;
}

.reg-expert-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--reg-ink);
    margin-bottom: 1.5rem;
}

.reg-expert-attrib {
    font-size: 0.73rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--reg-yellow);
}

.reg-expert-attrib span {
    color: var(--reg-muted);
    margin-left: .5rem;
    font-weight: 300;
}

/* ─────────────────────────────────────────
   TESTIMONIALS (Full Width)
───────────────────────────────────────── */
.reg-test-sec {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.reg-tv {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.reg-tv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    filter: saturate(.6) brightness(.38);
}

.reg-tv::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, rgba(5,20,8,.78) 50%, rgba(5,20,8,.97) 100%);
    z-index: 1;
}

.reg-tc-wrap {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem 2rem;
}

.reg-tc-slide {
    display: none;
    max-width: 820px;
    text-align: center;
}

.reg-tc-slide.on {
    display: block;
    animation: regFi .45s ease;
}

@keyframes regFi {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.reg-qt {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.5rem, 2.6vw, 2.15rem);
    font-weight: 300;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 1.6rem;
    letter-spacing: 0.01em;
}

.reg-qa {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--reg-yellow);
    font-weight: 500;
}

.reg-qa span {
    color: rgba(255,255,255,0.45);
    margin-left: 0.6rem;
    font-weight: 300;
}

.reg-tc-nav {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding-bottom: 2rem;
}

.reg-tc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.reg-tc-dot.on {
    background: var(--reg-yellow);
    transform: scale(1.3);
}

.reg-tstats {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: var(--reg-yellow);
    width: 100%;
}

.reg-ts {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.22);
    transition: background 0.2s;
}

.reg-ts:last-child {
    border-right: none;
}

.reg-ts:hover {
    background: #f5c000;
}

.reg-ts strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--reg-ink);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.reg-ts span {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(26,51,34,0.7);
}

/* ─────────────────────────────────────────
   HOW IT WORKS (Full Width)
───────────────────────────────────────── */
.reg-how-sec {
    background: var(--reg-forest);
    color: #ffffff;
    padding: 5.5rem 3rem;
    width: 100%;
}

.reg-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
    border: 1px solid rgba(255,255,255,0.22);
    max-width: var(--reg-max);
    margin-left: auto;
    margin-right: auto;
}

.reg-hsc {
    padding: 2.4rem;
    border-right: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}

.reg-hsc:last-child {
    border-right: none;
}

.reg-hsc:hover {
    background: rgba(255,255,255,0.18);
}

.reg-hsc-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(254,200,3,0.55);
    margin-bottom: 1rem;
    display: block;
}

.reg-hsc-t {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.65rem;
    color: #ffffff;
}

.reg-hsc-b {
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
}

/* ─────────────────────────────────────────
   CTA (Full Width)
───────────────────────────────────────── */
.reg-cta-sec {
    background: #ffffff;
    padding: 5.5rem 3rem;
    text-align: center;
    border-top: 1px solid var(--reg-rule);
    width: 100%;
}

.reg-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--reg-yellow);
    margin-bottom: 1.5rem;
}

.reg-cta-eyebrow::before,
.reg-cta-eyebrow::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--reg-yellow);
}

.reg-cta-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--reg-ink);
    margin-bottom: 1rem;
}

.reg-cta-h em {
    font-style: italic;
    color: var(--reg-mid);
}

.reg-cta-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--reg-muted);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.reg-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.reg-btn-cta-gold {
    background: var(--reg-yellow);
    color: var(--reg-ink);
    padding: 0.9rem 2.4rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.reg-btn-cta-gold:hover {
    background: #f5c000;
    transform: translateY(-2px);
}

.reg-btn-cta-outline {
    border: 1px solid rgba(26,51,34,0.3);
    color: var(--reg-ink);
    background: transparent;
    padding: 0.9rem 2.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.reg-btn-cta-outline:hover {
    border-color: var(--reg-ink);
}

.reg-cta-note {
    font-size: 0.75rem;
    color: var(--reg-muted);
    margin-top: 1.2rem;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1000px) {
    .reg-split-wrap {
        flex-direction: column;
        gap: 2rem;
    }
    
    .reg-split-side {
        position: relative;
        top: auto;
        max-width: 100%;
        min-width: 100% !important;
    }
    
    .reg-hotel-grid,
    .reg-courses-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .reg-how-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .reg-hsc {
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    
    .reg-expert-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .reg-expert-img img {
        aspect-ratio: 16/9;
    }
    
    .reg-trip-types-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .reg-hero-stats {
        margin: 2rem 1rem 0;
    }
    
    .reg-h-stat {
        flex: 1 1 50%;
        padding: 0.8rem;
        border-bottom: 1px solid rgba(237,233,224,0.1);
    }
    
    .reg-h-stat:nth-child(2) {
        border-right: none;
    }
    
    .reg-h-stat:nth-child(3),
    .reg-h-stat:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 700px) {
    .reg-sec-full {
        padding: 3.8rem 1.5rem;
    }
    
    .reg-split-wrap {
        padding: 3rem 1.5rem;
    }
    
    .reg-hotel-grid,
    .reg-courses-grid,
    .reg-how-grid {
        grid-template-columns: 1fr;
    }
    
    .reg-trip-types-grid {
        grid-template-columns: 1fr;
    }
    
    .reg-hero-breadcrumb,
    .reg-scroll-cue {
        display: none;
    }
    
    .reg-trust-bar {
        gap: 0.8rem;
    }
    
    .reg-area-tabs,
    .reg-subarea-panels {
        flex-direction: column;
        height: auto;
    }
    
    .reg-sap {
        flex: none !important;
        height: 120px;
    }
    
    .reg-sap-flag {
        writing-mode: horizontal-tb;
        top: auto;
        left: 1.2rem;
        bottom: 1rem;
        font-size: 0.9rem;
        letter-spacing: 0.08em;
        opacity: 1;
    }
    
    .reg-sap:hover .reg-sap-flag,
    .reg-sap.reg-sap-active .reg-sap-flag {
        opacity: 1;
    }
    
    .reg-sap-name {
        display: none;
    }
    
    .reg-getting-there {
        padding: 1.2rem 1.5rem;
    }
    
    .reg-trip-types-sec {
        padding: 2rem 1.5rem;
    }
    
    .reg-cbtn {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ─────────────────────────────────────────
   HOTEL ENQUIRY MODAL
───────────────────────────────────────── */
.reg-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,20,10,0.7);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.reg-modal-overlay.open {
    display: flex;
}

.reg-modal {
    background: #ffffff;
    max-width: 480px;
    width: 100%;
    border-radius: 6px;
    padding: 2.5rem 2rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.reg-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.reg-modal-close:hover {
    color: #333;
}

.reg-modal-step {
    display: none;
    text-align: center;
}

.reg-modal-step.active {
    display: block;
}

.reg-modal-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.reg-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--reg-ink);
    margin-bottom: 0.6rem;
}

.reg-modal-title span {
    font-style: italic;
    color: var(--reg-forest);
}

.reg-modal-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.reg-modal-form {
    text-align: left;
    margin-bottom: 1.5rem;
}

.reg-modal-field {
    margin-bottom: 1rem;
}

.reg-modal-field label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.35rem;
    font-family: 'Jost', sans-serif;
}

.reg-modal-field select,
.reg-modal-field input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Jost', sans-serif;
    background: #fafaf8;
    transition: border-color 0.2s;
}

.reg-modal-field select:focus,
.reg-modal-field input:focus {
    outline: none;
    border-color: var(--reg-forest);
}

.reg-modal-btn-primary {
    display: block;
    width: 100%;
    background: var(--reg-forest);
    color: #ffffff;
    border: none;
    padding: 0.85rem 1.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
    margin-bottom: 0.6rem;
}

.reg-modal-btn-primary:hover {
    background: var(--reg-green);
}

.reg-modal-btn-secondary {
    display: block;
    width: 100%;
    background: none;
    border: 1px solid #ddd;
    color: #888;
    padding: 0.7rem 1.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.reg-modal-btn-secondary:hover {
    border-color: #aaa;
    color: #555;
}

.reg-modal-btn-back {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: #999;
    padding: 0.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    cursor: pointer;
    margin-top: 0.3rem;
}

.reg-modal-btn-back:hover {
    color: #555;
}

.reg-modal-trust {
    font-size: 0.72rem;
    color: #aaa;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .reg-modal {
        padding: 2rem 1.5rem;
        max-width: 100%;
        border-radius: 10px 10px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 85vh;
    }
    .reg-modal-overlay.open {
        align-items: flex-end;
    }
}