/**
 * New Homepage v2 CSS
 * Golf Travel People 2025
 */

/* ══════════════════════════════════════════
   CSS VARIABLES
══════════════════════════════════════════ */
:root {
    --gtp-green1: #008d36;
    --gtp-green2: #6ba439;
    --gtp-yellow: #fec803;
    --gtp-sand: #faf7f2;
    --gtp-teal: #1d9cb5;
    --gtp-dark: #375543;
    --gtp-body: #ffffff;
    --gtp-text: #1a3322;
    --gtp-muted: rgba(26,51,34,0.50);
    --gtp-rule: rgba(26,51,34,0.10);
}

/* ══════════════════════════════════════════
   BASE / TYPOGRAPHY
══════════════════════════════════════════ */
.gtp-homepage-v2 {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: var(--gtp-text);
    overflow-x: hidden;
}

.gtp-homepage-v2 *, 
.gtp-homepage-v2 *::before, 
.gtp-homepage-v2 *::after {
    box-sizing: border-box;
}

/* Section padding */
.gtp-sec {
    padding: 5.5rem 3rem;
}

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

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

/* Section Title */
.gtp-stitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    font-weight: 300;
    line-height: 1.18;
    color: var(--gtp-text);
}

.gtp-stitle em {
    font-style: italic;
    color: var(--gtp-green2);
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.gtp-hero-v2 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Background Image */
.gtp-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    display: block;
    animation: gtpHeroZoom 18s ease-in-out infinite alternate;
}

@keyframes gtpHeroZoom {
    from { transform: scale(1.08) translate(0, 0); }
    to { transform: scale(1.0) translate(-0.8%, 0.4%); }
}

/* Overlay */
.gtp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(5,10,5,0.35) 0%,
            rgba(5,10,5,0.15) 30%,
            rgba(5,10,5,0.35) 60%,
            rgba(5,10,5,0.78) 100%),
        radial-gradient(ellipse at center, transparent 40%, rgba(5,10,5,0.25) 100%);
}

/* Hero Content */
.gtp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 860px;
    animation: gtpHeroFade 1.2s ease forwards;
}

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

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

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

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

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

/* Subtitle */
.gtp-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;
}

/* Hero Buttons */
.gtp-hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

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

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

.gtp-btn-ghost {
    border: 1px solid rgba(255,255,255,0.55);
    color: #ffffff;
    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;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}

.gtp-btn-ghost:hover {
    border-color: #ffffff;
}

/* Hero Stats */
.gtp-hero-stats {
    display: 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);
    max-width: 560px;
    margin: 0 auto;
}

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

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

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

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

/* Destination Switcher */
.gtp-hero-dests {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.5rem;
}

.gtp-hd-btn {
    padding: 0.38rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(237,233,224,0.28);
    color: rgba(237,233,224,0.6);
    background: rgba(10,13,9,0.45);
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Jost', sans-serif;
}

.gtp-hd-btn:hover {
    border-color: var(--gtp-yellow);
    color: var(--gtp-yellow);
}

.gtp-hd-btn.active {
    border-color: var(--gtp-yellow);
    color: var(--gtp-yellow);
    background: rgba(254,200,3,0.15);
}

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

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

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

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

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.gtp-trust-bar {
    background: var(--gtp-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 0.7rem 2rem;
    flex-wrap: wrap;
}

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

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

/* ══════════════════════════════════════════
   WIZARD SECTION
══════════════════════════════════════════ */
.gtp-wizard-sec {
    background: var(--gtp-dark);
    color: #fff;
    padding: 5.5rem 3rem;
}

.gtp-wizard-sec .gtp-eyebrow {
    color: var(--gtp-yellow);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.gtp-wizard-sec .gtp-eyebrow::before {
    background: var(--gtp-yellow);
}

.gtp-wizard-sec .gtp-stitle {
    color: #ffffff;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.gtp-wizard-sec .gtp-stitle em {
    color: var(--gtp-yellow);
}

.gtp-wizard-header {
    text-align: left;
}

.gtp-wizard-wrap {
    max-width: 820px;
    margin: 2.5rem auto 0;
}

.gtp-wizard-box {
    background: #ffffff;
    color: var(--gtp-text);
}

/* Progress Bar */
.gtp-wizard-prog {
    display: flex;
    border-bottom: 1px solid var(--gtp-rule);
}

.gtp-ws {
    flex: 1;
    padding: 0.9rem 0.5rem;
    text-align: center;
    font-size: 0.63rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(26,51,34,0.3);
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.gtp-ws-n {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 0.1rem;
}

.gtp-ws.active {
    color: var(--gtp-yellow);
    border-bottom-color: var(--gtp-yellow);
}

.gtp-ws.done {
    color: var(--gtp-green2);
    border-bottom-color: var(--gtp-green2);
}

/* Wizard Body */
.gtp-wizard-body {
    padding: 2.5rem;
}

.gtp-wp {
    display: none;
}

.gtp-wp.active {
    display: block;
    animation: gtpFadeIn 0.3s ease;
}

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

.gtp-wq {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 0.4rem;
}

.gtp-wh {
    font-size: 0.82rem;
    color: var(--gtp-muted);
    margin-bottom: 1.8rem;
}

/* Destination Grid */
.gtp-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.gtp-do {
    position: relative;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
}

.gtp-do:hover {
    transform: translateY(-2px);
    border-color: var(--gtp-green2);
}

.gtp-do.sel {
    border-color: var(--gtp-yellow);
}

.gtp-do img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6);
    transition: filter 0.2s;
}

.gtp-do:hover img,
.gtp-do.sel img {
    filter: brightness(0.8);
}

.gtp-do-name {
    position: absolute;
    bottom: 0.4rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

.gtp-do-flag {
    position: absolute;
    top: 0.35rem;
    right: 0.4rem;
    font-size: 0.82rem;
}

.gtp-do-chk {
    position: absolute;
    top: 0.3rem;
    left: 0.4rem;
    width: 17px;
    height: 17px;
    background: var(--gtp-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s;
}

.gtp-do.sel .gtp-do-chk {
    opacity: 1;
}

/* Trip Type Grid */
.gtp-trip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.gtp-tp {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--gtp-rule);
    background: none;
    color: var(--gtp-text);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-family: 'Jost', sans-serif;
}

.gtp-tp:hover {
    border-color: var(--gtp-green2);
    background: rgba(107,164,57,0.08);
}

.gtp-tp.sel {
    border-color: var(--gtp-green1);
    background: rgba(0,141,54,0.08);
}

.gtp-tp-ico {
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--gtp-green1);
}

.gtp-tp-lbl {
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.3;
}

.gtp-tp-sub {
    font-size: 0.72rem;
    color: var(--gtp-muted);
}

/* Form Fields */
.gtp-form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.gtp-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.gtp-ff {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.gtp-ff label {
    font-size: 0.67rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gtp-muted);
}

.gtp-ff select,
.gtp-ff input {
    padding: 0.7rem 0.9rem;
    background: #f5f2eb;
    border: 1px solid rgba(26,51,34,0.15);
    color: var(--gtp-text);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    -webkit-appearance: none;
}

.gtp-ff select:focus,
.gtp-ff input:focus {
    border-color: var(--gtp-green2);
}

/* Wizard Footer */
.gtp-wf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gtp-rule);
}

.gtp-btn-back {
    background: none;
    border: none;
    color: var(--gtp-muted);
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s;
}

.gtp-btn-back:hover {
    color: var(--gtp-text);
}

.gtp-btn-wiz {
    background: var(--gtp-yellow);
    color: #fff;
    padding: 0.8rem 1.8rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.gtp-btn-wiz:hover {
    background: var(--gtp-green2);
}

.gtp-wizard-note {
    font-size: 0.73rem;
    color: var(--gtp-muted);
    text-align: center;
    margin-top: 1rem;
}

/* Confirmation */
.gtp-cfm {
    text-align: center;
    padding: 1.5rem 0;
}

.gtp-cfm-ico {
    margin-bottom: 1rem;
}

.gtp-cfm-t {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
}

.gtp-cfm-b {
    font-size: 0.9rem;
    color: var(--gtp-muted);
    line-height: 1.75;
    max-width: 380px;
    margin: 0 auto 1.8rem;
}

.gtp-cfm-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gtp-btn-ol {
    border: 1px solid rgba(26,51,34,0.3);
    color: var(--gtp-text);
    padding: 0.65rem 1.4rem;
    font-size: 0.76rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    background: none;
    transition: all 0.2s;
    display: inline-block;
    font-family: 'Jost', sans-serif;
}

.gtp-btn-ol:hover {
    border-color: var(--gtp-green2);
    color: var(--gtp-green2);
}

/* ══════════════════════════════════════════
   FEATURED SECTION
══════════════════════════════════════════ */
.gtp-featured-sec {
    background: var(--gtp-sand);
}

.gtp-featured-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gtp-all-link {
    font-size: 0.73rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gtp-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(26,51,34,0.3);
    padding-bottom: 0.15rem;
    white-space: nowrap;
    transition: border-color 0.2s;
}

.gtp-all-link:hover {
    color: var(--gtp-green1);
    border-color: var(--gtp-green1);
}

.gtp-exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.gtp-ec {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
}

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

.gtp-ec:hover img {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.gtp-eo {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,20,10,0.88) 0%, rgba(5,20,10,0.55) 35%, rgba(5,20,10,0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.gtp-etag {
    display: inline-block;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--gtp-yellow);
    color: #fff;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.7rem;
    width: fit-content;
}

.gtp-ewhere {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.3rem;
}

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

.gtp-einfo {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.4rem;
}

.gtp-eprice {
    font-size: 0.78rem;
    color: var(--gtp-yellow);
}

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

.gtp-ec:hover .gtp-ebtn {
    opacity: 1;
    transform: translateY(0);
}

.gtp-ebtn:hover {
    background: var(--gtp-yellow);
    border-color: var(--gtp-yellow);
    color: #fff;
}

/* ══════════════════════════════════════════
   DESTINATIONS SECTION
══════════════════════════════════════════ */
.gtp-dest-sec {
    background: #ffffff;
}

.gtp-dest-panels {
    display: flex;
    gap: 3px;
    margin-top: 2.5rem;
    height: 340px;
}

.gtp-dp {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.45s ease;
    min-width: 54px;
    text-decoration: none;
    display: block;
}

.gtp-dp:hover {
    flex: 3.5;
}

.gtp-dp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.55) saturate(0.85);
    transition: filter 0.4s;
}

.gtp-dp:hover img {
    filter: brightness(0.75) saturate(1.05);
}

.gtp-dp-flag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 1.1rem;
    line-height: 1;
    z-index: 2;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}

.gtp-dp-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem 1.2rem;
    background: linear-gradient(to top, rgba(5,12,8,0.97) 0%, rgba(5,12,8,0.75) 50%, transparent 100%);
}

.gtp-dp-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gtp-dp-sub {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s 0.1s, opacity 0.3s;
    opacity: 0;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.gtp-dp:hover .gtp-dp-sub {
    max-height: 30px;
    opacity: 1;
}

/* ══════════════════════════════════════════
   HOLIDAY TYPES SECTION
══════════════════════════════════════════ */
.gtp-htype-sec {
    background: var(--gtp-sand);
}

.gtp-htype-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 2.5rem;
}

.gtp-htc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.8rem;
    background: #ffffff;
    text-decoration: none;
    color: var(--gtp-text);
    border-top: 3px solid transparent;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.gtp-htc:hover {
    border-top-color: var(--gtp-yellow);
    background: #f5f0e8;
    transform: translateY(-2px);
}

.gtp-htc-ico {
    color: var(--gtp-green1);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.gtp-htc-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.35rem;
    line-height: 1.25;
}

.gtp-htc-sub {
    font-size: 0.78rem;
    color: rgba(26,51,34,0.55);
    line-height: 1.5;
}

/* ══════════════════════════════════════════
   WHY US SECTION
══════════════════════════════════════════ */
.gtp-why-sec {
    background: var(--gtp-dark);
    color: #ffffff;
}

.gtp-why-sec .gtp-eyebrow {
    color: var(--gtp-yellow);
}

.gtp-why-sec .gtp-eyebrow::before {
    background: var(--gtp-yellow);
}

.gtp-why-sec .gtp-stitle {
    color: #ffffff;
}

.gtp-why-sec .gtp-stitle em {
    color: var(--gtp-yellow);
}

.gtp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
    border: 1px solid rgba(255,255,255,0.25);
}

.gtp-wc {
    padding: 2.4rem;
    border-right: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    transition: all 0.2s;
}

.gtp-wc:last-child {
    border-right: none;
}

.gtp-wc:hover {
    background: rgba(255,255,255,0.25);
    border-top-color: var(--gtp-yellow);
}

.gtp-wc-bg {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(255,255,255,0.08);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    pointer-events: none;
}

.gtp-wc-ico {
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gtp-wc-t {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.7rem;
    color: #ffffff;
}

.gtp-wc-b {
    font-size: 0.88rem;
    line-height: 1.78;
    color: rgba(255,255,255,0.82);
}

/* ══════════════════════════════════════════
   TESTIMONIAL SECTION
══════════════════════════════════════════ */
.gtp-test-sec {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.gtp-tv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: saturate(0.7) brightness(0.42);
}

.gtp-tv::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, transparent 0%, rgba(10,30,15,0.75) 50%, rgba(5,20,8,0.96) 100%);
    z-index: 1;
}

.gtp-tc {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 3rem 3rem;
    max-width: 820px;
    margin: 0 auto;
    width: 100%;
}

.gtp-qm {
    font-family: 'Cormorant Garamond', serif;
    font-size: 9rem;
    line-height: 0.55;
    color: var(--gtp-yellow);
    opacity: 0.9;
    margin-bottom: 1.8rem;
    display: block;
}

.gtp-qt {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.65rem, 2.8vw, 2.3rem);
    font-weight: 300;
    line-height: 1.45;
    color: #ffffff;
    margin-bottom: 1.8rem;
    letter-spacing: 0.01em;
}

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

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

/* Stats Bar */
.gtp-tstats {
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: var(--gtp-yellow);
    width: 100%;
}

.gtp-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.2);
    transition: background 0.2s;
}

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

.gtp-ts:hover {
    background: #e5b400;
}

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

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

/* ══════════════════════════════════════════
   FEATURED MODAL
══════════════════════════════════════════ */
.gtp-featured-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.gtp-featured-modal.active {
    display: flex;
}

.gtp-featured-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.gtp-featured-modal-content {
    position: relative;
    background: var(--gtp-dark);
    border-radius: 4px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
}

.gtp-fmodal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.gtp-fmodal-close:hover {
    color: #fff;
}

.gtp-fmodal-header {
    margin-bottom: 30px;
}

.gtp-fmodal-title {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 8px;
    padding-right: 40px;
}

.gtp-fmodal-title span {
    color: var(--gtp-yellow);
}

.gtp-fmodal-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0 0 20px;
}

.gtp-fmodal-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gtp-fmodal-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.gtp-fmodal-progress-fill {
    height: 100%;
    background: var(--gtp-yellow);
    width: 25%;
    transition: width 0.4s ease;
}

.gtp-fmodal-step-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    margin: 0;
    white-space: nowrap;
}

/* Modal Steps */
.gtp-fmodal-step {
    display: none;
}

.gtp-fmodal-step.active {
    display: block;
}

.gtp-fmodal-question {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 25px;
}

.gtp-fmodal-step-title {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0 0 25px;
}

.gtp-fmodal-resort-inline,
.gtp-fmodal-country-inline,
.gtp-fmodal-resort-short {
    color: var(--gtp-yellow);
    font-weight: 500;
}

/* Modal Options */
.gtp-fmodal-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gtp-fmodal-option {
    cursor: pointer;
}

.gtp-fmodal-option input {
    display: none;
}

.gtp-fmodal-option-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.gtp-fmodal-option input:checked + .gtp-fmodal-option-inner {
    border-color: var(--gtp-yellow);
    background: rgba(254,200,3,0.1);
}

.gtp-fmodal-option-check {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.gtp-fmodal-option input:checked + .gtp-fmodal-option-inner .gtp-fmodal-option-check {
    border-color: var(--gtp-yellow);
    background: var(--gtp-yellow);
}

.gtp-fmodal-option input:checked + .gtp-fmodal-option-inner .gtp-fmodal-option-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.gtp-fmodal-option-label {
    color: #fff;
    font-size: 0.9rem;
}

/* Modal Form */
.gtp-fmodal-form-group {
    margin-bottom: 20px;
}

.gtp-fmodal-form-group label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gtp-optional {
    opacity: 0.5;
    text-transform: none;
}

.gtp-fmodal-select,
.gtp-fmodal-input {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
    color: #fff;
    font-family: 'Jost', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.gtp-fmodal-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.gtp-fmodal-select:focus,
.gtp-fmodal-input:focus {
    border-color: var(--gtp-yellow);
}

.gtp-fmodal-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.gtp-fmodal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Modal Extras */
.gtp-fmodal-extras {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.gtp-fmodal-extras-title {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    margin: 0 0 15px;
}

.gtp-fmodal-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    margin-bottom: 12px;
}

.gtp-fmodal-checkbox input {
    display: none;
}

.gtp-fmodal-checkbox-box {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.gtp-fmodal-checkbox input:checked + .gtp-fmodal-checkbox-box {
    background: var(--gtp-yellow);
    border-color: var(--gtp-yellow);
}

.gtp-fmodal-checkbox input:checked + .gtp-fmodal-checkbox-box::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.7rem;
}

/* Modal Trust */
.gtp-fmodal-trust {
    margin-top: 25px;
    padding: 20px;
    background: rgba(254,200,3,0.1);
    border-radius: 4px;
    border-left: 3px solid var(--gtp-yellow);
}

.gtp-fmodal-trust p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    line-height: 1.6;
}

.gtp-fmodal-trust strong {
    color: #fff;
}

/* Modal Confirmation */
.gtp-fmodal-confirmation {
    text-align: center;
    padding: 20px 0;
}

.gtp-fmodal-confirm-icon {
    width: 60px;
    height: 60px;
    background: var(--gtp-green1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto 20px;
}

.gtp-fmodal-confirm-title {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin: 0 0 10px;
}

.gtp-fmodal-confirm-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0 0 25px;
}

.gtp-fmodal-confirm-details {
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 20px;
}

.gtp-fmodal-confirm-details p {
    color: #fff;
    font-size: 0.85rem;
    margin: 0 0 10px;
}

.gtp-fmodal-confirm-details p:last-child {
    margin-bottom: 0;
}

/* Modal Navigation */
.gtp-fmodal-nav {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.gtp-fmodal-btn-back,
.gtp-fmodal-btn-next,
.gtp-fmodal-btn-submit {
    padding: 0.75rem 1.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
}

.gtp-fmodal-btn-back {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.gtp-fmodal-btn-back:hover {
    background: rgba(255,255,255,0.1);
}

.gtp-fmodal-btn-next,
.gtp-fmodal-btn-submit {
    background: var(--gtp-yellow);
    border: none;
    color: var(--gtp-dark);
    margin-left: auto;
}

.gtp-fmodal-btn-next:hover,
.gtp-fmodal-btn-submit:hover {
    background: #e5b400;
}

.gtp-fmodal-btn-submit {
    display: none;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
    .gtp-sec {
        padding: 4rem 1.5rem;
    }
    
    .gtp-hero-h1 {
        font-size: clamp(2.6rem, 8vw, 4rem);
    }
    
    .gtp-hero-stats {
        max-width: 400px;
    }
    
    .gtp-exp-grid {
        grid-template-columns: 1fr;
    }
    
    .gtp-ec img {
        height: 260px;
    }
    
    .gtp-ec .gtp-ebtn {
        opacity: 1;
        transform: none;
    }
    
    .gtp-dest-panels {
        height: 240px;
    }
    
    .gtp-htype-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gtp-why-grid {
        grid-template-columns: 1fr;
    }
    
    .gtp-wc {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .gtp-wc:last-child {
        border-bottom: none;
    }
    
    .gtp-dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gtp-form-row-3 {
        grid-template-columns: 1fr 1fr;
    }
    
    .gtp-trip-grid {
        grid-template-columns: 1fr;
    }
    
    .gtp-wizard-body {
        padding: 1.5rem;
    }
    
    .gtp-tc {
        padding: 3rem 2rem;
    }
}

@media (max-width: 600px) {
    .gtp-hero-dests {
        display: none;
    }
    
    .gtp-scroll-cue {
        display: none;
    }
    
    .gtp-trust-bar {
        gap: 0.8rem;
    }
    
    .gtp-ec img {
        height: 220px;
    }
    
    .gtp-ename {
        font-size: 1.1rem;
        white-space: normal;
    }
    
    .gtp-dest-panels {
        height: auto;
        flex-direction: column;
        gap: 2px;
    }
    
    .gtp-dp {
        flex: none;
        height: 120px;
        min-width: unset;
    }
    
    .gtp-dp:hover {
        flex: none;
    }
    
    .gtp-dp-name {
        white-space: normal;
        overflow: visible;
    }
    
    .gtp-dp-sub {
        max-height: none;
        opacity: 1;
    }
    
    .gtp-htype-grid {
        grid-template-columns: 1fr;
    }
    
    .gtp-htc {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.4rem;
    }
    
    .gtp-htc-ico {
        margin-bottom: 0;
        margin-top: 0.1rem;
    }
    
    .gtp-htc-label {
        font-size: 1.05rem;
        white-space: normal;
    }
    
    .gtp-dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gtp-form-row-3,
    .gtp-form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .gtp-tp .gtp-tp-lbl {
        white-space: normal;
        word-break: break-word;
    }
    
    .gtp-tp .gtp-tp-sub {
        white-space: normal;
    }
    
    .gtp-tp {
        align-items: flex-start;
    }
    
    .gtp-fmodal-form-row {
        grid-template-columns: 1fr;
    }
    
    .gtp-fmodal-nav {
        flex-direction: column;
    }
    
    .gtp-fmodal-btn-back,
    .gtp-fmodal-btn-next,
    .gtp-fmodal-btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .gtp-fmodal-btn-next,
    .gtp-fmodal-btn-submit {
        margin-left: 0;
    }
}

/* Select padding override */
.gtp-ff select,
.gtp-fmodal-select {
    padding: .375rem .75rem !important;
}

.gtp-ff select option, .gtp-fmodal-select option {
    color: black !important;
}

/* Hero content overlay box */
.gtp-hero-content {
    background: rgba(10, 20, 15, 0.55);
    padding: 3rem 4rem;
    backdrop-filter: blur(4px);
}

@media screen and (max-width: 767px) {
.gtp-tstats {
    flex-wrap: wrap !important;
}
.gtp-ts {
    min-width: 50% !important;
}
}