
/* =========================================================
   TRAVEL DAY EXCLUSIVE - Luxury Brand Stylesheet
   Layered on Bootstrap 5. Mirrors the React/Tailwind design.
   ========================================================= */

:root {
    /* Brand palette */
    --teal:           #013b46;
    --teal-deep:      #00252c;
    --ivory:          #f5efe6;
    --gold-light:     #f4d77a;
    --gold:           #d4af37;
    --gold-mid:       #b8962e;
    --gold-dark:      #8c6a16;
    --border-gold:    rgba(212, 175, 55, 0.25);

    /* Bootstrap overrides */
    --bs-body-bg:     var(--teal);
    --bs-body-color:  var(--ivory);
    --bs-body-font-family: "Inter", system-ui, -apple-system, sans-serif;
    --bs-link-color:  var(--gold);
    --bs-link-hover-color: var(--gold-light);
    --bs-border-color: var(--border-gold);
}

/* =========================================================
   BASE
   ========================================================= */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html {
    scroll-behavior: smooth;
    /* Offset in-page anchor jumps so targets clear the fixed header (topbar + navbar). */
    scroll-padding-top: 7rem;
}

body {
    background: var(--teal);
    color: var(--ivory);
    font-family: "Inter", system-ui, sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: -0.01em;
    color: var(--ivory);
}

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

a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold-light); }

::selection { background: var(--gold); color: var(--teal-deep); }

/* =========================================================
   UTILITY CLASSES (mirrors Tailwind helpers)
   ========================================================= */
.gold-gradient {
    background-image: linear-gradient(135deg, #f4d77a 0%, #d4af37 35%, #b8962e 70%, #8c6a16 100%);
}
.gold-text {
    background-image: linear-gradient(135deg, #f4d77a 0%, #d4af37 40%, #b8962e 70%, #8c6a16 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}
.gold-border {
    border: 1px solid transparent;
    background:
        linear-gradient(var(--teal), var(--teal)) padding-box,
        linear-gradient(135deg, #f4d77a, #d4af37, #b8962e, #8c6a16) border-box;
}
.glass {
    background: rgba(245, 239, 230, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.25);
}
.deep-bg { background: var(--teal-deep); }
.muted-bg { background: rgba(0, 37, 44, 0.4); }

.text-ivory      { color: var(--ivory) !important; }
.text-ivory-70   { color: rgba(245, 239, 230, 0.7) !important; }
.text-ivory-60   { color: rgba(245, 239, 230, 0.6) !important; }
.text-ivory-85   { color: rgba(245, 239, 230, 0.85) !important; }

.font-display { font-family: "Playfair Display", Georgia, serif; }
.font-italic-serif { font-family: "Playfair Display", Georgia, serif; font-style: italic; }

.tracking-wide   { letter-spacing: 0.18em; }
.tracking-wider  { letter-spacing: 0.32em; }
.tracking-widest { letter-spacing: 0.42em; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-gold,
.btn-ghost-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform .3s ease, box-shadow .3s ease, filter .3s ease, background .3s, color .3s;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.2;
    font-size: 0.95rem;
}
.btn-gold {
    color: var(--teal-deep);
    background-image: linear-gradient(135deg, #f4d77a 0%, #d4af37 35%, #b8962e 70%, #8c6a16 100%);
    box-shadow: 0 8px 30px -10px rgba(212, 175, 55, 0.55);
}
.btn-gold:hover {
    color: var(--teal-deep);
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 14px 40px -10px rgba(212, 175, 55, 0.7);
}
.btn-ghost-gold {
    color: var(--ivory);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.55);
}
.btn-ghost-gold:hover {
    background-image: linear-gradient(135deg, #f4d77a 0%, #d4af37 70%, #8c6a16 100%);
    color: var(--teal-deep);
    border-color: transparent;
}
.btn-sm-pill { padding: 0.5rem 1.1rem; font-size: 0.85rem; }

.btn-circle-gold {
    width: 42px; height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: all .3s;
}
.btn-circle-gold:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* =========================================================
   TYPOGRAPHY HELPERS
   ========================================================= */
.section-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    color: var(--ivory);
    margin: 0;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
    display: inline-block;
}
.eyebrow::after { background: linear-gradient(270deg, transparent, var(--gold)); }
.eyebrow.center { justify-content: center; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
.fade-up { animation: fadeUp .9s ease both; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
}

.hover-zoom { overflow: hidden; }
.hover-zoom img { transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.hover-zoom:hover img { transform: scale(1.08); }

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    from { background-position:  200% 0; }
    to   { background-position: -200% 0; }
}

.marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee {
    display: flex;
    gap: 4rem;
    animation: marquee 38s linear infinite;
    width: max-content;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =========================================================
   HEADER + NAV
   ========================================================= */
.site-header {
    position: fixed; inset: 0 0 auto 0;
    z-index: 1040;
    transition: all .5s ease;
}
.topbar {
    background: rgba(0, 37, 44, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    padding: 0.5rem 0;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.8);
}
.topbar-tag { color: var(--gold); font-weight: 500; }
.topbar-link { color: inherit; display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-link:hover { color: var(--gold-light); }
.topbar-social a { color: rgba(245, 239, 230, 0.7); font-size: 13px; }
.topbar-social a:hover { color: var(--gold-light); }

.navbar-tdx {
    background: transparent;
    padding: 1rem 0;
    transition: all .5s ease;
}
.site-header.scrolled .navbar-tdx,
.navbar-tdx.scrolled {
    background: rgba(1, 59, 70, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.6);
}

.brand-mark {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 50%;
    color: var(--teal-deep);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 8px 24px -8px rgba(212, 175, 55, 0.7);
}
.brand-mark-sm { width: 34px; height: 34px; font-size: 0.85rem; }
.brand-mark-lg { width: 52px; height: 52px; font-size: 1.15rem; }
.brand-text { line-height: 1.05; }
.brand-word {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 1.2rem;
    background-image: linear-gradient(135deg, #f4d77a 0%, #d4af37 40%, #b8962e 70%, #8c6a16 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.02em;
}
.brand-sub {
    display: block;
    font-size: 10px;
    letter-spacing: 0.42em;
    color: rgba(245, 239, 230, 0.8);
}

.navbar-tdx .nav-link {
    color: rgba(245, 239, 230, 0.85);
    font-size: 13.5px;
    padding: 0.4rem 0;
    transition: color .3s;
    position: relative;
}
.navbar-tdx .nav-link:hover,
.navbar-tdx .nav-link.active {
    color: var(--gold-light);
}
.navbar-tdx .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
}
.navbar-tdx .navbar-toggler {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--ivory);
    border-radius: 50%;
    width: 42px; height: 42px;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1;
}
.navbar-tdx .navbar-toggler:focus { box-shadow: 0 0 0 .15rem rgba(212, 175, 55, 0.3); }

/* Mobile offcanvas */
.offcanvas-tdx {
    background: var(--teal-deep);
    color: var(--ivory);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 92vw;
    width: 380px;
}
.offcanvas-tdx .offcanvas-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.2rem 1.25rem;
}
.offcanvas-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.offcanvas-nav li { border-bottom: 1px solid rgba(212, 175, 55, 0.1); }
.offcanvas-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 0.25rem;
    color: rgba(245, 239, 230, 0.9);
    font-size: 0.95rem;
}
.offcanvas-nav a:hover,
.offcanvas-nav a.active { color: var(--gold-light); }
.offcanvas-cta { padding-top: 1.5rem; }
.offcanvas-social { display: flex; gap: 0.75rem; }
.offcanvas-social a {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--ivory);
    transition: all .3s;
}
.offcanvas-social a:hover {
    background-image: linear-gradient(135deg, #f4d77a, #d4af37, #8c6a16);
    color: var(--teal-deep);
    border-color: transparent;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 6rem 0; position: relative; }
.section-sm { padding: 4rem 0; }
.section-bg-deep { background: rgba(0, 37, 44, 0.4); }
.section-bg-darker { background: var(--teal-deep); border-top: 1px solid rgba(212, 175, 55, 0.2); border-bottom: 1px solid rgba(212, 175, 55, 0.2); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding-top: 8.5rem;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute; inset: 0;
    z-index: -1;
}
.hero-bg img,
.hero-bg video {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
/* Background video sits behind the overlay; never intercepts clicks. */
.hero-bg video { pointer-events: none; background: var(--teal); }
.hero-bg::after {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(1,59,70,0.7), rgba(1,59,70,0.75) 50%, var(--teal) 100%),
        radial-gradient(circle at top, rgba(212,175,55,0.18), transparent 60%);
}
.hero-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.02;
    color: var(--ivory);
    margin: 1rem 0;
}
.hero-title .italic-word {
    display: block;
    font-style: italic;
    font-weight: 300;
    color: rgba(245, 239, 230, 0.95);
}
.hero-title .brand-word-hero {
    display: block;
    background-image: linear-gradient(135deg, #f4d77a 0%, #d4af37 40%, #b8962e 70%, #8c6a16 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    letter-spacing: 0.18em;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    margin-top: 0.5rem;
}
.hero-sub {
    max-width: 36rem;
    font-size: 1.1rem;
    color: rgba(245, 239, 230, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.hero-meta {
    display: flex; flex-wrap: wrap; gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(245, 239, 230, 0.7);
}
.hero-meta i { color: var(--gold-light); margin-right: 0.4rem; }

/* Booking widget */
.booking-widget {
    margin-top: 2.5rem;
    border-radius: 1.25rem;
    padding: 1.5rem;
}
.booking-field {
    display: flex; flex-direction: column;
    gap: 0.35rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(1, 59, 70, 0.4);
    padding: 0.75rem 1rem;
    transition: border-color .3s;
}
.booking-field:focus-within { border-color: var(--gold-light); }
.booking-field label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
}
.booking-field .field-row { display: flex; align-items: center; gap: 0.5rem; }
.booking-field i { color: rgba(245, 239, 230, 0.6); }
.booking-field input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--ivory);
    font-size: 0.9rem;
}
.booking-field input::placeholder { color: rgba(245, 239, 230, 0.4); }

.popular-chips {
    margin-top: 1rem;
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 0.5rem;
    font-size: 11px;
    color: rgba(245, 239, 230, 0.7);
}
.popular-chips .label {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
}
.popular-chips button {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: inherit;
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    transition: color .3s, border-color .3s;
}
.popular-chips button:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* =========================================================
   CARDS - Service / Package / Destination / Why
   ========================================================= */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}
.service-card::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at top right, rgba(212,175,55,0.15), transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    border-radius: inherit;
    z-index: 0;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(212, 175, 55, 0.4); }
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    color: var(--teal-deep);
    display: grid; place-items: center;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}
.service-card h3 { font-size: 1.05rem; margin: 0 0 0.35rem; color: var(--ivory); }
.service-card p { font-size: 0.875rem; color: rgba(245, 239, 230, 0.65); line-height: 1.55; margin: 0; }

.package-card {
    position: relative;
    height: 420px;
    border-radius: 1rem;
    overflow: hidden;
    display: block;
}
.package-card img {
    width: 100%; height: 100%; object-fit: cover;
}
.package-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--teal-deep), rgba(1,59,70,0.5) 50%, transparent);
}
.package-card .card-body-overlay {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 1.5rem; z-index: 1;
    color: var(--ivory);
}
.package-card .badge-count {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}
.package-card h3 {
    margin: 0.5rem 0 0;
    font-size: 1.4rem;
    color: var(--ivory);
}
.package-card .price-row {
    margin-top: 1rem;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px;
    color: rgba(245, 239, 230, 0.7);
}
.package-card .price-row .explore { display: inline-flex; gap: 0.25rem; align-items: center; color: var(--gold-light); }

.destination-card {
    position: relative;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    display: block;
}
.destination-card img { width: 100%; height: 100%; object-fit: cover; }
.destination-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,37,44,0.95), rgba(1,59,70,0.3) 50%, transparent);
}
.destination-card .overlay {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 1.25rem;
    z-index: 1;
    color: var(--ivory);
}
.destination-card .tag {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    background-image: linear-gradient(135deg, #f4d77a, #d4af37, #b8962e, #8c6a16);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-weight: 500;
}
.destination-card h3 { font-size: 1.25rem; margin: 0.25rem 0 0; }
.destination-card .know-more { font-size: 12px; color: rgba(245, 239, 230, 0.8); margin-top: 0.75rem; display: inline-flex; gap: 0.25rem; align-items: center; }
.destination-card:hover .know-more { color: var(--gold-light); }

.why-card {
    display: flex; gap: 0.85rem;
    padding: 1rem;
    border-radius: 0.85rem;
    align-items: flex-start;
}
.why-card .check {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--teal-deep);
    margin-top: 0.15rem;
    font-size: 0.7rem;
}
.why-card span { font-size: 0.875rem; color: rgba(245, 239, 230, 0.9); }

/* Stats */
.stat-block { text-align: center; }
.stat-value {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    background-image: linear-gradient(135deg, #f4d77a 0%, #d4af37 40%, #b8962e 70%, #8c6a16 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1;
}
.stat-label {
    margin-top: 0.5rem;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.75);
}

/* Testimonial */
.testimonial-card {
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
}
.testimonial-quote {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    color: rgba(245, 239, 230, 0.85);
    line-height: 1.6;
    margin: 1.5rem 0;
}
.testimonial-stars { color: var(--gold-light); letter-spacing: 0.25rem; }
.testimonial-meta { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245, 239, 230, 0.6); margin-top: 0.75rem; }

/* CTA */
.cta-block {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
}
.cta-bg {
    position: absolute; inset: 0; z-index: -1;
    opacity: 0.3;
}
.cta-bg::after {
    content: "";
    position: absolute; inset: 0;
    background: rgba(1, 59, 70, 0.8);
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
    position: relative;
    min-height: 55vh;
    padding: 9rem 0 4rem;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(1,59,70,0.7), var(--teal) 100%);
}
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero h1 {
    font-size: clamp(2.25rem, 5vw, 4rem);
    margin: 0.75rem 0;
}
.page-hero p { color: rgba(245, 239, 230, 0.8); max-width: 42rem; font-size: 1.05rem; }

.breadcrumb-tdx {
    --bs-breadcrumb-divider-color: rgba(245, 239, 230, 0.5);
    --bs-breadcrumb-item-active-color: var(--gold-light);
    font-size: 0.825rem;
    margin: 0;
}
.breadcrumb-tdx a { color: rgba(245, 239, 230, 0.75); }
.breadcrumb-tdx a:hover { color: var(--gold-light); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    position: relative;
    margin-top: 5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background: var(--teal-deep);
    color: var(--ivory);
}
.footer-shimmer {
    position: absolute; left: 0; right: 0; top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}
.footer-brand-word {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 1.5rem;
    background-image: linear-gradient(135deg, #f4d77a, #d4af37, #8c6a16);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer-brand-sub { font-size: 10px; letter-spacing: 0.42em; color: rgba(245, 239, 230, 0.7); }
.footer-tag { font-size: 0.875rem; line-height: 1.7; color: rgba(245, 239, 230, 0.7); max-width: 32rem; }
.footer-quote { font-style: italic; font-size: 0.875rem; margin-top: 1rem; }
.footer-social a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: rgba(245, 239, 230, 0.8);
    font-size: 0.95rem;
    transition: all .3s;
}
.footer-social a:hover {
    background-image: linear-gradient(135deg, #f4d77a, #d4af37, #8c6a16);
    color: var(--teal-deep);
    border-color: transparent;
}
.footer-col-title {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    background-image: linear-gradient(135deg, #f4d77a, #d4af37, #8c6a16);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links li, .footer-links a { color: rgba(245, 239, 230, 0.75); font-size: 0.875rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 0.5rem; align-items: flex-start; }
.footer-contact i { color: var(--gold); margin-top: 0.15rem; }
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    font-size: 0.75rem;
    color: rgba(245, 239, 230, 0.6);
    display: flex; flex-wrap: wrap; gap: 1rem;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--gold-light); }

/* =========================================================
   FLOATING ACTIONS (WhatsApp / Call / AI bot)
   ========================================================= */
.floating-actions {
    --fab-size: 54px;          /* single source of truth -> all buttons equal */
    --fab-icon: 1.2rem;
    --fab-gap:  0.85rem;
    position: fixed;
    /* respect notch / home-indicator safe areas on modern phones */
    right:  calc(1.25rem + env(safe-area-inset-right, 0px));
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    /* Below the Bootstrap offcanvas backdrop (1040) so the open mobile menu is
       never blocked by these buttons; still well above normal page content. */
    z-index: 1035;
    display: flex;
    flex-direction: column;
    align-items: center;       /* equal-width buttons -> clean centred column */
    gap: var(--fab-gap);
}
.float-btn {
    width: var(--fab-size);
    height: var(--fab-size);
    flex: 0 0 auto;            /* never shrink/stretch -> stays a perfect circle */
    border-radius: 50%;
    border: 0;
    padding: 0;
    display: grid; place-items: center;
    font-size: var(--fab-icon);
    line-height: 1;
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.45);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.float-btn:hover  { transform: translateY(-2px) scale(1.06); }
.float-btn:active { transform: scale(0.95); }
.float-btn:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.float-call {
    background: var(--teal);
    color: var(--gold-light);
    border: 1px solid rgba(212, 175, 55, 0.5);
}
.float-wa { background: #25D366; color: #fff; }
.float-bot {
    /* same size as the others now; the gold gradient keeps it the primary action */
    background-image: linear-gradient(135deg, #f4d77a, #d4af37, #b8962e, #8c6a16);
    color: var(--teal-deep);
    box-shadow: 0 12px 30px -8px rgba(212, 175, 55, 0.7);
}
.float-bot:hover { filter: brightness(1.05); }

.chatbot-panel {
    width: 320px;
    border-radius: 1.25rem;
    padding: 1rem;
    background: rgba(245, 239, 230, 0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.chatbot-head { display: flex; align-items: center; justify-content: space-between; }
.chatbot-title { font-size: 0.875rem; font-weight: 600; color: var(--ivory); }
.chatbot-sub { font-size: 11px; color: rgba(245, 239, 230, 0.6); }
.chatbot-close { background: transparent; border: 0; color: rgba(245, 239, 230, 0.7); font-size: 1rem; padding: 0.25rem; }
.chatbot-close:hover { color: var(--gold-light); }
.chatbot-body { margin-top: 0.75rem; max-height: 240px; overflow-y: auto; padding-right: 0.25rem; }
.chat-bubble { border-radius: 0.85rem; padding: 0.75rem; font-size: 0.875rem; }
.chat-bubble.bot { background: rgba(0, 37, 44, 0.6); color: rgba(245, 239, 230, 0.9); }
.chat-bubble.user { background: var(--gold); color: var(--teal-deep); margin-top: 0.5rem; }
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.chat-chip {
    font-size: 12px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: transparent;
    color: rgba(245, 239, 230, 0.85);
    padding: 0.25rem 0.75rem;
    cursor: pointer;
    transition: color .3s, border-color .3s;
}
.chat-chip:hover { color: var(--gold-light); border-color: var(--gold-light); }
.chatbot-form {
    margin-top: 0.75rem;
    display: flex; align-items: center; gap: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(1, 59, 70, 0.6);
    border-radius: 999px;
    padding: 0.25rem 0.5rem 0.25rem 1rem;
}
.chatbot-form input {
    flex: 1; background: transparent; border: 0; outline: 0;
    color: var(--ivory); font-size: 0.875rem;
    padding: 0.4rem 0;
}
.chatbot-form input::placeholder { color: rgba(245, 239, 230, 0.4); }
.chat-send {
    width: 34px; height: 34px;
    border-radius: 50%; border: 0;
    background-image: linear-gradient(135deg, #f4d77a, #d4af37, #b8962e, #8c6a16);
    color: var(--teal-deep);
    display: grid; place-items: center;
    cursor: pointer;
}

/* =========================================================
   FORMS (Bootstrap overrides for brand)
   ========================================================= */
.form-control, .form-select {
    background: rgba(1, 59, 70, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--ivory);
}
.form-control:focus, .form-select:focus {
    background: rgba(1, 59, 70, 0.55);
    border-color: var(--gold-light);
    color: var(--ivory);
    box-shadow: 0 0 0 .15rem rgba(212, 175, 55, 0.2);
}
.form-control::placeholder { color: rgba(245, 239, 230, 0.4); }
.form-label { color: rgba(245, 239, 230, 0.85); font-size: 0.85rem; font-weight: 500; }

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */
@media (max-width: 991.98px) {
    .section { padding: 4rem 0; }
    .package-card { height: 360px; }
    .hero { padding-top: 6.5rem; }
    /* Topbar is hidden below md, so the fixed header is shorter here. */
    html { scroll-padding-top: 5.5rem; }
}
@media (max-width: 575.98px) {
    .section { padding: 3rem 0; }
    .btn-gold, .btn-ghost-gold { padding: 0.7rem 1.25rem; font-size: 0.875rem; }
    .floating-actions {
        --fab-size: 48px; --fab-icon: 1.05rem; --fab-gap: 0.65rem;
        right:  calc(0.85rem + env(safe-area-inset-right, 0px));
        bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    }
    .chatbot-panel { width: calc(100vw - 1.5rem); max-width: 340px; }
    .testimonial-card { padding: 1.75rem 1.25rem; }
    .cta-block { padding: 3rem 1.5rem; }
}

/* =========================================================
   INNER PAGE COMPONENTS
   ========================================================= */
.feature-card {
    background: rgba(245, 239, 230, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    transition: transform .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-3px); border-color: rgba(212, 175, 55, 0.5); }
.feature-card .icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: grid; place-items: center;
    color: var(--teal-deep);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.feature-card h3 { font-size: 1.1rem; margin: 0 0 0.4rem; color: var(--ivory); }
.feature-card p  { font-size: 0.875rem; color: rgba(245, 239, 230, 0.7); margin: 0; line-height: 1.6; }

.list-checked { list-style: none; padding: 0; margin: 0; }
.list-checked li {
    display: flex; gap: 0.65rem; align-items: flex-start;
    padding: 0.4rem 0;
    color: rgba(245, 239, 230, 0.85);
}
.list-checked li::before {
    content: "\F633"; /* bi-check2 */
    font-family: "bootstrap-icons";
    color: var(--gold-light);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.process-step {
    position: relative;
    padding-left: 4rem;
    padding-bottom: 1.75rem;
}
.process-step::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0; top: 0;
    width: 48px; height: 48px;
    display: grid; place-items: center;
    border-radius: 50%;
    background-image: linear-gradient(135deg, #f4d77a, #d4af37, #b8962e, #8c6a16);
    color: var(--teal-deep);
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.1rem;
}
.process-step::after {
    content: "";
    position: absolute;
    left: 23px; top: 48px;
    width: 1px;
    height: calc(100% - 48px);
    background: rgba(212, 175, 55, 0.25);
}
.process-step:last-child::after { display: none; }
.process-list { counter-reset: step; padding-left: 0; list-style: none; margin: 0; }
.process-step h3 { font-size: 1.1rem; margin: 0.5rem 0 0.3rem; color: var(--ivory); }
.process-step p  { color: rgba(245, 239, 230, 0.7); font-size: 0.9rem; margin: 0; line-height: 1.6; }

.legal-content { color: rgba(245, 239, 230, 0.85); line-height: 1.8; }
.legal-content h2 { font-size: 1.4rem; margin: 2rem 0 0.75rem; color: var(--ivory); }
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; color: var(--gold-light); }
.legal-content p, .legal-content li { font-size: 0.95rem; color: rgba(245, 239, 230, 0.8); }
.legal-content a { color: var(--gold-light); }
.legal-content ul { padding-left: 1.25rem; }

.blog-card {
    height: 100%;
    overflow: hidden;
    border-radius: 1rem;
    background: rgba(0, 37, 44, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.18);
    transition: transform .3s, border-color .3s, box-shadow .3s;
    display: flex; flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px -25px rgba(212, 175, 55, 0.4);
}
.blog-card .blog-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.blog-card .blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.blog-card:hover .blog-thumb img { transform: scale(1.08); }
.blog-card .blog-body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .blog-cat { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.15rem; margin: 0 0 0.5rem; color: var(--ivory); line-height: 1.35; }
.blog-card .blog-excerpt { font-size: 0.875rem; color: rgba(245, 239, 230, 0.65); line-height: 1.6; flex: 1; }
.blog-card .blog-meta { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245, 239, 230, 0.55); margin-top: 1rem; }

.article-body { color: rgba(245, 239, 230, 0.88); font-size: 1.05rem; line-height: 1.85; }
.article-body h2 { margin: 2rem 0 0.75rem; }
.article-body h3 { margin: 1.5rem 0 0.5rem; color: var(--gold-light); }
.article-body p { margin: 0 0 1.25rem; }
.article-body img { border-radius: 1rem; margin: 1.5rem 0; }
.article-body blockquote {
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    font-style: italic;
    color: rgba(245, 239, 230, 0.9);
}

.pagination-tdx { display: inline-flex; gap: 0.4rem; }
.pagination-tdx a, .pagination-tdx span {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 50%;
    color: rgba(245, 239, 230, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.875rem;
}
.pagination-tdx a:hover { color: var(--gold-light); border-color: var(--gold-light); }
.pagination-tdx .active { background-image: linear-gradient(135deg, #f4d77a, #d4af37, #8c6a16); color: var(--teal-deep); border-color: transparent; }
.pagination-tdx .disabled { opacity: .35; pointer-events: none; }

.country-pill {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(245, 239, 230, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: rgba(245, 239, 230, 0.85);
    font-size: 0.8rem;
    transition: all .3s;
}
.country-pill:hover { color: var(--teal-deep); background-image: linear-gradient(135deg, #f4d77a, #d4af37, #8c6a16); border-color: transparent; }

.tab-pills .nav-link {
    color: rgba(245, 239, 230, 0.75);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px;
    padding: 0.45rem 1.2rem;
    font-size: 0.85rem;
    margin-right: 0.4rem;
    margin-bottom: 0.5rem;
}
.tab-pills .nav-link.active {
    background-image: linear-gradient(135deg, #f4d77a, #d4af37, #8c6a16);
    color: var(--teal-deep);
    border-color: transparent;
}

.contact-info-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.contact-info-item:last-child { border-bottom: 0; }
.contact-info-item .icon {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border-radius: 12px;
    background-image: linear-gradient(135deg, #f4d77a, #d4af37, #8c6a16);
    color: var(--teal-deep);
    flex-shrink: 0;
}
.contact-info-item .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; color: var(--gold); }
.contact-info-item .value { color: var(--ivory); font-size: 1rem; }
.contact-info-item .value a { color: inherit; }
.contact-info-item .value a:hover { color: var(--gold-light); }

.error-404 {
    min-height: calc(100vh - 200px);
    display: grid;
    place-items: center;
    padding: 8rem 1rem 4rem;
    text-align: center;
}
.error-404 .code {
    font-family: "Playfair Display", serif;
    font-size: clamp(6rem, 18vw, 12rem);
    line-height: 1;
    background-image: linear-gradient(135deg, #f4d77a, #d4af37, #b8962e, #8c6a16);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Print + reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
}
