:root {
  --indigo-700: #4338ca;
  --indigo-600: #4f46e5;
  --purple-600: #6d28d9;
  --purple-500: #7c3aed;
  --yellow-400: #facc15;
  --gray-900: #1f2937;
  --gray-800: #374151;
  --gray-700: #4b5563;
  --gray-600: #6b7280;
  --gray-500: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background-color: var(--white);
  line-height: 1.6;
  scroll-behavior: smooth;
  padding-bottom: 72px;
}

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

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

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  background: var(--indigo-700);
  color: var(--white);
  font-size: 0.95rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}

.top-bar-actions {
  display: flex;
  gap: 12px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 600;
  transition: background 0.3s ease;
}

.pill-link:hover {
  background: rgba(255, 255, 255, 0.35);
}

.pill-link-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.pill-link-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.main-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 26px -18px rgba(15, 23, 42, 0.55);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--indigo-700);
}

.brand-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  font-weight: 500;
  color: var(--gray-800);
  transition: color 0.3s ease;
}

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

.nav-highlight {
  font-weight: 600;
  color: var(--indigo-600);
}

.nav-highlight:hover {
  color: var(--purple-500);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(79, 70, 229, 0.2);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.35);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--indigo-600);
  outline-offset: 3px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--indigo-600);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 0;
}

.nav-toggle:focus-visible .nav-toggle-bar {
  background: var(--indigo-600);
}

body.nav-open .nav-toggle .nav-toggle-bar:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle .nav-toggle-bar:nth-of-type(3) {
  opacity: 0;
  transform: translateX(-12px);
}

body.nav-open .nav-toggle .nav-toggle-bar:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.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;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.nav-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  opacity: 0;
  transform: scale(1.0125);
  transform-origin: center;
  transition: opacity 0.22s ease, transform 0.32s ease;
}

.nav-drawer-panel {
  position: relative;
  width: min(420px, 100%);
  max-width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 244, 255, 0.98) 52%, rgba(233, 236, 255, 0.99) 100%);
  box-shadow: -18px 0 40px -24px rgba(15, 23, 42, 0.45), 0 24px 48px -36px rgba(79, 70, 229, 0.45);
  border-left: 1px solid rgba(79, 70, 229, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--gray-800);
}

.nav-close {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-600);
}

.nav-close:hover {
  color: var(--indigo-600);
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-drawer-links a {
  color: var(--gray-800);
  font-weight: 500;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.nav-drawer-links a:hover {
  color: var(--indigo-600);
}

.nav-drawer.is-open {
  pointer-events: auto;
}

.nav-drawer.is-open .nav-drawer-overlay {
  opacity: 1;
  transform: scale(1);
}

.nav-drawer.is-open .nav-drawer-panel {
  transform: translateX(0);
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-drawer.is-open .nav-drawer-links a {
  opacity: 1;
  transform: translateX(0);
}

.nav-drawer.is-open .nav-drawer-links a:nth-child(1) {
  transition-delay: 0.06s;
}

.nav-drawer.is-open .nav-drawer-links a:nth-child(2) {
  transition-delay: 0.1s;
}

.nav-drawer.is-open .nav-drawer-links a:nth-child(3) {
  transition-delay: 0.14s;
}

.nav-drawer.is-open .nav-drawer-links a:nth-child(4) {
  transition-delay: 0.18s;
}

.nav-drawer.is-open .nav-drawer-links a:nth-child(5) {
  transition-delay: 0.22s;
}

.nav-drawer.is-open .nav-drawer-links a:nth-child(6) {
  transition-delay: 0.26s;
}

.nav-drawer.is-open .nav-drawer-links a:nth-child(7) {
  transition-delay: 0.3s;
}

.nav-drawer.is-open .nav-drawer-links a:nth-child(8) {
  transition-delay: 0.34s;
}

.nav-drawer.is-open .nav-drawer-links a:nth-child(9) {
  transition-delay: 0.38s;
}

.nav-drawer.is-open .nav-drawer-links a:nth-child(10) {
  transition-delay: 0.42s;
}

.nav-drawer.is-open .nav-drawer-links a:nth-child(11) {
  transition-delay: 0.46s;
}

.nav-drawer.is-open .nav-drawer-links a:nth-child(12) {
  transition-delay: 0.5s;
}

.nav-drawer.is-open .nav-drawer-links a:nth-child(13) {
  transition-delay: 0.54s;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    margin-left: 24px;
  }
}

.nav-cta {
  padding: 10px 18px;
  background: var(--indigo-600);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--purple-500);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-image: linear-gradient(135deg, rgba(76, 29, 149, 0.55), rgba(79, 70, 229, 0.5)), url('images/Jyoti+PG_Front_1.jpeg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(67, 56, 202, 0.45), rgba(124, 58, 237, 0.35));
}

.hero-content {
  position: relative;
  text-align: left;
  padding: 100px 0;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.eyebrow {
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--indigo-700);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px -22px rgba(15, 23, 42, 0.55);
}

.hero-actions .btn-secondary:hover {
  background: var(--white);
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: 0 18px 38px -24px rgba(15, 23, 42, 0.55);
  transform: translateY(-1px) scale(1.02);
}

.hero-actions .btn-secondary:focus-visible {
  outline: 2px solid var(--yellow-400);
  outline-offset: 3px;
}


.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary {
  background: var(--yellow-400);
  color: #1f2937;
  box-shadow: 0 12px 30px -10px rgba(250, 204, 21, 0.75);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 42px -14px rgba(250, 204, 21, 0.9);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 32px -20px rgba(79, 70, 229, 0.55);
}

.btn-primary.full {
  width: 100%;
}

.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badges span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
  font-weight: 500;
}

.section {
  padding: 80px 0;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 12px;
  text-align: center;
  color: var(--gray-900);
}

.section-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px auto;
  color: var(--gray-600);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 35px -24px rgba(79, 70, 229, 0.45);
}

.icon-circle {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--indigo-600);
  margin-bottom: 18px;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.card p {
  color: var(--gray-600);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.gallery-item {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 35px -24px rgba(15, 23, 42, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 18px;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.mess-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.mess-card {
  background: var(--gray-100);
  border-radius: 18px;
  padding: 28px;
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.08);
}

.mess-card h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.2rem;
  color: var(--indigo-700);
}

.mess-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--gray-700);
}

.mess-card li {
  margin-bottom: 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.about-grid p {
  color: var(--gray-700);
  margin-bottom: 18px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 16px 30px -22px rgba(79, 70, 229, 0.5);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--indigo-600);
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.value-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.value-columns ul {
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 18px 35px -24px rgba(79, 70, 229, 0.3);
  color: var(--gray-700);
  border: 1px solid rgba(79, 70, 229, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.value-columns li {
  margin: 0;
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
  font-weight: 500;
}

.value-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--indigo-600);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.14);
}

.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.testimonials-subtitle {
  margin: 8px 0 0;
  max-width: 520px;
  color: var(--gray-600);
  font-size: 0.98rem;
}

.testimonials-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 20px;
  background: rgba(79, 70, 229, 0.12);
  border: 1px solid rgba(79, 70, 229, 0.2);
  box-shadow: 0 12px 34px -22px rgba(79, 70, 229, 0.56);
}

.rating-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--indigo-600);
  line-height: 1;
}

.rating-value span {
  font-size: 1rem;
  color: var(--gray-500);
  margin-left: 4px;
}

.rating-caption {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.testimonials-shell {
  position: relative;
  margin-top: 36px;
  padding: 52px 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.18), rgba(124, 58, 237, 0.12));
  overflow: hidden;
  z-index: 0;
}

.testimonials-shell::before,
.testimonials-shell::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
  z-index: 0;
}

.testimonials-shell::before {
  width: 220px;
  height: 220px;
  top: -80px;
  right: -60px;
  background: rgba(129, 140, 248, 0.35);
}

.testimonials-shell::after {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: -40px;
  background: rgba(236, 233, 254, 0.55);
}

.testimonial-viewport {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 24px;
  margin: 0 72px;
  padding: 4px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 28px;
}

.testimonial-card {
  position: relative;
  flex: 0 0 100%;
  max-width: 540px;
  padding: 32px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 28px 55px -34px rgba(15, 23, 42, 0.55);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 24px;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(79, 70, 229, 0.08);
  pointer-events: none;
}

.testimonial-stars {
  font-size: 1.1rem;
  color: var(--yellow-400);
  letter-spacing: 4px;
}

.quote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-800);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.12);
  color: var(--indigo-700);
  font-weight: 700;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--gray-900);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--indigo-600);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.testimonial-nav:hover {
  background: var(--white);
  box-shadow: 0 18px 32px -22px rgba(79, 70, 229, 0.65);
  transform: translateY(-50%) scale(1.04);
}

.testimonial-nav:focus-visible {
  outline: 2px solid var(--yellow-400);
  outline-offset: 4px;
}

.testimonial-nav.prev {
  left: 20px;
}

.testimonial-nav.next {
  right: 20px;
}

.testimonial-nav svg {
  width: 20px;
  height: 20px;
}

.testimonial-dots {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(79, 70, 229, 0.35);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  padding: 0;
}

.testimonial-dots button[aria-selected="true"] {
  width: 26px;
  background: var(--indigo-600);
}

.testimonial-dots button:focus-visible {
  outline: 2px solid var(--yellow-400);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .testimonials-shell {
    padding: 44px 16px;
  }

  .testimonials-rating {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .testimonial-viewport {
    margin: 0 12px;
    scroll-padding: 16px;
  }

  .testimonial-track {
    gap: 20px;
  }

  .testimonial-card {
    padding: 26px;
    flex: 0 0 88%;
  }

  .testimonial-nav {
    display: none;
  }
}

@media (min-width: 1100px) {
  .testimonial-card {
    flex: 0 0 48%;
  }
}
.faq-list {
  display: grid;
  gap: 16px;
}

.faq {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 12px 28px -24px rgba(15, 23, 42, 0.4);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-800);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--indigo-600);
  transition: transform 0.3s ease;
}

.faq[open] summary:after {
  transform: rotate(45deg);
}

.faq p {
  margin-top: 12px;
  color: var(--gray-600);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 36px;
}

.form-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 18px 40px -28px rgba(79, 70, 229, 0.6);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--gray-700);
  font-weight: 600;
}

.form-field span {
  font-size: 0.95rem;
}

input,
select,
textarea {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--indigo-600);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

textarea {
  resize: vertical;
}

.form-status {
  margin-top: 16px;
  color: var(--indigo-700);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-status.visible {
  opacity: 1;
}

.contact-card {
  background: var(--gray-100);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.08);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--gray-700);
  display: grid;
  gap: 10px;
}

.contact-list strong {
  display: inline-block;
  width: 110px;
  color: var(--gray-800);
}

.note {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.map-frame {
  position: relative;
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 45px -28px rgba(15, 23, 42, 0.45);
  overflow: visible;
  min-height: 360px;
  margin-bottom: 160px;
}

#location {
  padding-bottom: 140px;
}

#location .map-frame {
  margin: 0 auto 80px;
  max-width: 960px;
}

.leaflet-map {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  z-index: 0;
  box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.08);
}

.leaflet-map.map-can-open {
  cursor: pointer;
}


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

.cta-final h2 {
  margin-bottom: 12px;
}

.cta-final p {
  color: var(--gray-600);
  margin-bottom: 24px;
}
.cta-final .btn-secondary {
  color: var(--indigo-600);
  border: 1px solid rgba(79, 70, 229, 0.4);
  background: rgba(255, 255, 255, 0.9);
}

.cta-final .btn-secondary:hover {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.6);
}

.footer {
  background: var(--gray-900);
  color: var(--gray-200);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-top: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.footer a:hover {
  color: var(--yellow-400);
}

[data-animate] {
  --animate-offset: 24px;
  --parallax-offset: 0px;
  opacity: 0;
  transform: translateY(calc(var(--animate-offset) + var(--parallax-offset)));
  transition: opacity 0.6s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in {
  opacity: 1;
  --animate-offset: 0px;
}

[data-parallax] {
  will-change: transform;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 32px));
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(67, 56, 202, 0.9), rgba(124, 58, 237, 0.88));
  box-shadow: 0 24px 44px -26px rgba(25, 36, 82, 0.6);
  backdrop-filter: blur(16px);
  z-index: 20;
}

.sticky-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 14px 16px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.sticky-cta a::before {
  font-size: 1.15rem;
}

.sticky-cta a:nth-of-type(1)::before {
  content: '';
}

.sticky-cta a:nth-of-type(2)::before {
  content: '';
}

.sticky-cta a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -24px rgba(15, 23, 42, 0.6);
}

.sticky-cta a:focus-visible {
  outline: 2px solid var(--yellow-400);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .sticky-cta {
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    gap: 1px;
    padding: 0;
    border-radius: 0;
    background: var(--indigo-700);
    box-shadow: 0 -6px 28px -20px rgba(25, 36, 82, 0.6);
    backdrop-filter: none;
  }

  .sticky-cta a {
    border-radius: 0;
    padding: 16px 12px;
    background: transparent;
    border: none;
    box-shadow: none;
    font-weight: 600;
  }

  .sticky-cta a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: none;
    box-shadow: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1;
    --animate-offset: 0px;
    --parallax-offset: 0px;
    transform: none;
  }
}

@media (max-width: 900px) {
  #location {
    padding-bottom: 160px;
  }

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

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

@media (max-width: 768px) {
  #location {
    padding-bottom: 180px;
  }

  #location .map-frame {
    max-width: 100%;
    padding: 12px;
    margin-bottom: 120px;
  }

  body {
    padding-bottom: 126px;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .nav-inner {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
  }
}
\n.leaflet-control-attribution {\n  display: none !important;\n}\n
.engagement-counters {
  margin-top: 28px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.counter-item {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 16px 20px;
  min-width: 180px;
}

.counter-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}

.counter-label {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}















