:root {
  --bg-primary: #0b0b12;
  --bg-secondary: #151528;
  --bg-card: rgba(139, 92, 246, 0.08);
  --accent-primary: #8b5cf6;
  --accent-secondary: #a78bfa;
  --glow: #c4b5fd;
  --gradient: linear-gradient(135deg, #8b5cf6, #a78bfa);
  --text-primary: #f8fafc;
  --text-secondary: #a1a1aa;
  
  --space-desktop: 100px;
  --space-tablet: 70px;
  --space-mobile: 50px;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; margin-bottom: 1rem; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.container-large {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: var(--space-desktop) 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
  background: rgba(139, 92, 246, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.15);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  height: var(--nav-height);
  background: rgba(21, 21, 40, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 100px;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(139, 92, 246, 0.05);
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

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

#menu-toggle {
  display: none;
}

/* Hero Section */
.hero {
  padding-top: calc(var(--nav-height) + 120px);
  padding-bottom: var(--space-desktop);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Rooms & Suites (Core Feature) */
.rooms-section {
  background: var(--bg-secondary);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.rooms-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Featured Suite */
.featured-suite {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(139, 92, 246, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-suite:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 40px rgba(139, 92, 246, 0.2);
}

.suite-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}

.suite-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suite-content {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.suite-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(139, 92, 246, 0.2);
  color: var(--glow);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
  border: 1px solid rgba(139, 92, 246, 0.4);
}

.amenities-list {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Standard Rooms Grid */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.room-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3), 0 0 20px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

.room-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-card-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.room-card-footer {
  margin-top: auto;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.room-price span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Amenities & Experiences */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.amenity-card {
  background: var(--bg-primary);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: all 0.3s ease;
}

.amenity-card:hover {
  background: var(--bg-card);
  border-color: rgba(139, 92, 246, 0.3);
}

.amenity-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-secondary);
}

.amenity-icon svg {
  width: 24px;
  height: 24px;
}

/* Trust / Info Section */
.trust-section {
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(21, 21, 40, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Legal Pages */
.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 80px) 5% var(--space-desktop) 5%;
}

.legal-content h2 {
  margin-top: 3rem;
  font-size: 1.5rem;
  color: var(--glow);
}

.legal-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Contact Page Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-top: calc(var(--nav-height) + 80px);
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-item h4 {
  color: var(--glow);
  margin-bottom: 0.5rem;
}

.glass-form {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: rgba(11, 11, 18, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-links h4 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Media Queries */
@media (max-width: 1024px) {
  .section { padding: var(--space-tablet) 0; }
  .hero-grid { gap: 2rem; }
  .hero-image { height: 500px; }
  .featured-suite { grid-template-columns: 1fr; }
  .suite-image-wrapper { min-height: 350px; }
  .suite-content { padding: 3rem 2rem; }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: var(--space-mobile) 0; }
  .header { width: 95%; padding: 0 1.5rem; border-radius: 20px; }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(21, 21, 40, 0.95);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  
  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }
  
  .nav-links a {
    padding: 1rem 2rem;
    display: block;
    width: 100%;
  }
  
  .nav-links .btn {
    margin: 1rem 2rem;
    width: calc(100% - 4rem);
  }
  
  .mobile-menu-toggle { display: block; }
  .header .btn-primary { display: none; }
  
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { text-align: center; margin: 0 auto; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }
  .hero-image { height: 400px; }
  
  .room-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .glass-form { padding: 2rem 1.5rem; }
}