/* =========================================
   VARIABLES & THEMING
   ========================================= */
:root {
  /* Colors */
  --bg-color: #ffffff;
  --bg-gradient: linear-gradient(135deg, #ffffff 0%, #f5f9fc 100%);
  --bg-alt: #f1f5f9;

  --primary-color: #0b3b60; /* Deep Blue */
  --primary-light: #155a8f;
  --emerald: #0a705e;

  --text-main: #1f2937;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  --border-color: #e5e7eb;

  /* Shadows - Dual Shadow System */
  --shadow-base: 0 10px 25px rgba(11, 59, 96, 0.05);
  --shadow-elevated: 0 15px 35px rgba(11, 59, 96, 0.08);
  --shadow-heavy: 0 25px 50px -12px rgba(11, 59, 96, 0.25);

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  /* Spacing */
  --sec-padding: 120px;

  /* Typography */
  --font-main: "Inter", system-ui, -apple-system, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease-out;
  --transition-base: 0.3s ease-out;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  background: var(--bg-gradient);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.bg-alt {
  background-color: var(--bg-alt);
}

/* =========================================
   UTILITIES
   ========================================= */
.shadow-base {
  box-shadow: var(--shadow-base);
}
.shadow-elevated {
  box-shadow: var(--shadow-elevated);
}

.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hidden {
  display: none !important;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

.section-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-base);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 10px 25px rgba(11, 59, 96, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(11, 59, 96, 0.3);
  background-color: var(--primary-light);
}

.btn-secondary {
  background-color: rgba(11, 59, 96, 0.05);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: rgba(11, 59, 96, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 24px;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-text {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-text:hover {
  color: var(--primary-light);
  gap: 8px; /* Slight arrow push */
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* =========================================
   AESTHETIC & MICRO-ANIMATIONS
   ========================================= */
/* Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Page Reveal */
.page-reveal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  z-index: 10000;
  transition: opacity 0.5s ease-out;
  pointer-events: none;
}

/* Scroll Progress */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--emerald));
  z-index: 1000;
  width: 0%;
  transition: width 0.1s linear;
}

/* Stagger Animate Classes for Intersection Observer */
.stagger-animate {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

.stagger-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(11, 59, 96, 0.4);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(11, 59, 96, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(11, 59, 96, 0);
  }
}

.pulse-animation {
  animation: pulse 2.5s infinite;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================
   HEADER
   ========================================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 900;
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
}

.main-header.scrolled {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition-base);
}

.main-header.scrolled .header-container {
  height: 60px;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.logo-spec {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

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

.nav-link {
  font-weight: 500;
  color: var(--text-main);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-base);
}

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

/* =========================================
   HERO
   ========================================= */
.hero {
  padding-top: 140px;
  padding-bottom: 60px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(11, 59, 96, 0.05) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  z-index: -1;
  border-radius: 50%;
}

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

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

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(10, 112, 94, 0.1);
  color: var(--emerald);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-image-wrapper {
  position: relative;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.floating-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
  animation: float 8s ease-in-out infinite;
}

.trust-badges-wrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-badge {
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  min-width: 140px;
  box-shadow: var(--shadow-base);
}

.trust-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.trust-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.trust-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.trust-icon {
  color: var(--primary-color);
  margin-bottom: 8px;
}

/* =========================================
   TRUST BLOCK / ABOUT
   ========================================= */
.trust-details {
  padding-top: var(--sec-padding);
}

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

.trust-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.trust-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 1.125rem;
  color: var(--text-main);
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A705E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E")
    no-repeat center center;
  background-size: contain;
}

.signature-block {
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.signature-name {
  font-size: 1.5rem;
  font-family: "Georgia", serif; /* Simulating signature feel */
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.signature-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.trust-photo {
  position: relative;
  border-radius: var(--radius-lg);
}

.action-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
}

.athlete-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-elevated);
  font-weight: 600;
  color: var(--text-main);
}

.athlete-badge svg {
  color: var(--emerald);
}

/* =========================================
   STICKY CONVERSION STRIP
   ========================================= */
.sticky-conversion-strip {
  position: fixed;
  top: 80px; /* Below header */
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  z-index: 800;
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--transition-base);
}

.sticky-conversion-strip.visible {
  transform: translateY(0);
  opacity: 1;
}

.main-header.scrolled + .sticky-conversion-strip {
  top: 60px; /* Adjust based on scrolled header height */
}

.strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
}

.strip-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-main);
}

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

.service-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: 1px solid transparent;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(11, 59, 96, 0.05);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(11, 59, 96, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* =========================================
   REVIEWS
   ========================================= */
.reviews-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.rating-huge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.rating-score {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.rating-stars {
  display: flex;
  color: #fbbf24; /* Gold */
}

.review-meta-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.slider-controls {
  display: flex;
  gap: 12px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-color);
  transition: all var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  opacity: 0.4;
  filter: blur(4px);
  transition: all var(--transition-slow);
  padding: 0 10px;
}

.slide.active {
  opacity: 1;
  filter: blur(0);
}

.slide-content {
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius-lg);
}

.review-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.placeholder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--border-color);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  color: var(--primary-color);
}

.author-date {
  font-size: 0.875rem;
  color: var(--text-light);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 59, 96, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.zoom-icon {
  color: #fff;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid #fff;
  border-radius: var(--radius-pill);
  transform: translateY(10px);
  transition: transform var(--transition-base);
}

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

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

.gallery-item:hover .zoom-icon {
  transform: translateY(0);
}

/* =========================================
   BOOKING FORM
   ========================================= */
.booking-container {
  background: #fff;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.booking-info {
  padding: 4rem;
  background: var(--primary-color);
  color: #fff;
}

.booking-info .section-title,
.booking-info .section-text {
  color: #fff;
}

.booking-info .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.contact-list {
  list-style: none;
  margin-top: 3rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

.contact-list svg {
  color: var(--emerald);
}

.booking-form-wrapper {
  padding: 4rem;
  position: relative;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(11, 59, 96, 0.1);
}

.form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.form-success svg {
  margin-bottom: 1rem;
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
  background: var(--bg-alt);
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col {
  max-width: 300px;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.footer-trust p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 8px;
}

/* =========================================
   FLOATING ELEMENTS & MODALS
   ========================================= */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366; /* WhatsApp Green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-elevated);
  z-index: 990;
  transition: transform var(--transition-fast);
}

.floating-wa:hover {
  transform: scale(1.1);
}

.floating-tg {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #229ED9; /* Telegram Blue */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-elevated);
    z-index: 990;
    transition: transform var(--transition-fast);
}

.floating-tg:hover {
    transform: scale(1.1);
}

.mobile-sticky-cta {
  display: none; /* Hide on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  z-index: 991;
}

/* Exit Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 59, 96, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  max-width: 460px;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-base);
}

.modal.active .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 2rem;
  color: var(--text-light);
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-title {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.modal-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: #fff;
  margin-top: 1rem;
  font-size: 1.125rem;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  opacity: 0.7;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3rem;
  opacity: 0.5;
  padding: 20px;
}

.lightbox-nav:hover {
  opacity: 1;
}
.lightbox-nav.prev {
  left: 20px;
}
.lightbox-nav.next {
  right: 20px;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .trust-badges-wrapper {
    justify-content: center;
  }
  .floating-portrait {
    max-width: 500px;
    margin: 0 auto;
    display: block;
  }
  .hero::before {
    right: 50%;
    transform: translateX(50%);
    top: -50px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
  }
  .trust-list li {
    text-align: left;
  }

  .reviews-container {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-container {
    grid-template-columns: 1fr;
  }
  .booking-info {
    padding: 3rem;
  }
  .booking-form-wrapper {
    padding: 3rem;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .main-nav {
    display: none; /* simple hidden mobile nav for MVP */
  }

  .mobile-sticky-cta {
    display: block;
  }
  .floating-tg {
    bottom: 90px;
  }

  .trust-badge {
    min-width: 100px;
    padding: 12px;
  }
  .trust-number {
    font-size: 1.5rem;
  }

  .booking-info {
    padding: 2rem;
  }
  .booking-form-wrapper {
    padding: 2rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }
}
