/* ===== SUNRISE GATEWAY - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --maroon: #8B1A1A;
  --maroon-dark: #6B1313;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --cream: #F5F0E8;
  --cream-dark: #EDE8DC;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --text-dark: #2C2C2C;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #E0D9CC;
  --shadow: rgba(0, 0, 0, 0.1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', Arial, sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

p {
  line-height: 1.7;
}

.section-subtitle {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.diamond-icon {
  display: block;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto;
}

.divider-left {
  margin-left: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

.btn-primary:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--maroon);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
}

/* ===== HEADER / NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo image */
.logo-img {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo-img img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s;
}

.logo-img:hover img {
  opacity: 0.85;
}

/* Legacy text logo fallback (footer uses white variant) */
.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
}

.logo .sunrise {
  color: var(--gold);
}

.logo .gateway {
  color: var(--maroon);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.nav-phone svg {
  color: var(--gold);
}

.nav-book {
  background: var(--maroon);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-book:hover {
  background: var(--maroon-dark);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/hero-rajasthan.jpg') center center / cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-content .diamond-icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--cream);
  padding: 3.5rem 1.5rem;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  text-align: center;
}

/* ===== DESTINATIONS SECTION (Home) ===== */
.destinations-home {
  background: var(--cream);
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.dest-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.dest-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.dest-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.dest-card-body {
  padding: 1.5rem;
}

.dest-card-body .dest-subtitle {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.dest-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--maroon);
  margin-bottom: 0.75rem;
}

.dest-card-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.dest-card-body .link-arrow {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.dest-card-body .link-arrow:hover {
  color: var(--maroon);
  gap: 0.6rem;
}

.dest-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  background: var(--cream-dark);
  padding: 5rem 1.5rem;
}

.why-grid {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-3px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--maroon);
  padding: 5rem 1.5rem;
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

.testimonials .divider {
  background: var(--gold);
}

.testimonials .diamond-icon {
  color: var(--gold);
}

.testi-grid {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
}

.stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testi-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--maroon);
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.testi-loc {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--cream);
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-band .section-title {
  max-width: 700px;
  margin: 0 auto 1rem;
}

.cta-band .section-desc {
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: var(--maroon);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 1.5rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo-img {
  margin-bottom: 0.75rem;
}

.footer-brand .logo-img img {
  height: 44px;
  filter: brightness(0) invert(1);
}

/* fallback text logo in footer */
.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo .sunrise {
  color: var(--gold);
}

.footer-brand .logo .gateway {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--maroon);
  color: var(--white);
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  margin-top: 72px;
}

.page-hero .diamond-icon {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

.page-hero .divider {
  background: var(--gold);
}

/* ===== DESTINATIONS PAGE ===== */
.dest-page {
  padding: 5rem 1.5rem;
  background: var(--cream);
}

.dest-section {
  max-width: 1200px;
  margin: 0 auto 5rem;
}

.dest-section:last-child {
  margin-bottom: 0;
}

.dest-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.dest-layout.reverse {
  direction: rtl;
}

.dest-layout.reverse>* {
  direction: ltr;
}

.dest-layout img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.dest-info .dest-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.dest-info h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}

.dest-info p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1.75rem;
}

.dest-separator {
  border: none;
  border-top: 1px solid var(--border);
  margin: 5rem 0;
}

.resorts-section {
  background: var(--white);
  padding: 3.5rem 1.5rem;
}

.resorts-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.resort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.resort-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--white);
}

.resort-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--maroon);
  margin-bottom: 0.4rem;
}

.resort-card p {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.tag {
  font-size: 0.7rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 0.2rem 0.65rem;
}

.btn-inquire {
  width: 100%;
  text-align: center;
  padding: 0.7rem;
  border: 2px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  display: block;
}

.btn-inquire:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ===== ABOUT PAGE ===== */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--maroon);
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.values-section {
  background: var(--cream);
  padding: 5rem 1.5rem;
}

.values-grid {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
}

.team-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.team-grid {
  max-width: 900px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--cream);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--maroon);
}

.team-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.team-card p {
  font-size: 0.8rem;
  color: var(--gold);
}

.stats-section {
  background: var(--maroon);
  padding: 4rem 1.5rem;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== SERVICES PAGE ===== */
.services-content {
  background: var(--cream);
  padding: 5rem 1.5rem;
}

.services-grid {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 16px var(--shadow);
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: rgba(139, 26, 26, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--maroon);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--maroon);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
}

.packages-section {
  background: var(--white);
  padding: 5rem 1.5rem;
}

.packages-grid {
  max-width: 1000px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.package-card {
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
}

.package-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.package-card.featured {
  border-color: var(--maroon);
}

.package-header {
  padding: 2rem;
  background: var(--cream);
}

.package-card.featured .package-header {
  background: var(--maroon);
  color: var(--white);
}

.package-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.package-header .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.package-header .price small {
  font-size: 0.75rem;
  color: var(--text-mid);
  font-weight: 400;
}

.package-card.featured .package-header .price small {
  color: rgba(255, 255, 255, 0.65);
}

.package-body {
  padding: 1.5rem;
}

.package-body ul li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.package-body ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.package-body .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1.25rem;
}

/* ===== CONTACT PAGE ===== */
.contact-content {
  background: var(--cream);
  padding: 5rem 1.5rem;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select option {
  color: var(--text-dark);
}

.contact-info-wrap h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.contact-info-wrap>p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.info-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px var(--shadow);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.info-card-text h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.info-card-text p {
  font-size: 0.875rem;
  color: var(--text-mid);
}

.info-card-text a {
  color: var(--maroon);
}

.info-card-text a:hover {
  color: var(--gold);
}

.map-embed {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 220px;
  border: none;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.whatsapp-float a {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resort-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 8px 24px var(--shadow);
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .dest-layout {
    grid-template-columns: 1fr;
  }

  .dest-layout.reverse {
    direction: ltr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .resort-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}