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

:root {
  --brand-black: #0A0A0A;
  --brand-charcoal: #1A1A1A;
  --brand-gray: #2A2A2A;
  --brand-red: #DC1F2E;
  --brand-accent: #C41E3A;
  --brand-tan: #D4C5B9;
  --white: #FFFFFF;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background-color: var(--brand-black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 2rem;
}

nav img {
  height: 3rem;
  width: auto;
  flex-shrink: 0;
  cursor: pointer;
}

@media (min-width: 640px) {
  nav img {
    height: 3.5rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

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

.back-home-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .back-home-btn {
    display: flex;
  }
}

.back-home-btn:hover {
  color: var(--white);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  padding: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.mobile-menu.open {
  display: block;
  max-height: 500px;
  opacity: 1;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu .container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.mobile-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

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

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: var(--brand-charcoal);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-animated-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
}

.hero-float {
  position: absolute;
  border-radius: 9999px;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

.hero-float-1 {
  top: 5rem;
  left: 5%;
  width: 6rem;
  height: 6rem;
  background-color: rgba(220, 31, 46, 0.3);
}

.hero-float-2 {
  top: 10rem;
  right: 8%;
  width: 7rem;
  height: 7rem;
  background-color: rgba(196, 30, 58, 0.2);
  animation-delay: 1s;
  animation-duration: 9s;
}

.hero-float-3 {
  bottom: 8rem;
  left: 15%;
  width: 5rem;
  height: 5rem;
  background-color: rgba(220, 31, 46, 0.25);
  animation-delay: 2.5s;
  animation-duration: 11s;
}

.hero-float-4 {
  top: 60%;
  left: 25%;
  width: 6.5rem;
  height: 6.5rem;
  background-color: rgba(196, 30, 58, 0.3);
  animation-delay: 3s;
  animation-duration: 12s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, -10px); }
  50% { transform: translate(-5px, -20px); }
  75% { transform: translate(-10px, -10px); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.badge {
  display: inline-block;
  background-color: rgba(220, 31, 46, 0.2);
  color: var(--brand-tan);
  padding: 0.5rem 1.25rem;
  font-weight: bold;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(220, 31, 46, 0.3);
  margin-bottom: 1.5rem;
}

h1 {
  font-weight: 900;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 4.5rem;
  }
}

.text-red {
  color: var(--brand-red);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .btn-group {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: bold;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  cursor: pointer;
}

.btn:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn svg {
  transition: transform 0.3s;
}

.btn:hover svg {
  transform: translateX(4px);
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  color: var(--gray-400);
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-dot {
  width: 0.25rem;
  height: 0.25rem;
  background-color: var(--brand-red);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.75rem;
  background-color: var(--brand-red);
  border-radius: 0.25rem;
}

section {
  padding: 6rem 0;
}

.section-bg-black {
  background-color: var(--brand-black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-bg-charcoal {
  background-color: var(--brand-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

h2 {
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  h2 {
    font-size: 3rem;
  }
}

.section-description {
  color: var(--gray-400);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background-color: var(--brand-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(220, 31, 46, 0.5);
  transform: translateY(-4px);
}

.card-icon {
  background-color: rgba(220, 31, 46, 0.2);
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(220, 31, 46, 0.3);
  transition: all 0.3s;
}

.card:hover .card-icon {
  background-color: rgba(220, 31, 46, 0.3);
  transform: scale(1.1);
}

.card-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--brand-red);
}

h3 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.card p {
  color: var(--gray-400);
  line-height: 1.75;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s;
}

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

.stats-grid {
  display: grid;
  gap: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-icon {
  background-color: rgba(220, 31, 46, 0.2);
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(220, 31, 46, 0.3);
}

.stat-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--brand-red);
}

.stat-number {
  font-weight: 900;
  font-size: 3.75rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-400);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

footer {
  background-color: var(--brand-charcoal);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer img {
  height: 4rem;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.8;
}

footer p {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

footer p + p {
  margin-top: 0.5rem;
  font-size: 0.75rem;
}

.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.7), rgba(26, 26, 26, 0.8));
}

.page-hero-animated {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(10, 10, 10, 0.2), transparent, rgba(10, 10, 10, 0.2));
}

.page-hero-pulse {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  animation: pulse-bg 5s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
  background-size: 50px 50px;
}

.info-section {
  padding: 6rem 0;
}

.info-box {
  background-color: var(--brand-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  margin-bottom: 3rem;
}

.info-box h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.info-box p {
  color: var(--gray-300);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.stat-card {
  background-color: var(--brand-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  text-align: center;
}

.stat-card-number {
  color: var(--brand-red);
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stat-card-title {
  color: var(--white);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.stat-card-description {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.content-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.content-image {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
  object-position: center;
}

.content-text h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.content-text p {
  color: var(--gray-300);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.content-text p:last-child {
  margin-bottom: 0;
}

.trust-bar {
  padding: 3rem 0;
  background-color: var(--brand-black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-bar-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .trust-bar-content {
    gap: 4rem;
  }
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-bar-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--brand-red);
  border-radius: 50%;
}

.trust-bar-text {
  color: var(--white);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.hotel-visual {
  background-color: var(--brand-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.hotel-visual-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hotel-visual-content {
  position: relative;
  z-index: 10;
}

.hotel-visual-icon {
  background-color: rgba(220, 31, 46, 0.2);
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  border: 1px solid rgba(220, 31, 46, 0.3);
}

.hotel-visual-icon svg {
  width: 3rem;
  height: 3rem;
  color: var(--brand-red);
}

.hotel-visual h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hotel-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.hotel-stat {
  background-color: var(--brand-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  text-align: center;
}

.hotel-stat-number {
  color: var(--brand-red);
  font-weight: 900;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.hotel-stat-label {
  color: var(--gray-400);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-list {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--brand-red);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.feature-title {
  color: var(--white);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.feature-description {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.region-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .region-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.region-card {
  background-color: var(--brand-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.region-name {
  color: var(--brand-red);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

@media (max-width: 639px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}
