:root {
  --primary: #0077b6;
  --secondary: #023e8a;
  --accent: #00b4d8;
  --light: #f4f9ff;
  --dark: #1f2937;
  --white: #ffffff;
  --shadow: 0 10px 25px rgba(2, 62, 138, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: #f8fbff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--secondary);
  color: var(--white);
  font-size: 0.9rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--white);
}

.topbar p {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

header {
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 250px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand h1 {
  font-size: 1.05rem;
  color: var(--secondary);
}

.lang-switch-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

.lang-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--secondary);
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #b5bfd0;
  transition: 0.3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.8rem 0 0;
  padding-bottom: 0.8rem;
}

nav a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: #1f2937;
  font-size: 0.92rem;
  font-weight: 600;
}

nav a:hover,
nav a.active {
  background: #dceefe;
  color: var(--secondary);
}

.nav-toggle {
  display: none;
}

.hero {
  background: linear-gradient(rgba(2, 62, 138, 0.72), rgba(0, 119, 182, 0.72)),
    url("https://images.unsplash.com/photo-1560090995-01632a28895b?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: var(--white);
  padding: 5rem 0;
}

.hero h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 750px;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.hero .highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.hero .highlight-item {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 0.85rem;
}

main section {
  padding: 3rem 0;
}

.section-title {
  font-size: 1.75rem;
  color: var(--secondary);
  margin-bottom: 1.1rem;
}

.muted {
  color: #4b5563;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.timing-list,
.list {
  list-style: none;
  margin-top: 0.8rem;
}

.timing-list li,
.list li {
  padding: 0.45rem 0;
  border-bottom: 1px dashed #d4dfef;
}

.timing-list li:last-child,
.list li:last-child {
  border-bottom: 0;
}

.price {
  font-size: 1.25rem;
  color: #0a7e31;
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.gallery img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.85rem;
}

.video-gallery iframe {
  border-radius: 12px;
  width: 100%;
  height: auto;
  aspect-ratio: 479 / 852;
  box-shadow: var(--shadow);
}

.video-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 479 / 852;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 0.3s;
}

.play-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

.notice {
  border-left: 5px solid #f59e0b;
  background: #fff8e8;
  padding: 1rem;
  border-radius: 10px;
}

.faq-item details {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 0.95rem 1rem;
}

.faq-item details + details {
  margin-top: 0.8rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--secondary);
}

.faq-item p {
  margin-top: 0.6rem;
}

footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 2rem 0;
  margin-top: 2rem;
}

footer p + p {
  margin-top: 0.4rem;
}

.float-btn {
  position: fixed;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 150;
  font-size: 1.4rem;
}

.float-whatsapp {
  background: #25d366;
  bottom: 84px;
}

.float-call {
  background: #0ea5e9;
  bottom: 20px;
}

.float-instagram {
  background: #E4405F;
  bottom: 148px;
}

.float-youtube {
  background: #FF0000;
  bottom: 212px;
}

.lang {
  display: none;
}

body.lang-mr .lang-mr,
body.lang-en .lang-en {
  display: inline;
}

body.lang-mr .lang-mr.block,
body.lang-en .lang-en.block {
  display: block;
}

@media (max-width: 840px) {
  header .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: 0.5rem;
  }

  .topbar .container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding: 0.6rem 0;
  }

  .topbar p {
    justify-content: center;
    text-align: center;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .topbar p:last-child a {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    font-weight: 700;
  }

  .header-row {
    display: contents;
  }

  .brand {
    min-width: 0;
    width: 100%;
    padding: 0.6rem 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand h1 {
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .lang-switch-wrap {
    margin-left: 0;
    justify-self: center;
    background: #edf6ff;
    padding: 0.14rem 0.32rem;
    border-radius: 999px;
    gap: 0.22rem;
  }

  .lang-switch-wrap .lang-label {
    font-size: 0.65rem;
  }

  .lang-switch-wrap .switch {
    width: 34px;
    height: 18px;
  }

  .lang-switch-wrap .slider:before {
    width: 12px;
    height: 12px;
    left: 3px;
    bottom: 3px;
  }

  .lang-switch-wrap .switch input:checked + .slider:before {
    transform: translateX(16px);
  }

  nav {
    width: auto;
    position: relative;
    display: flex;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 46px;
    height: 42px;
    border: 1px solid #d6e3f2;
    background: #ffffff;
    color: var(--secondary);
    border-radius: 10px;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
  }

  .nav-toggle .bars {
    font-size: 1.2rem;
    line-height: 1;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin: 0.55rem 0 0;
    padding: 1rem 0.9rem;
    position: absolute;
    top: calc(100% + 0.3rem);
    right: 0;
    width: min(92vw, 360px);
    max-height: 62vh;
    background: #ffffff;
    border: 1px solid #d6e3f2;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 230;
    overflow-y: auto;
  }

  nav.open ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  nav li {
    width: 100%;
  }

  nav a {
    display: block;
    width: 100%;
    font-size: 0.84rem;
    padding: 0.5rem 0.72rem;
    border: 1px solid #d6e3f2;
    background: #fff;
    border-radius: 10px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    aspect-ratio: 16 / 10;
  }
}
