/* =========================================================
   SREEKARI EMPIRE — Premium Real Estate CSS
   ========================================================= */

/* ---- CSS Custom Properties ---- */
:root {
  /* ---- Sreekari Developers Brand Palette ---- */
  --green-primary: #328651;
  --green-accent: #4aa276;
  --green-dark: #1b5e20;
  --green-medium: #388e3c;
  --green-light: rgba(50, 134, 81, 0.1);
  --green-pale: #e8f5e9;
  --gold: #c8a45d;
  --gold-light: #e8c97e;
  --gold-dark: #a07840;
  --white: #ffffff;
  --cream: #faf8f3;
  --beige: #f5f0e8;
  --bg: #f8f8f8;
  --text-dark: #1a1a1a;
  --text-para: #7a7a7a;
  --text-mid: #444444;
  --text-light: #888888;
  --border-light: #eaeaea;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 8px 32px rgba(200, 164, 93, 0.25);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-subhead: 'Roboto Slab', Georgia, serif;
  --font-body: 'Roboto', 'Open Sans', sans-serif;
  --font-royal: 'Playfair Display', 'Cinzel', serif;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-para);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ---- Container ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Section Helpers ---- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: normal;
  color: var(--text-dark);
}

.section-header.light .section-title {
  color: var(--white);
}

.section-header.light .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-para);
  max-width: 600px;
  margin: 1rem auto 0;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), #08a357);
  margin: 1rem auto;
  border-radius: 2px;
}

.gold-divider.left {
  margin-left: 0;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--green-primary), #08a357);
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(50, 134, 81, 0.30);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #08a357, var(--green-primary));
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(50, 134, 81, 0.40);
  color: var(--white);
}

.btn-primary>* {
  position: relative;
  z-index: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 0.75rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-right {
  justify-content: flex-end;
}

.nav-logo {
  display: flex;
  justify-content: center;
}

.nav-logo img {
  height: 72px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.navbar.scrolled .nav-logo img {
  height: 56px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 0.9rem;
  right: 0.9rem;
}

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

.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

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

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1rem 2rem;
  box-shadow: var(--shadow-md);
  gap: 0.25rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--green-pale);
  transition: var(--transition);
}

.mobile-link:hover {
  color: var(--green-primary);
  padding-left: 0.5rem;
}

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

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1.05);
  animation: kenBurns 8s ease-in-out infinite alternate;
}

.hero-slide.active {
  opacity: 1;
}

@keyframes kenBurns {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.0);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 40, 12, 0.75) 0%,
      rgba(10, 40, 12, 0.50) 50%,
      rgba(10, 40, 12, 0.65) 100%);
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.gold-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--white);
}

.hero-title {
  font-family: var(--font-royal);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title em {
  font-style: normal;
  color: var(--text-white);
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator span {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(8px);
    opacity: 0.3;
  }
}

.slide-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s !important;
}

.delay-2 {
  transition-delay: 0.30s !important;
}

.delay-3 {
  transition-delay: 0.45s !important;
}

.delay-4 {
  transition-delay: 0.60s !important;
}

/* Hero animations (immediate) */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}

.animate-fade-up.delay-1 {
  animation-delay: 0.3s;
}

.animate-fade-up.delay-2 {
  animation-delay: 0.6s;
}

.animate-fade-up.delay-3 {
  animation-delay: 0.9s;
}

.animate-fade-up.delay-4 {
  animation-delay: 1.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   HIGHLIGHTS SECTION (Key Highlights)
   ============================================================ */
.highlights-section {
  padding: 6rem 0;
  background: #ffffff;
}

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

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(50, 134, 81, 0.08);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), #08a357);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(50, 134, 81, 0.12);
  border-color: rgba(50, 134, 81, 0.2);
}

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

.highlight-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(50, 134, 81, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--green-primary);
  transition: var(--transition);
}

.highlight-card:hover .highlight-icon-wrap {
  background: var(--green-primary);
  color: var(--white);
}

.highlight-card h3 {
  font-family: var(--font-subhead);
  font-size: 1.00rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.highlight-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.highlight-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-para);
}

.highlight-card ul li i {
  color: var(--green-primary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

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

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

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

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-secondary {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
  aspect-ratio: 4/3;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  top: 2rem;
  left: -2rem;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-gold);
  gap: 0.25rem;
}

.about-badge-float i {
  font-size: 1.5rem;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

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

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--green-pale);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: var(--transition);
}

.about-feature-item i {
  font-size: 1.1rem;
  color: var(--green-primary);
}

.about-feature-item:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateX(4px);
}

.about-feature-item:hover i {
  color: var(--gold-light);
}

/* ============================================================
   AMENITIES SECTION
   ============================================================ */
.amenities-section {
  padding: 7rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.amenities-section .section-title {
  color: var(--text-dark);
}

.amenities-section .section-title em {
  color: var(--green-primary);
}

.amenities-section .section-eyebrow {
  color: var(--green-primary);
}

.amenities-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(50, 134, 81, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(74, 162, 118, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.25rem;
}

.amenity-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.amenity-card:hover {
  background: rgba(50, 134, 81, 0.05);
  border-color: rgba(50, 134, 81, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(50, 134, 81, 0.12);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(50, 134, 81, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  font-size: 1.4rem;
  color: var(--green-primary);
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: var(--green-primary);
  color: var(--white);
  transform: scale(1.08);
}

.amenity-card span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-para);
  line-height: 1.4;
}

/* ============================================================
   VILLAS SECTION
   ============================================================ */
.villas-section {
  padding: 7rem 0;
  background: var(--cream);
}

.villa-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(46, 125, 50, 0.1);
}

.villa-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.villa-block.reverse {
  grid-template-columns: 1.4fr 1fr;
  direction: rtl;
}

.villa-block.reverse>* {
  direction: ltr;
}

.villa-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  border-left: 5px solid var(--green-primary);
  transition: var(--transition);
}

.villa-info-card.west {
  border-left-color: var(--gold);
}

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

.villa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.villa-badge.west {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.villa-name {
  font-family: var(--font-royal);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.villa-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

.spec-item i {
  color: var(--green-primary);
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.villa-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
  border-top: 1px solid var(--green-pale);
  padding-top: 1.5rem;
}

.villa-gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.villa-main-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

.villa-main-img:hover img {
  transform: scale(1.04);
}

.villa-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.villa-main-img:hover .villa-img-overlay,
.villa-thumb:hover .villa-img-overlay {
  opacity: 1;
}

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

.villa-thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.villa-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.villa-thumb:hover img {
  transform: scale(1.08);
}

.villa-thumb .villa-img-overlay {
  font-size: 1rem;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: 7rem 0;
  background: var(--white);
}

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

.gallery-tab {
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  transition: var(--transition);
}

.gallery-tab:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
}

.gallery-tab.active {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.35);
}

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

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

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

.gallery-item:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 40, 12, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
  gap: 0.5rem;
}

.gallery-overlay i {
  font-size: 1.5rem;
}

.gallery-overlay span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.gallery-item.hidden {
  display: none;
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section {
  padding: 7rem 0;
  background: var(--cream);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.location-sub-title {
  font-family: var(--font-royal);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.location-sub-title i {
  color: var(--green-primary);
}

.distance-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.distance-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.distance-item:hover {
  border-left-color: var(--green-primary);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.dist-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.distance-item:hover .dist-icon {
  background: var(--green-primary);
  color: var(--white);
}

.dist-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.dist-place {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.dist-min {
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 700;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.address-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.address-card i {
  font-size: 1.5rem;
  color: var(--green-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.address-card strong {
  font-family: var(--font-royal);
  font-size: 1rem;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.address-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* =========================================================
   GOOGLE REVIEWS TESTIMONIALS
========================================================= */

.google-testimonials{
    padding:100px 0;
    background:#f8f8f8;
}

.google-review-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    margin-bottom:60px;
    flex-wrap:wrap;
}

.review-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(50,134,81,0.10);
    color:var(--green-primary);
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:22px;
}

.review-tag i{
    font-size:18px;
}

.google-left h2{
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
    color:var(--text-dark);
    font-family:var(--font-heading);
}

.google-rating-wrap{
    display:flex;
    align-items:center;
    gap:20px;
}

.rating-number{
    font-size:64px;
    font-weight:700;
    color:var(--text-dark);
    line-height:1;
}

.google-stars{
    display:flex;
    gap:5px;
    color:#fbbc05;
    font-size:18px;
}

.rating-content p{
    margin-top:8px;
    color:var(--text-para);
    font-size:15px;
}

.google-review-btn{
    padding:16px 34px;
    border-radius:50px;
    background:var(--green-primary);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.google-review-btn:hover{
    background:var(--green-dark);
}

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

.google-review-card{
    background:#fff;
    border-radius:24px;
    padding:32px;
    border:1px solid var(--border-light);
    transition:0.35s;
    box-shadow:0 2px 12px rgba(0,0,0,0.05);
}

.google-review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    border-color:rgba(50,134,81,0.18);
}

.review-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:20px;
}

.review-profile{
    display:flex;
    align-items:center;
    gap:14px;
}

.review-avatar{
    width:54px;
    height:54px;
    border-radius:50%;
    background:var(--green-primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
}

.review-profile h4{
    font-size:18px;
    color:var(--text-dark);
    margin-bottom:4px;
    font-family:var(--font-body);
}

.review-profile span{
    color:var(--text-light);
    font-size:14px;
}

.review-top i{
    color:#999;
    font-size:18px;
}

.review-stars{
    margin-bottom:20px;
}

.google-review-card p{
    font-size:15px;
    line-height:1.9;
    color:var(--text-para);
}

/* ================= TABLET ================= */

@media(max-width:992px){

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

    .google-left h2{
        font-size:42px;
    }
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .google-testimonials{
        padding:70px 20px;
    }

    .google-review-header{
        text-align:center;
        justify-content:center;
    }

    .google-rating-wrap{
        justify-content:center;
    }

    .google-left h2{
        font-size:34px;
    }

    .rating-number{
        font-size:48px;
    }

    .google-review-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .google-review-card{
        padding:26px;
        border-radius:20px;
    }

}
/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 7rem 0;
  background: var(--white);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(46, 125, 50, 0.08);
  transition: var(--transition);
}

.contact-info-item:hover {
  border-color: var(--green-primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-royal);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  display: block;
  line-height: 1.5;
}

.contact-info-item a:hover {
  color: var(--green-primary);
}

.contact-quick-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.quick-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.call-btn {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.3);
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.4);
  color: var(--white);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

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

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(46, 125, 50, 0.08);
}

.contact-form h3 {
  font-family: var(--font-royal);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--green-pale);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

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

.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-actions .btn-outline {
  color: var(--text-dark);
  border-color: rgba(0, 0, 0, 0.2);
}

.form-actions .btn-outline:hover {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #08a357;
}

.footer-main {
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-top: 1.25rem;
  max-width: 300px;
}

.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(1.1);
}

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

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

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

.footer-col h4 {
  font-family: var(--font-royal);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: block;
}

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

.footer-contact-list {
  gap: 0.85rem !important;
}

.footer-contact-list li {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-list li i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.footer-policies {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-policies a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.footer-policies a:hover {
  color: var(--gold-light);
}

.footer-policies span {
  color: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-container img {
  max-width: 80vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.lightbox-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

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

.lightbox-caption {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  white-space: nowrap;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1200px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

@media (max-width: 1024px) {

  .villa-block,
  .villa-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

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

  .about-img-secondary {
    right: 0;
    bottom: -2rem;
  }

  .about-images {
    padding-bottom: 3rem;
  }

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

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

}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  /* MOBILE NAVBAR CLEAN FIX */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    z-index: 9999;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.nav-left,
.nav-right {
    display: none;
}

.nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    background: #111;
}

.mobile-menu {
    margin-top: 80px;
}


/* HIDE DESKTOP MENU */
.nav-links {
    display: none;
}


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

  /* Navbar */
  .nav-left,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo img {
    height: 56px;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

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

  .hero-stats {
    gap: 1rem;
  }

  /* Highlights */
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  /* Amenities */
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .amenity-card {
    padding: 1.25rem 0.75rem;
  }

  .amenity-icon {
    font-size: 1.5rem;
  }

  .amenity-card span {
    font-size: 0.65rem;
  }

  /* Villa */
  .villa-info-card {
    padding: 2rem 1.5rem;
  }

  .villa-specs {
    grid-template-columns: 1fr;
  }

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

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

  .footer-brand {
    grid-column: 1/-1;
  }

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

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

  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }


}

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-tabs {
    gap: 0.5rem;
  }

  .gallery-tab {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

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

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

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

  .hero-stats {
    gap: 0.75rem;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .contact-quick-actions {
    flex-direction: column;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn-primary,
  .form-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}


.policy-section {
  padding: 100px 20px;
  background: #0b2e13;
  color: #fff;
}

.policy-section h1 {
  color: gold;
  margin-bottom: 20px;
}

.policy-section p,
.policy-section li {
  line-height: 1.8;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}


/* ===================== SPECIFICATIONS ===================== */

.specs-section {
  padding: 80px 0;
  background: #ffffff;
}

.specs-section .section-title {
  font-family: var(--font-heading);
  color: var(--text-dark);
  text-align: center;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.spec-card {
  background: #ffffff;
  padding: 36px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.spec-card .spec-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(50, 134, 81, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.spec-card i {
  font-size: 26px;
  color: var(--green-primary);
  transition: var(--transition);
}

.spec-card h3 {
  font-family: var(--font-subhead);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.spec-card p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-para);
  line-height: 1.7;
}

.spec-card:hover {
  transform: translateY(-6px);
  border-color: rgba(50, 134, 81, 0.25);
  box-shadow: 0 10px 28px rgba(50, 134, 81, 0.10);
}

.spec-card:hover .spec-icon-wrap {
  background: var(--green-primary);
}

.spec-card:hover i {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== CTA BANNER ===================== */

.cta-section {
  padding: 80px 40px;
  background: #08a357;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.cta-section p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  background: #ffffff;
  color: var(--green-primary);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid #ffffff;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-cta-white:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.cta-section .btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  background: transparent;
  color: #ffffff;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.cta-section .btn-cta-outline:hover {
  background: #ffffff;
  color: var(--green-primary);
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .cta-section {
    padding: 60px 24px;
  }
  .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}


/* ================= POLICY PAGE ================= */

.policy-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #062e1c, #0b3d25);
  min-height: 100vh;
}

.policy-container {
  max-width: 900px;
  margin: auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.policy-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #2fff00;
  text-align: center;
  font-family: 'Cinzel', serif;
}

.policy-container h3 {
  margin-top: 25px;
  color: #ffffff;
  font-size: 18px;
}

.policy-container p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-top: 8px;
  font-size: 15px;
}

.policy-section {
  background: #0b2e13;
  /* dark green */
  color: #ffffff;
  /* 🔥 makes all text white */
}

/* ===================== PRIVACY POLICY ===================== */

.policy-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.policy-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.policy-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #0a6b3d;
  text-align: center;
}

.policy-container h3 {
  margin-top: 25px;
  color: #0a6b3d;
  font-size: 18px;
}

.policy-container p {
  color: #555;
  line-height: 1.7;
  margin-top: 8px;
  font-size: 15px;
}



/* ===================== BACK BUTTON ===================== */
.back-btn {
  display: inline-block;
  margin-bottom: 20px;
  color: #c8a45d;
  text-decoration: none;
}

.back-btn {
  color: #c8a45d;
  text-decoration: none;
  font-weight: 500;
}

.back-btn:hover {
  text-decoration: underline;
}

/* FLOATING CONTACT BUTTONS */

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 90px; /* above scroll button */
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* WhatsApp */
.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Call */
.call-btn {
  background: #0a6b3d;
}

.call-btn:hover {
  transform: scale(1.1);
}

.back-to-top {
  bottom: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .floating-contact {
    right: 15px;
    bottom: 80px;
  }

  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

/* ===================== TYPOGRAPHY OVERRIDES ===================== */

/* Main headings - Playfair Display */
h1, h2, .section-title, .hero-title {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Section / card headings - Roboto Slab */
h3, .highlight-card h3, .spec-card h3, .villa-name,
.contact-form h3, .location-sub-title {
  font-family: 'Roboto Slab', Georgia, serif;
}

/* Body / paragraph text - Roboto */
body, p, li, span, label, input, select, textarea, .section-subtitle {
  font-family: 'Roboto', 'Open Sans', sans-serif;
}

p, li {
  color: #7a7a7a;
}

/* Accent color helper */
.text-green { color: var(--green-primary); }
.bg-green-light { background: rgba(50,134,81,0.08); }


/* ================= VIDEO SECTION ================= */

.video-section {
  padding: 100px 20px;
  background: #f9f9f9;
}

.video-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Responsive ratio */
.video-container iframe {
  width: 100%;
  height: 550px;
  border: none;
}

/* Mobile */
@media (max-width: 768px) {
  .video-container iframe {
    height: 250px;
  }
}
.reveal {
  opacity: 1 !important;
  transform: none !important;
}
body {
  padding-top: 75px;
}

/* Dropdown Container */
.dropdown {
  position: relative;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  min-width: 220px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s ease;
  z-index: 999;
}

/* Dropdown Links */
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.dropdown-menu a:hover {
  background: rgba(50, 134, 81, 0.1);
  color: #328651;
}

/* SHOW ON HOVER (DESKTOP) */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.mobile-submenu.open {
  max-height: 300px;
}

.mobile-submenu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
}

html {
  scroll-behavior: smooth;
}

.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: #000;
  font-family: inherit;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #0a7d3b;
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-submenu.active {
  max-height: 300px;
}

.mobile-submenu a {
  padding-left: 20px;
  font-size: 14px;
}

.nav-item {
  position: relative;
}

.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  min-width: 220px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

/* SHOW DROPDOWN */
.nav-item.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-primary i {
  margin-right: 8px;
}

.btn-primary {
  background: #0f7c3a; /* your green */
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #0c5f2c;
  transform: translateY(-2px);
}

.villa-specs {
  padding: 80px 20px;
  background: #f9f9f7;
  text-align: center;
}

.section-subtitle {
  color: #0f7c3a;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 10px;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-family: 'Playfair Display', serif;
  color: #111;
}

.section-title span {
  color: #0f7c3a;
}

.spec-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.spec-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid #eee;
}

.spec-card i {
  font-size: 28px;
  color: #0f7c3a;
  margin-bottom: 15px;
}

.spec-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.spec-card p {
  font-size: 14px;
  color: #666;
}

.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0f7c3a;
  margin: 15px auto 0;
}
.specs-section .container {
  max-width: 1100px;   /* controls width */
  margin: 0 auto;      /* centers entire section */
}

.specs-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* fixed columns */
  gap: 30px;
  justify-content: center;
}

.spec-card {
  text-align: center;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  justify-content: center;  /* THIS IS THE KEY */
  gap: 30px;
}
@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }
}
.specs-section {
  padding: 100px 20px;
}

.villa-red{
  text-align: center;
  color: #0f7c3a;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
}
/* ===== BLUEPRINT SECTION ===== */
.blueprint-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

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

.blueprint-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.blueprint-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blueprint-card:hover img {
  transform: scale(1.05);
}

.blueprint-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .blueprint-grid {
    grid-template-columns: 1fr;
  }
}

/* TESTIMONIAL FIX */
.testimonials-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 32px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 22px);
}

/* TABLET */
@media (max-width: 1024px) {
 
}

/* MOBILE */
@media (max-width: 768px) {

  .testimonials-track {
    gap: 20px;
  }

}

/* =========================================
   HOME AMENITIES PREVIEW
========================================= */

.home-amenities-preview {
    padding: 100px 7%;
    background: #f9f9f7;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    color: #0b9444;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}

.section-heading h2 {
    font-size: 58px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-heading h2 span {
    color: #0b9444;
}

.heading-line {
    width: 90px;
    height: 4px;
    background: #0b9444;
    margin: 0 auto 25px;
    border-radius: 20px;
}

.section-heading p {
    max-width: 760px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

.home-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.home-amenity-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.home-amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.amenity-icon {
    width: 90px;
    height: 90px;
    background: rgba(11, 148, 68, 0.08);
    color: #0b9444;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.home-amenity-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #111;
    font-weight: 700;
}

.home-amenity-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.amenities-btn-wrap {
    text-align: center;
    margin-top: 60px;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 1024px) {

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

    .section-heading h2 {
        font-size: 44px;
    }

}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .home-amenities-preview {
        padding: 70px 5%;
    }

    .home-amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .home-amenity-card {
        padding: 35px 25px;
    }

}

/* ===================================
   TESTIMONIAL MOBILE FIX
=================================== */

@media (max-width: 768px) {

    .testimonials-section {
        overflow: hidden;
        padding: 70px 0;
    }

    .testimonials-slider {
        width: 100%;
        overflow: hidden;
    }

    .testimonials-track {
        display: flex;
        align-items: stretch;
    }

    .testimonial-card {
        margin: 0 auto;
        padding: 35px 25px;
        border-radius: 24px;
        box-sizing: border-box;
    }

    .testimonial-content p {
        font-size: 16px;
        line-height: 1.9;
    }

    .testimonial-author {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        margin-top: 30px;
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
    }

    .testimonial-author h4 {
        font-size: 20px;
    }

    .testimonial-author span {
        font-size: 14px;
    }

    .testimonial-controls {
        margin-top: 35px;
    }

    .testimonial-btn {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }

    .testimonial-heading h2 {
        font-size: 42px;
        line-height: 1.2;
    }

}

/* =========================================
   MOBILE TESTIMONIAL FIX
========================================= */

.testimonials-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.testimonials-track{
    display:flex;
    gap:24px;
    transition:transform 0.5s ease;
}

.testimonial-card{
    flex:0 0 calc(33.333% - 16px);
    max-width:calc(33.333% - 16px);
}

/* TABLET */
@media(max-width:1024px){

    .testimonial-card{
        flex:0 0 calc(50% - 12px);
        max-width:calc(50% - 12px);
    }

}
/* =========================================
   MOBILE TESTIMONIAL FIX
========================================= */

@media screen and (max-width: 768px) {

    .testimonials-section {
        overflow: hidden;
        padding: 80px 0;
    }

    .testimonials-container {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .testimonials-track {
        display: flex;
        transition: transform 0.5s ease;
        width: 100%;
    }

    .testimonial-card {
        padding: 30px 22px;
        box-sizing: border-box;

        border-radius: 24px;
        margin: 0 !important;
    }

    .testimonial-content p {
        font-size: 17px;
        line-height: 1.9;
    }

    .testimonial-author {
        margin-top: 25px;
    }

    .testimonial-heading h2 {
        font-size: 54px;
        line-height: 1.1;
    }
    
}

/* =========================================
   MOBILE TESTIMONIAL PERFECT FIX
========================================= */

@media (max-width: 768px) {

  .testimonials-slider {
    overflow: hidden;
    width: 100%;
  }

  .testimonials-track {
    display: flex;
    gap: 0 !important;
  }

  .testimonial-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;

    padding: 30px 22px !important;

    border-radius: 22px;

    box-sizing: border-box;
  }

  .testimonial-text {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  .testimonial-author {
    margin-top: 25px;
  }

  .testimonial-controls {
    margin-top: 30px;
  }

}

.brochure-note {
    width: 100%;
    padding: 14px 20px;
    text-align: center;
}

.brochure-note p {
    margin: 0;
    font-size: 10px;
    line-height: 0.9;
    color: #555;
    font-family: 'Roboto', sans-serif;
}

/* Mobile */
@media (max-width: 768px) {
    .brochure-note {
        padding: 12px 16px;
    }

    .brochure-note p {
        font-size: 9px;
        line-height: 1.5;
    }
}


/* ================= PREMIUM AMENITIES ================= */

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.luxury-card {
    position: relative;
    overflow: hidden;
    padding: 40px 25px;
    border-radius: 24px;

    background: #ffffff;

    border: 1px solid rgba(0,0,0,0.05);

    transition: all 0.45s ease;
    text-align: center;
    min-height: 220px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-shadow:
      0 10px 30px rgba(0,0,0,0.06),
      0 2px 8px rgba(0,0,0,0.04);
}

.luxury-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.02)
    );
    opacity: 0;
    transition: 0.4s ease;
}

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

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow:
      0 25px 50px rgba(0,0,0,0.12);
}

.luxury-card .amenity-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,200,83,0.35);
}

.luxury-card span {
    color: #111;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

/* ================= TABLET ================= */

@media (max-width: 992px) {

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

    .luxury-card {
        min-height: 200px;
        padding: 35px 20px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .luxury-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .luxury-card {
        min-height: auto;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .luxury-card .amenity-icon {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }

    .luxury-card span {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* ================= CLUBHOUSE SECTION ================= */

.clubhouse-section {
    position: relative;
    padding: 110px 0;
    background: #fff,

}

.clubhouse-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 70px;
}

.club-card {
    position: relative;
    overflow: hidden;
    padding: 40px 25px;
    border-radius: 24px;

    background: #ffffff;

    border: 1px solid var(--border-light);

    transition: all 0.45s ease;
    text-align: center;
    min-height: 220px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-shadow:
      0 10px 10px rgba(0,0,0,0.06);
}

.club-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(0,200,83,0.18),
      rgba(255,255,255,0.02)
    );

    opacity: 0;
    transition: 0.4s ease;
}

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

.club-card:hover {
    transform: translateY(-12px);
    border-color: var(--green-primary);

    box-shadow:
    none;
}

.club-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--green-primary);

    color: #fff;
    font-size: 34px;

    box-shadow:
      0 15px 35px rgba(0,200,83,0.35);

    transition: all 0.4s ease;
}

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

.club-card h3 {
    color: #111;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 600;
    margin: 0;

   font-family: 'Roboto', sans-serif;
}

/* ================= TABLET ================= */

@media (max-width: 992px) {

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

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .clubhouse-section {
        padding: 80px 0;
    }

    .clubhouse-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 50px;
    }

    .club-card {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .club-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }

    .club-card {
        font-size: 18px;
    }
}


/* OUTDOOR SECTION */

.outdoor-section{
    padding:100px 5%;
    background:#f8f8f8;
    position:relative;
}

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

.section-tag{
    display:inline-block;
    background:#00c63b;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:20px;
}

.section-header h2{
    font-size:52px;
    line-height:1.2;
    color:#111;
    margin-bottom:20px;
    font-weight:700;

}

.section-header h2{
    font-family: var(--font-royal);
}

.outdoor-card h3{
    font-family: var(--font-serif);
}

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

.outdoor-card{
    background:#fff;
    border-radius:30px;
    padding:45px 30px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    border:1px solid rgba(0,0,0,0.04);
}

.outdoor-card:hover{
  transform: scale(1.08) rotate(5deg);
}

.outdoor-card i{
    width:90px;
    height:90px;
    line-height:90px;
    border-radius:50%;
    background:rgba(50,134,81,0.10);
    color:var(--green-primary);
    font-size:34px;
    margin-bottom:25px;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0,198,59,0.35);
}

.outdoor-card:hover i{
    background:var(--green-primary);
    color:#ffffff;
}

.outdoor-card h3{
    font-size:22px;
    line-height:1.6;
    color:#111;
    transition:0.4s;
    font-weight:600;
}

.outdoor-card:hover h3{
    color:#111;
}

/* MOBILE */

@media(max-width:991px){

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

    .section-header h2{
        font-size:38px;
    }
}

@media(max-width:576px){

    .outdoor-section{
        padding:70px 20px;
    }

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

    .section-header h2{
        font-size:32px;
    }

    .section-header p{
        font-size:16px;
    }

    .outdoor-card{
        padding:35px 25px;
    }

    .outdoor-card h3{
        font-size:19px;
    }
}