/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a2e;
  background: #faf9f7;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== FONTS ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

/* ===== GOLD & COLORS ===== */
:root {
  --navy: #0f1d3a;
  --navy-light: #1a2d52;
  --gold: #d4a843;
  --gold-light: #e8c46a;
  --cream: #faf9f7;
  --white: #ffffff;
  --gray-100: #f4f3f0;
  --gray-200: #e8e6e1;
  --gray-600: #6b6b6b;
  --gray-800: #2d2d2d;
}

.gold-text { color: var(--gold); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15, 29, 58, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 700;
  color: var(--white); line-height: 1.2; letter-spacing: 0.02em;
}
.logo-gold { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8);
  transition: color 0.2s; position: relative;
}
.nav-links a:not(.btn-nav):hover { color: var(--gold); }
.nav-links a:not(.btn-nav)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:not(.btn-nav):hover::after { width: 100%; }
.btn-nav {
  background: var(--gold); color: var(--navy) !important;
  padding: 10px 24px; border-radius: 8px; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-nav::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--white);
  border-radius: 2px; transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; background: var(--navy);
  position: relative; display: flex; align-items: center;
  padding: 120px 24px 80px; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.geo-circle {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(212, 168, 67, 0.12);
}
.geo-circle-1 { width: 600px; height: 600px; top: -200px; right: -150px; border-width: 3px; }
.geo-circle-2 { width: 300px; height: 300px; bottom: -80px; left: 5%; }
.geo-rect {
  position: absolute; width: 200px; height: 200px; top: 15%; left: 3%;
  background: rgba(212, 168, 67, 0.06); border-radius: 24px;
  transform: rotate(15deg);
}
.geo-triangle {
  position: absolute; width: 0; height: 0;
  bottom: 20%; right: 8%;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(212, 168, 67, 0.08);
  transform: rotate(-10deg);
}
.hero-grid {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 380px; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212, 168, 67, 0.12); border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 24px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 800;
  color: var(--white); margin-bottom: 20px; line-height: 1.1;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  max-width: 520px; margin-bottom: 36px; line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-weight: 600;
  font-size: 0.95rem; transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,168,67,0.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-gold {
  background: var(--gold); color: var(--navy);
  padding: 12px 24px; border-radius: 8px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* Stat Cards */
.hero-cards { display: flex; flex-direction: column; gap: 16px; }
.stat-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px; display: flex; align-items: flex-start; gap: 16px;
  backdrop-filter: blur(8px); transition: all 0.3s;
}
.stat-card:hover { background: rgba(255,255,255,0.1); transform: translateX(6px); border-color: rgba(212,168,67,0.3); }
.stat-card--1 { border-left: 3px solid var(--gold); }
.stat-card--2 { border-left: 3px solid #4ade80; }
.stat-card--3 { border-left: 3px solid #60a5fa; }
.stat-icon {
  width: 44px; height: 44px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-card--1 .stat-icon { background: rgba(212,168,67,0.2); color: var(--gold); }
.stat-card--2 .stat-icon { background: rgba(74,222,128,0.2); color: #4ade80; }
.stat-card--3 .stat-icon { background: rgba(96,165,250,0.2); color: #60a5fa; }
.stat-icon svg { width: 22px; height: 22px; }
.stat-number {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 4px;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.4; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; animation: float 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes float { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold);
  margin-bottom: 12px;
}
.section-tag.light { color: var(--gold-light); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  color: var(--navy); margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.05rem; color: var(--gray-600); max-width: 600px; line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,0.7); }
.section-header { margin-bottom: 56px; }
.section-header.light { text-align: center; }
.section-header.light .section-sub { margin: 0 auto; }

/* ===== ROOMS ===== */
.rooms { padding: 100px 24px; background: var(--cream); }
.rooms-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.room-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s;
  border: 1px solid var(--gray-200);
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.room-img { position: relative; overflow: hidden; height: 240px; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--navy); color: var(--white);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 6px 14px; border-radius: 50px;
}
.room-tag.gold { background: var(--gold); color: var(--navy); }
.room-info { padding: 28px; }
.room-info h3 {
  font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.room-info p { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.6; }
.room-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.room-features li {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 500; color: var(--navy);
  background: var(--gray-100); padding: 6px 12px; border-radius: 6px;
}
.room-features li svg { color: var(--gold); width: 14px; height: 14px; }
.btn-room { width: 100%; justify-content: center; }

/* ===== AMENITIES ===== */
.amenities { padding: 100px 24px; background: var(--navy); position: relative; overflow: hidden; }
.amenities-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.amenities-visual { position: relative; }
.amenities-img-stack { position: relative; }
.amenities-img-main img { width: 100%; border-radius: 20px; }
.amenities-img-float {
  position: absolute; bottom: -30px; right: -30px;
  width: 55%; border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border: 4px solid rgba(212,168,67,0.3);
}
.amenities-geo {
  position: absolute; top: -40px; left: -40px;
  width: 120px; height: 120px; background: var(--gold);
  border-radius: 20px; transform: rotate(25deg); z-index: -1; opacity: 0.15;
}
.accent-diamond { border-radius: 24px; }
.accent-circle {
  position: absolute; bottom: -20px; right: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gold); z-index: -1; opacity: 0.12;
}
.amenities-content .section-sub { margin-bottom: 36px; }
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.amenity-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 20px; transition: all 0.3s;
}
.amenity-item:hover { background: rgba(255,255,255,0.09); border-color: rgba(212,168,67,0.3); transform: translateY(-2px); }
.amenity-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(212,168,67,0.15); color: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.amenity-icon svg { width: 20px; height: 20px; }
.amenity-item h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.amenity-item p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ===== LOCATION ===== */
.location { padding: 100px 24px; background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.map-placeholder {
  background: var(--navy); border-radius: 20px; padding: 60px 40px;
  text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a843' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.map-pin-icon { color: var(--gold); margin: 0 auto 20px; opacity: 0.8; }
.map-placeholder p { font-size: 1.1rem; margin-bottom: 24px; line-height: 1.6; position: relative; }
.map-placeholder .btn-gold { position: relative; }
.location-info { display: flex; flex-direction: column; gap: 16px; }
.location-card {
  background: var(--white); border-radius: 14px; padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
  border: 1px solid var(--gray-200); transition: all 0.3s;
}
.location-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(212,168,67,0.15); }
.location-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(15,29,58,0.08); color: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.location-card-icon svg { width: 20px; height: 20px; }
.location-card h4 { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.location-card p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.5; }
.location-card a { color: var(--gold); font-weight: 600; transition: color 0.2s; }
.location-card a:hover { color: var(--navy); }

/* ===== ABOUT ===== */
.about { padding: 100px 24px; background: var(--white); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: flex; gap: 32px; margin-top: 36px; }
.about-stat { text-align: center; }
.about-stat-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.about-stat-label { font-size: 0.82rem; color: var(--gray-600); margin-top: 6px; }
.about-visual { position: relative; }
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-img-grid img { border-radius: 14px; width: 100%; height: 100%; object-fit: cover; }
.about-img-grid img:first-child { height: 300px; }
.about-img-grid img:last-child { height: 200px; }

/* ===== CTA ===== */
.cta {
  padding: 100px 24px; background: var(--navy);
  position: relative; overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; border-radius: 50%; }
.cta-shape-1 { width: 400px; height: 400px; background: rgba(212,168,67,0.08); top: -100px; left: -100px; }
.cta-shape-2 { width: 250px; height: 250px; background: rgba(212,168,67,0.06); bottom: -80px; right: 10%; }
.cta-shape-3 { width: 120px; height: 120px; background: rgba(255,255,255,0.04); top: 20%; right: 5%; border-radius: 20px; transform: rotate(30deg); border-radius: 16px; }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--white); margin-bottom: 20px; }
.cta-text { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 100px 24px; background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-sub { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail strong { display: block; font-size: 0.85rem; color: var(--navy); margin-bottom: 2px; }
.contact-detail span { font-size: 0.92rem; color: var(--gray-600); }
.contact-detail a { color: var(--gold); font-weight: 600; transition: color 0.2s; }
.contact-detail a:hover { color: var(--navy); }

/* Form */
.contact-form-wrap {
  background: var(--white); border-radius: 20px; padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08); border: 1px solid var(--gray-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200);
  border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--gray-800); background: var(--cream); transition: all 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(212,168,67,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; align-items: center; gap: 12px;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3);
  color: #16a34a; padding: 16px 20px; border-radius: 10px;
  margin-top: 16px; font-weight: 600; font-size: 0.9rem;
}
.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 60px 24px 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo-light .logo-text { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-links h4 {
  font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 200px; }
  .amenities-layout { grid-template-columns: 1fr; }
  .amenities-visual { max-width: 500px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 500px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(15,29,58,0.98); backdrop-filter: blur(12px);
    flex-direction: column; padding: 32px 24px; gap: 20px;
    transform: translateY(-120%); transition: transform 0.3s;
    border-bottom: 1px solid rgba(212,168,67,0.15);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .hero-cards { flex-direction: column; }
  .stat-card { min-width: auto; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .amenities-img-float { right: -10px; bottom: -20px; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-grid img:first-child { height: 220px; }
  .about-img-grid img:last-child { height: 160px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 1.9rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-lg { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px; }
}
