/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d4af37;
  --gold-light: #f5d67b;
  --gold-dark: #a8852a;
  --bg: #0b0b10;
  --bg-soft: #101018;
  --panel: #17171f;
  --panel-2: #1d1d28;
  --border: #2a2a38;
  --border-gold: #4a3b16;
  --text: #eae7de;
  --muted: #9a97a6;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --transition: 0.3s ease;
  --font-serif: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-sans: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1406;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.28);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.42);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: none;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

/* ---------- HEADER / NAV ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
header.scrolled {
  background: rgba(11, 11, 16, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  padding: 10px 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.logo i {
  color: var(--gold);
  font-size: 1.8rem;
}
.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
}
.logo-name {
  color: var(--text);
  font-size: 1.35rem;
}
.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(234, 231, 222, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.contact-btn {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1406;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}
.nav-links a.contact-btn::after {
  display: none;
}
.nav-links a.contact-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--border-gold);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 50px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hamburger:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hamburger-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hamburger-bars span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open .hamburger-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open .hamburger-bars span:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(145deg, var(--bg) 0%, #0e0e16 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  transform: rotate(-12deg);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -1px;
}
.hero-content h1 .highlight {
  color: var(--gold);
  position: relative;
}
.hero-content p {
  color: rgba(234, 231, 222, 0.72);
  font-size: 1.2rem;
  margin: 24px 0 32px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  padding: 8px 20px;
  border-radius: 50px;
  color: rgba(234, 231, 222, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border);
}
.hero-badges i {
  color: var(--gold);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image .orb {
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.18), rgba(10, 10, 16, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float 8s ease-in-out infinite;
  border: 1px solid var(--border-gold);
}
.hero-image .orb i {
  font-size: 10rem;
  color: var(--gold);
  opacity: 0.9;
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.25);
}
.hero-image .orb::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.15);
  animation: pulse-ring 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes pulse-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.2;
  }
}

/* ---------- SECTION TITLES ---------- */
.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title .sub {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-title h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.5px;
}
.section-title h2 span {
  color: var(--gold);
}
.section-title p {
  color: var(--muted);
  max-width: 600px;
  margin: 12px auto 0;
  font-size: 1.05rem;
}

/* ---------- ABOUT / STATS ---------- */
.about {
  padding: 100px 0 80px;
  background: var(--bg-soft);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.about-text h3 span {
  color: var(--gold);
}
.about-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: var(--panel);
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--border-gold);
}
.stat-card .number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-card .label {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}
.stat-card .icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 100px 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--panel);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--border-gold);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card .icon {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- MISSION & VISION ---------- */
.mission {
  padding: 100px 0;
  background: var(--bg-soft);
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.mission-card {
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--panel);
  border-left: 5px solid var(--gold);
  transition: var(--transition);
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.mission-card .icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.mission-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.mission-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- PARTNER HOTELS ---------- */
.hotels {
  padding: 100px 0;
  background: var(--bg);
}
.hotels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.hotel-col h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hotel-col h3 i {
  color: var(--gold);
}
.hotel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hotel-tag {
  background: var(--panel);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  border: 1px solid var(--border);
  cursor: pointer;
}
.hotel-tag:hover {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1406;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}
.hotel-tag .stars {
  color: var(--gold);
  margin-left: 6px;
  font-size: 0.75rem;
}

.hotels-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---------- FOOTER ---------- */
footer {
  background: #07070b;
  color: rgba(234, 231, 222, 0.7);
  padding: 60px 0 30px;
}
footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.footer-brand .logo {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.footer-brand p {
  max-width: 340px;
  line-height: 1.8;
  font-size: 0.95rem;
  color: rgba(234, 231, 222, 0.6);
}
.footer-brand .socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.footer-brand .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--panel);
  color: var(--muted);
  transition: var(--transition);
  font-size: 1rem;
  border: 1px solid var(--border);
}
.footer-brand .socials a:hover {
  background: var(--gold);
  color: #1a1406;
  transform: translateY(-3px);
  border-color: var(--gold);
}

.footer-links h4 {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1rem;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact h4 {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1rem;
}
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact i {
  color: var(--gold);
  margin-top: 4px;
  width: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(234, 231, 222, 0.4);
}

/* ---------- RESPONSIVE ---------- */
/* Navigation switches to the slide-in panel below 920px (matches hotels.html) */
@media (max-width: 920px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--bg-soft);
    flex-direction: column;
    align-items: stretch;
    padding: 96px 24px 40px;
    gap: 10px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    white-space: nowrap;
    color: var(--text);
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links a:hover {
    background: var(--panel);
  }
  .nav-links a.contact-btn {
    margin-top: 8px;
    text-align: center;
  }
  .hamburger {
    display: inline-flex;
  }
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-image .orb {
    width: 300px;
    height: 300px;
  }
  .hero-image .orb i {
    font-size: 6rem;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  footer .container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-image .orb {
    width: 220px;
    height: 220px;
  }
  .hero-image .orb i {
    font-size: 4.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .stat-card .number {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  footer .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero-badges span {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero {
    padding-top: 92px;
  }
  .hero-content h1 {
    font-size: 1.9rem;
  }
  .hero-content p {
    font-size: 0.95rem;
    margin: 16px 0 24px;
  }
  .hero-image .orb {
    width: 180px;
    height: 180px;
  }
  .hero-image .orb i {
    font-size: 3.4rem;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .section-title h2 {
    font-size: 1.7rem;
  }
  .about,
  .services,
  .mission,
  .hotels {
    padding: 64px 0;
  }
  .about-text h3 {
    font-size: 1.6rem;
  }
  .btn {
    padding: 12px 26px;
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 16px;
  }
  .logo-img {
    width: 44px;
    height: 44px;
  }
  .logo-name {
    font-size: 1.1rem;
  }
  .hamburger {
    padding: 8px 12px;
  }
  .hamburger-label {
    display: none;
  }
}

/* ---------- SCROLL ANIMATION (simple) ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
