/* ============================================================
   Radiance Eternity — Refined Minimal Theme
   ============================================================ */
:root {
  --primary: #14110f;
  --secondary: #5c5650;
  --muted: #8a837c;
  --accent: #b08d57;
  --accent-soft: #d9c4a3;
  --bg: #ffffff;
  --bg-alt: #f7f5f2;
  --bg-warm: #faf8f5;
  --border: #e8e3dc;
  --border-soft: #f0ece6;

  --font-sans: "Inter", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;

  --radius: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--secondary);
  background-color: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: var(--primary);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.25rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-light:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

/* ---- Navbar ---- */
.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: padding 0.3s var(--ease);
}

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

.nav-btn {
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--accent);
}

/* ---- Sections ---- */
section {
  padding: 6rem 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-head h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
}

.bg-alt {
  background-color: var(--bg-alt);
}
.bg-warm {
  background-color: var(--bg-warm);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 92vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: url("../image/main_img.1eb7a7955b24.jpeg") center/cover no-repeat;
  margin: 1rem 1rem 0;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 17, 15, 0.78) 0%,
    rgba(20, 17, 15, 0.4) 55%,
    rgba(20, 17, 15, 0.15) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1180px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 420px;
  gap: 4rem;
  align-items: center;
}

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

.hero-form-wrapper {
  position: relative;
  z-index: 10;
}

.hero-form-wrapper .enquiry-form-card {
  background: #fff;
  padding: 2.2rem;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.hero-form-wrapper h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
  color: var(--primary);
}

.hero .eyebrow {
  color: var(--accent-soft);
}

.hero h1 {
  color: #fff;
  font-size: 4.5rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.hero h2 {
  color: #f3efe9;
  font-size: 1.5rem;
  font-weight: 300;
  font-family: var(--font-sans);
  margin-bottom: 1.6rem;
  letter-spacing: 0.5px;
}

.hero p {
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2.2rem;
  opacity: 0.85;
  font-weight: 300;
}

.hero .btn {
  margin-right: 0.5rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ---- Highlights Bar ---- */
.highlights-bar {
  background: #fff;
  color: var(--primary);
  padding: 1.8rem 3rem;
  margin-top: -4rem;
  position: relative;
  z-index: 10;
  border-radius: 60px;
  box-shadow: 0 16px 40px rgba(20, 17, 15, 0.08);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.highlight-item {
  position: relative;
}

.highlight-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border);
}

.highlight-item h4 {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.highlight-item p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
}

/* ---- Intro / Stats ---- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.intro-text p {
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.stat-item {
  background: var(--bg-alt);
  padding: 2.4rem 1.5rem;
  text-align: center;
  transition: background 0.4s var(--ease);
}

.stat-item:hover {
  background: #fff;
}

.stat-item .number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.stat-item .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

/* ---- Overview two-col ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.two-col h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(20, 17, 15, 0.12);
  display: block;
}

.data-list {
  list-style: none;
  margin-top: 2rem;
}

.data-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.data-list li:first-child {
  border-top: 1px solid var(--border);
}

.data-list li span:first-child {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
  font-weight: 500;
}

.data-list li span:last-child {
  font-weight: 500;
  color: var(--primary);
}

/* ---- Floor Plan Tabs ---- */
.floor-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.tab-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  background: transparent;
}

.tab-btn.active::before {
  background: var(--accent-soft);
  animation: tabProgress 5s linear forwards;
}

@keyframes tabProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(20, 17, 15, 0.15);
}

.tab-btn.active .tab-size,
.tab-btn:hover .tab-size {
  color: rgba(255, 255, 255, 0.8);
}

.tab-size {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 0.4rem;
  font-weight: 400;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.tab-pane.active {
  display: block;
}

.tab-pane img {
  width: 100%;
  max-width: 900px;
  height: 420px;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(20, 17, 15, 0.1);
  background: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.location-two-col {
  grid-template-columns: 5fr 7fr;
  align-items: start;
}

/* ---- Location ---- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  margin-top: 1rem; /* Reduced from 3rem to align better with left col */
}

.loc-category h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

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

.loc-list li {
  margin-bottom: 0.7rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--secondary);
  border-bottom: 1px dashed var(--border);
  padding-bottom: 0.5rem;
  align-items: baseline;
  gap: 1rem;
}

.loc-list li span:last-child {
  color: var(--accent);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
}

/* ---- Connectivity Cards ---- */
.conn-heading {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.conn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.conn-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.conn-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(20, 17, 15, 0.06);
  border-color: var(--border-soft);
}

.conn-info h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 600;
}

.conn-dist {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 500;
}

.conn-dist span {
  color: var(--muted);
}

.conn-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
}

/* ---- Enquiry ---- */
#enquire {
  background: var(--primary);
  color: #fff;
}

.enquiry-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.enquiry-info h2 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}

.enquiry-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 440px;
  font-weight: 300;
}

.enquiry-info .contact-line {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.enquiry-form-card {
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius);
}

.enquiry-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.enquiry-form-card .form-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--primary);
  outline: none;
  transition: border 0.3s var(--ease);
  background: var(--bg-warm);
}

.form-group select {
  padding-right: 2.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c5650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
}

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

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: #fff;
}

.form-message {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  display: none;
}

.form-message.success,
.form-message.error {
  display: block;
}

.form-message.success {
  color: #2e7d32;
}

.form-message.error {
  color: #b42318;
}

.form-submit-btn {
  width: 100%;
}

body.modal-open {
  overflow: hidden;
}

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

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
  background: rgba(20, 17, 15, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-container {
  position: relative;
  width: min(100%, 440px);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s var(--ease);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-container .enquiry-form-card {
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.modal-container .enquiry-form-card h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.btn-close-modal {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--secondary);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.btn-close-modal:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

/* ---- Thank you ---- */
.thank-you-section {
  min-height: calc(100vh - 92px);
  padding: 7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(20, 17, 15, 0.72), rgba(20, 17, 15, 0.72)),
    url("../image/main_img.1eb7a7955b24.jpeg") center / cover no-repeat;
}

.thank-you-card {
  width: min(100%, 720px);
  padding: 3.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.thank-you-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(176, 141, 87, 0.35);
}

.thank-you-location {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.thank-you-card h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(2.5rem, 7vw, 4rem);
}

.thank-you-card h2 {
  margin-bottom: 1rem;
  color: var(--secondary);
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 500;
}

.thank-you-card > p {
  max-width: 590px;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.thank-you-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.thank-you-highlights div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.thank-you-highlights span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.thank-you-highlights strong {
  color: var(--primary);
  font-size: 0.95rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.thank-you-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  background: #25d366;
}

.thank-you-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-1px);
}

.thank-you-whatsapp img {
  width: 20px;
  height: 20px;
}

@media (max-width: 640px) {
  .modal-container .enquiry-form-card,
  .thank-you-card {
    padding: 2rem 1.25rem;
  }

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

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ---- Footer ---- */
.footer {
  background: #0e0c0b;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand span {
  color: var(--accent);
  font-style: italic;
}

.footer p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 640px;
  font-size: 0.9rem;
  font-weight: 300;
}

.footer .copyright {
  margin: 1.5rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

.footer-contact h4,
.footer-social h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-links a {
  color: var(--accent-soft);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.contact-links a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s var(--ease);
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .hero {
    height: auto;
    min-height: auto;
    padding: 4rem 0 6rem;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 12px;
  }
  .nav-links {
    display: none;
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .highlight-item:nth-child(2)::after {
    display: none;
  }
  .intro-grid,
  .two-col,
  .location-two-col,
  .location-grid,
  .enquiry-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .conn-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .highlights-bar {
    margin: 2rem 1rem 0;
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero h2 {
    font-size: 1.25rem;
  }
  .section-head h2,
  .intro-text h2,
  .two-col h2,
  .enquiry-info h2 {
    font-size: 2rem;
  }
  .footer-right {
    text-align: left;
  }
  section {
    padding: 4rem 0;
  }
}

@media (max-width: 560px) {
  .highlights-grid,
  .stats-grid,
  .conn-grid {
    grid-template-columns: 1fr;
  }
  .highlight-item::after {
    display: none !important;
  }
  .enquiry-form-card {
    padding: 2rem 1.5rem;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1500; /* above header, footer, but below modal dialog */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  filter: drop-shadow(0 6px 16px rgba(37, 211, 102, 0.45));
}

.whatsapp-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
