@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0d2235;
  --navy-dark: #0a1a29;
  --navy-light: #18334f;
  --gold: #d9b44a;
  --gold-bright: #f3c963;
  --cream: #f8f4ee;
  --muted: #eef1f5;
  --text: #0f1722;
  --text-muted: #5f6b7a;
  --white: #ffffff;
  --shadow: 0 24px 50px -40px rgba(12, 24, 38, 0.5);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.page {
  min-height: 100vh;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 244, 238, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 34, 53, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-bright);
  box-shadow: var(--shadow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
  color: var(--text);
}

.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  bottom: 0;
  background: var(--gold);
  border-radius: 999px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  color: var(--navy);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
}

main {
  padding-top: 80px;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(217, 180, 74, 0.1), transparent 50%),
    linear-gradient(120deg, rgba(13, 34, 53, 0.9), rgba(13, 34, 53, 0.7)),
    url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 28, 0.6), rgba(6, 16, 28, 0.85));
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
}

.hero-orb-left {
  width: 260px;
  height: 260px;
  background: rgba(217, 180, 74, 0.4);
  top: 20%;
  left: 8%;
}

.hero-orb-right {
  width: 360px;
  height: 360px;
  background: rgba(217, 180, 74, 0.2);
  bottom: 10%;
  right: 6%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--gold-bright);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 560px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.section {
  padding: 90px 0;
  background: var(--cream);
}

.section-muted {
  background: #f1f4f8;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.services-stack {
  display: grid;
  gap: 40px;
}

.service-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(13, 34, 53, 0.08);
  box-shadow: var(--shadow);
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.service-block h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.service-block p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-list li::before {
  content: '✔';
  color: var(--gold);
  margin-right: 8px;
}

.service-illustration {
  background: rgba(13, 34, 53, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  font-size: 3rem;
  text-align: center;
  border: 1px solid rgba(13, 34, 53, 0.08);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(13, 34, 53, 0.08);
  box-shadow: var(--shadow);
}

.step-card span {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.why-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.why-service-grid h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  margin: 12px 0 18px;
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-list h4 {
  margin-bottom: 4px;
}

.why-list p {
  color: var(--text-muted);
}

.cta-card {
  background: rgba(13, 34, 53, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(13, 34, 53, 0.08);
  display: grid;
  gap: 14px;
}

.cta-card .btn {
  width: 100%;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 34, 53, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -40px rgba(12, 24, 38, 0.7);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-bright);
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.destination {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 34, 53, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination:hover {
  transform: translateY(-6px);
}

.destination-flag {
  font-size: 2.6rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: var(--radius-md);
  height: 80px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.destination p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-row span {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(217, 180, 74, 0.15);
  color: var(--gold);
  font-weight: 600;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.why-grid h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 16px 0;
}

.why-grid p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.mission {
  background: #f5f0e6;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(13, 34, 53, 0.08);
}

.mission span {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 600;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.why-cards article {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(13, 34, 53, 0.08);
}

.why-cards h3 {
  margin-bottom: 8px;
}

.why-cards p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.cta h2 span {
  color: var(--gold-bright);
}

.cta p {
  max-width: 720px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.footer-grid h4 {
  margin-bottom: 12px;
}

.footer-grid a,
.footer-grid p {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.social-row a {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 18px 40px -30px rgba(217, 180, 74, 0.7);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn:hover {
  transform: translateY(-2px);
}

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}

.fab-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease forwards;
}

.fade-in-up.delay-1 { animation-delay: 0.2s; }
.fade-in-up.delay-2 { animation-delay: 0.4s; }
.fade-in-up.delay-3 { animation-delay: 0.6s; }
.fade-in-up.delay-4 { animation-delay: 0.8s; }

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 80px;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    width: 220px;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
    border-radius: 0 0 0 16px;
  }

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

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 720px) {
  .hero-stats {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .stat {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, rgba(13, 34, 53, 0.12), rgba(217, 180, 74, 0.12));
  text-align: left;
}

.page-hero.hero-gradient {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
}

.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 12px;
}

.page-hero.hero-gradient h1 span {
  color: var(--gold-bright);
}

.page-hero p {
  color: var(--text-muted);
  max-width: 720px;
}

.page-hero.hero-gradient p {
  color: rgba(255, 255, 255, 0.8);
}

.body-copy p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(13, 34, 53, 0.08);
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-card span {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(13, 34, 53, 0.08);
  box-shadow: var(--shadow);
}

.info-card.accent {
  background: var(--navy);
  color: var(--white);
}

.info-card.accent p {
  color: rgba(255, 255, 255, 0.8);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(13, 34, 53, 0.08);
  text-align: center;
  box-shadow: var(--shadow);
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-muted);
}

.legal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(13, 34, 53, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.legal-card h4 {
  font-weight: 600;
  margin-bottom: 6px;
}

.legal-card p {
  color: var(--text-muted);
}

.legal-card .span-2 {
  grid-column: span 2;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li::before {
  content: '✔';
  color: var(--gold);
  margin-right: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.contact-split h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.muted {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-form {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 34, 53, 0.08);
  box-shadow: var(--shadow);
}

.full-width {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.field label {
  font-weight: 600;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(13, 34, 53, 0.2);
  font-family: inherit;
  font-size: 0.95rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(217, 180, 74, 0.4);
  border-color: var(--gold);
}

.error {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 6px;
  min-height: 16px;
}

.form-note {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.form-success {
  margin-top: 16px;
  color: #1f7a36;
  font-weight: 600;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-info a {
  color: var(--navy);
  font-weight: 600;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(13, 34, 53, 0.08);
  box-shadow: var(--shadow);
}

.contact-card h4 {
  margin-bottom: 6px;
}

.contact-card p,
.contact-card a {
  color: var(--text-muted);
  font-weight: 500;
}

.whatsapp-card {
  background: rgba(37, 211, 102, 0.1);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(37, 211, 102, 0.2);
  display: grid;
  gap: 12px;
}

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 34, 53, 0.08);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(13, 34, 53, 0.08);
  box-shadow: var(--shadow);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(13, 34, 53, 0.08);
  box-shadow: var(--shadow);
  text-align: center;
  display: grid;
  gap: 12px;
}

.testimonial-card img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  border-radius: 16px;
}

.testimonial-tag {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.testimonial-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.video-card {
  background: rgba(13, 34, 53, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
  font-weight: 600;
}
