/* --- VARIABLES & BASE SETUP --- */
:root {
  --bg-dark: #0A0A0A;
  --bg-card: #141414;
  --bg-light: #1A1A1A;
  
  --gold-primary: #C5A059;
  --gold-hover: #D8B775;
  
  --text-main: #F2F2F2;
  --text-muted: #A0A0A0;

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Outfit', sans-serif;
  
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 80px 0;
}

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

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  background-color: var(--gold-primary);
  color: #000;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background-color: var(--gold-primary);
  color: #000;
}

/* --- HEADER / NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: none;
}

.nav-links a {
  margin-left: 30px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-primary);
}

.menu-toggle {
  display: block;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* MOBILE SLIDE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-card);
  z-index: 1001;
  padding: 80px 40px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu .close-menu {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

.mobile-menu a {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.mobile-menu a:hover {
  color: var(--gold-primary);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.9) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}

.hero-subtitle {
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.5rem !important;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- HORIZONTAL SCROLL CARDS (Mobile First) --- */
.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroll-container::-webkit-scrollbar {
  height: 6px;
}

.scroll-container::-webkit-scrollbar-track {
  background: var(--bg-light);
}

.scroll-container::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 3px;
}

.card {
  flex: 0 0 85%;
  background-color: var(--bg-card);
  scroll-snap-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.3);
}

.card-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(10,10,10,0.8);
  color: var(--gold-primary);
  padding: 5px 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.card-link {
  color: var(--gold-primary);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-link:hover {
  color: #fff;
}

/* --- GRID LAYOUTS --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.amenity-item {
  background: var(--bg-card);
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}

.amenity-item i {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.amenity-item span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
}

/* --- TWO COLUMN SECTION --- */
.split-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.split-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* --- CONTACT SECTION --- */
.contact-form {
  background: var(--bg-card);
  padding: 40px 30px;
  border: 1px solid rgba(255,255,255,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-main);
  font-family: var(--font-sans);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
}

/* --- FOOTER --- */
.footer {
  background-color: var(--bg-card);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links ul li a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--gold-primary);
}

/* --- DESKTOP MEDIA QUERIES --- */
@media (min-width: 768px) {
  .hero-title { font-size: 4.5rem; }
  .hero-subtitle { font-size: 2.5rem; }
  
  .card { flex: 0 0 45%; }
  
  .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  
  .split-section { flex-direction: row; align-items: center; }
  .split-section > * { flex: 1; }
  
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .nav-links { display: flex; align-items: center; }
  
  .card { flex: 0 0 31.333%; }
  .hero-title { font-size: 4.5rem; }
  .hero-subtitle { font-size: 3rem; }
}

/* --- FAQ ACCORDION --- */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(197, 160, 89, 0.3);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-primary);
}

.faq-question i {
  font-size: 1.2rem;
  transition: transform 0.4s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 25px 25px;
}

.faq-answer ul {
  list-style: none;
  margin-top: 10px;
}

.faq-answer ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-answer ul li::before {
  content: "•";
  color: var(--gold-primary);
  font-weight: bold;
}

/* --- COMPARISON TABLE --- */
.comparison-wrapper {
  margin-top: 40px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.comparison-scroll {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
}

.comparison-table th {
  background: var(--bg-light);
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-serif);
}

.comparison-table th.highlight {
  background: var(--gold-primary);
  color: #000;
}

.comparison-table .factor {
  color: var(--gold-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.comparison-table .factor i {
  font-size: 1.2rem;
}

.comparison-table .highlight-cell {
  background: rgba(197, 160, 89, 0.05);
  font-weight: 500;
  color: #fff;
}

.comparison-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.comparison-table tr:hover td.highlight-cell {
  background: rgba(197, 160, 89, 0.08);
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.85rem;
  }
  .comparison-table th, .comparison-table td {
    padding: 15px 10px;
  }
  .sticky-col {
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--bg-card);
  }
  th.sticky-col {
    background: var(--bg-light);
  }
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
}
