/* ============================================
   ARAB TRAVELERS — Design System (Light Theme)
   Luxury Hotel Apartments in Cairo
   ============================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  /* Colors — Light Theme */
  --navy: #0f1b2d;
  --navy-light: #1a2d4a;
  --navy-dark: #0a1220;
  --gold: #c9963a;
  --gold-light: #e0b560;
  --gold-dark: #a87c2a;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --gray-50: #fafaf8;
  --gray-100: #f0ede8;
  --gray-200: #ddd8cf;
  --gray-300: #b0a99e;
  --gray-600: #6b6560;
  --gray-800: #3a3530;
  --success: #27ae60;
  --whatsapp: #25d366;

  /* Body BG & Text */
  --body-bg: #ffffff;
  --body-color: #3a3530;
  --heading-color: #1a2d4a;

  /* Typography */
  --font-main: 'Cairo', sans-serif;
  --font-sub: 'Tajawal', sans-serif;

  /* Spacing */
  --section-pad: 80px 0;
  --container: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow: 0 4px 20px rgba(0, 0, 0, .06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .1);
  --shadow-gold: 0 4px 25px rgba(201, 150, 58, .2);

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --speed: .35s;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--body-color);
  background: var(--body-bg);
  direction: rtl;
  line-height: 1.7;
  width: 100%;
  position: relative;
  padding-top: 72px;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 99999;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: 10px 0;
  transition: background var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.header.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
}

.brand i {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--speed) var(--ease);
}

.brand:hover i {
  transform: rotate(-15deg) scale(1.1);
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  position: relative;
  color: var(--gray-600);
  font-size: .95rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: all var(--speed) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
  background: rgba(201, 150, 58, .06);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 18px;
  left: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--speed) var(--ease);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* CTA in nav */
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  margin-right: 8px;
}

.nav-cta:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 4px;
  transition: all var(--speed) var(--ease);
}

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

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

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: -72px;
  padding-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s var(--ease);
}

.hero:hover .hero-bg {
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(15, 27, 45, .55) 0%,
      rgba(15, 27, 45, .35) 40%,
      rgba(15, 27, 45, .7) 100%);
}

/* Decorative glow */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 150, 58, .1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 150, 58, .15);
  border: 1px solid rgba(201, 150, 58, .3);
  color: var(--gold-light);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

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

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .8);
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.9;
}

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--speed) var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 150, 58, .25);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 150, 58, .4);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 150, 58, .08);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ---------- SECTIONS ---------- */
.section {
  padding: var(--section-pad);
  background: var(--white);
}

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

.section-header .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Features section keeps dark bg for contrast */
.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, .6);
}

.section-alt {
  background: var(--gray-50);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}

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

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(201, 150, 58, .15);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.4;
}

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

.about-text p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--speed) var(--ease);
}

.about-feature:hover {
  background: rgba(201, 150, 58, .06);
  border-color: rgba(201, 150, 58, .2);
  transform: translateX(-4px);
}

.about-feature i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* ---------- LOCATION CARDS ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.location-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

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

.location-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 27, 45, .85) 0%, rgba(15, 27, 45, .1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: all var(--speed) var(--ease);
}

.location-card:hover .location-card-overlay {
  background: linear-gradient(0deg, rgba(15, 27, 45, .9) 0%, rgba(15, 27, 45, .2) 50%);
}

.location-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.location-card p {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
  margin-bottom: 16px;
}

.location-card .btn {
  align-self: flex-start;
  padding: 10px 28px;
  font-size: .9rem;
}

/* ---------- FEATURES GRID ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-lg);
  transition: all var(--speed) var(--ease);
}

.feature-card:hover {
  background: rgba(201, 150, 58, .06);
  border-color: rgba(201, 150, 58, .15);
  transform: translateY(-6px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(201, 150, 58, .15), rgba(201, 150, 58, .05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  transition: all var(--speed) var(--ease);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  transform: scale(1.1);
}

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-card p {
  color: rgba(255, 255, 255, .5);
  font-size: .88rem;
  line-height: 1.7;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: 2rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.1rem;
  margin-bottom: 28px;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  margin-top: -72px;
  padding-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 27, 45, .5) 0%, rgba(15, 27, 45, .75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb i {
  font-size: .7rem;
  transform: scaleX(-1);
}

/* ---------- AREA INFO ---------- */
.area-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.area-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.area-text p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.area-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
}

.highlight-item i {
  color: var(--gold);
  width: 18px;
  text-align: center;
}

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

.stat-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--speed) var(--ease);
}

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

.stat-card .stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-card .stat-label {
  color: var(--gray-600);
  font-size: .85rem;
  font-weight: 500;
}

/* ---------- IMAGE GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

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

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

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 27, 45, .4);
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity var(--speed) var(--ease);
}

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

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 18, 32, .95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--speed) var(--ease);
}

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

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

.lightbox-close {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--speed) var(--ease);
}

.lightbox-close:hover {
  background: rgba(201, 150, 58, .3);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--speed) var(--ease);
}

.lightbox-nav:hover {
  background: rgba(201, 150, 58, .25);
}

.lightbox-prev {
  right: 24px;
}

.lightbox-next {
  left: 24px;
}

/* ---------- APARTMENT CARDS ---------- */
.apartments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.apartment-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--speed) var(--ease);
}

.apartment-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.apartment-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
}

.apartment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.apartment-card:hover .apartment-card-image img {
  transform: scale(1.06);
}

.apartment-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
}

.apartment-card-body {
  padding: 24px;
}

.apartment-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.apartment-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.apartment-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  color: var(--gray-600);
}

.apartment-card-meta i {
  color: var(--gold);
  font-size: .8rem;
}

.apartment-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.apartment-price {
  font-size: 1rem;
  color: var(--gray-600);
}

.apartment-price strong {
  font-size: 1.4rem;
  color: var(--gold-dark);
  font-weight: 800;
}

.apartment-card-footer .btn {
  padding: 10px 24px;
  font-size: .85rem;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .95rem;
  color: var(--body-color);
  background: var(--gray-50);
  transition: all var(--speed) var(--ease);
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 150, 58, .1);
  background: var(--white);
}

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

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--speed) var(--ease);
}

.info-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateX(-4px);
}

.info-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 150, 58, .1), rgba(201, 150, 58, .04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.info-card p {
  color: var(--gray-600);
  font-size: .9rem;
  direction: ltr;
  text-align: right;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--gray-200);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, .6);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-about p {
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: .92rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  transition: all var(--speed) var(--ease);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: .9rem;
  transition: all var(--speed) var(--ease);
}

.footer-links a:hover {
  color: var(--gold);
  padding-right: 6px;
}

.footer-links i {
  font-size: .6rem;
  color: var(--gold);
  opacity: .5;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: .9rem;
}

.footer-contact-item i {
  color: var(--gold);
  width: 18px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: .85rem;
  color: rgba(255, 255, 255, .3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .4);
  transition: color var(--speed) var(--ease);
}

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

/* ---------- FLOATING BUTTONS (RIGHT SIDE) ---------- */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 99998;
}

.float-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  transition: all var(--speed) var(--ease);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12);
}

.float-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.float-btn-whatsapp:hover {
  box-shadow: 0 6px 25px rgba(37, 211, 102, .35);
}

.float-btn-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.float-btn-call:hover {
  box-shadow: 0 6px 25px rgba(201, 150, 58, .35);
}

/* Pulse ring — continuous attention animation */
.float-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid currentColor;
  opacity: 0;
  animation: pulse-ring 1.8s ease-out infinite;
}

.float-btn-whatsapp::before {
  border-color: #25d366;
}

.float-btn-call::before {
  border-color: var(--gold);
}

@keyframes pulse-ring {
  0% {
    transform: scale(.9);
    opacity: .6;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Bounce animation for attention */
.float-btn-whatsapp {
  animation: float-bounce 3s ease-in-out infinite;
}

@keyframes float-bounce {

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

  50% {
    transform: translateY(-6px);
  }
}

/* Tooltip (left of buttons since they are on right) */
.float-btn .tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  background: var(--navy);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--speed) var(--ease);
}

.float-btn:hover .tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ---------- SCROLL TO TOP (LEFT SIDE) ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all var(--speed) var(--ease);
}

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

.scroll-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  :root {
    --section-pad: 56px 0;
  }

  /* Mobile nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 32px;
    gap: 4px;
    transition: right var(--speed) var(--ease);
    box-shadow: -10px 0 40px rgba(0, 0, 0, .1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 14px 18px;
    color: var(--body-color);
  }

  .nav-cta {
    text-align: center;
    margin-right: 0;
    margin-top: 16px;
  }

  /* Mobile overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--speed) var(--ease);
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* Sections */
  .about-grid,
  .contact-grid,
  .area-info {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .area-highlights {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 2rem;
  }

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

  .floating-buttons {
    bottom: 20px;
    right: 18px;
  }

  .scroll-top {
    bottom: 20px;
    left: 18px;
    width: 50px;
    height: 50px;
  }

  .float-btn {
    width: 62px;
    height: 62px;
    font-size: 1.4rem;
  }

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

  .contact-form {
    padding: 24px;
  }
}

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

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

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

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

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