/* ============================================================
   FLAYLA APARTMENTS — Main Stylesheet
   ============================================================ */

/* ---- Variables ---- */
:root {
  --primary:      #005F73;
  --primary-dark: #003D4A;
  --secondary:    #0A9396;
  --accent:       #EE9B00;
  --accent-light: #F5C518;
  --light-bg:     #F0F7F9;
  --dark:         #001219;
  --text:         #2D3748;
  --text-light:   #718096;
  --white:        #FFFFFF;
  --border:       rgba(0,0,0,0.09);

  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --sh-sm: 0 2px 8px rgba(0,0,0,0.07);
  --sh-md: 0 4px 20px rgba(0,0,0,0.11);
  --sh-lg: 0 8px 40px rgba(0,0,0,0.16);

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --tr: all 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 { font-family: var(--font-h); line-height: 1.2; color: var(--dark); }
a { text-decoration: none; color: inherit; transition: var(--tr); }
img { max-width: 100%; display: block; }
section { overflow: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 90px 0; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--accent);
  margin: 0.9rem auto 0;
  border-radius: 2px;
}
.section-sub {
  font-size: 1.05rem;
  text-align: center;
  color: var(--text-light);
  max-width: 580px;
  margin: 0.75rem auto 3rem;
}

/* ---- Buttons ---- */
.btn-gold {
  background: var(--accent);
  color: var(--dark);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--tr);
}
.btn-gold:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(238,155,0,0.38);
  color: var(--dark);
}
.btn-outline-w {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid rgba(255,255,255,0.65);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--tr);
}
.btn-outline-w:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--tr);
  width: 100%;
  justify-content: center;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: var(--white);
  box-shadow: var(--sh-md);
  padding: 0.55rem 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#navbar .logo img { height: 54px; transition: var(--tr); }
#navbar.scrolled .logo img { height: 44px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}
#navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}
#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.active {
  background: var(--light-bg);
  color: var(--primary);
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  align-items: center;
  background: rgba(255,255,255,0.13);
  border-radius: 50px;
  padding: 4px 8px;
  margin-left: 1rem;
}
#navbar.scrolled .lang-switcher { background: var(--light-bg); }
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  padding: 4px 9px;
  border-radius: 50px;
  font-family: var(--font-b);
  transition: var(--tr);
  letter-spacing: 0.5px;
}
#navbar.scrolled .lang-btn { color: var(--text-light); }
.lang-btn.active { background: var(--accent); color: var(--dark) !important; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--tr);
  border-radius: 2px;
}
#navbar.scrolled .menu-toggle span { background: var(--text); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  height: 100vh;
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(0,18,25,0.72) 0%,
    rgba(0,95,115,0.38) 55%,
    rgba(0,18,25,0.25) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  color: var(--white);
}
.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
  max-width: 700px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  margin-bottom: 2.4rem;
  opacity: 0.9;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: scrollBounce 2.2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   APARTMENTS SECTION
   ============================================================ */
.apartments-section { background: var(--light-bg); padding: 100px 0; }

.apt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.apt-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}
.apt-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }

.apt-card-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.apt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.apt-card:hover .apt-card-img img { transform: scale(1.07); }

.apt-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.apt-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.apt-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.apt-card-title {
  font-size: 1.38rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--primary-dark);
}
.apt-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  flex: 1;
}
.apt-features {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}
.apt-feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 600;
}
.apt-feature i { color: var(--secondary); font-size: 0.82rem; }

.apt-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.apt-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.apt-link:hover { color: var(--accent); gap: 10px; }

/* ============================================================
   WHY FLAYLA
   ============================================================ */
.why-section { padding: 100px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: var(--tr);
}
.why-card:hover { border-color: var(--secondary); box-shadow: var(--sh-md); transform: translateY(-5px); }
.why-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.7rem;
  color: var(--primary);
  transition: var(--tr);
}
.why-card:hover .why-icon { background: var(--primary); color: var(--white); }
.why-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.45rem; color: var(--dark); font-family: var(--font-b); }
.why-desc { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; }

/* ============================================================
   BOOKING CTA STRIP
   ============================================================ */
.book-cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--secondary) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.book-cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.04) 0%, transparent 55%);
  animation: slowRotate 25s linear infinite;
}
@keyframes slowRotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.book-cta-section h2 { color: var(--white); font-size: clamp(1.9rem, 3vw, 2.8rem); margin-bottom: 0.9rem; }
.book-cta-section p { font-size: 1.08rem; opacity: 0.85; max-width: 580px; margin: 0 auto 2.5rem; }

.platforms-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.plat-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--tr);
  backdrop-filter: blur(8px);
}
.plat-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-3px);
  color: var(--white);
}
.plat-btn i { font-size: 1.1rem; }
.plat-divider { color: rgba(255,255,255,0.35); font-size: 0.8rem; letter-spacing: 1px; }

/* ============================================================
   BOOKING FORM SECTION
   ============================================================ */
.booking-form-section { padding: 100px 0; background: var(--light-bg); }
.booking-form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 3rem;
  max-width: 820px;
  margin: 0 auto;
}
.booking-form-card h3 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}
.booking-form-card .form-intro {
  text-align: center;
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 1rem; }
.f-group label { font-size: 0.82rem; font-weight: 700; color: var(--text); letter-spacing: 0.2px; }
.f-group input,
.f-group select,
.f-group textarea {
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-b);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  width: 100%;
  transition: var(--tr);
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(10,147,150,0.1);
}
.f-group textarea { resize: vertical; min-height: 90px; }

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.wa-book {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-weight: 700;
  font-size: 0.9rem;
}
.wa-book:hover { opacity: 0.8; color: #25D366; }
.wa-book i { font-size: 1.3rem; }

.form-msg {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
}
.form-msg.success { background: #D4EDDA; color: #155724; display: block; }
.form-msg.error   { background: #F8D7DA; color: #721C24; display: block; }

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section { padding: 100px 0; background: var(--white); }
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.loc-map {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  height: 420px;
}
.loc-map iframe { width: 100%; height: 100%; border: none; }

.loc-text h3 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; color: var(--primary-dark); }
.loc-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.4rem; font-size: 0.95rem; }
.loc-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.loc-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); }
.loc-list i { color: var(--secondary); width: 18px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--dark); color: rgba(255,255,255,0.72); padding: 65px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.logo-footer img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; max-width: 270px; }
.footer-social { display: flex; gap: 0.65rem; margin-top: 1.2rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: var(--tr);
}
.footer-social a:hover { background: var(--accent); color: var(--dark); }

.footer-col h5 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font-b);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.58);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.84rem; margin-bottom: 0.7rem;
}
.footer-contact-item i { color: var(--accent); margin-top: 3px; width: 16px; }
.footer-contact-item a { color: rgba(255,255,255,0.72); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 998;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.65rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  transition: var(--tr);
  animation: waPulse 3.5s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.7); color: var(--white); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ============================================================
   APARTMENT DETAIL PAGE
   ============================================================ */
.apt-hero {
  height: 68vh;
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.apt-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.apt-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,18,25,0.82) 0%, rgba(0,18,25,0.08) 60%);
}
.apt-hero-content { position: relative; z-index: 2; padding: 3rem 0; color: var(--white); width: 100%; }
.apt-hero-content h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 0.5rem; }

.apt-badges { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.9rem; }
.apt-badge-pill {
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}

/* Detail layout */
.apt-detail { padding: 80px 0; }
.apt-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.apt-desc { font-size: 0.97rem; color: var(--text); line-height: 1.85; margin-bottom: 2rem; }
.amenities-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: var(--primary-dark);
  font-family: var(--font-b);
  display: flex; align-items: center; gap: 8px;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.amenity {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--light-bg);
  color: var(--text);
}
.amenity i { color: var(--secondary); width: 17px; text-align: center; font-size: 0.88rem; }

/* Booking widget (sidebar) */
.booking-widget {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 1.8rem;
  position: sticky;
  top: 88px;
  border: 1px solid var(--border);
}
.booking-widget h3 { font-size: 1.2rem; margin-bottom: 1.3rem; color: var(--primary-dark); }
.booking-widget .f-group { margin-bottom: 0.65rem; }
.booking-widget .f-group input,
.booking-widget .f-group select { font-size: 0.88rem; padding: 9px 13px; }

.or-divider {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 1.3rem 0 0.9rem;
  color: var(--text-light); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.or-divider::before, .or-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.platform-btns { display: flex; flex-direction: column; gap: 0.5rem; }
.plat-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--tr);
  color: var(--text);
}
.plat-item:hover { border-color: var(--secondary); background: var(--light-bg); transform: translateX(3px); color: var(--text); }
.plat-item i { font-size: 0.78rem; color: var(--text-light); }

/* Gallery */
.gallery-section { padding: 60px 0; background: var(--light-bg); }
.swiper-main { border-radius: var(--r-md); overflow: hidden; }
.swiper-main .swiper-slide img { width: 100%; height: 500px; object-fit: cover; }
.swiper-thumbs { margin-top: 0.9rem; }
.swiper-thumbs .swiper-slide { cursor: pointer; border-radius: 6px; overflow: hidden; opacity: 0.55; transition: var(--tr); }
.swiper-thumbs .swiper-slide img { width: 100%; height: 80px; object-fit: cover; }
.swiper-thumbs .swiper-slide-thumb-active { opacity: 1; }

.swiper-button-next, .swiper-button-prev {
  color: var(--white) !important;
  background: rgba(0,0,0,0.32);
  width: 44px !important; height: 44px !important;
  border-radius: 50%;
  backdrop-filter: blur(8px);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 0.85rem !important; font-weight: 900 !important; }
.swiper-pagination-bullet-active { background: var(--accent) !important; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fd-1 { transition-delay: 0.1s; }
.fd-2 { transition-delay: 0.2s; }
.fd-3 { transition-delay: 0.3s; }
.fd-4 { transition-delay: 0.4s; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(0,18,25,0.97);
  color: rgba(255,255,255,0.85);
  padding: 1rem 2rem;
  z-index: 9999;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(10px);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: 0.84rem; flex: 1; margin: 0; }
.cookie-bar a { color: var(--accent); }
.cookie-accept {
  background: var(--accent); color: var(--dark);
  border: none; padding: 8px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.84rem; cursor: pointer; white-space: nowrap;
  transition: var(--tr);
}
.cookie-accept:hover { background: var(--accent-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .apt-detail-grid { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }

  .nav-links {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,18,25,0.97);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 1.5rem; z-index: 1000; padding: 2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.15rem !important; color: var(--white) !important; padding: 10px 24px !important; }
  .menu-toggle { display: flex; }
  .lang-switcher { margin-left: 0.5rem; }

  .apt-grid { grid-template-columns: 1fr; max-width: 420px; margin: 2rem auto 0; }

  .hero-cta { flex-direction: column; }
  .hero-cta > * { width: fit-content; }

  .why-grid { grid-template-columns: 1fr; max-width: 380px; margin: 2rem auto 0; }

  .loc-grid { grid-template-columns: 1fr; }
  .loc-map { height: 280px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .f-row { grid-template-columns: 1fr; }
  .booking-form-card { padding: 2rem 1.2rem; }

  .swiper-main .swiper-slide img { height: 260px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .platforms-row { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .apt-card-img { height: 210px; }
}
