@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
  --black-deep: #0a0a0a;
  --black-rich: #111111;
  --black-soft: #1a1a1a;
  --black-card: #1e1e1e;
  --black-lighter: #2a2a2a;
  --gold-primary: #d4af37;
  --gold-light: #f4e5a3;
  --gold-bright: #ffd700;
  --gold-dark: #b8860b;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --red-cta: #dc2626;
  --red-hover: #ef4444;
  --red-glow: rgba(220, 38, 38, 0.6);
  --white: #ffffff;
  --white-soft: #f5f5f5;
  --gray-light: #e5e5e5;
  --gray: #a3a3a3;
  --gray-dark: #737373;
  --whatsapp: #25d366;
  --whatsapp-glow: rgba(37, 211, 102, 0.5);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-elegant: 'Cormorant Garamond', serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== NEON GLOW EFFECTS ===== */
.neon-text {
  color: var(--gold-primary);
  text-shadow: 0 0 10px var(--gold-glow), 0 0 20px var(--gold-glow), 0 0 40px rgba(212, 175, 55, 0.2);
}

.neon-border {
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow), inset 0 0 10px rgba(212, 175, 55, 0.1);
}

.glow-hover {
  transition: var(--transition);
}

.glow-hover:hover {
  box-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(212, 175, 55, 0.2);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.75rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-shadow: 0 0 10px var(--gold-glow);
  letter-spacing: 2px;
}

.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white-soft);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
  transition: var(--transition);
}

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

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

.nav-book-btn {
  background: var(--red-cta);
  color: var(--white) !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 4px;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  box-shadow: 0 4px 15px var(--red-glow);
  animation: pulse-red 2s infinite;
}

.nav-book-btn::after {
  display: none !important;
}

.nav-book-btn:hover {
  background: var(--red-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--red-glow);
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 4px 15px var(--red-glow); }
  50% { box-shadow: 0 4px 30px var(--red-glow), 0 0 50px rgba(220, 38, 38, 0.3); }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition);
  box-shadow: 0 0 5px var(--gold-glow);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black-deep) 0%, #1a1510 50%, var(--black-deep) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  z-index: 1;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--gold-primary);
  text-shadow: 
    0 0 20px var(--gold-glow),
    0 0 40px rgba(212, 175, 55, 0.3),
    0 0 80px rgba(212, 175, 55, 0.15);
  animation: neon-flicker 3s infinite alternate;
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 
      0 0 20px var(--gold-glow),
      0 0 40px rgba(212, 175, 55, 0.3),
      0 0 80px rgba(212, 175, 55, 0.15);
  }
  20%, 24%, 55% {
    text-shadow: 
      0 0 10px var(--gold-glow),
      0 0 20px rgba(212, 175, 55, 0.2);
  }
}

.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--white-soft);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-tagline strong {
  color: var(--gold-light);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red-cta);
  color: var(--white);
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 35px var(--red-glow);
}

.btn-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
  background: var(--gold-primary);
  color: var(--black-deep);
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--gold-glow);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 20px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  background: #22c55e;
  transform: translateY(-3px);
  box-shadow: 0 8px 35px var(--whatsapp-glow);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-item {
  text-align: center;
}

.trust-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.trust-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background: var(--black-rich);
}

.section-darker {
  background: var(--black-deep);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  position: relative;
}

.section-badge::before,
.section-badge::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--gold-primary);
  box-shadow: 0 0 5px var(--gold-glow);
}

.section-badge::before { right: calc(100% + 15px); }
.section-badge::after { left: calc(100% + 15px); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-title .gold {
  color: var(--gold-primary);
  text-shadow: 0 0 10px var(--gold-glow);
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== ROOM CARDS ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--black-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-slow);
  position: relative;
}

.room-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.15);
}

.room-card-image {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--black-lighter), var(--black-soft));
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.room-card:hover .room-card-image img {
  transform: scale(1.1);
}

.room-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold-primary);
  color: var(--black-deep);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.room-card-content {
  padding: 1.5rem;
}

.room-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.room-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.room-feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--gray);
}

.room-feature svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-primary);
}

.room-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.price-period {
  font-size: 0.85rem;
  color: var(--gray);
}

.room-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.room-card-actions .btn {
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
}

/* ===== AMENITIES GRID ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.amenity-card {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.amenity-card:hover::before {
  opacity: 1;
}

.amenity-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 20px var(--gold-glow);
}

.amenity-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gold-primary);
}

.amenity-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.amenity-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== CONFERENCE SECTION ===== */
.conference-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.conference-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.conference-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.conf-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.conf-feature-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.conf-feature-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold-primary);
}

.conf-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.conf-feature p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--gold-light);
  font-weight: 500;
}

/* ===== LOCATION SECTION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.location-info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.location-info p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.distance-list {
  list-style: none;
}

.distance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.distance-item:last-child {
  border-bottom: none;
}

.distance-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white-soft);
}

.distance-label svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-primary);
}

.distance-value {
  font-weight: 600;
  color: var(--gold-primary);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transform: translateX(5px);
}

.contact-card-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon.phone {
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid var(--red-cta);
}

.contact-card-icon.whatsapp {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid var(--whatsapp);
}

.contact-card-icon.email {
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold-primary);
}

.contact-card-icon.location {
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold-primary);
}

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

.contact-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

.contact-card a {
  color: var(--gold-primary);
  font-weight: 500;
}

.contact-form {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--black-soft);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #1a1510 0%, var(--black-deep) 50%, #1a1510 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

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

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner h2 .gold {
  color: var(--gold-primary);
  text-shadow: 0 0 15px var(--gold-glow);
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.cta-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.urgency-text {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--red-cta);
  font-weight: 600;
  animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.float-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.float-btn.call {
  background: var(--red-cta);
  animation: float-pulse-red 2s infinite;
}

.float-btn.call:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px var(--red-glow);
}

.float-btn.whatsapp {
  background: var(--whatsapp);
  animation: float-pulse-green 2s infinite;
}

.float-btn.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px var(--whatsapp-glow);
}

@keyframes float-pulse-red {
  0%, 100% { box-shadow: 0 4px 20px var(--red-glow); }
  50% { box-shadow: 0 4px 30px var(--red-glow), 0 0 50px rgba(220, 38, 38, 0.3); }
}

@keyframes float-pulse-green {
  0%, 100% { box-shadow: 0 4px 20px var(--whatsapp-glow); }
  50% { box-shadow: 0 4px 30px var(--whatsapp-glow), 0 0 50px rgba(37, 211, 102, 0.3); }
}

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-text {
  font-size: 0.85rem;
  color: var(--gray);
  display: none;
}

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

.sticky-cta-buttons {
  display: flex;
  gap: 0.75rem;
}

.sticky-cta .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black-deep);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-primary);
  text-shadow: 0 0 10px var(--gold-glow);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
  box-shadow: 0 0 5px var(--gold-glow);
}

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

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

.footer-links a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-primary);
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--gray-dark);
  font-size: 0.8rem;
}

/* ===== CONVERSION BOOSTERS ===== */
.converter-strip {
  background: linear-gradient(90deg, var(--red-cta), #b91c1c);
  padding: 0.75rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.converter-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.converter-strip p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.converter-strip a {
  color: var(--gold-light);
  text-decoration: underline;
  font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-primary);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black-deep);
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-meta {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== PAGE HERO (INTERNAL PAGES) ===== */
.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--black-deep) 0%, #1a1510 50%, var(--black-deep) 100%);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gold-primary);
  text-shadow: 0 0 20px var(--gold-glow);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--gray);
}

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

.breadcrumb span {
  color: var(--gray-dark);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .conference-hero,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--black-rich);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    transition: var(--transition);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 1rem;
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  
  .room-card-actions {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  
  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }
  
  .conference-features {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .sticky-cta-text {
    display: none;
  }
  
  .floating-buttons {
    bottom: 5rem;
    right: 1rem;
  }
  
  .float-btn {
    width: 50px;
    height: 50px;
  }
  
  .float-btn svg {
    width: 24px;
    height: 24px;
  }
  
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }
  
  .sticky-cta-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== LOADING ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-primary);
  text-shadow: 0 0 20px var(--gold-glow);
  animation: loader-pulse 1.5s infinite;
}

@keyframes loader-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.98); }
}
