/* ═══════════════════════════════════════════════════
   GoCeylon — style.css
   Modern editorial luxury travel aesthetic
   Fonts: Cormorant Garamond (display) + Outfit (body)
   Colors: Deep forest green, warm gold, off-white
═══════════════════════════════════════════════════ */

/* ── RESET ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #f9f6f1;
    color: #1e1e1e;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── CSS VARIABLES ── */
:root {
    --green: #1a3c34;
    --green-mid: #255a4e;
    --green-lt: #2e7062;
    --gold: #c9972a;
    --gold-lt: #e8b94a;
    --cream: #f9f6f1;
    --warm: #f0ebe2;
    --border: #e2dbd0;
    --text: #1e1e1e;
    --muted: #6e6860;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.07);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --max-w: 1200px;
}

/* ── CONTAINER ── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 48px;
}

/* ── SHARED SECTION STYLES ── */
.section {
    padding: 96px 0;
}

.sh {
    text-align: center;
    margin-bottom: 56px;
}

.sh h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--green);
    line-height: 1.1;
    margin-bottom: 12px;
}

.sh-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.label-lt {
    color: var(--gold-lt);
}

.gem {
    color: var(--gold);
}

/* ── BUTTONS ── */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--green);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(201, 151, 42, 0.4);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 12px 26px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 500;
    font-size: 0.88rem;
    border-radius: 50px;
    transition: background 0.2s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border: 2px solid var(--green);
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.25s;
}

.btn-outline:hover {
    background: var(--green);
    color: #fff;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--green);
    color: #fff;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.btn-card:hover {
    background: var(--gold);
    color: var(--green);
    transform: translateY(-2px);
}

.ca {
    text-align: center;
    margin-top: 48px;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
    padding: 20px 0;
}

.nav-scrolled {
    background: rgba(26, 60, 52, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    padding: 14px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo strong {
    font-weight: 700;
    color: var(--gold-lt);
}

.logo-dark {
    color: rgba(255, 255, 255, 0.9);
}

.logo-gem {
    color: var(--gold-lt);
    font-size: 1rem;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-lt);
    transition: width 0.25s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://cdn.atrsafari.com/cdn/05explore/locations-and-lodges/asia/srilanka/sigiriya/0/stills/00page/01SIGI-IM0001-sigiriya-1920.jpg') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 12s ease infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.12);
    }
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
            rgba(10, 30, 25, 0.88) 0%,
            rgba(10, 30, 25, 0.55) 55%,
            rgba(0, 0, 0, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
    animation: fadeUp 1s ease both;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 24px;
    font-style: italic;
}

.hero-gold {
    color: var(--gold-lt);
    font-style: normal;
}

.hero-title em {
    color: var(--gold-lt);
    font-style: normal;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 48px;
    font-weight: 300;
}

/* Search Card */
.search-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    max-width: 760px;
    overflow: hidden;
}

.sf {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 24px;
    border-right: 1px solid var(--border);
    min-width: 0;
}

.sf label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sf select,
.sf input {
    border: none;
    outline: none;
    font-size: 0.92rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: transparent;
    font-weight: 500;
}

.sf-sep {
    width: 0;
}

.search-btn {
    padding: 0 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--green);
    cursor: pointer;
    white-space: nowrap;
    transition: filter 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    filter: brightness(1.08);
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
}

.stat-item {
    text-align: left;
}

.stat-item strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-lt);
    line-height: 1;
}

.stat-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero scroll indicator */
.hero-scroll-ind {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-ind span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-ind span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold-lt);
    border-radius: 2px;
    animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 22px;
        opacity: 0;
    }
}

/* ── DISCOVER WEEKLY ── */
.cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dcard {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.35s, box-shadow 0.35s;
}

.dcard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.dcard-img {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cbadge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--green);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cfav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    color: #bbb;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.cfav:hover {
    color: #e74c3c;
}

.dcard-body {
    padding: 20px;
}

.dcard-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ccat {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--green-lt);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cstars {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
}

.cstars i {
    margin-right: 3px;
}

.dcard-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
    line-height: 1.2;
}

.dcard-body p {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 14px;
}

.cdetails {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.cdetails span {
    font-size: 0.76rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.cdetails i {
    color: var(--gold);
    font-size: 0.7rem;
}

.cfoot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.cprice {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
}

.cprice small {
    font-size: 0.7rem;
    color: var(--muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

/* ── WHY US ── */
.why-section {
    background: var(--green);
    padding: 96px 0;
    overflow: hidden;
}

.why-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-visual {
    position: relative;
}

.why-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.why-img-inset {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--green);
}

.why-img-inset img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.why-float {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--green);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: 0 8px 28px rgba(201, 151, 42, 0.5);
}

.why-float i {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.why-float strong {
    font-size: 1.2rem;
    line-height: 1;
}

.why-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.why-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 36px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    transition: background 0.2s;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.wi-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.why-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-lt);
    margin-bottom: 4px;
}

.why-item p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

/* ── PACKAGES ── */
.pkg-section {
    background: var(--warm);
}

.pkg-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pcard {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.35s, box-shadow 0.35s;
}

.pcard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pcard-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ptag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--green);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pcard-body {
    padding: 18px 20px;
}

.ploc {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pcard-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 12px;
    line-height: 1.2;
}

.pmeta {
    display: flex;
    gap: 12px;
    font-size: 0.76rem;
    color: var(--muted);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pmeta i {
    color: var(--gold);
    margin-right: 4px;
}

.pfoot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.pprice {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

/* ── OFFER SECTION ── */
.offer-section {
    background: var(--cream);
    padding: 96px 0;
}

.offer-wrap {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.offer-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    color: var(--green);
    line-height: 1.1;
    margin-bottom: 16px;
}

.offer-left p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
}

.offer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ofeat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ofeat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.ofeat-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--green);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.ofeat-icon--a {
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--green);
}

.ofeat h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 4px;
}

.ofeat p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.45;
}

/* ── DESTINATIONS ── */
.dest-section {
    background: #fff;
}

.mosaic {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 14px;
    border-radius: var(--radius);
    overflow: hidden;
}

.m-large {
    grid-row: 1 / 3;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.m-small {
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0;
}

.m-large,
.m-small {
    border-radius: var(--radius-sm);
}

.m-large:hover .m-overlay,
.m-small:hover .m-overlay {
    background: rgba(10, 30, 25, 0.65);
}

.m-large img,
.m-small img {
    transition: transform 0.5s;
}

.m-large:hover,
.m-small:hover {}

.m-large::after,
.m-small::after {
    content: '';
    position: absolute;
    inset: 0;
    transition: background 0.3s;
}

.m-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 30, 25, 0.78) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 22px;
    transition: background 0.3s;
}

.m-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.m-overlay p {
    font-size: 0.8rem;
    color: var(--gold-lt);
    font-weight: 600;
    margin-top: 4px;
}

/* ── BLOGS ── */
.blog-section {
    background: var(--warm);
}

.blog-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.bcard {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.35s, box-shadow 0.35s;
}

.bcard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.bcard-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.btag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--green);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bcard-body {
    padding: 24px;
}

.bdate {
    font-size: 0.76rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.bcard-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 10px;
    line-height: 1.25;
}

.bcard-body p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.blink {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.blink:hover {
    gap: 10px;
}

/* ── TESTIMONIALS ── */
.testi-section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

.testi-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1502082553048-f009c37129b9?w=1600') center/cover no-repeat;
}

.testi-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 35, 30, 0.9);
}

.testi-wrap {
    position: relative;
    z-index: 2;
}

.testi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}

.tcard {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform 0.3s;
}

.tcard:hover {
    transform: translateY(-6px);
}

.tcard--feat {
    background: rgba(201, 151, 42, 0.18);
    border-color: var(--gold);
    transform: translateY(-14px);
}

.tcard--feat:hover {
    transform: translateY(-20px);
}

.tquote {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 16px;
    opacity: 0.7;
}

.tcard p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}

.tperson {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tperson img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.tperson div {
    flex: 1;
}

.tperson strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}

.tperson span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.tstars {
    color: var(--gold);
    font-size: 0.78rem;
    margin-left: auto;
}

/* ── NEWSLETTER ── */
.nl-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
    padding: 72px 0;
}

.nl-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.nl-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
    line-height: 1.1;
}

.nl-text p {
    font-size: 0.95rem;
    color: rgba(26, 60, 52, 0.75);
}

.nl-form {
    display: flex;
    gap: 0;
    min-width: 420px;
}

.nl-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
}

.nl-form .btn-gold {
    border-radius: 0 50px 50px 0;
    background: var(--green);
    color: #fff;
}

.nl-form .btn-gold:hover {
    background: #122e28;
    box-shadow: none;
    transform: none;
}

/* ── FOOTER ── */
.footer {
    background: var(--green);
    color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding: 72px 48px 56px;
}

.footer-brand .logo {
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 300px;
}

.fsocials {
    display: flex;
    gap: 10px;
}

.fsocials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    transition: background 0.2s, color 0.2s;
}

.fsocials a:hover {
    background: var(--gold);
    color: var(--green);
}

.footer-col h5 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold-lt);
}

.fcontact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fcontact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.fcontact li i {
    color: var(--gold);
    margin-top: 3px;
    min-width: 14px;
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.dcard:nth-child(2).fade-up {
    transition-delay: 0.08s;
}

.dcard:nth-child(3).fade-up {
    transition-delay: 0.16s;
}

.dcard:nth-child(4).fade-up {
    transition-delay: 0.24s;
}

.pcard:nth-child(2).fade-up {
    transition-delay: 0.08s;
}

.pcard:nth-child(3).fade-up {
    transition-delay: 0.16s;
}

.pcard:nth-child(4).fade-up {
    transition-delay: 0.24s;
}

.bcard:nth-child(2).fade-up {
    transition-delay: 0.1s;
}

.bcard:nth-child(3).fade-up {
    transition-delay: 0.2s;
}

.tcard:nth-child(2).fade-up {
    transition-delay: 0.1s;
}

.tcard:nth-child(3).fade-up {
    transition-delay: 0.2s;
}

.ofeat:nth-child(even).fade-up {
    transition-delay: 0.1s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {

    .cards-row,
    .pkg-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .why-wrap {
        grid-template-columns: 1fr;
    }

    .why-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .section {
        padding: 64px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-cta .btn-ghost {
        display: none;
    }

    .search-card {
        flex-direction: column;
        padding: 8px;
        border-radius: 12px;
    }

    .sf {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 12px 16px;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    .hero-stats {
        gap: 20px;
    }

    .cards-row,
    .pkg-row,
    .blog-row,
    .testi-row {
        grid-template-columns: 1fr;
    }

    .mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }

    .m-large {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .offer-right {
        grid-template-columns: 1fr;
    }

    .nl-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .nl-form {
        min-width: unset;
        width: 100%;
        flex-direction: column;
    }

    .nl-form input {
        border-radius: 50px;
    }

    .nl-form .btn-gold {
        border-radius: 50px;
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 48px 24px 40px;
    }

    .footer-bar-inner {
        flex-direction: column;
        gap: 6px;
        padding: 20px 24px;
    }

    .tcard--feat {
        transform: none;
    }
}