:root {
  --sgm-orange: #ff6908;
  --sgm-orange-dark: #6c1919;
  --sgm-orange-hover: #FF7E2B;
  --sgm-cream: #ffe5c4;
  --sgm-menu-mobile-bg: rgba(11, 5, 5, 0.57);
  --sgm-white: #ffffff;
  --sgm-text: #333333;
  --sgm-container: 1180px;
}

.sgm-header {
  font-family: "Mukta", sans-serif;
}

.sgm-header a {
  text-decoration: none;
}

.sgm-header-hero {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 350px;
}

.sgm-header-hero__inner {
  max-width: var(--sgm-container);
  margin: 0 auto;
  padding: 18px 20px 24px;
}

.sgm-header-hero__desktop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.sgm-header-hero__mobile {
  display: none;
}

.sgm-header-hero__slogan a {
  color: var(--sgm-orange);
  font-family: "Yatra One", cursive;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 0 4px var(--sgm-white);
}

.sgm-header-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.sgm-nav {
  width: 100%;
}

.sgm-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sgm-menu > li {
  position: relative;
}

.sgm-menu > li > a {
  display: block;
  padding: 10px 18px;
  color: var(--sgm-text);
  background: rgba(255, 105, 8, 0.88);
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
}

.sgm-menu > li > a:hover,
.sgm-menu > li.current-menu-item > a,
.sgm-menu > li.current-menu-ancestor > a {
  color: var(--sgm-text);
  background: var(--sgm-orange-hover);
}

.sgm-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 30;
}

.sgm-menu li:hover > .sub-menu,
.sgm-menu li:focus-within > .sub-menu {
  display: block;
}

.sgm-menu .sub-menu a {
  display: block;
  padding: 10px 18px;
  color: var(--sgm-text);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #f2f2f2;
  font-size: 12px;
  line-height: 1.4;
}

.sgm-menu .sub-menu a:hover,
.sgm-menu .sub-menu .current-menu-item > a {
  background: var(--sgm-orange-hover);
}

.sgm-menu > .menu-item-has-children > a::after {
  content: "▾";
  margin-left: 6px;
  font-size: 12px;
}

.sgm-lang-switcher__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sgm-lang-switcher__item a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sgm-text);
  font-size: 14px;
  font-weight: 600;
}

.sgm-lang-switcher__item--active a {
  color: var(--sgm-orange-dark);
  
}

.sgm-lang-switcher__flag img {
  display: block;
  width: 20px;
  height: auto;
  border-radius: 0;
}

.sgm-header-titlebar {
  background: var(--sgm-cream);
  border-bottom: 5px solid var(--sgm-orange);
  padding: 12px 20px 14px;
  text-align: center;
}

.sgm-header-titlebar__mantra {
  margin: 15px 0 5px;
  font-family: "Gotu", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: var(--sgm-orange);
}

.sgm-header-titlebar__name {
  margin: -8px 0 0;
  padding-top: 10px;
  font-family: "Gotu", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--sgm-orange);
}

.sgm-menu-toggle {
  display: none;
  border: 0;
  background: var(--sgm-orange);
  padding: 10px 12px;
  cursor: pointer;
}

.sgm-menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--sgm-white);
}

@media (max-width: 767px) {
  .sgm-header-hero {
    background-position: top left;
  }

  .sgm-header-hero__inner {
    padding: 14px 16px 28px;
  }

  .sgm-header-hero__desktop {
    display: none;
  }

  .sgm-header-hero__mobile {
    display: block;
  }

  .sgm-header-hero__mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .sgm-menu-toggle {
    display: inline-block;
  }

  .sgm-header-hero__slogan--mobile {
    margin: 30px 0;
    text-align: center;
  }

  .sgm-header-hero__slogan--mobile h2 {
    margin: 0;
  }

  .sgm-header-hero__slogan--mobile a {
    color: var(--sgm-white);
    font-family: "Yatra One", cursive;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 0 10px #000000;
  }

  .sgm-lang-switcher__list {
    justify-content: flex-end;
  }

  .sgm-lang-switcher__item a {
    color: var(--sgm-white);
  }

  .sgm-lang-switcher__item--active a {
    color: var(--sgm-orange);
  }

  .sgm-mobile-nav {
    margin-top: 12px;
  }

  .sgm-menu--mobile {
    display: block;
  }

  .sgm-menu--mobile > li > a {
    color: var(--sgm-white);
    background: var(--sgm-menu-mobile-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .sgm-menu--mobile > li > a:hover,
  .sgm-menu--mobile > li.current-menu-item > a,
  .sgm-menu--mobile > li.current-menu-ancestor > a {
    color: var(--sgm-orange-dark);
    background: var(--sgm-orange-hover);
  }

  .sgm-menu--mobile .sub-menu {
    position: static;
    display: none;
  }

  .sgm-menu--mobile .menu-item-has-children.is-open > .sub-menu {
    display: block;
  }

  .sgm-menu--mobile .sub-menu a {
    padding-left: 28px;
    background: rgba(0, 0, 0, 0.35);
    color: var(--sgm-white);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .sgm-header-titlebar__mantra {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .sgm-header-hero__slogan a {
    font-size: 29px;
  }
}

.sgm-footer {
  font-family: "Mukta", sans-serif;
}

.sgm-footer a {
  text-decoration: none;
}

.sgm-footer-contact {
  background: var(--sgm-cream);
  padding: 40px 20px;
}

.sgm-footer-contact__inner {
  max-width: var(--sgm-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  gap: 24px;
  align-items: center;
}

.sgm-footer-contact__heading {
  margin: 0 0 16px;
  color: var(--sgm-orange);
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 400;
  line-height: 1.2;
}

.sgm-footer-contact__address {
  margin: 0 0 20px;
  font-style: normal;
  color: var(--sgm-text);
  font-size: 16px;
  line-height: 1.8;
}

.sgm-footer-contact__address span {
  display: block;
}

.sgm-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.sgm-footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sgm-orange);
  color: var(--sgm-white);
  transition: background 0.2s ease;
}

.sgm-footer-social__link:hover {
  background: var(--sgm-orange-hover);
  color: var(--sgm-white);
}

.sgm-footer-social__link svg {
  width: 18px;
  height: 18px;
}

.sgm-footer-contact__map iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}

.sgm-footer-nav {
  background: var(--sgm-orange);
  padding: 25px 20px 0;
}

.sgm-footer-nav__wrap {
  max-width: var(--sgm-container);
  margin: 0 auto;
}

.sgm-footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sgm-footer-menu > li > a {
  display: block;
  padding: 15px;
  color: var(--sgm-cream);
  font-size: 16px;
  line-height: 1.4;
}

.sgm-footer-menu > li > a:hover,
.sgm-footer-menu > li.current-menu-item > a {
  color: var(--sgm-white);
}

.sgm-footer-bottom {
  background: var(--sgm-orange);
  padding: 25px 20px 30px;
  color: var(--sgm-white);
}

.sgm-footer-bottom__inner {
  max-width: var(--sgm-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sgm-footer-copyright,
.sgm-footer-credit {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.sgm-footer-credit {
  text-align: right;
}

.sgm-footer-credit a {
  color: var(--sgm-white);
}

.sgm-footer-credit a:hover {
  color: var(--sgm-cream);
}

@media (max-width: 767px) {
  .sgm-footer-contact__inner {
    grid-template-columns: 1fr;
  }

  .sgm-footer-contact__info,
  .sgm-footer-social {
    text-align: center;
    justify-content: center;
  }

  .sgm-footer-bottom__inner {
    flex-direction: column;
    text-align: center;
  }

  .sgm-footer-credit {
    text-align: center;
  }
}
