/* ============================================================
   ElevateAbroad — Shared Stylesheet
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #0d0d0d;
  --cream: #f7f3ed;
  --gold: #c9a84c;
  --gold-light: #e8d49a;
  --teal: #1a5c6b;
  --teal-light: #2a8a9f;
  --warm: #faf8f4;
  --muted: #6b6258;
  --border: rgba(201, 168, 76, 0.22);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

.nav-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 3rem;
  border-bottom: 1px solid rgba(201, 168, 76, .1);
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-topbar-left {
  display: flex;
  gap: 2rem;
}

.nav-topbar-left span {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.nav-topbar-left b ,  .nav-topbar-right .ntb-link span b{
  color: var(--teal);
}
.nav-topbar-right  .ntb-link, .nav-topbar-left .ntb-link  {
  color: var(--teal);
  text-decoration: none;
  }

.nav-topbar-right {
  display: flex;
  gap: .5rem;
}

.tsoc {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: var(--muted);
  text-decoration: none;
  transition: all .2s;
}

.tsoc:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 3rem;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.logo span {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .6rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  transition: color .2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--teal);
}

.nav-link .arr {
  font-size: .55rem;
  transition: transform .2s;
  color: var(--gold);
}

.nav-item:hover .arr {
  transform: rotate(180deg);
}

/* active underline */
.nav-link.active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--teal);
}

/* dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 2px solid var(--teal);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  min-width: 210px;
  padding: .4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .22s ease;
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ddi {
  display: block;
  padding: .6rem 1.2rem;
  font-size: .8rem;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  transition: all .18s;
  border-left: 2px solid transparent;
}

.ddi:hover {
  color: var(--teal);
  background: rgba(26, 92, 107, .04);
  border-left-color: var(--teal);
}

.dd-divider {
  height: 1px;
  background: var(--border);
  margin: .3rem 0;
}

/* mega menu */
.mega {
  position: absolute;
  top: calc(100% + 6px);
  left: -160px;
  width: 640px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 2px solid var(--teal);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .22s ease;
  z-index: 100;
}

.nav-item:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.mega-col h6 {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}

.mega-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 0;
  font-size: .8rem;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  transition: color .18s;
}

.mega-link:hover {
  color: var(--teal);
}

.mega-link::before {
  content: '›';
  color: var(--gold);
}

.mega-promo {
  background: linear-gradient(135deg, var(--teal), #0d3540);
  border-radius: 4px;
  padding: 1.1rem;
}

.mega-promo h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .3rem;
}

.mega-promo p {
  font-size: .73rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
  margin-bottom: .7rem;
}

.mega-promo a {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
}

.btn-nav {
  background: var(--teal);
  color: #fff;
  padding: .55rem 1.3rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--teal-light);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 9200;
  position: relative;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .28s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile nav */
.mob-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9100;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  padding: 90px 1.5rem 2rem;
}

.mob-nav.is-open {
  transform: translateX(0);
}

.mob-item {
  border-bottom: 1px solid var(--border);
}

.mob-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.mob-link .plus {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 300;
}

.mob-sub {
  display: none;
  padding: .3rem 0 .8rem 1rem;
}

.mob-sub.open {
  display: block;
}

.mob-sub a {
  display: block;
  padding: .38rem 0;
  font-size: .9rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .18s;
}

.mob-sub a:hover {
  color: var(--teal);
}

.mob-cta {
  margin-top: 1.5rem;
}

/* ── SHARED COMPONENTS ── */
.sec-tag {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: .9rem;
}

.sec-title em {
  font-style: italic;
  color: var(--teal);
}

.sec-sub {
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  font-size: .93rem;
  max-width: 520px;
}

.section {
  padding: 5rem 3rem;
}
.c-section, .res-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.c-section .council {
  flex: 1;
} 
.res-section .res-content {
  flex: 1;
} 
.btn-primary {
  background: var(--teal);
  color: #fff;
  padding: .85rem 1.9rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .22s;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(26, 92, 107, .28);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  padding: .85rem 1.9rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .22s;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  padding: .85rem 1.9rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .22s;
  display: inline-block;
  text-decoration: none;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* page hero banner */
.page-hero {

    background: 
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('https://images.unsplash.com/photo-1562774053-701939374585?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  padding: 5rem 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .15);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .71rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 1.2rem;
}

.breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: .8rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero p {
  color: rgba(255, 255, 255, .6);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 300;
}

/* fade animation */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* form */
.fgroup {
  margin-bottom: 1.1rem;
}

.fgroup label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}

.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: .72rem .95rem;
  font-size: .87rem;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .2s;
}

.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--teal);
}

.fgroup textarea {
  resize: vertical;
  min-height: 100px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* form result message */
.form-msg {
  display: none;
  padding: .85rem 1rem;
  border-radius: 4px;
  font-size: .84rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: .9rem;
}

.form-msg.success {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.form-msg.error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* cards */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .25s, transform .25s;
}

.card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, .07);
  transform: translateY(-3px);
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.card:hover::after {
  transform: scaleX(1);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.card-num {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(0, 0, 0, .04);
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .6rem;
}

.card p {
  font-size: .83rem;
  line-height: 1.72;
  color: var(--muted);
  font-weight: 300;
}

.card ul {
  list-style: none;
  margin-top: .8rem;
}

.card ul li {
  font-size: .79rem;
  color: var(--muted);
  padding: .18rem 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.card ul li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: .72rem;
}

/* stat */
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  display: block;
  color: var(--ink);
}

.stat-l {
  font-size: .69rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* flag pills */
.flag-pill {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(201, 168, 76, .18);
  border-radius: 3px;
  padding: .9rem;
  text-align: center;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;

}

.flag-pill:hover {
  background: rgba(255, 255, 255, .13);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.flag-pill .fi {
  font-size: 1.6rem;
  display: block;
  margin-bottom: .3rem;
  color: var(--warm); 
}

.flag-pill .fn {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* marquee */
.marquee-bar {
  background: var(--ink);
  padding: .82rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: mq 22s linear infinite;
  white-space: nowrap;
}

.mq-item {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .7rem;
}

.mq-item::after {
  content: '✦';
  color: rgba(201, 168, 76, .3);
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* why strip */
.why-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding-right: 1.5rem;
  border-right: 1px solid var(--border);
}

.why-item:last-child {
  border-right: none;
}

.why-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.why-text strong {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .1rem;
}

.why-text span {
  font-size: .73rem;
  color: var(--muted);
}

/* destination cards */
.dest-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all .25s;
}

.dest-card:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, .09);
  transform: translateY(-4px);
}

.dest-card-head {
  background: linear-gradient(135deg, var(--teal), #0d3540);
  padding: 1.8rem;
  text-align: center;
  position: relative;
}

.dest-card-head .flag {
  font-size: 2.8rem;
  display: block;
  margin-bottom: .4rem;
}

.dest-card-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.dest-badge {
  position: absolute;
  top: .8rem;
  right: .8rem;
  background: var(--gold);
  color: var(--ink);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .22rem .55rem;
  border-radius: 2px;
}

.dest-card-body {
  padding: 1.3rem;
}

.dest-card-body .lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
  display: block;
}

.dest-unis {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .9rem;
}

.utag {
  font-size: .7rem;
  background: rgba(26, 92, 107, .07);
  color: var(--teal);
  padding: .22rem .55rem;
  border-radius: 2px;
  font-weight: 500;
}

.dest-stats {
  display: flex;
  gap: 1rem;
  padding-top: .9rem;
  border-top: 1px solid var(--border);
}

.dest-stat {
  text-align: center;
  flex: 1;
}

.dest-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.dest-stat span {
  font-size: .67rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
}

/* testimonials */
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: box-shadow .25s;
}

.testi-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, .07);
}

.testi-stars {
  color: var(--gold);
  font-size: .76rem;
  letter-spacing: 2px;
  margin-bottom: .7rem;
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .2rem;
  display: block;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding-top: .9rem;
  border-top: 1px solid var(--border);
}

.tav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.tname {
  font-weight: 600;
  font-size: .84rem;
  display: block;
}

.tdest {
  font-size: .72rem;
  color: var(--gold);
}

/* about strip */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-vis {
  /* background: linear-gradient(135deg, var(--teal), #0d3540); */
   background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.ab-stat {
  background: rgba(255, 255, 255, .09);
  border-radius: 3px;
  padding: 1.2rem;
  text-align: center;
}

.ab-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.ab-stat span {
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: .2rem;
  display: block;
}

.about-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content p {
  color: var(--muted);
  line-height: 1.8;
  font-size: .91rem;
  font-weight: 300;
  margin-bottom: 1.1rem;
}

.check-list {
  list-style: none;
  margin: 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .85rem;
  color: var(--ink);
}

.check-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* team */
.team-card {
  text-align: center;
}

.team-av {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.1rem;
}

.team-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .15rem;
}

.team-role {
  display: block;
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.team-card p {
  font-size: .79rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* timeline */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: .8rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), rgba(26, 92, 107, .1));
}

.tl-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.tl-dot {
  position: absolute;
  left: -2.2rem;
  top: .25rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--warm);
  box-shadow: 0 0 0 3px rgba(26, 92, 107, .2);
}

.tl-num {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .3rem;
}

.tl-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.tl-item p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: .7rem;
}

.tl-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.tl-tag {
  font-size: .68rem;
  background: rgba(26, 92, 107, .07);
  color: var(--teal);
  padding: .22rem .55rem;
  border-radius: 2px;
  font-weight: 600;
}

/* blog */
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all .25s;
}

.blog-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, .07);
  transform: translateY(-3px);
}

.blog-img {
  height: 155px;
  background: linear-gradient(135deg, var(--teal), #0d3540);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}

.blog-cat {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--gold);
  color: var(--ink);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 2px;
}

.blog-body {
  padding: 1.3rem;
}

.blog-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .5rem;
  line-height: 1.3;
}

.blog-body p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: .7rem;
}

.blog-meta {
  font-size: .7rem;
  color: var(--muted);
  display: flex;
  gap: 1rem;
}

/* filter */
.filter-bar {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin: 1.8rem 0;
}

.fbtn {
  padding: .48rem 1.2rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
  transition: all .2s;
}

.fbtn.on,
.fbtn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* consult perks */
.perks {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 1.8rem;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.perk-ico {
  width: 34px;
  height: 34px;
  background: rgba(26, 92, 107, .07);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.perk h5 {
  font-size: .84rem;
  font-weight: 600;
  margin-bottom: .1rem;
}

.perk p {
  font-size: .77rem;
  color: var(--muted);
  line-height: 1.5;
}

.c-testi {
  background: linear-gradient(135deg, var(--teal), #0d3540);
  border-radius: 4px;
  padding: 1.6rem;
  color: #fff;
}

.c-testi p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
  margin-bottom: .8rem;
}

.c-testi cite {
  font-size: .74rem;
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
}

.cinfo h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 1.3rem;
  line-height: 1.3;
}

.ci-item {
  display: flex;
  gap: .9rem;
  margin-bottom: 1.4rem;
  align-items: flex-start;
}

.ci-ico {
  width: 42px;
  height: 42px;
  background: rgba(26, 92, 107, .07);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-lbl {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .1rem;
}

.ci-val {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}

.ci-sub {
  font-size: .76rem;
  color: var(--muted);
}

.hours-box {
  background: var(--cream);
  border-radius: 4px;
  padding: 1.3rem;
  margin-top: 1.5rem;
}

.hours-box h5 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.hr-row {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  padding: .32rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, .12);
}

.hr-row:last-child {
  border: none;
}

.hr-row span:first-child {
  color: var(--muted);
}

.hr-row span:last-child {
  font-weight: 600;
  color: var(--teal);
}

.cform-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.3rem;
}

.cform-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 1.6rem;
}

/* cta band */
.cta-band {
  background: linear-gradient(135deg, var(--teal), #0d3540);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: .4rem;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-band p {
  color: rgba(255, 255, 255, .55);
  font-size: .9rem;
  font-weight: 300;
}

/* footer */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .4);
}

.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 3rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.foot-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.53rem;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: .6rem;
  text-decoration: none;
}

.foot-logo span {
  color: var(--gold);
}

.foot-desc {
  font-size: .79rem;
  line-height: 1.72;
  margin-bottom: 1.1rem;
}

.foot-socials {
  display: flex;
  gap: .5rem;
}

.fsoc {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
  transition: all .2s;
}

.fsoc:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.foot-col h5 {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.foot-col ul {
  list-style: none;
}

.foot-col ul li {
  margin-bottom: .45rem;
}

.foot-col ul li a {
  font-size: .79rem;
  color: rgba(255, 255, 255, .38);
  text-decoration: none;
  transition: color .2s;
}

.foot-col ul li a:hover {
  color: var(--gold);
}

.foot-bottom {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  font-size: .73rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.foot-links {
  display: flex;
  gap: 1.5rem;
}

.foot-links a {
  color: rgba(255, 255, 255, .28);
  text-decoration: none;
  transition: color .2s;
}

.foot-links a:hover {
  color: var(--gold);
}

.certs {
  display: flex;
  gap: .5rem;
}

.cert {
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 2px;
  padding: .2rem .55rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-topbar {
    display: none;
  }

  .nav-main-row {
    padding: .8rem 1.5rem;
  }

  .nav-menu,
  .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .why-strip {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem;
  }

  .about-strip {
    grid-template-columns: 1fr;
  }

  .about-vis {
    padding: 3rem 1.5rem;
  }

  .about-content {
    padding: 3rem 1.5rem;
  }

  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .foot-top {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 1.5rem;
  }

  .foot-bottom {
    padding: 1rem 1.5rem;
  }

  .cta-band {
    padding: 3rem 1.5rem;
  }

  .page-hero {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 640px) {

  .why-strip,
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foot-top {
    grid-template-columns: 1fr;
  }

  .frow {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
  }
}

.hero {
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero-eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.hero-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.2vw, 5rem);
  font-weight: 300;
  line-height: 1.07;
  margin-bottom: 1.4rem;
}

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

.hero-desc {
  font-size: .97rem;
  line-height: 1.78;
  color: var(--muted);
  max-width: 415px;
  margin-bottom: 2.3rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-right {
  /* background: linear-gradient(135deg, var(--teal) 0%, #0d3540 100%); */
   background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
   url('https://images.unsplash.com/photo-1562774053-701939374585?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem;
}

.hero-globe {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  animation: floatY 5s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-globe::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, .2);
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.flag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .8rem;
  width: 100%;
}

@media(max-width:1024px) {
  .hero {
    grid-template-columns: 1fr
  }

  .hero-right {
    display: none
  }

  .hero-left {
    padding: 4rem 1.5rem
  }
}

@media(max-width:640px) {
  .hero-stats {
    gap: 1.5rem;
   
  }
}

.logo img {
  width: 200px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  /* optional modern look */
}

/* .delta {
    font-size: 22px;
    font-weight: 700;
}

.overseas {
    font-size: 12px;
    color: #8B0000;
} */

.googlemap {
  width: 100%;
  margin-top: 3rem;
}

.googlemap iframe {
  width: 100%;
  height: 400px;
  /* you can adjust height */
  border: 0;
}

/* Wrapper */
.wa-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

/* Button */
.wa-btn {
  background: #25D366;
  padding: 16px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

/* Pulse */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Popup */
.wa-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 260px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: none;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Header */
.wa-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 8px;
}

.wa-close {
  cursor: pointer;
  font-size: 18px;
}

/* Body */
.wa-status {
  font-size: 12px;
  color: green;
}

.wa-typing {
  font-size: 13px;
  margin-top: 5px;
}

/* Button */
.wa-chat-btn {
  display: block;
  margin-top: 10px;
  background: #25D366;
  color: white;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
}
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 200px 1fr;
}

.blog-img {
  height: auto;
  position: relative;
}

.blog-body {
  padding: 1.4rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.8rem;
}

/* SIDEBAR */
.sidebar-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--teal);
}

/* WEBINAR */
.webinar-box {
  background: linear-gradient(135deg, var(--teal), #0d3540);
  border-radius: 4px;
  padding: 1.8rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.webinar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.webinar-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.full-width {
  width: 100%;
}

/* RESOURCES */
.resource-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
}

.resource-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.resource-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.resource-list a {
  font-size: 0.82rem;
  color: var(--teal);
  text-decoration: none;
}

/* BUTTON */
.btn-gold {
  font-size: 0.75rem;
  padding: 0.7rem;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}
.blog-card {
  display: flex;
  gap: 1rem;
}

/* Image */
.blog-img {
  width: 200px;
  flex-shrink: 0;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
  }

  .blog-img {
    width: 100%;
  }
}
.res-section {
  display: flex;
  gap: 2rem;
}

/* Main content takes more space */
.res-content:first-child {
  flex: 2;
}

/* Sidebar */
.res-content:last-child {
  flex: 1;
}

/* Mobile */
@media (max-width: 992px) {
  .res-section {
    flex-direction: column;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1.5px solid var(--border);
}
.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.card-icon {
  font-size: 1.5rem;
}

.card-num {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: bold;
}
/* Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.card {
  transition: all 0.3s ease;
}

.card:hover {
  background: var(--cream);
  transform: translateY(-5px);
}

.mobile-call-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  display: none; /* hidden by default */
}

.mobile-call-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: var(--cream);
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.mobile-call-btn a:hover {
  transform: scale(1.1);
}

/* ✅ Show ONLY on mobile */
@media (max-width: 768px) {
  .mobile-call-btn {
    display: block;
  }
}

.destination-section {

 background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.contact-hero, .services-hero, .about-hero, .blog-hero  {
   

}