/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #F5F0E6;
  overflow-x: hidden;
  color: #1f1f1f;
}

/* ================= ROOT THEME ================= */
:root {
  --gold: #C8A24D;
  --gold-light: #D9B36A;
  --green: #0F5C4D;
  --green-dark: #08362E;
  --bg: #F5F0E6;
}

/* ================= HERO (CLEAN LUXURY BACKGROUND) ================= */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}

/* Badge */
.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 162, 77, 0.35);
  font-size: 14px;
  margin-bottom: 18px;
}

/* Heading */
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 900px;
}

.hero h1 .gold {
  color: var(--gold);
}

/* Tagline */
.hero p {
  margin-top: 16px;
  max-width: 650px;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* ================= BOOKING CARD ================= */
.hero-booking-card {
  margin-top: 28px;
  width: min(920px, 95%);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(200, 162, 77, 0.35);
  border-radius: 20px;
  padding: 18px;
}

/* ================= TABS ================= */
.booking-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.tab-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(200, 162, 77, 0.35);
  background: transparent;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.tab-btn:hover {
  transform: translateY(-1px);
}

.tab-btn.active {
  background: var(--gold);
  color: var(--green);
}

/* ================= TAB CONTENT CONTROL ================= */
.booking-tab-content {
  display: none;
}

.booking-tab-content.active {
  display: block;
}

/* ================= SEARCH GRID ================= */
.search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  align-items: end;
}

/* Inputs */
.input-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.input-group label {
  font-size: 12px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.75);
}

.input-group input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: white;
  outline: none;
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

/* Search button */
.search-btn {
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--green);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.search-btn:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
}

/* ================= RENTAL GRID ================= */
.rental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rental-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  color: white;
  transition: 0.3s ease;
}

.rental-card:hover {
  transform: translateY(-5px);
}

.rental-card button {
  margin-top: 10px;
  background: var(--gold);
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  color: var(--green);
}

/* ================= CARDS ================= */
.card-hover {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

/* ================= COLORS ================= */
.gold-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

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

/* ================= NAV ================= */
.glass-nav {
  background: rgba(245, 240, 230, 0.75);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 162, 77, 0.25);
}

/* ================= BUTTONS ================= */
.btn-primary {
  background: var(--green);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 92, 77, 0.35);
}

/* ================= TESTIMONIAL ================= */
.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200, 162, 77, 0.25);
  border-radius: 16px;
}

/* ================= GALLERY ================= */
.gallery-grid img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  filter: brightness(1.08);
}

/* ================= ANIMATIONS ================= */
.animated-section {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s ease;
}

.animated-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= NAV FIX ================= */
.sticky-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* ================= URBANIA ================= */
.urbania-card {
  border: 2px solid rgba(200,162,77,0.45);
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(245,240,230,0.95));
  border-radius: 18px;
}

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

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

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

  .booking-tabs {
    flex-direction: column;
  }

  .search-btn {
    width: 100%;
  }
 
  
}