/* ===========================
   VERDE MORADA — Design System
   Mobile-First Landing Page
   =========================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  /* Brand Colors */
  --verde-deep: #2D4A3E;
  --verde-primary: #3A5A40;
  --verde-accent: #4A7C59;
  --verde-light: #7FB069;
  --verde-pale: #A8D5A2;

  --morada: #6B5B7B;
  --morada-light: #9B8FB0;
  --morada-pale: #C5B8D4;

  /* Neutral / Background */
  --cream: #F7F3ED;
  --cream-dark: #EDE7DC;
  --white: #FFFFFF;
  --off-white: #FAFAF7;

  /* Text */
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
  --text-light: #7A7A7A;
  --text-on-dark: #F5F0E8;

  /* Accents */
  --gold: #C8A96E;
  --gold-light: #DBBF8B;

  /* Functional */
  --success: #4CAF50;
  --whatsapp: #25D366;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Navbar */
  --navbar-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

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

input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ===========================
   Utility Classes
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-padding {
  padding: var(--space-2xl) 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===========================
   Typography
   =========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

h4 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 52px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--verde-accent), var(--verde-deep));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(74, 124, 89, 0.45);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(200, 169, 110, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(200, 169, 110, 0.45);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
  min-height: 42px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
  min-height: 58px;
}

.btn-block {
  width: 100%;
}

/* ===========================
   Navbar
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(45, 74, 62, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 300;
  letter-spacing: 1px;
}

.navbar-logo strong {
  font-weight: 700;
}

.navbar-links {
  display: none;
  gap: var(--space-lg);
}

.navbar-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--verde-light);
  transition: width var(--transition-base);
}

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

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  display: none;
}

.navbar-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 74, 62, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition-base);
  transform: translateY(20px);
  opacity: 0;
}

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

.mobile-menu a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu a:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu a:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu a:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu a:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu a:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-menu a:nth-child(7) {
  transition-delay: 0.4s;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-3xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(26, 42, 35, 0.4) 0%,
      rgba(26, 42, 35, 0.2) 40%,
      rgba(26, 42, 35, 0.6) 75%,
      rgba(26, 42, 35, 0.85) 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 18px;
  background: rgba(127, 176, 105, 0.2);
  border: 1px solid rgba(127, 176, 105, 0.4);
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--verde-pale);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(10px);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(127, 176, 105, 0.2);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(127, 176, 105, 0);
  }
}

.hero h1 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  max-width: 700px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--verde-light), var(--verde-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-stats {
  display: none;
  margin-top: var(--space-xl);
  gap: var(--space-xl);
}

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

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   Quick Data Strip
   =========================== */
.quick-data {
  background: var(--verde-deep);
  padding: var(--space-md) 0;
  position: relative;
  overflow: hidden;
}

.quick-data::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.15), transparent);
}

.quick-data .container {
  position: relative;
  z-index: 1;
}

.quick-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.quick-data-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.quick-data-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(127, 176, 105, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--verde-light);
}

.quick-data-icon svg {
  width: 20px;
  height: 20px;
}

.quick-data-text {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
}

.quick-data-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

/* ===========================
   Sustainability Section
   =========================== */
.sustainability {
  background: var(--cream);
  padding: var(--space-3xl) 0;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.sust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.sust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--verde-accent), var(--verde-light));
  border-radius: 4px 0 0 4px;
}

.sust-card-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(74, 124, 89, 0.12);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.sust-card-icon {
  margin-bottom: var(--space-xs);
  color: var(--verde-accent);
  width: 28px;
  height: 28px;
}

.sust-card-icon svg {
  width: 28px;
  height: 28px;
}

.sust-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--verde-deep);
}

.sust-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===========================
   CTA Strips
   =========================== */
.cta-strip {
  background: linear-gradient(135deg, var(--verde-primary), var(--verde-deep));
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(127, 176, 105, 0.1);
}

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

.cta-strip h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

/* ===========================
   Amenities Section
   =========================== */
.amenities {
  background: var(--off-white);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.amenities-hero-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.amenities-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
  background: var(--white);
  padding: 6px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.amenity-tab {
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: all var(--transition-base);
}

.amenity-tab.active {
  background: var(--verde-primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.amenity-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--verde-light);
}

.amenity-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(127, 176, 105, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-accent);
}

.amenity-card-icon svg {
  width: 22px;
  height: 22px;
}

.amenity-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===========================
   Departments Section
   =========================== */
.departments {
  background: var(--cream);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.dept-hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.dept-toggle {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
  background: var(--white);
  padding: 6px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.dept-toggle-btn {
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: all var(--transition-base);
}

.dept-toggle-btn.active[data-tower="verde"] {
  background: var(--verde-primary);
  color: var(--white);
}

.dept-toggle-btn.active[data-tower="morada"] {
  background: var(--morada);
  color: var(--white);
}

.dept-cards-container {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-sm);
  scrollbar-width: none;
}

.dept-cards-container::-webkit-scrollbar {
  display: none;
}

.dept-card {
  min-width: 280px;
  max-width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.dept-card-header {
  padding: var(--space-md) var(--space-md) var(--space-sm);
  position: relative;
}

.dept-card-header.verde {
  border-top: 4px solid var(--verde-primary);
}

.dept-card-header.morada {
  border-top: 4px solid var(--morada);
}

.dept-card-type {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--verde-deep);
  line-height: 1;
  margin-bottom: 4px;
}

.dept-card-header.morada .dept-card-type {
  color: var(--morada);
}

.dept-card-size {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.dept-card-label {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.dept-card-label.verde {
  background: rgba(74, 124, 89, 0.1);
  color: var(--verde-primary);
}

.dept-card-label.morada {
  background: rgba(107, 91, 123, 0.1);
  color: var(--morada);
}

.dept-card-body {
  padding: 0 var(--space-md) var(--space-md);
}

.dept-card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.dept-spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dept-spec-icon {
  color: var(--verde-accent);
  display: flex;
  align-items: center;
}

.dept-spec-icon svg {
  width: 16px;
  height: 16px;
}

.dept-spec-text {
  font-size: 0.82rem;
  color: var(--text-body);
}

.dept-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}

.dept-feature-tag {
  padding: 4px 10px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

.dept-card .btn {
  width: 100%;
}

/* ===========================
   Contact Form Section
   =========================== */
.contact-form-section {
  background: linear-gradient(135deg, var(--verde-deep), #1A3028);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(127, 176, 105, 0.06);
}

.contact-form-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(107, 91, 123, 0.05);
}

.contact-wrapper {
  position: relative;
  z-index: 1;
}

.contact-intro {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.contact-intro .section-label {
  color: var(--verde-light);
}

.contact-intro h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-md);
  max-width: 550px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: var(--space-md);
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--verde-accent);
  box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.1);
  background: var(--white);
}

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

.form-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
  font-size: 0.78rem;
  color: var(--text-light);
}

.form-trust-icon {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  max-width: 14px;
  max-height: 14px;
  flex-shrink: 0;
  color: var(--text-light);
}

.form-submit-btn {
  margin-top: var(--space-md);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form-success.show {
  display: block;
}

.form-success-icon {
  margin-bottom: var(--space-sm);
  color: var(--verde-accent);
}

.form-success-icon svg {
  width: 48px;
  height: 48px;
}

.form-success h3 {
  color: var(--verde-deep);
  margin-bottom: var(--space-xs);
}

.form-success p {
  color: var(--text-light);
}

/* ===========================
   Location Section
   =========================== */
.location {
  background: var(--cream-dark);
  padding: var(--space-3xl) 0;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.location-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--white);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.location-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.location-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(127, 176, 105, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--verde-accent);
}

.location-item-icon svg {
  width: 20px;
  height: 20px;
}

.location-item-text h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.location-item-text p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.location-item-time {
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--verde-accent);
  white-space: nowrap;
}

/* ===========================
   Developers Section
   =========================== */
.developers {
  background: var(--white);
  padding: var(--space-3xl) 0;
}

.developers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.developer-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.developer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.developer-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
  letter-spacing: 1px;
}

.developer-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===========================
   Final CTA
   =========================== */
.final-cta {
  background: linear-gradient(135deg, var(--verde-deep), #1A3028);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('IMG/hero_render.png') center/cover no-repeat;
  opacity: 0.1;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: #151F1B;
  padding: var(--space-xl) 0 var(--space-md);
  color: rgba(255, 255, 255, 0.5);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .navbar-logo {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--verde-light);
}

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--verde-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--verde-accent);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover svg {
  color: var(--white);
}

/* ===========================
   WhatsApp Float
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
}

.whatsapp-float a {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-base);
  position: relative;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float a::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid var(--whatsapp);
  animation: wa-pulse 2s ease-in-out infinite;
}

@keyframes wa-pulse {

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

  50% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ===========================
   Scroll Animations
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 0.15s;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 0.2s;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 0.25s;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 0.3s;
}

.stagger-children.visible>*:nth-child(7) {
  transition-delay: 0.35s;
}

.stagger-children.visible>*:nth-child(8) {
  transition-delay: 0.4s;
}

.stagger-children.visible>*:nth-child(9) {
  transition-delay: 0.45s;
}

.stagger-children.visible>*:nth-child(10) {
  transition-delay: 0.5s;
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Responsive — Tablet
   =========================== */
@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }

  .hero {
    align-items: center;
    padding-bottom: 0;
  }

  .hero-ctas {
    flex-direction: row;
  }

  .hero-stats {
    display: flex;
  }

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

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

  .amenities-hero-img {
    height: 350px;
  }

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

  .dept-hero-img {
    height: 400px;
  }

  .contact-form-card {
    padding: var(--space-xl);
  }

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

  .location-map {
    height: 100%;
    min-height: 350px;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===========================
   Responsive — Desktop
   =========================== */
@media (min-width: 1024px) {
  :root {
    --navbar-height: 80px;
  }

  .navbar-links {
    display: flex;
  }

  .navbar-cta {
    display: block;
  }

  .navbar-hamburger {
    display: none;
  }

  .hero-content {
    max-width: 650px;
  }

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

  .amenities-hero-img {
    height: 450px;
  }

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

  .dept-card {
    min-width: 300px;
    max-width: 340px;
  }

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

/* ===========================
   Print Styles
   =========================== */
@media print {

  .navbar,
  .whatsapp-float,
  .mobile-menu {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}