/* ==========================================================================
   NAUM APART BOUTIQUE & SPA - DESIGN SYSTEM & STYLES
   San Martín de los Andes, Neuquén, Argentina
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap');

:root {
  --primary: #1c3d2e;         /* Deep Patagonian Forest */
  --primary-light: #2c5844;
  --accent: #c49a51;          /* Warm Gold */
  --accent-hover: #b0863e;
  --bg-dark: #0f1a14;
  --bg-light: #fbf9f5;        /* Warm Cream */
  --bg-card: #ffffff;
  --text-main: #2b332e;
  --text-muted: #5f6c63;
  --text-light: #f3f5f3;
  --border-color: #e5dfd5;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  --font-heading: 'Work Sans', Helvetica, Arial, sans-serif;
  --font-body: 'Work Sans', Helvetica, Arial, sans-serif;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

/* Utility Classes */
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.bg-cream { background-color: var(--bg-light); }
.bg-white { background-color: var(--bg-card); }
.bg-green { background-color: var(--primary); color: #fff; }

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px auto;
}

/* Top Bar (Black Top Bar) */
.top-bar {
  background-color: var(--bg-dark);
  color: #e2ebe5;
  font-size: 0.82rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 150;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contacts {
  display: flex;
  gap: 22px;
}

.top-contacts a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-contacts a:hover {
  color: var(--accent);
}

/* ==========================================================================
   TRANSPARENT INTEGRATED HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  transition: var(--transition);
}

.site-header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0) 100%);
  padding: 10px 0;
}

.header-container {
  width: 95%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  margin-left: -15px;
}

.brand-logo img {
  height: 140px;
  max-height: 150px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.75));
  transition: var(--transition);
}

.brand-logo img:hover {
  transform: scale(1.03);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin-left: auto;
  margin-top: 8px;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-menu li:not(:last-child)::after {
  content: '|';
  color: rgba(255, 255, 255, 0.45);
  margin: 0 13px;
  font-weight: 300;
  font-size: 0.8rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.nav-link {
  font-size: 0.80rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  padding: 4px 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(255, 255, 255, 0.7);
}

.nav-link.active::after {
  width: 100%;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #ffffff;
  cursor: pointer;
}

/* ==========================================================================
   HERO CAROUSEL SECTION (HOME PAGE) - REFINED & AESTHETIC
   ========================================================================== */
.hero-carousel-wrapper {
  position: relative;
  min-height: 75vh;
  height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.hero-slides-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  animation: heroKenBurns 14s ease-out forwards;
}

@keyframes heroKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-overlay {
  display: none;
}

.hero-container {
  width: 95%;
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding-top: 135px;
}

.hero-content {
  max-width: 440px;
  margin-left: -15px;
  background: rgba(10, 18, 14, 0.32);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: fadeInHero 0.8s ease-out;
}

@keyframes fadeInHero {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  color: var(--accent);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.hero-title {
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background-color: var(--accent);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 154, 81, 0.4);
}

.btn-hero-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.6);
  color: #ffffff;
  backdrop-filter: blur(4px);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-hero-whatsapp:hover {
  background: rgba(37, 211, 102, 0.9);
  border-color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.hero-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(15, 26, 20, 0.5);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
}

/* ==========================================================================
   PAGE BANNER HERO (INNER PAGES)
   ========================================================================== */
.page-banner-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.page-banner-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 120px 0 45px 0;
}

.page-banner-title {
  font-size: 3.2rem;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn.full-width { width: 100%; }

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-accent {
  background-color: var(--accent);
  color: #ffffff;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: #1eb957;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   2x3 GRID & CAROUSEL FOR CABAÑAS
   ========================================================================== */
.cabanas-grid-2x3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.cabana-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.cabana-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Room Image Carousel */
.room-carousel {
  position: relative;
  height: 310px;
  background: #111;
  overflow: hidden;
}

.carousel-slides-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 26, 20, 0.65);
  backdrop-filter: blur(4px);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }

.carousel-counter {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: rgba(15, 26, 20, 0.8);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 10;
  backdrop-filter: blur(4px);
}

/* Cabana Info */
.cabana-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cabana-title {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.cabana-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

/* Exact Amenities Container Grid */
.amenities-container-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 22px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.amenity-item i {
  font-size: 1.25rem;
  color: var(--accent);
  width: 26px;
  text-align: center;
  flex-shrink: 0;
}

.amenity-text {
  display: flex;
  flex-direction: column;
}

.amenity-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.2;
}

.amenity-val {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

.cabana-action {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.btn-cabana-action {
  padding: 8px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background-color: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
  transition: var(--transition);
}

.btn-cabana-action:hover {
  background-color: #1eb957;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

/* General Grid 2 */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 36px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-box {
  background: var(--bg-card);
  padding: 28px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.feature-icon {
  width: 55px;
  height: 55px;
  background: rgba(196, 154, 81, 0.12);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px auto;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

/* Gallery Grid & Lightbox */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 61, 46, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 18, 14, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
}

/* Contact Page Form & Map */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(28, 61, 46, 0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 154, 81, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Footer */
.site-footer {
  background-color: var(--bg-dark);
  color: #b0beb5;
  padding-top: 70px;
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-title {
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
  .cabanas-grid-2x3 { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-contacts { display: none; }
  .mobile-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 60px 20px;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
  .nav-menu.active { left: 0; }
  .nav-menu li:not(:last-child)::after { display: none; }
  .amenities-container-grid { grid-template-columns: 1fr; }
  .hero-title {
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
  .section-title { font-size: 2.1rem; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-arrow { display: none; }
  .brand-logo img {
    height: 80px;
    max-height: 90px;
  }
  .hero-content {
    margin-left: 0;
  }
}

/* ==========================================================================
   COMMENTS & SOCIAL PROOF CAROUSEL - COMPACT & AESTHETIC
   ========================================================================== */
.comments-carousel-section {
  padding: 38px 0;
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

.comments-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.comments-track-container {
  overflow: hidden;
  width: 100%;
  padding: 4px 0;
}

.comments-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.comment-card {
  flex: 0 0 calc(33.333% - 11px);
  background: rgba(15, 26, 20, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  min-height: 140px;
  transition: var(--transition);
}

.comment-card:hover {
  transform: translateY(-3px);
  background: rgba(15, 26, 20, 0.7);
  border-color: var(--accent);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.comment-score {
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.comment-stars {
  color: #f5b041;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
}

.comment-subtitle {
  display: none;
}

.comment-text {
  font-size: 0.84rem;
  color: #edf5f0;
  line-height: 1.4;
  margin-bottom: 8px;
  font-style: italic;
  flex-grow: 1;
}

.comment-author {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.comments-nav-btn {
  background: rgba(15, 26, 20, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 10;
  transition: var(--transition);
}

.comments-nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
}

@media (max-width: 992px) {
  .comment-card { flex: 0 0 calc(50% - 8px); }
}

@media (max-width: 600px) {
  .comment-card { flex: 0 0 100%; }
}

/* Grid 4 for Home Page (1 single row on desktop) */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card-compact {
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
}

.card-compact .card-content {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-compact .card-title {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.card-compact .card-desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-grow: 1;
}

.card-compact .card-footer {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-top: auto;
}

.btn-sm {
  padding: 7px 10px;
  font-size: 0.78rem;
  border-radius: 4px;
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}


/* Video Players - Stable playback */
.gallery-videos-grid video {
  transition: none !important;
  transform: none !important;
}
