/* ==========================================================================
   TurnKey Venue Theme — Sports Complex / Hospitality / Entertainment
   Modular: works for full complex, hotel-only, restaurant-only, or any combo
   Font: Inter (Google Fonts)
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text, #1a1a1a);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent, #E8722A);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-dark, #c55a1a);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary, #1B3A5C);
}

:focus-visible {
  outline: 3px solid var(--accent, #E8722A);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   1. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-wide {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--primary, #1B3A5C);
  color: #ffffff;
}

.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section-gray {
  background: var(--light-bg, #F5F7FA);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary, #1B3A5C);
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-title {
  color: #ffffff;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   2. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary, #1B3A5C);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--primary, #1B3A5C);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent, #E8722A);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--accent, #E8722A);
}

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

.nav-cta {
  background: var(--accent, #E8722A);
  color: #ffffff !important;
  padding: 10px 24px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background-color 0.2s ease, transform 0.15s ease !important;
}

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

.nav-cta:hover {
  background: var(--accent-dark, #c55a1a);
  transform: translateY(-2px);
  color: #ffffff;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary, #1B3A5C);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   3. HERO — Image-Forward Venue Style
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding: 160px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 34, 54, 0.7) 0%,
    rgba(15, 34, 54, 0.5) 50%,
    rgba(15, 34, 54, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 114, 42, 0.25);
  color: #fbbf80;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(232, 114, 42, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   3b. VENUE STATS BAR
   -------------------------------------------------------------------------- */
.venue-stats {
  background: var(--primary, #1B3A5C);
  padding: 0;
  position: relative;
  z-index: 2;
}

.venue-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}

.venue-stat {
  padding: 36px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.venue-stat:last-child {
  border-right: none;
}

.venue-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent, #E8722A);
  line-height: 1;
  margin-bottom: 6px;
}

.venue-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: var(--accent, #E8722A);
  color: #ffffff;
  border-color: var(--accent, #E8722A);
}

.btn-primary:hover {
  background: var(--accent-dark, #c55a1a);
  border-color: var(--accent-dark, #c55a1a);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: var(--accent, #E8722A);
  border-color: var(--accent, #E8722A);
}

.btn-secondary:hover {
  background: var(--accent, #E8722A);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--primary, #1B3A5C);
  border-color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: var(--primary, #1B3A5C);
  border-color: #ffffff;
}

.btn-white:hover {
  background: #f1f5f9;
  border-color: #f1f5f9;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   5. FACILITIES GRID
   -------------------------------------------------------------------------- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.facility-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent, #E8722A);
}

.facility-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary, #1B3A5C) 0%, var(--primary-dark, #0F2236) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.facility-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-card-image svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.3);
}

.facility-card-body {
  padding: 28px 24px;
}

.facility-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent, #E8722A);
  margin-bottom: 8px;
}

.facility-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary, #1B3A5C);
}

.facility-card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.facility-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.facility-spec {
  font-size: 0.8125rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
}

.facility-spec strong {
  color: var(--primary, #1B3A5C);
}

.facility-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent, #E8722A);
  margin-top: 12px;
}

.facility-card-link:hover {
  gap: 10px;
}

/* --------------------------------------------------------------------------
   6. PACKAGES / PRICING
   -------------------------------------------------------------------------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.package-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid #e2e8f0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
  border-color: var(--accent, #E8722A);
  transform: scale(1.03);
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent, #E8722A);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary, #1B3A5C);
  margin-bottom: 8px;
}

.package-desc {
  font-size: 0.9375rem;
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.6;
}

.package-price {
  margin-bottom: 28px;
}

.package-price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary, #1B3A5C);
  line-height: 1;
}

.package-price-amount span {
  font-size: 1.25rem;
  font-weight: 600;
  color: #64748b;
}

.package-price-note {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 4px;
}

.package-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.package-includes li {
  padding: 10px 0;
  font-size: 0.9375rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.package-includes li:last-child {
  border-bottom: none;
}

.package-includes li::before {
  content: "✓";
  color: var(--accent, #E8722A);
  font-weight: 700;
  flex-shrink: 0;
}

.package-card .btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   7. HOTELS / ACCOMMODATIONS
   -------------------------------------------------------------------------- */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.hotel-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.hotel-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary, #1B3A5C), var(--primary-dark, #0F2236));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hotel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-card-body {
  padding: 24px;
}

.hotel-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary, #1B3A5C);
}

.hotel-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: #64748b;
}

.hotel-card-meta .stars {
  color: var(--accent, #E8722A);
  letter-spacing: 2px;
}

.hotel-card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-amenity {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary, #1B3A5C);
  background: var(--light-bg, #F5F7FA);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

/* --------------------------------------------------------------------------
   8. RESTAURANTS / DINING
   -------------------------------------------------------------------------- */
.restaurants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.restaurant-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.restaurant-card-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--primary, #1B3A5C), var(--primary-dark, #0F2236));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.restaurant-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-card-body {
  padding: 24px;
}

.restaurant-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary, #1B3A5C);
}

.restaurant-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.8125rem;
  color: #64748b;
}

.restaurant-cuisine {
  color: var(--accent, #E8722A);
  font-weight: 600;
}

.restaurant-price {
  font-weight: 600;
}

.restaurant-card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. EVENTS / TOURNAMENTS
   -------------------------------------------------------------------------- */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.event-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.event-date {
  text-align: center;
  min-width: 72px;
  flex-shrink: 0;
}

.event-date-month {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent, #E8722A);
  letter-spacing: 0.08em;
}

.event-date-day {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary, #1B3A5C);
  line-height: 1;
}

.event-info {
  flex: 1;
}

.event-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary, #1B3A5C);
}

.event-info p {
  font-size: 0.9375rem;
  color: #64748b;
}

.event-meta {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.event-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--light-bg, #F5F7FA);
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.event-status {
  flex-shrink: 0;
}

.event-status-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.event-status-badge.open {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.event-status-badge.coming-soon {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.event-status-badge.sold-out {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* --------------------------------------------------------------------------
   10. GALLERY
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

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

.gallery-item-overlay span {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Featured gallery item (spans 2 cols) */
.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* --------------------------------------------------------------------------
   11. FEATURES / WHY US
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 114, 42, 0.1);
  border-radius: 20px;
  color: var(--accent, #E8722A);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.section-dark .feature-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.section-dark .feature-item p {
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   12. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.testimonial-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary, #1B3A5C), var(--primary-dark, #0F2236));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-info strong {
  display: block;
  font-size: 1rem;
  color: var(--primary, #1B3A5C);
}

.testimonial-info span {
  font-size: 0.875rem;
  color: #94a3b8;
}

/* --------------------------------------------------------------------------
   13. APP DOWNLOAD CTA
   -------------------------------------------------------------------------- */
.app-cta {
  background: linear-gradient(135deg, var(--primary, #1B3A5C) 0%, var(--primary-dark, #0F2236) 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.app-cta h2 {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.app-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.app-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   14. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--accent, #E8722A) 0%, var(--accent-dark, #c55a1a) 100%);
  color: #ffffff;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::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='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   15. CONTACT
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.contact-form h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--primary, #1B3A5C);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary, #1B3A5C);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text, #1a1a1a);
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent, #E8722A);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(232, 114, 42, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-status {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  display: none;
}

.form-status-success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status-error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.contact-info-card h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 12px;
}

.contact-info-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary, #1B3A5C);
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--accent, #E8722A);
}

/* --------------------------------------------------------------------------
   16. ABOUT
   -------------------------------------------------------------------------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--primary, #1B3A5C);
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 48px auto 0;
}

.team-member {
  text-align: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary, #1B3A5C), var(--primary-dark, #0F2236));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-member .role {
  font-size: 0.9375rem;
  color: var(--accent, #E8722A);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-member .bio {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   17. HOW IT WORKS / BOOKING PROCESS
   -------------------------------------------------------------------------- */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.how-it-works-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent, #E8722A);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
}

.how-it-works-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.how-it-works-step p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   18. PAGE HERO (Inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary, #1B3A5C) 0%, var(--primary-dark, #0F2236) 100%);
  color: #ffffff;
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.875rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--primary, #1B3A5C);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand .logo-text {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  display: block;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  transition: background-color 0.2s ease;
}

.footer-social a:hover {
  background: var(--accent, #E8722A);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 24px;
}

/* --------------------------------------------------------------------------
   20. LEGAL PAGES
   -------------------------------------------------------------------------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 0;
}

.legal-content h2 {
  font-size: 1.625rem;
  font-weight: 700;
  margin: 48px 0 16px;
  color: var(--primary, #1B3A5C);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0 24px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 8px;
  list-style: disc;
}

/* --------------------------------------------------------------------------
   21. LIGHTBOX
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 3rem;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 8px;
  line-height: 1;
  transition: background 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* --------------------------------------------------------------------------
   22. FACILITY DETAIL PAGE
   -------------------------------------------------------------------------- */
.facility-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.facility-detail-image {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary, #1B3A5C), var(--primary-dark, #0F2236));
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facility-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-detail-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.facility-detail-info p {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 24px;
}

.facility-detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.facility-detail-spec {
  background: var(--light-bg, #F5F7FA);
  padding: 16px 20px;
  border-radius: 10px;
}

.facility-detail-spec label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  display: block;
  margin-bottom: 4px;
}

.facility-detail-spec span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary, #1B3A5C);
}

/* --------------------------------------------------------------------------
   23. FAQ
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary, #1B3A5C);
}

.faq-item p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   24. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }

  .hero h1 { font-size: 3rem; }
  .hero { min-height: 70vh; }

  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-8px); }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .about-hero { gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .facility-detail-header { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }

  .section { padding: 56px 0; }
  .section-title { font-size: 2rem; }
  .section-subtitle { font-size: 1.125rem; }

  .header-content { height: 64px; }
  .mobile-menu-btn { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active { display: flex; }
  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 1rem;
  }

  .nav-links a::after { display: none; }

  .nav-cta {
    margin: 16px 24px;
    text-align: center;
  }

  .hero { padding: 120px 0 80px; min-height: 60vh; }
  .hero h1 { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1.125rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }

  .venue-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

  .facilities-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; max-width: 400px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.featured { grid-column: span 2; grid-row: span 1; }
  .events-list { gap: 16px; }
  .event-card { flex-direction: column; text-align: center; gap: 16px; }
  .how-it-works-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-hero { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }

  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 2.25rem; }

  .cta-content h2 { font-size: 2rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.875rem; }
  .section-title { font-size: 1.75rem; }
  .page-hero h1 { font-size: 1.875rem; }
  .features-grid { grid-template-columns: 1fr; }
  .venue-stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.featured { grid-column: span 1; }
  .venue-stat-number { font-size: 2rem; }
  .facility-detail-specs { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   25. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .site-footer,
  .cta-section,
  .app-cta,
  .hero-actions,
  .mobile-menu-btn {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .hero, .page-hero {
    background: none !important;
    color: #000;
    padding: 20px 0;
  }
}
