:root {
  --bg: #f5f7f6;
  --surface: #ffffff;
  --ink: #1f2a2e;
  --muted: #5d6a70;
  --brand: #0e7c66;
  --brand-dark: #173f46;
  --brand-2: #cf5f2c;
  --gold: #eeb44a;
  --line: #d7dedb;
  --radius: 8px;
  --shadow: 0 16px 40px rgba(23, 63, 70, 0.13);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -10000px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.5rem;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(247, 244, 236, 0.92);
  border-bottom: 1px solid var(--line);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.logo {
  font-family: "Merriweather", serif;
  font-size: 1.25rem;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.btn,
.btn-link {
  display: inline-block;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #0f9f7e);
  color: #fff;
}

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

.hero-outline {
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 3rem 0 2rem;
  color: #fff;
  background: linear-gradient(90deg, rgba(14, 45, 48, 0.88), rgba(14, 45, 48, 0.42)),
    url("/assets/images/hero-kerala-backwaters.png") center/cover;
}

.hero-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1.3fr 1fr;
  align-items: end;
}

.hero-card,
.panel,
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
}

.hero-copy {
  max-width: 760px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.hero h1 {
  margin-top: 0;
  line-height: 1.2;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.kicker {
  margin: 0 0 0.6rem;
  color: var(--brand-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.hero-meta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.meta-chip {
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.hero-side {
  padding: 1.3rem;
  color: var(--ink);
}

.section {
  padding: 2rem 0;
}

.section h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.panel {
  padding: 1.1rem;
}

.card h3,
.panel h3 {
  margin-top: 0;
}

.breadcrumb {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 1rem 0;
}

.breadcrumb a {
  color: var(--brand);
  text-decoration: none;
}

.contact-cta {
  background: linear-gradient(135deg, #0f6f5b, #184045);
  color: #fff;
  padding: 1.6rem;
  border-radius: var(--radius);
}

.contact-cta a {
  color: #fff;
}

.faq details {
  background: #fffcf5;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.7rem;
}

footer {
  border-top: 1px solid var(--line);
  padding: 1.7rem 0 2rem;
  color: var(--muted);
}

.list-inline {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0.8rem;
  }

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

  .menu-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.45rem 0.65rem;
  }
}

@media (min-width: 901px) {
  .menu-btn {
    display: none;
  }
}

.pro-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 26px rgba(23, 63, 70, 0.08);
}

.pro-header .navbar {
  padding: 0.45rem 0;
}

.brand-logo img {
  display: block;
  height: auto;
  max-width: 220px;
}

.pro-header .nav-link {
  color: var(--brand-dark);
  font-weight: 800;
}

.dropdown-menu {
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 0.55rem;
}

.dropdown-item {
  border-radius: 6px;
  color: var(--brand-dark);
  font-weight: 700;
  padding: 0.62rem 0.75rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: #e8f3ef;
  color: var(--brand);
}

.btn-call,
.btn-whatsapp {
  border: 0;
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
}

.btn-call {
  background: var(--brand-dark);
}

.btn-whatsapp {
  background: #128c7e;
}

.btn-call:hover,
.btn-whatsapp:hover {
  color: #fff;
  filter: brightness(0.94);
}

.pro-carousel {
  position: relative;
  background: var(--brand-dark);
}

.pro-carousel,
.pro-carousel .carousel-item {
  min-height: 650px;
}

.hero-img {
  width: 100%;
  min-height: 650px;
  height: 82vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 36, 40, 0.9), rgba(13, 36, 40, 0.56), rgba(13, 36, 40, 0.18));
}

.hero-caption {
  left: 7%;
  right: auto;
  bottom: 15%;
  max-width: 760px;
  padding: 0;
}

.hero-caption h1,
.hero-caption h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(2.45rem, 5vw, 5.2rem);
  line-height: 1.04;
}

.hero-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.trust-strip {
  background: var(--brand-dark);
  color: #fff;
  padding: 1rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  font-weight: 800;
  font-size: 0.94rem;
}

.pro-section {
  padding: 4.4rem 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 1.8rem;
}

.section-heading h2,
.image-band h2,
.enquiry-panel h2 {
  font-family: "Merriweather", Georgia, serif;
  color: var(--brand-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  display: block;
  min-height: 220px;
  padding: 1.25rem;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(23, 63, 70, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.feature-card span {
  display: inline-block;
  margin-bottom: 1.1rem;
  color: var(--brand-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.feature-card strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--brand-dark);
  font-size: 1.25rem;
}

.image-band {
  background: #173f46;
  color: #fff;
  padding: 4.4rem 0;
}

.image-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.image-band h2 {
  color: #fff;
}

.image-band p {
  color: rgba(255, 255, 255, 0.82);
}

.image-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.destination-grid a {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0.85rem;
  color: var(--brand-dark);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  font-weight: 800;
}

.destination-grid a:hover {
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(23, 63, 70, 0.09);
}

.enquiry-section {
  background: #edf4f1;
}

.enquiry-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, #fff, #f8fcfa);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.enquiry-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.pro-footer {
  background: #102f34;
  border-top: 0;
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 2rem;
}

.pro-footer h3 {
  color: #fff;
  font-size: 1rem;
}

.pro-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  gap: 0.65rem;
}

.quick-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(16, 47, 52, 0.28);
  font-size: 1.35rem;
  font-weight: 900;
}

.quick-contact img {
  width: 28px;
  height: 28px;
}

.page-carousel {
  background: var(--brand-dark);
  margin-bottom: 2.2rem;
}

.page-carousel,
.page-carousel .carousel-item {
  min-height: 360px;
}

.page-carousel img {
  width: 100%;
  height: 420px;
  min-height: 360px;
  object-fit: cover;
}

.page-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 36, 40, 0.88), rgba(13, 36, 40, 0.54), rgba(13, 36, 40, 0.18));
}

.page-carousel-caption {
  position: absolute;
  left: max(4vw, calc((100vw - 1120px) / 2));
  bottom: 3.2rem;
  max-width: 720px;
  color: #fff;
}

.page-carousel-caption h1,
.page-carousel-caption h2 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.page-carousel-caption p:not(.kicker) {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.pilgrimage-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pilgrimage-routes a {
  display: block;
  min-height: 160px;
  padding: 1rem;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: var(--shadow);
}

.pilgrimage-routes strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
}

.srh-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(18, 63, 69, 0.08);
}

.srh-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.srh-brand img {
  display: block;
  width: min(250px, 56vw);
  height: auto;
}

.srh-links {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.srh-links a,
.srh-dropdown > button,
.srh-menu {
  color: var(--brand-dark);
  border: 0;
  background: transparent;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
}

.srh-links a,
.srh-dropdown > button {
  padding: 0.55rem 0.35rem;
}

.srh-dropdown {
  position: relative;
}

.srh-dropdown > button::after {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.srh-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  display: none;
  min-width: 238px;
  padding: 0.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.srh-dropdown:nth-of-type(1) .srh-dropdown-menu {
  min-width: 280px;
}

.srh-dropdown:hover .srh-dropdown-menu,
.srh-dropdown:focus-within .srh-dropdown-menu,
.srh-dropdown.open .srh-dropdown-menu {
  display: grid;
}

.srh-dropdown-menu a {
  padding: 0.62rem 0.7rem;
  border-radius: 6px;
}

.srh-dropdown-menu a:hover,
.srh-dropdown-menu a:focus {
  color: var(--brand);
  background: #e8f3ef;
}

.srh-links .srh-call,
.srh-links .srh-whatsapp {
  color: #fff;
  padding: 0.68rem 1rem;
  border-radius: 999px;
}

.srh-links .srh-call {
  background: var(--brand-dark);
}

.srh-links .srh-whatsapp {
  background: #128c7e;
}

.srh-menu {
  display: none;
  padding: 0.58rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.srh-footer {
  background: #102f34;
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 1.2rem;
}

.srh-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 2rem;
}

.srh-footer img {
  width: 230px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.srh-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.srh-footer a,
.srh-footer span {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  margin-bottom: 0.55rem;
}

.srh-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.srh-footer-bottom span,
.srh-footer-bottom a {
  display: inline;
}

@media (max-width: 1080px) {
  .srh-menu {
    display: inline-block;
  }

  .srh-links {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 0.4rem);
    display: none;
    padding: 0.85rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .srh-links.open {
    display: grid;
    align-items: stretch;
  }

  .srh-links a,
  .srh-dropdown > button {
    width: 100%;
    text-align: left;
    padding: 0.72rem 0.8rem;
  }

  .srh-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0.25rem 0 0.45rem;
    box-shadow: none;
  }

  .srh-dropdown.open .srh-dropdown-menu {
    display: grid;
  }

  .srh-links .srh-call,
  .srh-links .srh-whatsapp {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .srh-nav {
    min-height: 74px;
  }

  .srh-footer-grid,
  .srh-footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

.quick-contact .quick-whatsapp {
  background: #128c7e;
}

.quick-contact .quick-call {
  background: var(--brand-2);
}

@media (max-width: 991px) {
  .brand-logo img {
    max-width: 176px;
  }

  .pro-carousel,
  .pro-carousel .carousel-item {
    min-height: 590px;
  }

  .hero-img {
    min-height: 590px;
    height: 74vh;
  }

  .hero-caption {
    left: 5%;
    bottom: 13%;
    max-width: 88vw;
  }

  .hero-caption h1,
  .hero-caption h2 {
    font-size: 2.35rem;
  }

  .trust-grid,
  .service-grid,
  .image-band-grid,
  .destination-grid,
  .pilgrimage-routes,
  .enquiry-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-actions .btn {
    width: 100%;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .pro-section,
  .image-band {
    padding: 3rem 0;
  }
}
