@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Lato:wght@300;400;700&family=Cinzel:wght@400;600&display=swap');

/* =========================================================================
   DESIGN SYSTEM — "Refugiu în Natură"
   Theme: Rich forest, mountain warmth, organic comfort
   ========================================================================= */

:root {
  /* Nature Palette - Vibrant Mountain Luxury */
  --forest-deep: #112b18;
  /* Deep true forest green */
  --forest-mid: #1e4d2a;
  /* Lush pine needle */
  --forest-light: #2d733e;
  /* Vibrant leaf green */

  --earth-dark: #3b2a1a;
  /* Rich espresso wood */
  --earth-mid: #6e4926;
  /* Warm oak */

  --amber: #caa049;
  /* Elegant champagne gold */
  --amber-light: #e1bc68;
  /* Bright warm sunshine */

  --terracotta: #ab5135;
  /* Warm clay */

  /* Red accent — Premium Ruby/Burgundy (Alive and professional) */
  --red: #941b1b;
  --red-mid: #b82828;
  --red-light: #db3b3b;
  --red-glow: rgba(184, 40, 40, 0.15);

  --cream: #fcfaf8;
  /* Clean warm white */
  --cream-dark: #f0eadd;
  /* Soft natural linen */
  --smoke: #f7f3ec;
  /* Very light warmth */

  --text-dark: #1b1917;
  /* Almost black, high contrast */
  --text-mid: #4d463d;
  /* Warm dark grey */
  --text-light: #8a7f71;
  /* Elegant soft grey */
  --white: #ffffff;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cinzel', 'Trajan Pro', serif;
  --font-body: 'Lato', system-ui, sans-serif;

  /* Spacing */
  --container-max: 1240px;
  --section-pad: 120px 0;

  /* Visuals */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-bark: 0 8px 32px rgba(22, 26, 21, 0.15);
  --shadow-warm: 0 12px 40px rgba(58, 46, 38, 0.12);
  --shadow-hover: 0 24px 60px rgba(22, 26, 21, 0.22);
  --transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, opacity 0.4s ease;

  /* Textures via gradients */
  --gradient-forest: linear-gradient(145deg, var(--forest-deep) 0%, var(--forest-mid) 100%);
  --gradient-warm: linear-gradient(135deg, var(--earth-dark) 0%, var(--earth-mid) 100%);
  --gradient-amber: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  --gradient-red: linear-gradient(135deg, var(--red) 0%, var(--red-mid) 100%);
  --gradient-hero: linear-gradient(170deg, rgba(17, 43, 24, 0.75) 0%, rgba(59, 42, 26, 0.45) 50%, rgba(17, 43, 24, 0.8) 100%);
}

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

/* Accessibility Focus */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--smoke);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Organic scrollbar */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--forest-mid);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--amber);
}

::selection {
  background-color: var(--amber);
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--forest-deep);
  font-weight: 500;
  line-height: 1.2;
}

p {
  margin-bottom: 1.4rem;
  font-weight: 400;
}

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

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

ul {
  list-style: none;
}

/* =========================================================================
   UTILITIES
   ========================================================================= */

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad);
  position: relative;
}

.bg-forest {
  background: var(--gradient-forest);
  color: var(--cream);
}

.bg-forest h2,
.bg-forest h3,
.bg-forest h4 {
  color: var(--cream);
}

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

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

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

/* Section Titles */
.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}

/* Gold/amber leaf accent label */
.subtitle {
  font-family: var(--font-accent);
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  display: block;
  margin-bottom: 18px;
}

/* Leaf-shaped divider */
.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px auto 52px;
  width: fit-content;
}

.separator::before,
.separator::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--amber);
  opacity: 0.6;
}

.separator::after {
  transform: scaleX(-1);
}

.sep-leaf {
  width: 10px;
  height: 10px;
  background: var(--amber);
  transform: rotate(45deg);
  opacity: 0.8;
}

.lead {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 2;
  font-weight: 400;
  max-width: 600px;
}

/* ====== BUTTONS ====== */
.btn-primary {
  display: inline-block;
  background: var(--gradient-red);
  color: var(--white);
  padding: 17px 48px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 6px 24px rgba(139, 30, 30, 0.35);
}

@media (hover: hover) {
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-forest);
    transition: left 0.4s ease;
    z-index: -1;
  }

  .btn-primary:hover {
    box-shadow: 0 10px 36px rgba(26, 46, 30, 0.45);
  }

  .btn-primary:hover::before {
    left: 0;
  }
}

/* Hard kill for touch devices detected via JavaScript */
.is-touch-device .btn-primary::before {
  display: none !important;
}

.is-touch-device .btn-primary:active,
.is-touch-device .btn-primary:focus {
  background: var(--gradient-red) !important;
  color: var(--white) !important;
}

.full-width {
  width: 100%;
  text-align: center;
}

/* Decorative large watermark */
.watermark {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 22rem;
  line-height: 1;
  color: rgba(74, 124, 47, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* =========================================================================
   LOADER
   ========================================================================= */
#loader {
  position: fixed;
  inset: 0;
  background: var(--forest-deep);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: opacity 0.9s ease, visibility 0.9s;
}

/* Pine tree shaped spinner */
.spinner {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(212, 136, 43, 0.25);
  border-radius: 50%;
  border-top-color: var(--amber);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================================
   NAVBAR
   ========================================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all 0.5s ease;
  /* Starts transparent on hero */
  background: linear-gradient(to bottom, rgba(26, 46, 30, 0.72) 0%, rgba(26, 46, 30, 0) 100%);
  color: var(--cream);
}

.navbar.scrolled {
  background: rgba(26, 46, 30, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 80px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ====== LOGO ====== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 14px;
}

/* Logo Styling */
.logo-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.logo-top {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  letter-spacing: 6px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 600;
}

.logo-bottom {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 1.5px;
  font-style: italic;
  white-space: nowrap;
}

/* Nav Links */
.nav-right {
  display: flex;
  align-items: center;
  gap: 45px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(245, 239, 230, 0.85);
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.35s ease;
  border-radius: 2px;
}

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

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

.nav-social {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-left: 36px;
  border-left: 1px solid rgba(212, 136, 43, 0.35);
}

.nav-social a {
  font-size: 1.05rem;
  color: rgba(245, 239, 230, 0.7);
  transition: var(--transition);
}

@media (hover: hover) {
  .nav-social a:hover {
    color: var(--amber);
    transform: translateY(-2px);
  }
}



.btn-nav {
  border: 1.5px solid var(--red-light) !important;
  padding: 9px 22px !important;
  color: var(--red-light) !important;
  font-size: 0.75rem !important;
  letter-spacing: 2px;
  font-family: var(--font-accent) !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  background: transparent;
}

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

.btn-nav:hover {
  background: var(--red-mid) !important;
  color: var(--white) !important;
  border-color: var(--red-mid) !important;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--cream);
  z-index: 1001;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  /* Increased for parallax slack */
  background-image: url('imagini/balcon-vedere-munte-pensiunea-la-constanta.jpeg');
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  transform: translateY(0);
  transition: transform 0.1s linear;
  /* Smooths JS movement */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

/* Decorative corner vines (CSS only) */
.hero-overlay::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(26, 46, 30, 0.6), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
  margin-top: 40px;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--amber-light);
  display: block;
  margin-bottom: 22px;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  margin-bottom: 18px;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero h1 em {
  font-style: italic;
  color: var(--amber-light);
}

.hero p {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  margin-bottom: 48px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.78;
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 239, 230, 0.55);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-accent);
}

.scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrolldown 2s ease infinite;
}

@keyframes scrolldown {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

/* =========================================================================
   SECTIONS — scroll-margin so anchor doesn't hide under fixed navbar
   ========================================================================= */
section[id] {
  scroll-margin-top: 90px;
}

/* =========================================================================
   ABOUT (DESPRE) SECTION
   ========================================================================= */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.split-image {
  position: relative;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

/* Warm color wash */
.img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom-right, rgba(74, 124, 47, 0.08), rgba(212, 136, 43, 0.06));
  z-index: 1;
  mix-blend-mode: multiply;
}

.shadow-img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 1s ease;
}

.split-image:hover .shadow-img {
  transform: scale(1.04);
}

/* Floating badge on photo */
.badge-float {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--gradient-red);
  padding: 22px 32px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(139, 30, 30, 0.4);
  border-radius: 4px;
  z-index: 2;
  border-left: 3px solid var(--amber);
}

.badge-float span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.2;
}

.badge-float small {
  color: var(--amber-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.68rem;
  margin-top: 5px;
  display: block;
  font-family: var(--font-accent);
}

/* Stats row */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(61, 43, 31, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item i {
  color: var(--red);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.stat-item strong {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--forest-deep);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-item span {
  color: var(--text-light);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* =========================================================================
   FACILITĂȚI SECTION
   ========================================================================= */
.facilities-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 32px 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid transparent;
  box-shadow: 0 4px 20px rgba(26, 46, 30, 0.07);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-red);
  transition: width 0.45s ease;
  border-radius: 0 3px 3px 0;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--red);
}

.feature-card:hover::before {
  width: 100%;
}

/* Icon circle — proper thematic */
.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cream), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(26, 46, 30, 0.12);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-red);
}

.feature-icon i {
  font-size: 1.3rem;
  color: var(--red);
  transition: var(--transition);
}

.feature-card:hover .feature-icon i {
  color: var(--amber-light);
}

.feature-text h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  color: var(--forest-deep);
  font-weight: 700;
}

.feature-text p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* =========================================================================
   GALERIE SECTION
   ========================================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 340px;
  gap: 8px;
  margin-top: 60px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery-item:nth-child(3) {
  grid-column: span 4;
}

.gallery-item:nth-child(4) {
  grid-column: span 4;
}

.gallery-item:nth-child(5) {
  grid-column: span 4;
}

.gallery-item:nth-child(6) {
  grid-column: span 4;
}

.gallery-item:nth-child(7) {
  grid-column: span 6;
}

.gallery-item:nth-child(8) {
  grid-column: span 6;
}

.gallery-item:nth-child(9) {
  grid-column: span 12;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(26, 46, 30, 0.72), rgba(61, 43, 31, 0.55));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 30px;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}

/* Expand icon ring */
.gallery-overlay .expand-ring {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(212, 136, 43, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-overlay .expand-ring i {
  color: var(--amber-light);
  font-size: 1.1rem;
}

.gallery-overlay span {
  color: rgba(245, 239, 230, 0.8);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-accent);
}

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

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

.gallery-item:hover .expand-ring {
  transform: scale(1);
}

/* =========================================================================
   LIGHTBOX
   ========================================================================= */
.lightbox {
  display: none;
  position: fixed;
  z-index: 3000;
  inset: 0;
  background: rgba(10, 18, 11, 0.97);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 88vw;
  max-height: 88vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: var(--radius-sm);
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
}

.close-lightbox {
  position: fixed;
  top: 28px;
  right: 36px;
  font-size: 2.2rem;
  color: var(--cream);
  cursor: pointer;
  z-index: 3001;
  line-height: 1;
  transition: color 0.3s;
  font-weight: 300;
}

.close-lightbox:hover {
  color: var(--amber);
}

/* =========================================================================
   REGULI SECTION
   ========================================================================= */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.rule-box {
  text-align: center;
  padding: 44px 30px;
  background: var(--white);
  border: 1px solid rgba(148, 27, 27, 0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.rule-box:hover {
  background: var(--white);
  border-color: rgba(148, 27, 27, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.rule-box i {
  font-size: 2rem;
  color: var(--red-light);
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s ease;
}

.rule-box:hover i {
  transform: scale(1.15);
}

.rule-box h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.rule-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* =========================================================================
   CONTACT SECTION
   ========================================================================= */
.contact-section {
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  padding-top: 20px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding: 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact-row:hover {
  background: rgba(212, 136, 43, 0.08);
}

.contact-row i {
  color: var(--red-light);
  font-size: 1.3rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-row strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 5px;
}

.contact-row a,
.contact-row p {
  color: var(--text-mid);
  font-size: 1rem;
  margin: 0;
}

.contact-row a:hover {
  color: var(--forest-light);
}

/* Contact Form */
.contact-desc {
  color: var(--text-mid);
  margin-bottom: 50px;
}

.form-title {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--forest-deep);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-warm);
}

.input-group {
  margin-bottom: 22px;
  position: relative;
  /* For floating label */
  display: flex;
  flex-direction: column-reverse;
  /* Allows sibling selector trick for label */
}

/* Base Input Style */
.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 24px 16px 8px 16px;
  /* Extra top padding to make room for jumping label */
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  /* 16px prevents iOS Safari auto-zoom */
  color: var(--text-dark);
  background: var(--smoke);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

/* Floating Label Default State (looks like a placeholder inside) */
.input-group label {
  position: absolute;
  top: 15px;
  left: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  font-family: var(--font-accent);
  transition: all 0.25s ease;
  pointer-events: none;
  /* Let clicks pass to input */
  margin: 0;
}

/* When Input is Focused OR Has Content (using placeholder-shown trick) */
/* Requires HTML inputs to have a blank placeholder=" " so we know when it's NOT empty */
.input-group input:focus+label,
.input-group textarea:focus+label,
.input-group select:focus+label,
.input-group input:not(:placeholder-shown)+label,
.input-group textarea:not(:placeholder-shown)+label {
  top: 6px;
  font-size: 0.55rem;
  color: var(--forest-deep);
  font-weight: 800;
}

/* Special Case for Select (always floats because value is usually selected) */
.input-group select+label {
  top: 6px;
  font-size: 0.55rem;
  color: var(--forest-deep);
  font-weight: 800;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: var(--red-light);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
  background: var(--white);
}

.input-group textarea {
  resize: vertical;
  min-height: 90px;
}

.row-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.row-inputs .input-group {
  margin-bottom: 0;
}

/* Submit button - red gradient */
.contact-form-card .btn-primary {
  background: var(--gradient-red);
  color: var(--white);
  border: none;
  width: 100%;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-top: 10px;
  padding: 18px;
  box-shadow: 0 6px 24px rgba(139, 30, 30, 0.3);
}

.contact-form-card .btn-primary:hover {
  background: var(--gradient-forest);
  box-shadow: 0 10px 36px rgba(26, 46, 30, 0.4);
}

/* =========================================================================
   MAP & ACTIVITIES SECTION
   ========================================================================= */
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.map-side iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: none;
  display: block;
  filter: sepia(20%) saturate(80%);
}

.activities-side {
  background: var(--smoke);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.act-title {
  font-size: 2.2rem;
  color: var(--forest-deep);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.act-subtitle {
  color: var(--red-light);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: var(--font-accent);
}

.act-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.act-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid rgba(148, 27, 27, 0.1);
  transition: var(--transition);
}

.act-item:hover {
  background: var(--white);
  border-color: rgba(148, 27, 27, 0.3);
  transform: translateX(6px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.act-item i {
  color: var(--red-light);
  font-size: 1.4rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.act-item strong {
  display: block;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.act-item p {
  margin: 0;
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* =========================================================================
   FOOTER & WHATSAPP
   ========================================================================= */
footer {
  background: var(--forest-deep);
  color: rgba(245, 239, 230, 0.55);
  padding: 36px 0;
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 1px;
  border-top: 1px solid rgba(212, 136, 43, 0.15);
}

footer p {
  margin: 0;
}

/* Floating WhatsApp Button (Premium Expandable) */
.whatsapp-float {
  position: fixed;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 13px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse-wa 2s infinite;
  overflow: hidden;
  width: 60px;
}

.whatsapp-float i {
  font-size: 34px;
  min-width: 34px;
  text-align: center;
}

.whatsapp-float span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  margin-left: 12px;
  display: inline-block;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  width: 220px;
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.5);
  animation: none;
}

.whatsapp-float:hover span {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================= */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal {
  transform: translateY(0);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1150px) {
  .nav-links {
    gap: 20px;
  }

  .nav-right {
    gap: 24px;
  }

  .nav-social {
    padding-left: 18px;
  }

  .logo-bottom {
    font-size: 1.25rem;
  }
}

@media (max-width: 1024px) {
  .nav-links a {
    font-size: 0.72rem;
    letter-spacing: 1px;
  }

  .btn-nav {
    padding: 8px 16px !important;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .badge-float {
    bottom: -20px;
    right: 20px;
    padding: 28px 36px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .location-split {
    grid-template-columns: 1fr;
  }

  .map-side iframe {
    min-height: 350px;
  }

  .activities-side {
    padding: 60px 40px;
  }

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

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(9) {
    grid-column: span 12;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 65px 0;
  }

  .container {
    width: 92%;
  }

  .nav-container {
    width: 97%;
  }

  .nav-links {
    display: none;
  }

  .nav-social {
    padding-left: 0;
    border-left: none;
    gap: 12px;
  }

  .nav-social a {
    font-size: 1.25rem;
  }

  .nav-social a:hover,
  .nav-social a:active,
  .nav-social a:focus {
    color: rgba(245, 239, 230, 0.7) !important;
    transform: none !important;
  }

  .hamburger {
    display: block;
    margin-left: 8px;
  }

  .nav-right {
    position: relative;
    gap: 15px;
  }

  .nav-right.active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 40px;
    right: 0;
    left: auto;
    bottom: auto;
    background: var(--white);
    padding: 24px 30px;
    gap: 20px;
    z-index: 999;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
  }

  .nav-right.active .nav-links a {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
  }

  .row-inputs {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 36px 28px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 12;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .act-list {
    grid-template-columns: 1fr;
  }

  .watermark {
    font-size: 10rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    height: 54px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float:hover {
    width: 54px;
    background-color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float i {
    font-size: 32px;
    min-width: unset;
    margin: 0;
    transform: none !important;
  }

  /* Complete Overrides for Touch Devices - HARDCODED VALUES */
  a.btn-primary:active,
  a.btn-primary:focus,
  a.btn-primary:hover,
  button.btn-primary:active,
  button.btn-primary:focus,
  button.btn-primary:hover,
  .contact-form-card .btn-primary:active,
  .contact-form-card .btn-primary:focus,
  .contact-form-card .btn-primary:hover {
    background: linear-gradient(135deg, #941b1b 0%, #b82828 100%) !important;
    background-color: #941b1b !important;
    background-image: linear-gradient(135deg, #941b1b 0%, #b82828 100%) !important;
    box-shadow: 0 6px 24px rgba(139, 30, 30, 0.3) !important;
    transform: none !important;
    color: #ffffff !important;
    transition: none !important;
    animation: none !important;
  }

  .btn-primary,
  .contact-form-card .btn-primary {
    transition: none !important;
    -webkit-tap-highlight-color: transparent !important;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 50px 0;
  }

  .container {
    width: 94%;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .badge-float {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 24px;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .rules-grid {
    grid-template-columns: 1fr;
  }

  .activities-side {
    padding: 50px 24px;
  }

  .scroll-cue {
    bottom: 15px;
  }
}