/* ============================================================
   SIGNATURE SARVAM – LIGHT THEME
   Color Palette: White + Gold + Dark Navy text
   ============================================================ */

:root {
  --gold: #B8913A;
  --gold-light: #D4A853;
  --gold-dark: #8B6B28;
  --navy: #0D1B2A;
  --navy-mid: #1E3452;
  --cream: #FAFAF8;
  --white: #FFFFFF;
  --light-gray: #F4F4F2;
  --mid-gray: #E8E8E6;
  --red: #C0392B;
  --red-dark: #922B21;
  --text-dark: #1A1A2E;
  --text-mid: #555566;
  --text-light: #888899;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --transition: 0.28s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

/* ============ UTILITIES ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 72px 0;
}

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

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

.title-underline {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 14px;
}

.section-sub {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ============ NAVBAR – WHITE ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 0 28px;
  height: 62px;
  box-shadow: 0 1px 0 var(--mid-gray), var(--shadow);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.logo-sig {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 3px;
}

.logo-sar {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Icon span is hidden via display:none in JS – kept for fallback */
.nav-icon {
  display: none;
}

.nav-item:hover {
  color: var(--navy);
  background: var(--light-gray);
}

.nav-item.active-nav {
  color: var(--gold);
  font-weight: 600;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all var(--transition);
}

.btn-call:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-register {
  background: var(--red);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-register:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.3);
}

.hamburger {
  display: none;
  background: none;
  border: 1.5px solid var(--mid-gray);
  font-size: 1.2rem;
  color: var(--navy);
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: 62px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(13, 27, 42, 0.88) 0%,
      rgba(13, 27, 42, 0.65) 30%,
      rgba(13, 27, 42, 0.15) 65%,
      rgba(13, 27, 42, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 48px 28px 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* STICKY LEFT INFO PANEL */
.hero-info-panel {
  max-width: 380px;
  position: sticky;
  top: 80px;
  align-self: flex-start;
  animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: white;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: 0.4px;
}

.pulse {
  animation: pulse 2.2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.5);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(192, 57, 43, 0);
  }
}

.project-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.project-location {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.project-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

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

.stat-val {
  font-size: 0.88rem;
  color: white;
  font-weight: 600;
}

.highlight-box {
  border: 2px dashed rgba(212, 168, 83, 0.6);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
  background: rgba(184, 145, 58, 0.12);
  text-align: center;
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.75;
}

.bhk-badge {
  font-weight: 700;
  color: var(--gold-light) !important;
  font-size: 1rem !important;
}

.rera-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 20px;
  line-height: 2;
}

.rera-num {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}

.price-tag {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.btn-brochure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: none;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-brochure:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 145, 58, 0.4);
}

/* ============ ENQUIRY SIDEBAR ============ */
.enquiry-sidebar {
  position: relative;
  z-index: 3;
  width: 300px;
  flex-shrink: 0;
  background: var(--white);
  padding: 18px 20px;
  overflow-y: auto;
  max-height: calc(100vh - 62px);
  box-shadow: -4px 0 28px rgba(0, 0, 0, 0.18);
  animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sidebar-instant-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--red);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-bottom: 16px;
  transition: all var(--transition);
}

.sidebar-instant-call:hover {
  background: var(--red-dark);
  transform: scale(1.01);
}

.form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  text-align: center;
}

.enquiry-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #DDDDE0;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  background: #FAFAFA;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 145, 58, 0.12);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-mid);
  cursor: pointer;
  line-height: 1.5;
}

.form-consent input {
  margin-top: 3px;
  accent-color: var(--red);
}

.btn-submit {
  background: var(--red);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
}

.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(192, 57, 43, 0.3);
}

/* SIP Banner */
.sip-banner {
  margin-top: 14px;
  background: linear-gradient(135deg, var(--red), #A93226);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  color: white;
}

.sip-intro {
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.sip-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 6px 0 12px;
}

.sip-stats {
  display: flex;
  justify-content: space-around;
}

.sip-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sip-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: #FFD580;
}

.sip-label {
  font-size: 0.6rem;
  opacity: 0.8;
  text-align: center;
  max-width: 56px;
}

/* ============ OVERVIEW SECTION ============ */
.overview-section {
  background: var(--light-gray);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.overview-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.85;
}

.highlights-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.highlight-item {
  text-align: center;
  padding: 20px 10px;
  background: var(--white);
  border-radius: var(--radius);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.hl-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--navy);
}

.hl-sub {
  font-size: 0.72rem;
  color: var(--text-mid);
  font-weight: 500;
}

.overview-features {
  background: var(--navy);
  border-radius: 12px;
  padding: 30px;
  position: sticky;
  top: 80px;
}

.overview-features h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition);
}

.feature-list li:hover {
  color: var(--gold-light);
}

/* ============ PRICING SECTION ============ */
.pricing-section {
  background: var(--white);
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 256px;
  gap: 28px;
  align-items: start;
}

.pricing-table-wrap {
  width: 100%;
}

.pricing-cta-panel {
  width: 100%;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: var(--shadow);
  border-radius: 10px;
  overflow: hidden;
}

.pricing-table th {
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: left;
}

.pricing-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--mid-gray);
  font-size: 0.9rem;
  vertical-align: middle;
  background: var(--white);
}

.pricing-table tr:hover td {
  background: #FFF8EC;
}

.penthouse-row td {
  background: #FFFBF0 !important;
}

.price-val {
  font-weight: 700;
  color: var(--navy);
}

.btn-price-breakup {
  background: var(--red);
  color: white;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 6px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-price-breakup:hover {
  background: var(--red-dark);
  transform: scale(1.03);
}

.costing-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 14px;
}

.costing-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.btn-costing {
  display: block;
  width: 100%;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 11px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-costing:hover {
  background: var(--navy-mid);
}



/* ============ REUSABLE BUTTONS ============ */
.btn-modal-enquiry {
  display: block;
  width: 100%;
  background: var(--red);
  color: white;
  font-weight: 700;
  padding: 13px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.btn-modal-enquiry:hover {
  background: var(--red-dark);
}

/* ============ GLOBAL ENQUIRY POPUP (M3M Style) ============ */
.enquiry-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.enquiry-popup-overlay.open {
  display: flex;
}

.enquiry-popup {
  background: var(--white);
  border-radius: 14px;
  width: 100%;
  max-width: 780px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  animation: popupIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Left panel – branding / promises */
.popup-left {
  background: linear-gradient(160deg, var(--navy) 0%, #1E3452 100%);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.popup-left::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(184, 145, 58, 0.12);
}

.popup-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}

.popup-logo-sub {
  font-size: 0.6rem;
  color: var(--gold-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 2px;
}

.popup-promises {
  margin: 24px 0;
}

.popup-promises h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.promise-icon {
  width: 38px;
  height: 38px;
  background: rgba(184, 145, 58, 0.18);
  border: 1px solid rgba(184, 145, 58, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.promise-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.popup-rera {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
  line-height: 1.6;
}

/* Right panel – form */
.popup-right {
  padding: 32px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: var(--light-gray);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all var(--transition);
}

.popup-close:hover {
  background: #E0E0E0;
  color: var(--text-dark);
  transform: scale(1.1);
}

.popup-right h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 700;
}

.popup-right .popup-subtitle {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.popup-right .popup-subtitle strong {
  color: var(--red);
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.popup-form .form-input {
  font-size: 0.88rem;
}

.btn-popup-submit {
  background: var(--red);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 4px;
}

.btn-popup-submit:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.35);
}

/* ============ FLOOR PLAN ============ */
.floorplan-section {
  background: var(--light-gray);
}

.floorplan-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 9px 22px;
  border: 1.5px solid var(--mid-gray);
  background: var(--white);
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy);
}

.fp-panel {
  display: none;
}

.fp-panel.active {
  display: block;
}

.fp-image-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.fp-image {
  width: 100%;
  display: block;
  filter: blur(6px);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.fp-image-container:hover .fp-image {
  filter: blur(8px);
  transform: scale(1.03);
}

.fp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fp-image-container:hover .fp-overlay {
  opacity: 1;
}

.fp-overlay-text {
  color: white;
  background: var(--red);
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.fp-image-container:hover .fp-overlay-text {
  transform: translateY(0);
}

/* ============ AMENITIES ============ */
.amenities-section {
  background: var(--navy);
}

.amenities-section .section-title {
  color: white;
}

.amenities-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
}

.amenities-slider {
  display: flex;
  gap: 18px;
  overflow: hidden;
  flex: 1;
}

.amenity-card {
  min-width: calc(50% - 9px);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.amenity-card:hover {
  transform: scale(1.02);
}

.amenity-img-wrap {
  height: 230px;
  overflow: hidden;
}

.amenity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-img-wrap img {
  transform: scale(1.06);
}

.amenity-labels {
  padding: 12px 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.amenity-tag {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(184, 145, 58, 0.35);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.amenity-icons-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}

.am-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  text-align: center;
  cursor: default;
  transition: all var(--transition);
}

.am-icon-item:hover {
  background: rgba(184, 145, 58, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.am-icon-item span {
  font-size: 0.68rem;
}

/* ============ GALLERY ============ */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: var(--mid-gray);
}

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

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

.gallery-item.large {
  grid-row: 1 / 3;
  min-height: 400px;
}

.gallery-item:not(.large) {
  min-height: 188px;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 24px 14px 10px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-box {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-box img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
}

.lightbox-box p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ LOCATION ============ */
.location-section {
  background: var(--light-gray);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  flex-grow: 1;
  min-height: 400px;
}

.location-highlights h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.loc-category {
  margin-bottom: 18px;
}

.loc-category h4 {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.loc-category ul {
  list-style: none;
}

.loc-category li {
  font-size: 0.83rem;
  color: var(--text-mid);
  padding: 5px 0;
  border-bottom: 1px solid var(--mid-gray);
  display: flex;
  justify-content: space-between;
}

/* ============ CONTACT ============ */
.contact-section {
  background: var(--navy);
}

.contact-section .section-title {
  color: white;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
  align-items: start;
}

.contact-details {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.contact-item strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-textarea {
  resize: vertical;
}

.full-width {
  width: 100%;
}

/* ============ FOOTER ============ */
.footer {
  background: #0A0F1A;
  color: rgba(255, 255, 255, 0.65);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 52px 24px 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.75;
}

.footer-rera {
  color: var(--gold-light);
  font-size: 0.76rem;
  margin-top: 8px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  font-size: 0.84rem;
  margin-bottom: 9px;
}

.footer-bottom {
  background: #0A0F1A;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 24px;
  text-align: center;
  width: 100%;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

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

.disclaimer {
  font-size: 0.68rem !important;
  line-height: 1.65;
}

/* ============ LEGAL FOOTER ============ */
.legal-footer {
  background: var(--white);
  color: #333;
  line-height: 1.6;
}

.legal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px;
}

.legal-section {
  margin-bottom: 20px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #444;
}

.legal-bold {
  font-weight: 600;
  color: #000 !important;
}

.legal-footer hr {
  border: 0;
  height: 1px;
  background: #eaeaea;
  margin: 25px 0;
}

@media (min-width: 901px) {
  .legal-footer > .legal-container:first-child {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
  }
  .legal-footer > .legal-container:first-child .legal-section {
    flex: 1;
    margin-bottom: 0;
  }
  .legal-footer > .legal-container:first-child hr {
    width: 1px;
    height: auto;
    margin: 0;
  }
}

.legal-disclaimer-bg {
  background: #f8f9fa;
  border-top: 1px solid #eaeaea;
}

.legal-disclaimer {
  font-size: 0.78rem;
  color: #020202;
  text-align: justify;
  line-height: 1.65;
}

/* ============ FLOATING BUTTONS ============ */
.right-float-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  transition: all var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.25);
}

.whatsapp-float {
  background: #25D366;
}

.call-float {
  background: var(--navy);
  border: 1.5px solid var(--gold);
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  background: var(--gold);
  color: var(--white);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  display: none;
}

.scroll-top.visible {
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* =============================================================
   RESPONSIVE SYSTEM
   Breakpoints:
   xs  – up to 480px   (small phones)
   sm  – 481–600px     (large phones)
   md  – 601–900px     (tablets / phablets)
   lg  – 901–1100px    (small laptops)
   xl  – 1101–1280px   (laptops)
   2xl – 1281px+       (desktops / large screens)
   ============================================================= */

/* ---- Desktop / Large Screen (1281px+) ---- */
@media (min-width: 1281px) {
  .container {
    padding: 0 40px;
  }

  .section-pad {
    padding: 88px 0;
  }

  .hero-content {
    padding: 56px 40px 48px;
  }

  .enquiry-sidebar {
    width: 320px;
  }
}

/* ---- Laptop (1101–1280px) ---- */
@media (max-width: 1280px) {
  .nav-item {
    padding: 8px 10px;
    font-size: 0.77rem;
  }

  .amenity-icons-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
  }

  .enquiry-popup {
    max-width: 720px;
  }
}

/* ---- Small Laptop (901–1100px) ---- */
@media (max-width: 1100px) {
  .nav-item {
    padding: 7px 8px;
    font-size: 0.74rem;
  }

  .btn-call {
    font-size: 0.72rem;
    padding: 7px 12px;
  }

  .amenity-icons-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .amenity-card {
    min-width: calc(50% - 9px);
  }

  .enquiry-popup {
    max-width: 680px;
  }

  .overview-grid {
    gap: 32px;
  }

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

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

/* ---- Tablet / Phablet (601–900px) ---- */
@media (max-width: 900px) {

  /* Layout */
  .section-pad {
    padding: 56px 0;
  }

  .container {
    padding: 0 20px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }

  /* Navbar */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-top: 1px solid var(--mid-gray);
    z-index: 999;
    max-height: calc(100vh - 62px);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
    border-radius: 0;
    border-bottom: 1px solid var(--mid-gray);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(180deg,
        rgba(13, 27, 42, 0.82) 0%,
        rgba(13, 27, 42, 0.55) 50%,
        rgba(13, 27, 42, 0.2) 100%);
  }

  .hero-content {
    padding: 36px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-info-panel {
    max-width: 100%;
    width: 100%;
    position: relative;
    top: auto;
    margin-bottom: 0;
  }

  .enquiry-sidebar {
    width: 100%;
    max-height: none;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  }

  .project-title {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }

  .highlights-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Overview */
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .overview-features {
    position: relative;
    top: auto;
  }

  /* Pricing */
  .pricing-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 14px;
    font-size: 0.84rem;
  }

  .btn-price-breakup {
    padding: 7px 12px;
    font-size: 0.74rem;
  }

  /* Enquiry Popup */
  .enquiry-popup {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .popup-left {
    display: none;
  }

  /* Floor Plan */
  .fp-card-grid {
    grid-template-columns: 1fr;
  }

  /* Amenities */
  .amenities-slider-wrap {
    gap: 10px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .amenity-card {
    min-width: calc(80% - 5px);
  }

  .amenity-img-wrap {
    height: 200px;
  }

  .amenity-icons-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-item.large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
  }

  .gallery-item:not(.large) {
    min-height: 160px;
  }

  /* Location */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .map-wrap iframe {
    height: 320px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 20px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 16px 20px;
  }
}

/* ---- Large Phone (481–600px) ---- */
@media (max-width: 600px) {
  body {
    text-align: center;
  }

  .section-pad {
    padding: 44px 0;
  }

  .container {
    padding: 0 16px;
    text-align: center;
  }

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

  .title-underline {
    margin: 0 auto 12px auto;
  }

  /* Navbar */
  .navbar {
    padding: 0 16px;
    height: 58px;
  }

  .nav-links {
    top: 58px;
  }

  .logo-sig {
    font-size: 0.92rem;
    letter-spacing: 2px;
  }

  .btn-register {
    font-size: 0.74rem;
    padding: 8px 14px;
  }

  /* Hero */
  .hero {
    padding-top: 58px;
  }

  .hero-content {
    padding: 28px 16px 20px;
  }

  .booking-badge {
    font-size: 0.7rem;
  }

  .project-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .project-location {
    font-size: 0.82rem;
    margin-bottom: 14px;
  }

  .project-stats {
    padding: 11px 14px;
    gap: 14px;
  }

  .stat-val {
    font-size: 0.82rem;
  }

  .highlight-box {
    padding: 11px 14px;
    margin-bottom: 14px;
  }

  .rera-info {
    font-size: 0.75rem;
  }

  .price-tag {
    font-size: 1rem;
  }

  .btn-brochure {
    font-size: 0.82rem;
    padding: 10px 18px;
  }

  /* Sidebar */
  .enquiry-sidebar {
    padding: 14px 16px;
  }

  .form-heading {
    font-size: 1rem;
  }

  /* Highlights */
  .highlights-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .highlight-item {
    padding: 16px 8px;
  }

  .hl-num {
    font-size: 1.6rem;
  }

  /* Pricing */
  .pricing-table {
    font-size: 0.82rem;
  }

  .pricing-table th {
    padding: 10px 10px;
    font-size: 0.68rem;
  }

  .pricing-table td {
    padding: 10px 10px;
    font-size: 0.82rem;
  }

  .price-val {
    font-size: 0.82rem;
  }

  .btn-price-breakup {
    padding: 6px 10px;
    font-size: 0.7rem;
  }

  /* Amenities */
  .amenity-icons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .am-icon-item {
    padding: 10px 4px;
    font-size: 1.2rem;
  }

  .am-icon-item span {
    font-size: 0.62rem;
  }

  .amenity-card {
    min-width: 90%;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-item.large {
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .gallery-item:not(.large) {
    min-height: 120px;
  }

  .gallery-caption {
    opacity: 1;
  }

  /* Floor Plan */
  .floorplan-tabs {
    gap: 6px;
  }

  .tab-btn {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  .fp-placeholder {
    flex-direction: column;
    padding: 20px;
    text-align: center;
    min-height: auto;
  }

  /* Contact form */
  .contact-form-wrap {
    padding: 20px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 16px 20px;
  }

  .footer-bottom {
    padding: 14px 16px;
  }

  .disclaimer {
    font-size: 0.64rem !important;
  }

  /* Popup */
  .enquiry-popup-overlay {
    padding: 12px;
  }

  .popup-right {
    padding: 24px 18px;
  }

  .popup-right h3 {
    font-size: 1.15rem;
  }

  .btn-popup-submit {
    padding: 12px;
    font-size: 0.88rem;
  }

  /* Modals */
  .modal-box {
    padding: 24px 18px;
  }

  .modal-box h3 {
    font-size: 1.15rem;
  }

  /* Floating buttons */
  .right-float-container {
    bottom: 18px;
    right: 16px;
    gap: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .scroll-top {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    bottom: 18px;
    left: 16px;
  }
}

/* ---- Small Phone (up to 480px) ---- */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .section-pad {
    padding: 36px 0;
  }

  .container {
    padding: 0 14px;
  }

  /* Navbar */
  .navbar {
    padding: 0 14px;
    height: 54px;
  }

  .nav-links {
    top: 54px;
  }

  .hero {
    padding-top: 54px;
  }

  .logo-sig {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }

  .logo-sar {
    font-size: 0.52rem;
    letter-spacing: 2.5px;
  }

  .btn-register {
    font-size: 0.7rem;
    padding: 7px 11px;
  }

  /* Hero */
  .hero-content {
    padding: 22px 14px 16px;
  }

  .project-title {
    font-size: clamp(1.4rem, 8vw, 1.9rem);
  }

  .project-stats {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .stat-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .stat-label {
    font-size: 0.62rem;
  }

  .stat-val {
    font-size: 0.8rem;
  }

  .rera-info {
    line-height: 1.8;
  }

  /* Highlights */
  .highlights-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hl-num {
    font-size: 1.45rem;
  }

  .hl-sub {
    font-size: 0.65rem;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }

  /* Pricing table – stack on tiny screens */
  .pricing-table thead {
    display: none;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius);
    margin-bottom: 12px;
    padding: 4px 0;
    background: var(--white);
  }

  .pricing-table td {
    padding: 8px 14px;
    border-bottom: 1px solid var(--mid-gray);
    font-size: 0.82rem;
  }

  .pricing-table td:last-child {
    border-bottom: none;
  }

  .pricing-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 2px;
  }

  /* Amenities */
  .amenity-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .am-icon-item {
    padding: 12px 6px;
    font-size: 1.3rem;
    gap: 6px;
  }

  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .amenity-card {
    min-width: 92%;
  }

  .amenity-img-wrap {
    height: 170px;
  }

  /* Gallery */
  .gallery-item.large {
    min-height: 200px;
  }

  .gallery-item:not(.large) {
    min-height: 160px;
  }

  /* Floor plan */
  .fp-placeholder {
    padding: 16px;
  }

  .fp-icon {
    font-size: 2rem;
  }

  /* Contact */
  .contact-form-wrap {
    padding: 18px 14px;
  }

  .contact-details {
    gap: 12px;
  }

  /* Footer */
  .footer-top {
    padding: 28px 14px 18px;
    gap: 20px;
  }

  .footer-bottom {
    padding: 12px 14px;
  }

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

  /* Popup */
  .enquiry-popup-overlay {
    padding: 8px;
    align-items: flex-end;
  }

  .enquiry-popup {
    border-radius: 14px 14px 0 0;
    max-width: 100%;
    width: 100%;
  }

  .popup-right {
    padding: 20px 16px 24px;
  }

  .popup-right h3 {
    font-size: 1.1rem;
  }

  .popup-form {
    gap: 9px;
  }

  .btn-popup-submit {
    padding: 13px;
  }

  .popup-close {
    top: 12px;
    right: 12px;
  }

  /* Modals */
  .modal-overlay {
    padding: 12px;
  }

  .modal-box {
    padding: 20px 16px;
    border-radius: 10px;
  }

  .modal-table td {
    padding: 8px 10px;
    font-size: 0.82rem;
  }
}