*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #B8962E;
  --gold-mid: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-pale: #F5EDD8;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --cream: #F7F3EC;
  --warm-gray: #F0EDE8;
  --border: #E2D9CC;
  --text-dark: #1C1A17;
  --text-mid: #4A4540;
  --text-muted: #9A9088;
  --shadow: rgba(28,26,23,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ══ NAV ══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { height: 128px; }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
     font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #373737;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
      font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid var(--gold);
    padding: 10px 24px;
    transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--white);
}

/* ══ HERO ══ */
.hero {
  margin-top: 72px;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 80px;
  position: relative;
  background: var(--white);
}

.hero-left::after {
  content: '';
  position: absolute;
  top: 80px; bottom: 80px; right: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-mid), transparent);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}

.eyebrow-line {
  width: 36px; height: 1px;
  background: var(--gold);
}

.eyebrow-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-heading em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
     font-size: 17px;
    font-weight: normal;
    line-height: 1.9;
    color: #636363;
    /* max-width: 380px; */
    margin-bottom: 48px;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.badge {
      font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-mid);
    border: 1px solid var(--border);
    padding: 8px 18px;
    background: var(--cream);
}

/* hero right — destination collage */
.hero-right {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.dest-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.dest-panel {
  position: relative;
  overflow: hidden;
}

.dest-panel:first-child { border-bottom: 2px solid var(--white); }

.dest-panel-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s ease;
}

.dest-panel:hover .dest-panel-bg { transform: scale(1.05); }

.dest-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,26,23,0.45) 0%, rgba(28,26,23,0.1) 100%);
}

/* India scene */
.dp-india .dest-panel-bg {
  background:url(../images/india.jpg) no-repeat center;
  background-size:cover;
}
.dp-india .dest-panel-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 60% 40%, rgba(232,160,32,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 30% 60% at 20% 80%, rgba(123,63,0,0.6) 0%, transparent 60%);
}
/* Taj Mahal silhouette */
.dp-india .dest-panel-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 220px; height: 120px;
  background: rgba(28,20,10,0.5);
  clip-path: polygon(
    0% 100%, 0% 70%, 8% 70%, 8% 55%, 15% 55%, 15% 40%, 20% 38%,
    22% 20%, 24% 10%, 26% 2%, 28% 0%, 30% 2%, 32% 10%, 34% 20%,
    36% 38%, 41% 40%, 41% 55%, 48% 55%, 48% 60%,
    52% 60%, 52% 55%, 59% 55%, 59% 40%, 64% 38%,
    66% 20%, 68% 10%, 70% 2%, 72% 0%, 74% 2%, 76% 10%, 78% 20%,
    80% 38%, 85% 40%, 85% 55%, 92% 55%, 92% 70%, 100% 70%, 100% 100%
  );
}

/* Vietnam scene */
.dp-vietnam .dest-panel-bg {
  background:url(../images/vietnam.jpg) no-repeat center;
  background-size:cover;
}
.dp-vietnam .dest-panel-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 40% 35%, rgba(46,139,87,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 75% 70%, rgba(11,46,26,0.6) 0%, transparent 60%);
}

/* Philippines scene */
.dp-philippines { display: flex; }
.dp-philippines .dest-panel-bg {
   background:url(../images/philippines.jpg) no-repeat center;
  background-size:cover;
  flex: 1;
}
.dp-philippines .dest-panel-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 45% at 55% 35%, rgba(21,101,192,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 35% 55% at 25% 75%, rgba(10,26,62,0.6) 0%, transparent 60%);
}

.dest-label-box {
  position: absolute;
  bottom: 24px; left: 28px;
}

.dest-country {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.dest-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ══ STATS BAR ══ */
.stats-bar {
  background: var(--text-dark);
  padding: 36px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--gold-mid);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ══ SECTION SHARED ══ */
.section {
  padding: 100px 80px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.section-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
}

.section-title em { font-style: italic; color: var(--gold); }

/* ══ ABOUT ══ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
  color: var(--text-mid);
}

.about-text p {margin-bottom: 20px;
    color: #272727;
    font-size: 17px;
    font-weight: normal; }
.about-text p:last-child { margin-bottom: 0; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.highlight-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.highlight-item:first-child { border-top: 1px solid var(--border); }

.highlight-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg { width: 26px; height: 26px; fill: var(--gold); }

.highlight-text { flex: 1; }

.highlight-title {
  font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.highlight-desc {
      font-size: 16px;
    font-weight: normal;
    color: #3b3b3b;
    line-height: 1.7;
}

/* ══ TEAM ══ */
.team-section { background: var(--cream); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.team-card:hover {
  box-shadow: 0 20px 60px var(--shadow);
  transform: translateY(-4px);
}

.card-top {
  background: var(--text-dark);
  padding: 40px 44px 36px;
  position: relative;
  overflow: hidden;
}

.card-top::after {
  content: '';
  position: absolute;
  bottom: 0; left: 44px; right: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.card-region {
      font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-mid);
    margin-bottom: 20px;
    display: block;
}

.card-name {
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1;
  text-transform: capitalize;
}

.card-role {
  font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.card-body {
  padding: 36px 44px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--warm-gray);
}

.contact-row:last-child { border-bottom: none; }

.contact-icon {
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.team-card:hover .contact-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.team-card:hover .contact-icon svg { fill: var(--white); }

.contact-icon svg { width: 24px; height: 24px; fill: var(--gold); transition: fill 0.3s; }

.contact-info { flex: 1; }

.contact-label {
      font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #807c78;
    display: block;
    margin-bottom: 3px;
}

.contact-value {
 font-size: 18px;
    font-weight: normal;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.contact-value:hover { color: var(--gold); }

/* ══ CONTACT BAND ══ */
.contact-band {
  background: var(--white);
  padding: 80px;
  border-top: 1px solid var(--border);
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.contact-band-left {}

.contact-band-heading {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-band-heading em { font-style: italic; color: var(--gold); }

.contact-band-sub {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.contact-band-right {}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  background: var(--gold);
  padding: 18px 36px;
  transition: background 0.3s, transform 0.3s;
}

.contact-email-link:hover {
  background: var(--gold-dark, #8B6914);
  transform: translateY(-2px);
}

.contact-email-link svg { width: 14px; height: 14px; fill: var(--white); }

/* ══ FOOTER ══ */
footer {
  background: var(--text-dark);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo { height: 96px; }

.footer-center { text-align: center; flex: 1; }

.footer-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: italic;
  color: var(--gold-mid);
  display: block;
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.footer-right {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: right;
  line-height: 1.8;
}

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 360px; }
  .hero-left { padding: 60px 32px; }
  .hero-left::after { display: none; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 32px; gap: 20px 0; }
  .section { padding: 64px 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-band { padding: 60px 32px; }
  .contact-band-inner { flex-direction: column; gap: 32px; }
  footer { padding: 40px 32px; flex-direction: column; text-align: center; }
  .footer-right { text-align: center; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
}

@media (max-width:479px) {
.hero {
    margin-top: 92px;}
	.nav-logo {
    height: 70px;
}
nav { height:90px;}
}