/* ===========================================
   Modern Workspaces — Premium Landing Page
   Theme: Deep Navy + Gold + Cream (no black)
   =========================================== */

:root {
  --navy: #0d2c54;
  --navy-deep: #07223f;
  --navy-soft: #1a3d6b;
  --gold: #c9a24a;
  --gold-light: #e3c074;
  --gold-deep: #a98231;
  --cream: #faf6ee;
  --cream-2: #f5efe1;
  --light: #ffffff;
  --muted: #6b7280;
  --text: #1f2937;
  --shadow-soft: 0 10px 30px rgba(13, 44, 84, 0.12);
  --shadow-lift: 0 20px 50px rgba(13, 44, 84, 0.18);
  --radius: 14px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

img, iframe, video { max-width: 100%; }

h1, h2, h3, h4, h5, h6,
.section-title, .display-3, .display-6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}

.text-gold { color: var(--gold) !important; }
.text-dark-blue { color: var(--navy) !important; }
.bg-gold { background: var(--gold) !important; color: #fff !important; }

/* ===== HEADER STACK (fixed top bar + navbar) ===== */
.header-stack {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy-deep);
  color: #fff;
  padding: 8px 0;
  font-size: 0.875rem;
  max-height: 60px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.3s ease,
              padding 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.header-stack.scrolled .top-bar {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.top-bar a:hover { color: var(--gold-light) !important; }

/* ===== NAVBAR ===== */
.main-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.main-nav.scrolled {
  padding: 8px 0;
  box-shadow: 0 6px 30px rgba(13,44,84,0.15);
}
.brand-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--gold);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(13,44,84,0.25);
}
.brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
}
.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--navy) !important;
  margin: 0 6px;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 80%; }

/* ===== BUTTONS ===== */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff !important;
  border: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(201,162,74,0.35);
  transition: all 0.3s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201,162,74,0.5);
  color: #fff;
}
.btn-outline-light { border-radius: 10px; font-weight: 500; }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(13,44,84,0.85) 0%, rgba(7,34,63,0.75) 100%),
    url('assets/images/hero-bg.jpg') center/cover no-repeat;
  background-attachment: scroll;
  padding-top: 100px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,162,74,0.15) 0%, transparent 60%);
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(201,162,74,0.4);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.hero-sub { color: rgba(255,255,255,0.88); font-weight: 300; }
.meta-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.875rem;
  backdrop-filter: blur(8px);
}
.meta-pill i { margin-right: 6px; }
.price-card {
  background: linear-gradient(135deg, rgba(201,162,74,0.18) 0%, rgba(201,162,74,0.08) 100%);
  border: 1px solid rgba(201,162,74,0.4);
  border-radius: 14px;
  padding: 14px 22px;
  color: #fff;
  backdrop-filter: blur(8px);
}
.price-card i { font-size: 1.8rem; color: var(--gold-light); }
.price-label { color: var(--gold-light); letter-spacing: 1.5px; font-size: 0.7rem; }
.price-value { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; }

/* Hero form */
.hero-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border-top: 4px solid var(--gold);
}
.hero-form-card h4 { color: var(--navy); }
.enquiry-form .form-control,
.enquiry-form .form-select {
  border: 1px solid #e0e0e0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
}
.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201,162,74,0.15);
}
.enquiry-form .input-group-text {
  border: 1px solid #e0e0e0;
  border-right: none;
  color: var(--navy);
  font-weight: 500;
}
.enquiry-form .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

/* Trust strip */
.trust-strip {
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 22px 18px;
  margin-top: 30px;
  margin-bottom: -50px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lift);
}
.trust-item {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  text-align: left;
}
.trust-item i { font-size: 1.8rem; }
.trust-item strong { color: var(--navy); display: block; font-size: 0.95rem; }
.trust-item .small { color: var(--muted); }

/* ===== SECTIONS ===== */
section { position: relative; }
.section-light { background: #fff; }
.section-cream { background: var(--cream); }
.section-tag {
  display: inline-block;
  background: rgba(201,162,74,0.12);
  color: var(--gold-deep);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-title {
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
}

/* ===== ABOUT ===== */
.about-img {
  border-radius: 18px;
  border: 6px solid #fff;
}
.feature-mini {
  display: flex; align-items: center; gap: 14px;
  background: var(--cream);
  padding: 14px 16px;
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  height: 100%;
}
.feature-mini i { font-size: 1.6rem; }
.feature-mini strong { color: var(--navy); display: block; }
.price-card-light {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border: 1px solid #f0e8d6;
  border-left: 4px solid var(--gold);
  padding: 14px 22px;
  border-radius: 12px;
}
.price-card-light i { font-size: 1.8rem; }

/* ===== LOCATION ===== */
.loc-card {
  background: #fff;
  padding: 30px 22px;
  border-radius: 16px;
  border: 1px solid #f0e8d6;
  transition: all 0.35s ease;
}
.loc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold-light);
}
.loc-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--gold);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 20px rgba(13,44,84,0.18);
}
.loc-card h5 { color: var(--navy); font-weight: 700; }
.connectivity-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #e8e0cc;
  font-size: 1rem;
}
.connectivity-list li:last-child { border-bottom: none; }

/* ===== OFFERINGS ===== */
.offer-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(13,44,84,0.08);
  transition: all 0.35s ease;
  border: 2px solid transparent;
}
.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift);
}
.offer-card.popular { border-color: var(--gold); }
.offer-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.offer-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.offer-card:hover .offer-img img { transform: scale(1.08); }
.offer-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--navy);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.offer-body { padding: 24px 22px; }
.offer-body h3 { color: var(--navy); }
.offer-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 10px;
}
.offer-body ul li { padding: 6px 0; font-size: 0.95rem; }

/* ===== AMENITIES ===== */
.amenity-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}
.amenity-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.amenity-card:hover img { transform: scale(1.1); }
.amenity-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,44,84,0.95) 0%, rgba(13,44,84,0.55) 50%, transparent 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: all 0.35s ease;
}
.amenity-content i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.amenity-content h5 { font-weight: 700; margin-bottom: 6px; }
.amenity-content p { font-size: 0.85rem; opacity: 0.9; margin-bottom: 0; }

/* ===== WHY ===== */
.why-grid { display: grid; gap: 22px; }
.why-item {
  display: flex; gap: 18px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(13,44,84,0.06);
  transition: all 0.3s ease;
}
.why-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-soft);
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 50px;
}
.why-image-stack {
  position: relative;
  padding-bottom: 60px;
  padding-right: 30px;
}
.why-image-stack .main-img { width: 100%; }
.why-image-stack .accent-img {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  border: 6px solid #fff;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background:
    linear-gradient(135deg, rgba(13,44,84,0.92) 0%, rgba(26,61,107,0.88) 100%),
    url('assets/images/cta-bg.jpg') center/cover no-repeat;
  position: relative;
}

/* ===== CONTACT ===== */
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  color: #fff;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-policy-link:hover { color: var(--gold-light) !important; }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}
.social-icon:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

/* ===== FLOATING ACTIONS ===== */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1050;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  text-decoration: none;
  border: none;
  position: relative;
  animation: floatPulse 2.5s ease-in-out infinite;
  transition: all 0.3s ease;
}
.float-btn:hover {
  transform: scale(1.12);
  color: #fff;
}
.whatsapp-btn { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.call-btn { background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%); }
.enquiry-fab { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%); }
.float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s ease;
}
.float-tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--navy);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ===== MODAL ===== */
.modal-side {
  background:
    linear-gradient(135deg, rgba(13,44,84,0.92) 0%, rgba(26,61,107,0.92) 100%),
    url('assets/images/about.jpg') center/cover no-repeat;
}
.modal-content { box-shadow: 0 25px 60px rgba(0,0,0,0.3); }

/* ===== TOAST ===== */
#successToast {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-section { padding-top: 120px; }
  .navbar-collapse { background: #fff; padding: 16px; border-radius: 12px; margin-top: 12px; }
  .why-image-stack { padding: 0; }
  .why-image-stack .accent-img { display: none; }
}
@media (max-width: 767px) {
  .hero-section { min-height: auto; padding-top: 90px; padding-bottom: 30px; }
  .display-3 { font-size: 2.25rem; }
  .price-value { font-size: 1.4rem; }
  .trust-strip { margin-bottom: 0; }
  .floating-actions { right: 14px; bottom: 14px; gap: 10px; }
  .float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
  .float-tooltip { display: none; }
  .amenity-card { height: 240px; }
  .offer-img { height: 200px; }
}
