/* ============================================================
       GRC - CONTACT PAGE STYLESHEET & VARIABLES
	               (Get in Touch)
============================================================ */

/* ============================================================
       GLOBAL STYLES & VARIABLES
============================================================ */
:root {
  --color-gray-900: #0a0a0a;
  --color-gray-800: #1a1a1a;
  --color-gray-700: #2d2d2d;
  --color-gray-400: #6b6b6b;
  --color-gray-300: #9ca3af;
  --color-gray-100: #f5f5f5;
  --color-primary: #DAA520;
  --color-primary-dark: #B8860B;
  --color-primary-light: #FFD700;
  --color-error: #ef4444;
  --color-success: #10b981;
  --card-radius: 1rem;
  --transition-base: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
       TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, .site-logo__text, .contact-card h3, .sidebar-card h3, .booking-card h3, .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-eyebrow {
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.section-header p {
  font-size: 1.125rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
       BUTTONS
============================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  box-shadow: 0 4px 12px rgba(218, 165, 32, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(218, 165, 32, 0.35);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
}

/* Disabled button state */
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ============================================================
       PAGE HERO
============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #0a0a2e 0%, #16213e 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  color: white;
  overflow: hidden;
}

.page-hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: white;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
       SECTIONS
============================================================ */
.section {
  padding: 5rem 0;
}

.section--alt {
  background-color: var(--color-gray-100);
}

/* ============================================================
       STATS GRID
============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #555;
}

/* ============================================================
       CTA BANNER
============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
}

.cta-banner h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.cta-banner .btn {
  background: white;
  color: var(--color-primary-dark);
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================================
       TEXT UTILITIES
============================================================ */
.gold-text {
  color: #b8860b !important;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================================================
       ANIMATIONS
============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
       HEADER SECTION
============================================================ */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* ============================================================
       SITE LOGO - HEADER (TOP LEFT CORNER)
============================================================ */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__image {
  height: 90px;
  width: auto;
  max-width: 100%;
  display: block;
}

/* ============================================================
       NAVIGATION - UPPERCASE, DARK TEXT
============================================================ */
.nav-list-desktop ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list-desktop a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111111;
  transition: var(--transition-base);
}

.nav-list-desktop a:hover {
  color: var(--color-primary);
}

.nav-list-desktop a.active-link {
  color: var(--color-primary);
}

.nav-list-desktop .btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
}

.nav-list-desktop .btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  transform: translateY(-2px);
}

/* ============================================================
       CONTACT METHODS GRID
============================================================ */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: white;
  border-radius: var(--card-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: var(--transition-base);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary-light);
}

.contact-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #111;
}

.contact-card p {
  color: #4a4a4a;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-card__info {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.card__link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-base);
  display: inline-block;
  margin-top: 0.5rem;
}

.card__link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ============================================================
       CONTACT GRID (FORM + SIDEBAR)
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
}

/* ============================================================
       FORM STYLES
============================================================ */
.contact-form-wrapper h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.form-description {
  color: #555;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.form-input {
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-base);
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(218, 165, 32, 0.2);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

select.form-input {
  cursor: pointer;
}

/* ============================================================
       FORM STATUS STYLES
============================================================ */
.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  display: none;
}

.form-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-status.sending {
  display: block;
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* ============================================================
       SIDEBAR STYLES
============================================================ */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: white;
  border-radius: var(--card-radius);
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.sidebar-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary-light);
  display: inline-block;
}

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .emergency {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.stats-mini {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 1rem;
}

.stat-mini {
  flex: 1;
}

.stat-mini__number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Montserrat', sans-serif;
}

.stat-mini__label {
  font-size: 0.7rem;
  color: #555;
}

.map-placeholder {
  margin: 1rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.map-note {
  font-size: 0.8rem;
  color: #555;
  margin-top: 0.5rem;
}

/* ============================================================
       BOOKING GRID
============================================================ */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.booking-card {
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: var(--transition-base);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.booking-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary-light);
}

.booking-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.booking-card__content {
  padding: 1.5rem;
  flex: 1;
}

.booking-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.booking-card p {
  color: #4a4a4a;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.booking-card__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: var(--color-primary-dark);
  font-weight: 500;
}

.book-now-btn {
  width: 100%;
}

/* ============================================================
       BOOKING FORM SECTION
============================================================ */
.booking-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--card-radius);
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.booking-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.back-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-base);
}

.back-btn:hover {
  color: var(--color-primary-dark);
}

.booking-form-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.booking-form-header p {
  color: #555;
}

PLACE IT BETWEEN: 
CTA BANNER AND FOOTER


/* ============================================================
       13. SERVICE & SUPPORT CENTER
============================================================ */
.service-support-section {
  padding: 4rem 0;
  background: white;
  position: relative;
}

/* Section Dividers */
.section-divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}

.divider-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-primary-light), var(--color-primary), transparent);
  width: 100%;
  margin: 1rem 0;
}

.divider-icon {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: var(--color-gray-900);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  font-size: 1.5rem;
  position: relative;
  box-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
}

/* Service Support Grid */
.service-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

/* Service Support Cards */
.service-support-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-support-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-support-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-support-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: #111;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.service-support-card p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-support-card .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-support-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(218, 165, 32, 0.35);
}

/* ============================================================
       14. FLOATING EMERGENCY TICKET BUTTON
============================================================ */
.floating-ticket-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: float-pulse 2s infinite;
}

.floating-ticket-btn span {
  font-size: 2rem;
}

.floating-ticket-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.floating-ticket-btn::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #DAA520, #B8860B, #DAA520);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-ticket-btn:hover::before {
  opacity: 1;
}

/* ============================================================
       15. ANIMATIONS
============================================================ */
@keyframes pulse-glow {
  0% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 4px 25px rgba(218, 165, 32, 0.5); }
  100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  20% { transform: translateX(100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes float-pulse {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(218, 165, 32, 0.5); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
       FOOTER SECTION
============================================================ */
.site-footer {
  background: var(--color-gray-900);
  color: #aaa;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.footer-logo__image {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.footer-brand p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-heading {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition-base);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom__links {
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.footer-bottom__links a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition-base);
}

.footer-bottom__links a:hover {
  color: var(--color-primary);
}

.separator {
  color: #555;
}

.footer-bottom__copyright {
  opacity: 0.7;
}

/* ============================================================
       RESPONSIVE STYLES
============================================================ */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .sidebar-card {
    flex: 1;
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .site-logo__image {
    height: 50px;
  }

  .footer-brand {
    align-items: center;
  }

  .nav-list-desktop ul {
    gap: 0.75rem;
  }

  .nav-list-desktop a {
    font-size: 0.7rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-methods-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .booking-card {
    flex-direction: column;
    text-align: center;
  }

  .booking-card__meta {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hours-list li {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }

  .booking-form-wrapper {
    padding: 1.5rem;
  }

  .footer-bottom__links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .separator {
    display: none;
  }
  
  .contact-sidebar {
    flex-direction: column;
  }
  
  .stats-mini {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============================================================
       EXTRA SMALL DEVICES (480px AND BELOW)
============================================================ */
@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-card h3 {
    font-size: 1.2rem;
  }

  .contact-form-wrapper h2 {
    font-size: 1.5rem;
  }

  .booking-form-wrapper {
    padding: 1rem;
  }

  .booking-form-header h2 {
    font-size: 1.5rem;
  }

  .booking-card h3 {
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stats-mini {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-banner {
    padding: 2rem 1.5rem;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .gold-text {
    font-size: 30px;
  }
}

/* ============================================================
       TABLET LANDSCAPE (992px AND BELOW)
============================================================ */
@media (max-width: 992px) and (min-width: 769px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
       DESKTOP LARGE (1400px AND ABOVE)
============================================================ */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  .page-hero h1 {
    font-size: 4rem;
  }

  .stats-grid {
    gap: 3rem;
  }

  .stat-number {
    font-size: 3rem;
  }
}

/* ============================================================
       PRINT STYLES
============================================================ */
@media print {
  .site-header,
  .btn,
  .site-footer,
  .cta-banner,
  .booking-grid,
  .contact-sidebar {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .contact-grid {
    display: block;
  }

  .contact-form-wrapper {
    width: 100%;
  }

  .form-input {
    border: 1px solid #ccc;
    background: #fff;
  }
}

/* ============================================================
       MOBILE NAVIGATION TOGGLE STYLES
============================================================ */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: #111;
  transition: var(--transition-base);
}

.nav-toggle:hover span {
  background: var(--color-primary);
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-list-desktop .nav-list {
    display: none;
  }
  
  .nav-list-desktop .nav-list.show {
    display: flex;
  }
  
  .header-container {
    position: relative;
  }
}

/* Desktop Navigation - Ensure proper display */
@media (min-width: 769px) {
  .nav-list-desktop .nav-list {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
}

/* Fix for navigation links on mobile */
@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
  }
  
  .nav-list .btn-primary {
    display: inline-block;
    text-align: center;
  }
}