/* ============================================================
   JANA HARSHA PLOTS — Premium Real Estate Website Stylesheet
   ============================================================
   Color Palette: Dark Brown / Gold / Cream / Warm White
   Typography  : Outfit (headings) + Inter (body)
   Author      : Jana Harsha Plots Dev Team
   ============================================================ */

/* ==============================================
   SPLASH SCREEN / PRELOADER
   ============================================== */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(145deg, #1a0f06 0%, #2c1c10 40%, #3d2815 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.splash-screen.fade-out {
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.splash-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 8px;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.3), 0 0 120px rgba(212, 175, 55, 0.1);
  animation: splashZoom 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes splashZoom {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  40% {
    transform: scale(1.3);
    opacity: 1;
  }
  60% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.splash-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #d4af37;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: splashTagline 0.8s ease 1.2s forwards;
}

@keyframes splashTagline {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide body scroll when splash is active */
body.splash-active {
  overflow: hidden;
}

/* ==============================================
   0. GOOGLE FONTS IMPORT
   ============================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==============================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================== */
:root {
  /* ---- Brand Colors ---- */
  --primary:        #654321;
  --primary-light:  #7a5a3a;
  --primary-dark:   #4a3018;
  --white:          #FFFFFF;
  --cream:          #FFFDD0;
  --gold:           #D4AF37;
  --gold-light:     #E8C860;

  /* ---- Backgrounds ---- */
  --bg-warm:        #FDF8F0;
  --bg-section:     #F9F3EC;

  /* ---- Text ---- */
  --text-dark:      #2C2C2C;
  --text-medium:    #555555;
  --text-light:     #FFFFFF;

  /* ---- Shadows ---- */
  --shadow:         0 4px 20px rgba(101, 67, 33, 0.12);
  --shadow-hover:   0 8px 32px rgba(101, 67, 33, 0.2);

  /* ---- Motion ---- */
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* ---- Layout ---- */
  --container-max:  1200px;
  --section-padding: 100px 0;
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-full:    50%;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-medium);
  line-height: 1.8;
}

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

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

ul, ol { list-style: none; }

input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

button { cursor: pointer; }

/* ==============================================
   3. UTILITY CLASSES
   ============================================== */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 15px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}

.section-header .section-subtitle::before,
.section-header .section-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

.section-header .section-subtitle::before { left: -20px; }
.section-header .section-subtitle::after  { right: -20px; }

.section-header .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-header .section-title span {
  color: var(--gold);
}

.section-header .section-desc {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-medium);
}

.text-gold   { color: var(--gold) !important; }
.text-white  { color: var(--text-light) !important; }
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ==============================================
   4. BUTTONS
   ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  padding: 14px 32px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn i {
  font-size: 1.1rem;
  transition: var(--transition);
}

/* Primary Button — glass-on-white feel */
.btn-primary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 2px 12px rgba(101, 67, 33, 0.08);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow);
}

/* Secondary Button — lighter variant */
.btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  color: var(--primary);
  border: 2px solid rgba(101, 67, 33, 0.35);
  box-shadow: 0 2px 8px rgba(101, 67, 33, 0.06);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: 2px solid #25D366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

/* Call / Phone Button */
.btn-call {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 16px rgba(101, 67, 33, 0.2);
}

.btn-call:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(101, 67, 33, 0.3);
}

/* Gold / CTA Button */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  border: none;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.45);
}

/* Small / Large Variants */
.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

/* ==============================================
   5. NAVIGATION (.navbar)
   ============================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(101, 67, 33, 0);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(101, 67, 33, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(74, 48, 24, 0.25);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo .logo-img {
  height: 44px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  background: white;
}

/* Logo zoom-in to zoom-out animation on page load */
.logo-animate {
  animation: logoZoom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes logoZoom {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.nav-logo .logo-text {
  color: var(--white);
}

.nav-logo .logo-accent {
  color: var(--gold);
}

/* Nav Menu (horizontal list) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  list-style: none;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 4px 0;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

/* Nav CTA Button */
.nav-cta {
  display: flex;
  align-items: center;
}

.nav-btn {
  padding: 10px 24px;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
  background: none;
  border: none;
}

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

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 28, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ==============================================
   6. HERO SECTION — Horizontal Carousel
   ============================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

/* Slider container & track */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-track {
  display: flex;
  width: 500%; /* 5 slides */
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slide {
  flex: 0 0 20%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Hero Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 6s ease;
}

.hero-slide.active .hero-bg {
  transform: scale(1.05);
}

/* Image-only slide (slide 4 & 5) — uses <img> instead of background-image */
.hero-slide-image-only {
  background: #1a1a0f;
  /* Warm gradient backdrop so any letterbox space blends nicely */
  background: linear-gradient(135deg, #2c1c10 0%, #1a1a0f 50%, #2c1c10 100%);
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  z-index: 0;
}

@media (max-width: 668px) {
  .hero-slide-img {
    object-fit: contain;
    object-position: center center;
  }
}

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 28, 16, 0.65) 0%,
    rgba(74, 48, 24, 0.55) 40%,
    rgba(101, 67, 33, 0.50) 100%
  );
  z-index: 1;
}

/* Slide content animation */
.hero-slide .hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: var(--transition);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow-prev {
  left: 24px;
}

.hero-arrow-next {
  right: 24px;
}

/* Slider Dots */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 0 20px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s 0.15s ease both;
}

.text-gold {
  color: var(--gold);
}

.hero-subtitle {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  letter-spacing: 1px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  animation: fadeInUp 0.8s 0.4s ease both;
}

/* Trust Badges */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
  animation: fadeInUp 0.8s 0.5s ease both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: var(--radius-md);
}

.trust-badge i {
  font-size: 1.25rem;
  color: var(--gold);
}

.trust-badge span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: pulse 2s infinite;
}

.hero-scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  position: relative;
}

.hero-scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 1.5s infinite;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

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

/* Decorative gold border accent */
.about-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

/* Experience badge overlay */
.about-image .experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.experience-badge .number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.experience-badge .label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* About Text Content */
.about-content .section-subtitle {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-content .section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-content .section-title span {
  color: var(--gold);
}

.about-content .about-desc {
  font-size: 1.02rem;
  color: var(--text-medium);
  margin-bottom: 30px;
}

/* Stats Counter Row */
.about-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

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

.stat-item .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.stat-item .stat-number span {
  color: var(--gold);
}

.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Mission / Vision Cards */
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-card {
  background: var(--bg-warm);
  padding: 24px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}

.about-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.about-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-card h4 i {
  color: var(--gold);
  font-size: 1.1rem;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.65;
}

/* ==============================================
   8. FEATURES SECTION
   ============================================== */
.features {
  padding: var(--section-padding);
  background: var(--bg-section);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--gold);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
  font-size: 1.6rem;
  color: var(--primary-dark);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ==============================================
   9. VENTURES / PROJECTS SECTION
   ============================================== */
.ventures {
  padding: var(--section-padding);
  background: var(--white);
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

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

/* Card Image */
.venture-card .card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.venture-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Status Badge */
.venture-card .status-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.status-badge.active {
  background: #22c55e;
  color: var(--white);
}

.status-badge.upcoming {
  background: var(--gold);
  color: var(--primary-dark);
}

.status-badge.sold-out {
  background: #ef4444;
  color: var(--white);
}

/* Card Content */
.venture-card .card-content {
  padding: 24px;
}

.venture-card .card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.venture-card .card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.venture-card .card-location i {
  color: var(--gold);
  font-size: 0.9rem;
}

.venture-card .card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.venture-card .card-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-medium);
  background: var(--bg-warm);
  padding: 5px 12px;
  border-radius: 6px;
}

.venture-card .card-features span i {
  color: var(--primary-light);
  font-size: 0.82rem;
}

.venture-card .card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(101, 67, 33, 0.1);
}

.venture-card .card-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
}

.venture-card .card-price small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-medium);
}

.venture-card .card-bottom .btn {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* ==============================================
   10. GALLERY SECTION
   ============================================== */
.gallery {
  padding: var(--section-padding);
  background: var(--bg-section);
}

/* Filter Buttons */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filters .filter-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  background: var(--white);
  color: var(--text-medium);
  border: 1.5px solid rgba(101, 67, 33, 0.15);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(101, 67, 33, 0.2);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Hover Overlay */
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(44, 28, 16, 0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.gallery-overlay .zoom-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transform: scale(0.8);
  transition: transform 0.35s ease;
}

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

.gallery-overlay .zoom-icon i {
  font-size: 1.2rem;
  color: var(--white);
}

.gallery-overlay .gallery-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Special layout for larger items */
.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

/* ==============================================
   11. LIGHTBOX
   ============================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 12, 6, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.lightbox img {
  max-width: 85%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 0.35s ease;
}

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

.lightbox .lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox .lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox .lightbox-close i {
  font-size: 1.3rem;
  color: var(--white);
}

/* Nav Arrows */
.lightbox .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox .lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox .lightbox-nav i {
  font-size: 1.1rem;
  color: var(--white);
}

.lightbox .lightbox-prev { left: 24px; }
.lightbox .lightbox-next { right: 24px; }

.lightbox .lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
}

/* ==============================================
   12. LOCATION SECTION
   ============================================== */
.location {
  padding: var(--section-padding);
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid rgba(101, 67, 33, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Distance Cards */
.distance-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.distance-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-warm);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.distance-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.distance-card .distance-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.distance-card .distance-icon i {
  font-size: 1rem;
  color: var(--primary-dark);
}

.distance-card .distance-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.distance-card .distance-info span {
  font-size: 0.8rem;
  color: var(--text-medium);
}

/* ==============================================
   13. TESTIMONIALS SECTION
   ============================================== */
.testimonials {
  padding: var(--section-padding);
  background: var(--bg-section);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Quote Icon */
.testimonial-card .quote-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.testimonial-card .quote-icon i {
  font-size: 1.1rem;
  color: var(--primary-dark);
}

/* Star Rating */
.testimonial-card .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

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

.testimonial-card .stars i.empty {
  color: #ddd;
}

.testimonial-card .review-text {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card .reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(101, 67, 33, 0.08);
}

.testimonial-card .reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-card .reviewer-avatar img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-card .reviewer-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-card .reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-medium);
}

/* ==============================================
   14. FAQ SECTION (Accordion)
   ============================================== */
.faq {
  padding: var(--section-padding);
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(101, 67, 33, 0.06);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(101, 67, 33, 0.15);
}

.faq-item.active {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
  line-height: 1.4;
}

.faq-item.active .faq-question h4 {
  color: var(--primary);
}

.faq-question .faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid rgba(101, 67, 33, 0.12);
}

.faq-item.active .faq-question .faq-toggle {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-toggle i {
  font-size: 0.85rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.faq-item.active .faq-toggle i {
  color: var(--primary-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.75;
}

/* ==============================================
   15. CONTACT SECTION
   ============================================== */
.contact {
  padding: var(--section-padding);
  background: var(--bg-section);
}

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

/* Contact Info Side */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
}

.contact-info-card .info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .info-icon i {
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.contact-info-card .info-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-card .info-content p,
.contact-info-card .info-content a {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.contact-info-card .info-content a:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(101, 67, 33, 0.15);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(85, 85, 85, 0.5);
}

/* Focus animation underline */
.form-group .focus-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s ease, left 0.35s ease;
}

.form-group input:focus ~ .focus-line,
.form-group textarea:focus ~ .focus-line {
  width: 100%;
  left: 0;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* Form success / error states */
.form-success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

/* ==============================================
   16. FOOTER
   ============================================== */
.footer {
  background: #2C1810;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer About */
.footer-about .footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}

.footer-about .footer-logo span {
  color: var(--gold);
}

.footer-about p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.footer-social a i {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-social a:hover i {
  color: var(--primary-dark);
}

/* Footer Column Headings */
.footer-column h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-weight: 700;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  transform: translateX(2px);
}

/* Footer Contact Info */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

/* Copyright Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  margin-top: 0;
}

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

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

.footer-bottom p a:hover {
  text-decoration: underline;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

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

/* ==============================================
   17. FLOATING ACTION BUTTONS
   ============================================== */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
}

.floating-btn i {
  font-size: 1.3rem;
  color: rgb(152, 233, 102);
}

/* WhatsApp Floating */
.btn-float-whatsapp {
    background: #25D366;
    color: white;
    width: auto;
    border-radius: 28px;
    padding: 0 20px 0 16px;
    gap: 8px;
}

/* Call */
.btn-float-call {
    background: var(--primary);
    color: white;
    width: auto;
    border-radius: 28px;
    padding: 0 20px 0 16px;
    gap: 8px;
}

.float-call-number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.float-whatsapp-number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Top */
.btn-top {
    background: #222;
    color: white;
}
.floating-btn.whatsapp:hover {
  background: #1ebe57;
}

/* Call Floating */
.floating-btn.call {
  background: rgb(115, 162, 61);
}

.floating-btn.call:hover {
  background: rgb(95, 132, 41);
}

/* Back to Top */
.floating-btn.back-to-top {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.35s ease,
              visibility 0.35s ease,
              transform 0.35s ease,
              box-shadow 0.3s ease;
}

.floating-btn.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn.back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
}

.floating-btn.back-to-top i {
  color: var(--primary-dark);
}

/* Tooltip labels */
.floating-btn .tooltip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-dark);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.floating-btn .tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--text-dark);
}

.floating-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* Pulse ring on WhatsApp */
.floating-btn.whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid #25D366;
  animation: floatingPulse 2s infinite;
}

@keyframes floatingPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  50%  { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* ==============================================
   18. KEYFRAME ANIMATIONS
   ============================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

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

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

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

/* ==============================================
   19. SCROLL-TRIGGERED ANIMATIONS
   ============================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered children */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }

/* Direction variants */
.animate-on-scroll.from-left {
  transform: translateX(-40px);
}

.animate-on-scroll.from-left.visible {
  transform: translateX(0);
}

.animate-on-scroll.from-right {
  transform: translateX(40px);
}

.animate-on-scroll.from-right.visible {
  transform: translateX(0);
}

.animate-on-scroll.from-scale {
  transform: scale(0.9);
}

.animate-on-scroll.from-scale.visible {
  transform: scale(1);
}

/* ==============================================
   20. PRELOADER (Optional)
   ============================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.preloader .spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(101, 67, 33, 0.1);
  border-top-color: var(--gold);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
}

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

.preloader .preloader-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.preloader .preloader-text span {
  color: var(--gold);
}

/* ==============================================
   21. CTA / BANNER SECTION
   ============================================== */
.cta-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(74, 48, 24, 0.92) 0%,
    rgba(101, 67, 33, 0.88) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content h2 span {
  color: var(--gold);
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==============================================
   22. WHY CHOOSE US SECTION
   ============================================== */
.why-choose-us {
  padding: var(--section-padding);
  background: var(--bg-warm);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover::after {
  transform: scaleX(1);
}

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

.why-card .why-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.why-card .why-icon i {
  font-size: 1.4rem;
  color: var(--gold);
  transition: color 0.3s ease;
}

.why-card:hover .why-icon i {
  color: var(--primary-dark);
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.65;
}

/* ==============================================
   23. PRICING TABLE / PLOT SIZES
   ============================================== */
.pricing {
  padding: var(--section-padding);
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--gold);
  transform: scale(1.04);
}

.pricing-card.popular .popular-badge {
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--gold);
  color: var(--primary-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 40px;
  transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-card-header {
  padding: 32px 28px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(101, 67, 33, 0.08);
}

.pricing-card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-card-header .price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
}

.pricing-card-header .price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-medium);
}

.pricing-card-body {
  padding: 28px;
}

.pricing-card-body ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card-body ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.pricing-card-body ul li i {
  color: var(--gold);
  font-size: 0.85rem;
}

.pricing-card-footer {
  padding: 0 28px 28px;
}

.pricing-card-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ==============================================
   24. TIMELINE / PROCESS
   ============================================== */
.process {
  padding: var(--section-padding);
  background: var(--bg-section);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(101, 67, 33, 0.1);
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 15px;
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--gold);
  color: var(--primary-dark);
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ==============================================
   25. MISCELLANEOUS / HELPERS
   ============================================== */

/* Selection Color */
::selection {
  background: rgba(212, 175, 55, 0.25);
  color: var(--text-dark);
}

/* Scrollbar Styling (Webkit) */
::-webkit-scrollbar {
  width: 10px;
}

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

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

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

/* Image lazy-load placeholder */
.img-placeholder {
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder i {
  font-size: 2rem;
  color: rgba(101, 67, 33, 0.2);
}

/* Divider */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 30px;
  border-radius: 2px;
}

/* Badge / Tag */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

.badge-success {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg,
    var(--bg-section) 25%,
    var(--bg-warm) 50%,
    var(--bg-section) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ==============================================
   26. RESPONSIVE — 1200px (Large Desktop)
   ============================================== */
@media (max-width: 1200px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }

  .hero-title {
    font-size: 3.2rem;
  }

  .section-header .section-title {
    font-size: 2.2rem;
  }

  .features-grid,
  .ventures-grid,
  .testimonials-grid,
  .pricing-grid {
    gap: 24px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 30px;
  }
}

/* ==============================================
   27. RESPONSIVE — 992px (Tablet Landscape)
   ============================================== */
@media (max-width: 992px) {
  :root {
    --section-padding: 80px 0;
  }

  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }

  /* Navigation — show hamburger */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(44, 28, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .nav-cta {
    display: none;
  }

  /* Hero */
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-trust {
    gap: 16px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 360px;
  }

  /* Features / Ventures */
  .features-grid,
  .ventures-grid,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-6px);
  }

  /* Location */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* Process / Timeline */
  .process-timeline {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    flex: 0 0 45%;
  }
}

/* ==============================================
   28. RESPONSIVE — 768px (Tablet Portrait)
   ============================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.25rem; }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header .section-title {
    font-size: 1.85rem;
  }

  .section-header .section-desc {
    font-size: 0.95rem;
  }

  /* Hero */
  .hero {
    min-height: 600px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* About Stats */
  .about-stats {
    justify-content: center;
  }

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

  /* Ventures */
  .ventures-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Distance Cards */
  .distance-cards {
    grid-template-columns: 1fr;
  }

  /* Contact Form */
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-wrapper {
    padding: 28px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-section {
    background-attachment: scroll;
  }

  /* Floating Buttons */
  .floating-btns {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .floating-btn {
    height: 48px;
  }

  .btn-float-call, .btn-float-whatsapp {
    width: auto;
    padding: 0 16px 0 14px;
    border-radius: 28px;
    gap: 7px;
  }

  .float-call-number, .float-whatsapp-number {
    display: inline;
    font-size: 0.8rem;
  }

  .floating-btn i {
    font-size: 1.15rem;
  }

  .floating-btn .tooltip {
    display: none;
  }

  /* Process / Timeline */
  .process-step {
    flex: 0 0 100%;
  }
}

/* ==============================================
   29. RESPONSIVE — 480px (Mobile)
   ============================================== */
@media (max-width: 480px) {
  :root {
    --section-padding: 56px 0;
  }

  html {
    font-size: 15px;
  }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.1rem; }

  .container {
    width: 92%;
    padding: 0 10px;
  }

  .section-header .section-title {
    font-size: 1.6rem;
  }

  .section-header .section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .section-header .section-subtitle::before,
  .section-header .section-subtitle::after {
    width: 20px;
  }

  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  .btn-lg {
    padding: 14px 30px;
    font-size: 0.95rem;
  }

  /* Navbar */
  .nav-logo .logo-text {
    font-size: 1.35rem;
  }

  .nav-menu {
    width: 100%;
    max-width: none;
    padding: 32px 24px;
  }

  /* Hero */
  .hero {
    min-height: 550px;
  }

  .hero-content {
    padding: 0 10px;
  }

  .hero-title {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
  }

  .hero-arrow svg {
    width: 20px;
    height: 20px;
  }

  .hero-arrow-prev { left: 10px; }
  .hero-arrow-next { right: 10px; }

  .hero-dots { bottom: 20px; gap: 8px; }
  .hero-dot { width: 10px; height: 10px; }

  .float-call-number, .float-whatsapp-number {
    display: inline;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
  }

  .btn-float-call, .btn-float-whatsapp {
    width: auto;
    padding: 0 14px 0 12px;
    border-radius: 28px;
    gap: 6px;
  }

  .hero-content .hero-desc {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .trust-badge {
    padding: 8px 14px;
    gap: 8px;
  }

  .trust-badge span {
    font-size: 0.75rem;
  }

  /* About */
  .about-image img {
    height: 260px;
  }

  .about-image::before {
    display: none;
  }

  .about-stats {
    gap: 20px;
  }

  .stat-item .stat-number {
    font-size: 1.8rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    padding: 28px 22px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-filters {
    gap: 8px;
  }

  .gallery-filters .filter-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  /* Lightbox */
  .lightbox img {
    max-width: 95%;
  }

  .lightbox .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox .lightbox-prev { left: 10px; }
  .lightbox .lightbox-next { right: 10px; }

  /* FAQ */
  .faq-question {
    padding: 18px 20px;
  }

  .faq-question h4 {
    font-size: 0.92rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  /* Contact */
  .contact-form-wrapper {
    padding: 22px 18px;
  }

  .contact-info-card {
    padding: 18px;
  }

  /* Footer */
  .footer {
    padding: 50px 0 0;
  }

  .footer-about .footer-logo {
    font-size: 1.3rem;
  }

  /* CTA */
  .cta-content h2 {
    font-size: 1.65rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Why Choose Us */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Floating */
  .floating-btns {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }

  .floating-btn {
    height: 44px;
  }

  .btn-float-call, .btn-float-whatsapp {
    width: auto;
    padding: 0 12px 0 10px;
    border-radius: 24px;
    gap: 6px;
  }

  .float-call-number, .float-whatsapp-number {
    display: inline;
    font-size: 0.7rem;
    letter-spacing: 0.2px;
  }

  .floating-btn i {
    font-size: 1.05rem;
  }
}

/* ==============================================
   30. PRINT STYLES
   ============================================== */
@media print {
  .navbar,
  .floating-btns,
  .hero-scroll-indicator,
  .lightbox,
  .preloader {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 40px 0;
  }

  .hero::before {
    display: none;
  }

  .section-padding {
    padding: 30px 0;
  }

  a {
    text-decoration: underline;
    color: var(--primary);
  }
}

/* ==============================================
   31. ACCESSIBILITY / REDUCED MOTION
   ============================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
