/* ==========================================================================
   KLOKA VILLAGE — Modern Redesign
   Complete Stylesheet v2.0
   ========================================================================== */

/* -------------------------------------------------------------------------
   1. CSS VARIABLES
   ------------------------------------------------------------------------- */
:root {
  --primary:        #1C3D2B;
  --primary-light:  #2D5A3D;
  --primary-dark:   #0D1F14;
  --gold:           #C9943C;
  --gold-light:     #E8B96A;
  --gold-pale:      #F5E6C8;
  --cream:          #F2ECD9;
  --cream-dark:     #E5D9BD;
  --sage:           #EAF2E5;
  --sage-dark:      #D3E8CA;
  --bark:           #7D5A3C;
  --white:          #FFFFFF;
  --dark:           #0D1F14;
  --text:           #1A1A1A;
  --text-muted:     #6B7280;
  --text-light:     #9CA3AF;
  --border:         rgba(201,148,60,0.2);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow:         0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold:    0 8px 32px rgba(201,148,60,0.25);
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --transition:     0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast:0.2s ease;
  --nav-height:     92px;
  --section-gap:    120px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

/* -------------------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* -------------------------------------------------------------------------
   4. LAYOUT UTILITIES
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

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

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

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

/* -------------------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 40px rgba(201,148,60,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn svg, .btn i {
  transition: transform 0.3s ease;
}

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

/* -------------------------------------------------------------------------
   6. NAVIGATION
   ------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
  height: var(--nav-height);
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 31, 20, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-height);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-logo .logo-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.navbar-cta {
  justify-self: end;
}

.navbar-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: var(--transition-fast);
  position: relative;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  width: 20px;
}

.navbar-nav a.active {
  color: var(--white);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-cta .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

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

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }

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

/* -------------------------------------------------------------------------
   7. HERO SECTION
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 31, 20, 0.75) 0%,
    rgba(13, 31, 20, 0.45) 50%,
    rgba(201, 148, 60, 0.15) 100%
  );
}

.hero-overlay-pattern {
  position: absolute;
  inset: 0;
  background-image: 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='%23C9943C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,148,60,0.2);
  border: 1px solid rgba(201,148,60,0.4);
  backdrop-filter: blur(10px);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-title .highlight {
  color: var(--gold-light);
  display: block;
  font-style: italic;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* -------------------------------------------------------------------------
   8. STATS BAR
   ------------------------------------------------------------------------- */
.stats-bar {
  background: var(--primary-dark);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--gold), var(--primary-dark));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.4rem;
  display: block;
}

/* -------------------------------------------------------------------------
   9. ABOUT SECTION
   ------------------------------------------------------------------------- */
.about-section {
  background: var(--white);
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-badge-float {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.about-badge-float strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-float span {
  font-size: 0.75rem;
  opacity: 0.85;
  letter-spacing: 1px;
}

.about-content {
  padding-left: 2rem;
}

.about-content .section-label {
  margin-bottom: 0.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.about-feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.about-feature-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.about-feature-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------------------
   10. HIGHLIGHTS / FEATURE CARDS
   ------------------------------------------------------------------------- */
.highlights-section {
  background: var(--sage);
  position: relative;
}

.highlights-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231C3D2B' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.highlight-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.highlight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.highlight-card:hover .highlight-card-image img {
  transform: scale(1.08);
}

.highlight-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(13,31,20,0.5), transparent);
  pointer-events: none;
}

.highlight-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  z-index: 2;
}

.highlight-card-body {
  padding: 1.5rem;
}

.highlight-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--primary-dark);
  transition: color 0.2s ease;
}

.highlight-card:hover .highlight-card-body h3 {
  color: var(--gold);
}

.highlight-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.highlight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.highlight-card-footer span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.highlight-card-arrow {
  width: 32px;
  height: 32px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  transition: var(--transition);
}

.highlight-card:hover .highlight-card-arrow {
  background: var(--gold);
  color: var(--white);
}

/* -------------------------------------------------------------------------
   11. GALLERY SECTION (PREVIEW)
   ------------------------------------------------------------------------- */
.gallery-section {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,148,60,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.gallery-section .section-title,
.gallery-section .section-label {
  color: var(--white);
}

.gallery-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.gallery-masonry {
  columns: 3;
  column-gap: 1.25rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,20,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

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

.gallery-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

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

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

/* -------------------------------------------------------------------------
   12. VISIT / ACTIVITIES SECTION
   ------------------------------------------------------------------------- */
.visit-section {
  background: var(--white);
  position: relative;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.activity-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--sage);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sage-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.activity-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.activity-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.activity-card:hover::before {
  transform: scaleX(1);
}

.activity-icon {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: var(--transition);
  color: var(--white);
}

.activity-card:hover .activity-icon {
  background: var(--gold);
  transform: scale(1.1) rotate(5deg);
}

.activity-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.activity-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* -------------------------------------------------------------------------
   13. NATURE BANNER (PARALLAX)
   ------------------------------------------------------------------------- */
.nature-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.nature-banner-bg {
  position: absolute;
  inset: -80px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.nature-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,20,0.8), rgba(28,61,43,0.6));
  z-index: 1;
}

.nature-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  width: 100%;
}

.nature-banner-content blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: var(--cream);
}

.nature-banner-content cite {
  font-size: 0.9rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   14. TESTIMONIALS
   ------------------------------------------------------------------------- */
.testimonials-section {
  background: var(--sage);
}

.testimonials-swiper {
  padding-bottom: 3.5rem !important;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--gold-pale);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.testimonial-stars i, .testimonial-stars span {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.swiper-pagination-bullet {
  background: var(--primary) !important;
  opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* -------------------------------------------------------------------------
   15. CTA / VISIT SECTION
   ------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--section-gap) 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,148,60,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,148,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content .section-title {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* -------------------------------------------------------------------------
   16. FOOTER
   ------------------------------------------------------------------------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .navbar-logo {
  margin-bottom: 1.25rem;
  display: inline-flex;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h5 {
  color: var(--white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col ul li a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-4px);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

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

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(201,148,60,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-contact-text strong {
  display: block;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* -------------------------------------------------------------------------
   17. PAGE HEADER (INNER PAGES)
   ------------------------------------------------------------------------- */
.page-header {
  position: relative;
  height: 45vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  margin-top: var(--nav-height);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,20,0.85), rgba(28,61,43,0.6));
}

.page-header-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.page-header-content .section-label {
  color: var(--gold-light);
}

.page-header-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.page-header-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 500px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
}

.breadcrumb-current {
  color: var(--gold-light);
}

/* -------------------------------------------------------------------------
   18. ABOUT PAGE
   ------------------------------------------------------------------------- */
.about-blocks {
  background: var(--sage);
  padding: var(--section-gap) 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-block {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 0;
  min-height: 340px;
  max-width: 1100px;
  width: calc(100% - 4rem);
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.16);
}

.about-block:nth-child(even) {
  grid-template-columns: 55% 45%;
}

.about-block:nth-child(even) .about-block-image {
  order: 2;
}

.about-block:nth-child(even) .about-block-content {
  order: 1;
}

.about-block-image {
  overflow: hidden;
  position: relative;
}

.about-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-block:hover .about-block-image img {
  transform: scale(1.05);
}

.about-block-content {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.about-block:nth-child(odd) .about-block-content {
  background: var(--cream);
}

.about-block-content .section-label {
  margin-bottom: 0.5rem;
}

.about-block-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 1rem;
}

.about-block-content p {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  line-height: 1.75;
}

.about-block-content p:last-of-type {
  margin-bottom: 1.25rem;
}

/* -------------------------------------------------------------------------
   19. GALLERY PAGE
   ------------------------------------------------------------------------- */
.gallery-page {
  background: var(--dark);
  padding: var(--section-gap) 0;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.gallery-full-masonry {
  columns: 4;
  column-gap: 1rem;
}

.gallery-full-masonry .gallery-item {
  margin-bottom: 1rem;
}

/* -------------------------------------------------------------------------
   20. BLOG PAGE
   ------------------------------------------------------------------------- */
.blog-section {
  background: var(--cream);
  padding: var(--section-gap) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.blog-post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 2.5rem;
}

.blog-post-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-post-image {
  height: 280px;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-image img {
  transform: scale(1.05);
}

.blog-post-body {
  padding: 2rem;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.blog-post-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-post-category {
  background: var(--gold-pale);
  color: var(--gold);
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem !important;
  letter-spacing: 0.5px;
}

.blog-post-body h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.blog-post-card:hover .blog-post-body h2 {
  color: var(--gold);
}

.blog-post-body p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--cream-dark);
  color: var(--primary-dark);
}

.sidebar-search {
  display: flex;
  gap: 0.5rem;
}

.sidebar-search input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

.sidebar-search input:focus {
  border-color: var(--gold);
}

.sidebar-search button {
  padding: 0.65rem 1rem;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.85rem;
  transition: var(--transition);
}

.sidebar-search button:hover {
  background: var(--gold-light);
}

.sidebar-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.sidebar-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.sidebar-gallery img:hover {
  opacity: 0.8;
  transform: scale(1.03);
}

.sidebar-categories li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.875rem;
}

.sidebar-categories li:last-child {
  border-bottom: none;
}

.sidebar-categories a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.sidebar-categories a:hover {
  color: var(--gold);
}

.sidebar-categories .count {
  background: var(--cream);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
}

/* -------------------------------------------------------------------------
   21. CONTACT PAGE
   ------------------------------------------------------------------------- */
.contact-section {
  background: var(--white);
  padding: var(--section-gap) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,148,60,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-info-text span {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.contact-form-wrap h3 {
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,148,60,0.1);
}

.form-control::placeholder {
  color: var(--text-light);
}

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

/* -------------------------------------------------------------------------
   22. MAP SECTION
   ------------------------------------------------------------------------- */
.map-section {
  height: 450px;
  position: relative;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

/* -------------------------------------------------------------------------
   23. LIGHTBOX
   ------------------------------------------------------------------------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: var(--gold);
}

/* -------------------------------------------------------------------------
   24. SCROLL TO TOP
   ------------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* -------------------------------------------------------------------------
   25. KEYFRAME ANIMATIONS
   ------------------------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* AOS overrides */
[data-aos] {
  will-change: transform, opacity;
}

/* -------------------------------------------------------------------------
   26. RESPONSIVE — TABLET (max-width: 1024px)
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --section-gap: 90px;
  }

  .navbar-nav,
  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .about-content {
    padding-left: 0;
  }

  .about-image-accent {
    right: 1rem;
    width: 150px;
    height: 150px;
  }

  .about-badge-float {
    left: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

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

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

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

  .blog-sidebar {
    position: static;
  }

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

  .contact-info-card {
    position: static;
  }

  .about-block,
  .about-block:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: auto;
    width: calc(100% - 2rem);
  }

  .about-block:nth-child(even) .about-block-image { order: 0; }
  .about-block:nth-child(even) .about-block-content { order: 1; }

  .about-block-image {
    height: 280px;
  }

  .about-block-content {
    padding: 2.5rem 2rem;
  }

  .gallery-full-masonry {
    columns: 3;
  }
}

/* -------------------------------------------------------------------------
   27. RESPONSIVE — MOBILE (max-width: 768px)
   ------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --section-gap: 70px;
    --nav-height: 72px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

  .gallery-masonry {
    columns: 2;
  }

  .gallery-full-masonry {
    columns: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

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

  .contact-form-wrap,
  .contact-info-card {
    padding: 2rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .nature-banner {
    height: 400px;
  }

  .page-header {
    height: auto;
    min-height: 280px;
    padding: 4rem 0;
  }
}

/* -------------------------------------------------------------------------
   28. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

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

  .gallery-masonry {
    columns: 1;
  }

  .gallery-full-masonry {
    columns: 1;
  }

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

  .sidebar-gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

  .btn {
    padding: 0.85rem 1.6rem;
    font-size: 0.85rem;
  }
}

/* -------------------------------------------------------------------------
   29. LOADING / PRELOADER
   ------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: pulse 1.5s ease infinite;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-light), var(--gold), var(--primary-light));
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}

/* -------------------------------------------------------------------------
   30. UTILITY CLASSES
   ------------------------------------------------------------------------- */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-primary { color: var(--primary-dark); }
.text-muted { color: var(--text-muted); }

.bg-cream { background: var(--cream); }
.bg-dark { background: var(--dark); }
.bg-primary { background: var(--primary); }
.bg-white { background: var(--white); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

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

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1.5rem 0;
}

.divider.centered {
  margin-left: auto;
  margin-right: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

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

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

/* Selection */
::selection {
  background: var(--gold);
  color: var(--white);
}

/* -------------------------------------------------------------------------
   31. BLOG POST MODAL / POPUP
   ------------------------------------------------------------------------- */
.post-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.post-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.post-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

.post-modal-overlay.active .post-modal {
  transform: translateY(0) scale(1);
}

.post-modal-hero {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.post-modal-body {
  padding: 2.5rem 3rem 3rem;
}

.post-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
  border: none;
}

.post-modal-close:hover {
  background: var(--gold);
}

.post-modal-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.post-modal-meta .blog-post-category {
  font-size: 0.75rem !important;
}

.post-modal-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.post-modal-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.post-modal-content p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

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

.post-modal-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1.5rem 0;
}

/* Blog pagination buttons */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.page-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.page-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.page-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.page-btn-next {
  width: auto;
  padding: 0 1.25rem;
  border-radius: 50px;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
}

/* =========================================================================
   31. DROPDOWN NAVIGATION
   ========================================================================= */
.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
}

.nav-arrow {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 210px;
  background: rgba(10, 26, 16, 0.98);
  border: 1px solid rgba(201, 148, 60, 0.25);
  border-radius: var(--radius);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 2000;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: rgba(201, 148, 60, 0.25);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-item:hover .nav-arrow,
.nav-item:focus-within .nav-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown a {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.1rem !important;
  color: rgba(255,255,255,0.78) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  white-space: nowrap;
  position: relative;
}

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

.nav-dropdown a:hover {
  background: rgba(201, 148, 60, 0.1);
  color: var(--gold) !important;
  padding-left: 1.4rem !important;
}

.nav-dropdown a i {
  width: 15px;
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0.65;
  flex-shrink: 0;
}

.nav-dropdown hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 0.3rem 0;
}

/* =========================================================================
   32. MOBILE DROPDOWN ACCORDION
   ========================================================================= */
/* ─── Mobile dropdown groups — match the look of plain <a> links ─── */
.mobile-nav-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open .mobile-nav-group {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for mixed children */
.mobile-menu.open > *:nth-child(1) { transition-delay: 0.10s; }
.mobile-menu.open > *:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open > *:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.open > *:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open > *:nth-child(5) { transition-delay: 0.30s; }
.mobile-menu.open > *:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open > *:nth-child(7) { transition-delay: 0.40s; }

.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.mobile-nav-toggle:hover {
  color: var(--gold);
}

.mobile-nav-toggle i {
  font-size: 0.85rem;
  opacity: 0.55;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.mobile-nav-toggle.open i {
  transform: rotate(180deg);
  opacity: 0.9;
}

.mobile-nav-sub {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-top: 0.35rem;
  background: transparent;
  border: none;
}

.mobile-nav-sub.open {
  display: flex;
}

.mobile-nav-sub a {
  padding: 0.25rem 0 !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 1.05rem !important;
  color: rgba(255,255,255,0.6) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  border-bottom: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.mobile-nav-sub a:hover {
  color: var(--gold) !important;
  background: transparent !important;
}

/* =========================================================================
   33. ENTRY POPUP
   ========================================================================= */
.entry-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  backdrop-filter: blur(4px);
}

.entry-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.entry-popup {
  position: relative;
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.88) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entry-popup-overlay.active .entry-popup {
  transform: scale(1) translateY(0);
}

.entry-popup-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/priroda.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.35);
  transform: scale(1.08);
}

.entry-popup-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}

.entry-popup-close:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.1);
}

.entry-popup-content {
  position: relative;
  z-index: 1;
  padding: 3rem 2.5rem 2.5rem;
  text-align: center;
  color: white;
}

.entry-popup-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.entry-popup-content h3 {
  color: var(--gold);
  font-size: 1.45rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.entry-popup-content p {
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.entry-popup-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .entry-popup-content {
    padding: 2.5rem 1.5rem 2rem;
  }
  .entry-popup-content h3 {
    font-size: 1.2rem;
  }
}

/* =========================================================================
   34. SIDE BANNER SLOTS (homepage, visible on wide screens only)
   ========================================================================= */
.side-banner-left,
.side-banner-right {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  z-index: 100;
  display: none;
}

.side-banner-left  { left: calc((100vw - 1200px) / 2 - 156px); }
.side-banner-right { right: calc((100vw - 1200px) / 2 - 156px); }

@media (min-width: 1560px) {
  .side-banner-left,
  .side-banner-right { display: flex; flex-direction: column; gap: 0.5rem; }
}

.banner-slot {
  border: 2px dashed rgba(201,148,60,0.35);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  text-align: center;
  background: rgba(201,148,60,0.04);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: default;
  transition: border-color 0.2s, background 0.2s;
}

.banner-slot:hover {
  border-color: rgba(201,148,60,0.55);
  background: rgba(201,148,60,0.08);
}

.banner-slot-icon {
  font-size: 1.75rem;
  opacity: 0.35;
  color: var(--gold);
}

.banner-slot-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* Banner inside about section - inline responsive fallback */
.about-section-banners {
  display: none;
  margin-top: 3rem;
  gap: 1.5rem;
}

@media (min-width: 900px) and (max-width: 1559px) {
  .about-section-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.about-section-banners .banner-slot {
  min-height: 120px;
}

/* Full-width ad strip between sections */
.ad-strip-section {
  padding: 3.5rem 0;
  background: var(--cream, #faf6ec);
  border-top: 1px solid rgba(201,148,60,0.10);
  border-bottom: 1px solid rgba(201,148,60,0.10);
}

.ad-strip-section.ad-strip-light {
  background: #ffffff;
}

.ad-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 720px) {
  .ad-strip { grid-template-columns: 1fr; gap: 1rem; }
  .ad-strip-section { padding: 2.25rem 0; }
}

.ad-strip .banner-slot,
.banner-slot.ad-banner {
  min-height: 110px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.banner-slot.ad-banner:hover {
  transform: translateY(-2px);
}

.ad-strip .banner-slot-icon,
.banner-slot.ad-banner .banner-slot-icon {
  font-size: 1.6rem;
  margin: 0;
}

.ad-strip .banner-slot-label,
.banner-slot.ad-banner .banner-slot-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

/* =========================================================================
   35. OGLASI — ADS LISTING PAGE
   ========================================================================= */
.ads-hero {
  background: var(--primary-dark);
  padding: 7rem 0 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.ads-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/priroda.jpg') center/cover;
  opacity: 0.12;
}

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

.ads-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.ads-filter-btn {
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 50px;
  background: white;
  color: var(--text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.ads-filter-btn:hover,
.ads-filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.ads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.ad-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cream-dark);
}

.ad-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.ad-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ad-card-category {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: white;
  background: var(--primary);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
  width: fit-content;
}

.ad-card-category.cat-smestaj   { background: #2a7d4f; }
.ad-card-category.cat-vozila    { background: #1a5276; }
.ad-card-category.cat-stoka     { background: #784212; }
.ad-card-category.cat-usluge    { background: #6c3483; }
.ad-card-category.cat-razno     { background: #566573; }

.ad-card h4 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.ad-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ad-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.ad-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--cream-dark);
  padding-top: 0.9rem;
  margin-top: auto;
}

.ad-card-contact {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ad-card-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.ads-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
}

.ads-empty i {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 1.25rem;
  display: block;
}

.ads-cta-bar {
  background: var(--primary);
  color: white;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.ads-cta-bar p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin: 0;
}

.ads-cta-bar strong {
  display: block;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

/* =========================================================================
   36. POSTAVI OGLAS — AD SUBMISSION FORM
   ========================================================================= */
.ad-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.rate-limit-bar {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  border: 1px solid var(--cream-dark);
}

.rate-limit-bar i {
  color: var(--gold);
  flex-shrink: 0;
}

.ad-success-msg {
  display: none;
  text-align: center;
  padding: 2.5rem;
}

.ad-success-msg .success-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

/* =========================================================================
   37. ADMIN PANEL
   ========================================================================= */
.admin-wrap {
  min-height: 100vh;
  background: var(--cream);
  padding: 2rem;
}

.admin-login {
  max-width: 400px;
  margin: 8rem auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.admin-login h2 {
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.admin-login .form-control {
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.15em;
  font-size: 1.2rem;
}

.admin-header {
  background: var(--primary-dark);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.admin-header h2 {
  color: var(--gold);
  margin: 0;
  font-size: 1.3rem;
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.admin-tab {
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--cream-dark);
  border-radius: 50px;
  background: white;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.admin-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.admin-ad-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.admin-ad-card .ad-meta {
  flex: 1;
  min-width: 0;
}

.admin-ad-card h4 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.admin-ad-card .ad-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.admin-ad-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-approve {
  background: #2a7d4f;
  color: white;
  border: none;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.82rem;
  font-family: inherit;
  transition: opacity 0.2s;
}

.btn-reject {
  background: #c0392b;
  color: white;
  border: none;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.82rem;
  font-family: inherit;
  transition: opacity 0.2s;
}

.btn-approve:hover,
.btn-reject:hover { opacity: 0.85; }

.admin-export {
  background: var(--primary-dark);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
  margin-bottom: 1.5rem;
}

.admin-export:hover { opacity: 0.85; }

.admin-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.admin-status.pending  { background: #fef9e7; color: #d4ac0d; border: 1px solid #f7dc6f; }
.admin-status.approved { background: #eafaf1; color: #1e8449; border: 1px solid #82e0aa; }
.admin-status.rejected { background: #fdfefe; color: #922b21; border: 1px solid #f1948a; }

/* =========================================================================
   38. REGISTRACIJA (Registration page)
   ========================================================================= */
.reg-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

/* =========================================================================
   39. SMEŠTAJ & AKTIVNOSTI pages
   ========================================================================= */
.listing-hero {
  background: var(--primary-dark);
  padding: 7rem 0 3rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.listing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.smestaj-hero::before { background-image: url('../img/kloka1.jpeg'); }
.aktivnosti-hero::before { background-image: url('../img/priroda.jpg'); }

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

.listing-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid var(--cream-dark);
}

.listing-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  transform: translateY(-4px);
}

.listing-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.listing-card-body {
  padding: 1.5rem;
}

.listing-card-body h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
}

.listing-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.activity-detail-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  border: 1px solid var(--cream-dark);
  transition: box-shadow 0.25s;
}

.activity-detail-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.activity-detail-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  line-height: 1;
}

.activity-detail-card h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
}

.activity-detail-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.activity-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .activity-detail-card {
    flex-direction: column;
    gap: 1rem;
  }
  .activity-detail-icon {
    width: auto;
  }
}

/* =========================================================================
   40. reCAPTCHA wrapper — branded styling
   ========================================================================= */
.recaptcha-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(201,148,60,0.06);
  border: 1px solid rgba(201,148,60,0.2);
  border-radius: var(--radius);
  position: relative;
}

.recaptcha-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}

.recaptcha-label i {
  color: var(--gold);
  font-size: 0.95rem;
}

.recaptcha-wrap .g-recaptcha {
  /* Slight scale-down on very small screens to fit nicely */
  transform-origin: center;
}

@media (max-width: 380px) {
  .recaptcha-wrap .g-recaptcha {
    transform: scale(0.85);
  }
}

/* Try to hide the red "for testing purposes only" warning from Google test keys.
   The element is rendered by reCAPTCHA's JS as a sibling/overlay.
   Real keys never show this — recommended fix is to register proper keys. */
.recaptcha-wrap .rc-anchor-error-msg-container,
.recaptcha-wrap .grecaptcha-badge ~ .rc-anchor-error-msg,
.recaptcha-wrap iframe + div[style*="color: red"],
.recaptcha-wrap iframe + div[style*="color:red"] {
  display: none !important;
}
