:root {
  --gg-bg: #f5f6fb;
  --gg-bg-soft: #ffffff;
  --gg-primary: #ff6b35;
  --gg-primary-soft: rgba(255, 107, 53, 0.1);
  --gg-accent: #1b4b82;
  --gg-text-main: #1f2933;
  --gg-text-muted: #6b7280;
  --gg-border-soft: #e5e7eb;
  --gg-radius-lg: 18px;
  --gg-radius-xl: 24px;
  --gg-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
  text-underline-offset: none;
  text-underline-position: none;

}

body {
  margin: 0;
  font-family: "Golos Text", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--gg-bg);
  color: var(--gg-text-main);
  font-weight: 400 !important; 
  line-height: 1.65 !important;
}

a {
  text-decoration: none;
}


/* ====== HEADER ====== */

.gg-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


.gg-header .navbar {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Логотип */
.gg-header .navbar-brand span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gg-primary-soft);
  color: var(--gg-primary);
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
}

.gg-header .navbar-brand strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gg-accent);
}

/* Навигация */
.gg-nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #4b5563 !important;
  margin: 0 10px;
  padding-top: 4px;
  padding-bottom: 4px;
  position: relative;
}






.gg-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gg-primary);
  transition: width 0.18s ease;
}

.gg-nav-link:hover {
  color: var(--gg-accent) !important;
}

.gg-nav-link:hover::after {
  width: 100%;
}

/* Телефон */
.gg-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--gg-accent);
  white-space: nowrap;
}

/* Разные варианты header-а (если нужно тонко настраивать потом) */
.gg-header-main .navbar-brand strong {
  color: var(--gg-accent);
}

.gg-header-city .navbar-brand strong {
  color: var(--gg-primary);
}


/* ===== MOBILE NAV FIX ===== */
@media (max-width: 991px) {

  .navbar-collapse .gg-btn-primary {
    position: relative;
    bottom: auto;
    left: auto;

    margin-top: 32px;
    margin-bottom: 0;

    align-self: center;
  }
}

.gg-btn-primary {
  position: relative;
  z-index: auto;
}


.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.gg-burger {
  border: none;
  background: transparent;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gg-burger span {
  width: 28px;
  height: 3px;
  background: linear-gradient(135deg, #d56c21, #ff9f43);
  border-radius: 3px;
  transition: all .3s ease;
}

/* hover */
.gg-burger:hover span {
  box-shadow: 0 0 10px rgba(255, 122, 24, .6);
}


/* ====== HERO CAROUSEL ====== */

.gg-hero-carousel {
  position: relative;
}

.carousel-item {
  height: 100%;
}



/* сам слайд */
.gg-hero-slide {
  height: 70vh;     
  min-height: 60vh;
  max-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.gg-hero-slide .container {
  height: 100%;
  display: flex;
  align-items: center;
}

/* затемнение поверх фото */
.gg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      120deg,
      rgba(15, 23, 42, 0.78) 0%,
      rgba(15, 23, 42, 0.55) 40%,
      rgba(15, 23, 42, 0.18) 100%
    );
  z-index: 0;
}

/* контент поверх */
.gg-hero-slide .container {
  position: relative;
  z-index: 1;
}

.gg-hero-content {
  max-width: 600px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .gg-hero-content {
    padding: 40px 0;
  }
}

/* заголовок и текст */
.gg-hero-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: #f9fafb;
  margin-bottom: 10px;
}

.gg-hero-text {
  font-size: 14px;
  line-height: 1.7;
  color: #e5e7eb;
  max-width: 520px;
  margin-bottom: 18px;
}

/* подсветка */
.gg-hero-highlight {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 12px;
  font-weight: 500;
  color: #cbd5ff;
  margin-bottom: 14px;
  gap: 6px;
}

.gg-hero-highlight .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

/* кнопки */
.gg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}





.gg-btn-ghost {
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.5);
  color: #e5e7eb !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.gg-btn-ghost:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: #e5e7eb;
  transform: translateY(-1px);
}

/* статы и бейджи в светлой теме */
.gg-hero-stats span {
  color: #e5e7eb;
}

.gg-hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gg-hero-badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.gg-hero-badge i {
  font-size: 14px;
  color: #ffb27b;
}

/* индикаторы (точки) карусели */
.gg-hero-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  gap: 6px;
}

.gg-hero-indicators button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(248, 250, 252, 0.4);
}

.gg-hero-indicators button.active {
  background: #ff6b35;
}

/* стрелки карусели */
.gg-hero-control {
  width: 48px;
}

.gg-hero-control .carousel-control-prev-icon,
.gg-hero-control .carousel-control-next-icon {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.7));
}

/* адаптив */
@media (max-width: 767.98px) {
  .gg-hero-slide {
    height: 75vh;
    min-height: 55vh;
    max-height: 85vh;
  }
  .gg-hero-content {
    padding: 26px 0 40px;
    padding-bottom: 70px !important;
  }

  .carousel-control-prev {
    left: 10px !important;
  }

  .carousel-control-next {
    right: 10px !important;
  }


  .gg-hero-control {
    top: unset !important;
    bottom: 20px !important;
    transform: none !important;
  }

  .gg-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .gg-hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}


.gg-search-box {
  background: #ffffff;
  border-radius: var(--gg-radius-xl);
  padding: 20px 18px 18px;
  box-shadow: var(--gg-shadow-soft);
  max-width: 900px;
  margin: 0 auto;
}

.gg-search-box .form-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.gg-search-box .form-control,
.gg-search-box .form-select {
  font-size: 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 8px 12px;
}

.gg-search-box .form-control:focus,
.gg-search-box .form-select:focus {
  border-color: var(--gg-primary-soft);
  box-shadow: 0 0 0 1px var(--gg-primary-soft);
}


/* ====== SECTION GENERICS ====== */

.gg-section {
  padding: 56px 0;
}

.gg-section-light {
  background: #ffffff;
}

.gg-section-soft {
  background: var(--gg-bg);
}

.gg-section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--gg-accent);
  margin-bottom: 15px;
  text-align: center;
}

.gg-section-subtitle {
  font-size: 14px;
  color: var(--gg-text-muted);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ====== POPULAR CITIES ====== */

.gg-cities-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(260px, 1fr));
  gap: 18px;
}

@media (min-width: 576px) {
  .gg-cities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .gg-cities-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gg-city-card {
  background: #ffffff;
  border-radius: var(--gg-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.gg-city-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.gg-city-body {
  padding: 12px 14px 14px;
}

.gg-city-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.gg-city-meta {
  font-size: 12px;
  color: var(--gg-text-muted);
}

.gg-badge-city {
  display: inline-block;
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--gg-primary-soft);
  color: var(--gg-primary);
  margin-bottom: 4px;
}

/* ====== ROUTES ====== */

.gg-route-card {
  background: #ffffff;
  border-radius: var(--gg-radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gg-route-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.gg-route-body {
  padding: 14px 16px 16px;
}

.gg-route-body h5 {
  font-size: 18px;
  margin-bottom: 6px;
}

.gg-route-body p {
  font-size: 13px;
  color: var(--gg-text-muted);
  margin-bottom: 0;
}

/* ====== EVENTS ====== */

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

@media (min-width: 768px) {
  .gg-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .gg-events-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gg-event-card {
  background: #ffffff;
  border-radius: var(--gg-radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gg-event-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.gg-event-body {
  padding: 12px 14px 16px;
}

.gg-event-date {
  font-size: 12px;
  color: var(--gg-text-muted);
  margin-bottom: 4px;
}

.gg-event-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.gg-event-text {
  font-size: 13px;
  color: var(--gg-text-muted);
  margin-bottom: 10px;
}

/* ====== BENEFITS ====== */

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

@media (min-width: 768px) {
  .gg-benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gg-benefit-card {
  background: #ffffff;
  border-radius: var(--gg-radius-lg);
  padding: 16px 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  height: 100%;
}

.gg-benefit-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gg-primary-soft);
  color: var(--gg-primary);
  margin-bottom: 10px;
  font-size: 18px;
}

.gg-benefit-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.gg-benefit-text {
  font-size: 13px;
  color: var(--gg-text-muted);
  margin-bottom: 0;
}

/* ====== TESTIMONIALS ====== */

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

@media (min-width: 768px) {
  .gg-testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gg-testimonial-card {
  background: #ffffff;
  border-radius: var(--gg-radius-lg);
  padding: 16px 14px 14px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gg-stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 8px;
}

.gg-testimonial-text {
  font-size: 13px;
  color: var(--gg-text-muted);
  margin-bottom: 10px;
}

.gg-testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gg-text-main);
}

/* ====== FAQ CLICK ACCORDION ====== */

.gg-faq-section {
  padding: 60px 0;
}

.gg-faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
}

.gg-faq-item {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gg-faq-item.active {
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

/* Вопрос */
.gg-faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 600;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: #1f2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Плюс/минус */
.gg-faq-q::after {
  content: "+";
  font-size: 22px;
  color: #ff6b35;
  transition: transform 0.3s ease;
}

.gg-faq-item.active .gg-faq-q::after {
  content: "−";
  transform: rotate(180deg);
}

/* Ответ (изначально скрыт) */
.gg-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

/* Когда открыт */
.gg-faq-item.active .gg-faq-a {
  padding: 12px 22px 20px;
  max-height: 300px; /* фиксированной достаточно */
}

/* ====== ABOUT ====== */

.gg-about {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--gg-text-muted);
  line-height: 1.8;
}

.gg-about strong {
  color: var(--gg-accent);
}




/* ====== GALLERY ====== */

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

@media (min-width: 768px) {
  .gg-gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* ===== FILMSTRIP MOTION GALLERY ===== */

.filmstrip-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 220px;
  margin-top: 40px;
}

.filmstrip {
  display: flex;
  width: max-content;
  animation: filmMove 22s linear infinite;
}

.film-row {
  display: flex;
  gap: 22px;
  padding: 0 10px;
}

.film-row img {
  width: 240px;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;

  box-shadow: 0 14px 35px rgba(0,0,0,0.28);
  transform: rotate(calc(var(--rot) * 1deg));

  filter: brightness(0.92) contrast(1.08);
  transition: transform .4s ease, filter .4s ease, box-shadow .4s ease;
}

/* Разный угол для живости */
.film-row img:nth-child(1) { --rot: -3; }
.film-row img:nth-child(2) { --rot: 2; }
.film-row img:nth-child(3) { --rot: -1; }
.film-row img:nth-child(4) { --rot: 3; }

/* Hover: как zoom-in cinema frame */
.film-row img:hover {
  transform: scale(1.08) rotate(0deg);
  filter: brightness(1.05) contrast(1.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.38);
}

/* Бесконечное движение слева направо */
@keyframes filmMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .filmstrip-wrapper { height: 180px; }

  .film-row img {
    width: 180px;
    height: 120px;
  }
}


/* Masonry Flow Gallery */
.gg-masonry-flow {
  column-count: 2;
  column-gap: 16px;
  animation: floatWalls 12s ease-in-out infinite;
}

@media (max-width: 992px) {
  .gg-masonry-flow {
    column-count: 2;
  }
}


.gg-masonry-flow .m-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.gg-masonry-flow .m-item img {
  width: 100%;
  height: auto; 
  display: block;
  border-radius: 22px;
}

.m-item {
  margin-bottom: 16px;
  display: inline-block;
  width: 100%;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  break-inside: avoid;
  animation: drift 6s ease-in-out infinite alternate;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  transform-origin: center;
}

/* разные высоты карточек */
.m-item.h1 img { height: 180px; }
.m-item.h2 img { height: 240px; }
.m-item.h3 img { height: 310px; }

.m-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
}

/* hover эффект — глубина */
.m-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.12) contrast(1.1);
}

.m-item:hover {
  box-shadow: 0 22px 50px rgba(0,0,0,0.28);
  transform: translateY(-6px);
}


#about-city .gg-about {
  margin-top: 6px;
}

#about-city .gg-masonry-flow {
  margin-top: 0;
}

/* --- MOBILE: masonry gallery goes ABOVE text --- */
@media (max-width: 768px) {
  #about-city .row {
    display: flex;
    flex-direction: column;
  }

  #about-city .col-md-6:nth-child(2) {
    order: -1;   /* Галерея наверх */
  }

  #about-city .col-md-6:nth-child(1) {
    order: 2;    /* Текст вниз */
  }

  /* Чтобы галерея не растягивалась */
  .gg-masonry-flow {
    margin-bottom: 20px;
  }
}




.city-letter p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: #2f3b4a;
}

.city-letter strong {
  color: #0d3b78;
}




/* ===== ПЕРСОНАЛЬНЫЙ ГИД ===== */

.gg-guide-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  background: #ffffff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.07);
}

.gg-guide-photo img {
  width: 260px;
  height: 260px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.15);
}

.gg-guide-info {
  flex: 1;
  min-width: 260px;
}

.gg-guide-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--gg-accent);
  margin-bottom: 4px;
}

.gg-guide-role {
  font-size: 15px;
  color: var(--gg-text-muted);
  margin-bottom: 14px;
}

.gg-guide-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
}

.gg-guide-stats .stat {
  background: var(--gg-primary-soft);
  color: var(--gg-primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.gg-guide-desc {
  font-size: 15px;
  color: var(--gg-text-main);
  line-height: 1.6;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .gg-guide-photo img {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }
}


/* ===== ABOUT GUIDE ===== */
.gg-about-guide {
  padding: 80px 0;
}

.gg-label {
  display: inline-block;
  background: rgba(255,122,0,0.1);
  color: var(--gg-primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
}

.gg-guide-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.gg-guide-badge {
  display: inline-block;
  background: #ff7a00;
  color: #fff;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 20px;
}

.gg-guide-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.gg-guide-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 16px;
}


.gg-guide-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gg-primary);
  font-weight: 700;
}


.gg-guide-text {
  font-size: 16px;
  color: var(--gg-text-muted);
  max-width: 520px;
}

/* ===== PHOTO EFFECT ===== */
.gg-guide-photo-wrap {
  position: relative;
  display: inline-block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.gg-guide-photo-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;

  /* 🎨 МЯГКАЯ ОБРАБОТКА ФОТО */
  filter:
    brightness(1.05)
    contrast(1.05)
    saturate(1.1)
    sepia(0.05);
}

/* лёгкий светлый градиент */
.gg-guide-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0)
  );
}



/* ====== METRICS ====== */

.gg-metrics-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 768px) {
  .gg-metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gg-metric-card {
  background: #ffffff;
  border-radius: var(--gg-radius-lg);
  padding: 16px 14px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.gg-metric-value {
  font-size: 30px;
  font-weight: 700;
  color: var(--gg-accent);
  margin-bottom: 4px;
}

.gg-metric-label {
  font-size: 13px;
  color: var(--gg-text-muted);
}

/* ====== CTA ====== */

.gg-cta {
  background: linear-gradient(135deg, #ff6b35, #ff9b4a);
  border-radius: var(--gg-radius-xl);
  padding: 26px 20px;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.5);
}

.gg-cta-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.gg-cta-text {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 14px;
}

/* ====== CONTACTS / FOOTER ====== */

.gg-contact-box {
  background: #ffffff;
  border-radius: var(--gg-radius-xl);
  padding: 20px 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  height: 100%;
}

.gg-contact-box p {
  font-size: 14px;
  color: var(--gg-text-muted);
  margin-bottom: 6px;
}

.gg-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.gg-social-row a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--gg-primary-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gg-primary);
  font-size: 18px;
}


/* ====== ХОВЕР-ЭФФЕКТЫ ДЛЯ КАРТОЧЕК ====== */

.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

/* ====== АНИМАЦИИ ====== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

/* простые задержки */

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}


/* ====== MAP TITLE ====== */
.gg-map-title {
  text-align: center;
  margin: 60px auto 20px;
  padding: 0 20px;
}

.gg-map-title h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.gg-map-title p {
  font-size: 16px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}


/* ====== FULLWIDTH MAP ====== */

.gg-map-fullwidth {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);

  padding: 0;
  margin-top: 40px;
}

.gg-map-fullwidth iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

@media (max-width: 768px) {
  .gg-map-fullwidth iframe {
    height: 360px;
  }
}

/* -------- NEW PREMIUM METRICS VIEW -------- */

.gg-title-glass {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: var(--gg-accent);
  margin-bottom: 10px;
}

.gg-subtitle-glass {
  font-size: 17px;
  text-align: center;
  color: #64748b;
  max-width: 640px;
  margin: 0 auto 30px;
}

/* Glass Grid */
.metrics-glass-grid {
  display: grid;
  gap: 20px;
}

.metric-glass-card {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  padding: 22px 26px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.metric-number {
  font-size: 34px;
  font-weight: 700;
  color: var(--gg-accent);
  margin-bottom: 4px;
}

.metric-text {
  font-size: 15px;
  color: #475569;
}

/* CTA + photo */
.guide-cta-glass {
  display: flex;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.65);
  padding: 24px;
  border-radius: 26px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.guide-photo {
  width: 130px;
  height: 130px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.guide-cta-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.guide-cta-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}

/* mobile fix */
@media (max-width: 767px) {
  .guide-cta-glass {
    flex-direction: column;
    text-align: center;
  }
  
  .guide-photo {
    margin-bottom: 12px;
  }
}


.gg-routes-grid {
  display: grid;
  gap: 20px;
}

/* 1 тур → 1 колонка */
.gg-routes-grid:has(> :nth-child(1)):not(:has(> :nth-child(2))) {
  grid-template-columns: 1fr;
}

/* 2 тура → 2 колонки */
.gg-routes-grid:has(> :nth-child(2)):not(:has(> :nth-child(3))) {
  grid-template-columns: repeat(2, 1fr);
}

/* 3 тура → 3 колонки */
.gg-routes-grid:has(> :nth-child(3)):not(:has(> :nth-child(4))) {
  grid-template-columns: repeat(3, 1fr);
}

/* 4 и больше туров → каждые 3 в новой строке */
.gg-routes-grid:has(> :nth-child(4)) {
  grid-template-columns: repeat(3, 1fr);
}

/* Адаптация под мобильные */
@media (max-width: 768px) {
  .gg-routes-grid {
    grid-template-columns: 1fr;
  }
}


.social-links a {
  font-size: 28px;
  color: #ff7a00;
  margin-right: 12px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #0096ff;
}





/* ===== CTA BUTTON ===== */
.review-cta{
  width:100%;
  text-align:center;
  margin-top:28px;
}

.btn-primary{
  background:linear-gradient(135deg,#f1a359,#ff7a00);
  color:#fff;
  border:none;
  border-radius:14px;
  padding:14px 32px;
  font-size:16px;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(26,115,232,.25);
  transition:.25s;
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(26,115,232,.35);
}
.btn-primary.full{width:100%}





/* ===== FORCE PRIMARY BUTTON FIX ===== */
.gg-btn-primary {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: var(--gg-primary);
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.gg-btn-primary:hover {
  background: #ff5a1e;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(255, 107, 53, 0.45);
}
.gg-btn-primary:active{
  transform: translateY(1px);
}

.gg-btn-primary:disabled{
  opacity: .6;
  cursor: not-allowed;
}







/* FIX: gg-btn-primary + btn conflict */
/* центрирование кнопки */
.review-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* специальная кнопка отзыва */
.gg-btn-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;

  border-radius: 18px;
  border: none;
  cursor: pointer;

  color: #7c2d12;
  background: linear-gradient(135deg, #fff7ed, #fed7aa);

  box-shadow:
    0 12px 32px rgba(251, 146, 60, 0.35),
    inset 0 0 0 1px rgba(251, 146, 60, 0.4);

  transition: all .25s ease;
}

.gg-btn-review:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffedd5, #fdba74);
}

.review-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.review-overlay.hidden {
  display: none;
}

.review-modal {
  background: #fff;
  width: 100%;
  max-width: 520px;
  margin: 0 16px;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  position: relative;
}

.review-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: #f3f4f6;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.rf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 640px) {
  .rf-row {
    grid-template-columns: 1fr;
  }
}


.hidden { display: none; }

#reviewOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9999;
}


.tour-description {
  white-space: pre-line;
}


.city-photo {
  transition: transform .3s ease, box-shadow .3s ease;
}

.city-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}


.excursion-title {
  font-weight: 700;
  color: #1b2a3a;
  line-height: 1.35;
  text-decoration: none;
}


/* GRID для результатов поиска */
#searchResults {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
  
}


.gg-card {
  width: 270px;
  height: 285px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}

.gg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}


.gg-card-body {
  padding: 16px 18px 20px;
}

.gg-card-body h3 {
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 8px;
  font-weight: 700;
}

.gg-card-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.gg-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}


/* ===== EVENTS ===== */

.gg-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* карточка */
.gg-event-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

/* убираем подчёркивание */
.gg-event-card:hover,
.gg-event-card:focus {
  text-decoration: none;
  color: #fff;
}

/* фото */
.gg-event-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* zoom как у туров */
.gg-event-card:hover img {
  transform: scale(1.06);
}

/* затемнение */
.gg-event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.25),
    transparent
  );
}

/* контент */
.gg-event-body {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.gg-event-date {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 4px;
}

.gg-event-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.gg-event-text {
  font-size: 14px;
  opacity: 0.9;
}


.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card-image {
  position: relative;
  height: 180px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2563eb;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.card-body {
  padding: 14px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
}


.gg-event-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  z-index: 2;
  color: #fff;
}

.gg-event-date {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 4px;
}

.gg-event-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
}

.gg-event-text {
  font-size: 14px;
  opacity: 0.9;
}
/* ===== HERO ACTION BUTTONS ===== */
.gg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.gg-btn-primary,
.gg-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.gg-btn-primary span,
.gg-btn-ghost span {
  display: inline-block;
}

/* ===== HERO BADGES ===== */
.gg-hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}

/* ===== HERO HIGHLIGHT ===== */
.gg-hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(255,255,255,0.14);
  margin-bottom: 16px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff7a2f;
}


/* HERO OVERLAY */
.gg-hero-slide {
  position: relative;
}

.gg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}

/* HERO CONTENT */
.gg-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

/* HERO BADGE / CARD */
.gg-hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 6px 14px;
  margin-bottom: 18px;

  background: rgba(20, 30, 45, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;

  border: 1px solid rgba(255,255,255,0.2);
}

/* GREEN DOT */
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
}


/* ===== HERO CAROUSEL FIX ===== */

.gg-hero-carousel {
  position: relative;
  z-index: 1;
}

/* overlay НЕ перекрывает кнопки */
.gg-hero-overlay {
  z-index: 1;
}

/* контент */
.gg-hero-content {
  position: relative;
  z-index: 2;
}

/* стрелки */
.gg-hero-control.carousel-control-prev,
.gg-hero-control.carousel-control-next {
  z-index: 5;
  width: 56px;
}

/* иконки стрелок */
.gg-hero-control .carousel-control-prev-icon,
.gg-hero-control .carousel-control-next-icon {
  filter: invert(1);
  width: 32px;
  height: 32px;
}

/* индикаторы (точки) */
.gg-hero-indicators {
  z-index: 5;
  bottom: 24px;
}

.gg-hero-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
}

.gg-hero-indicators .active {
  background-color: #fff;
}


/* ===== BUTTON FIX (Bootstrap 5 override) ===== */

.gg-btn-primary {
  background: #ff7a00;
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: all .3s ease;
}

.gg-btn-primary:hover {
  background: #e86d00;
  color: #fff;
}

.gg-btn-ghost {
  background: transparent;
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.7);
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.gg-btn-ghost:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}



/* ================= HERO BUTTONS — FINAL FIX ================= */

/* общий сброс влияния bootstrap */
.gg-hero-actions .btn {
  box-shadow: none;
  outline: none;
}

/* ===== PRIMARY (оранжевая, активная) ===== */
.gg-hero-actions .gg-btn-primary {
  background: linear-gradient(135deg, #ff7a00, #ff9a3c) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 32px !important;
  font-weight: 700 !important;
  font-size: 15px;
  box-shadow: 0 12px 28px rgba(255,122,0,.35) !important;
  transition: all .25s ease;
}

.gg-hero-actions .gg-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(255,122,0,.45) !important;
  background: linear-gradient(135deg, #ff6a00, #ff8a2c) !important;
}

.gg-hero-actions .gg-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(255,122,0,.35) !important;
}

/* ===== SECONDARY (тёмная стеклянная) ===== */
.gg-hero-actions .gg-btn-ghost {
  background: rgba(20, 30, 45, 0.55) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.35) !important;
  border-radius: 999px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  backdrop-filter: blur(6px);
  transition: all .25s ease;
}

.gg-hero-actions .gg-btn-ghost:hover {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.6) !important;
  transform: translateY(-1px);
}

.gg-hero-actions .gg-btn-ghost:active {
  transform: translateY(0);
}

/* ===== spacing ===== */
.gg-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


.gg-search-box {
  position: relative;
  z-index: 1;
}

input[type="date"] {
  position: relative;
  z-index: 2;
}


/* ================= FAQ ================= */

/* ===== FAQ (stable version) ===== */

.gg-faq-section {
  padding: 80px 0;
}

.gg-faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.gg-faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  overflow: hidden;
}

/* QUESTION */
.gg-faq-q {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

/* ICON */
.gg-faq-q::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #ff7a00;
}

/* ANSWER */
.gg-faq-a {
  display: none;
  padding: 0 26px 22px;
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
}

/* ACTIVE */
.gg-faq-item.active .gg-faq-a {
  display: block;
}

.gg-faq-item.active .gg-faq-q::after {
  content: "–";
}


.gg-footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 24px 0;
  margin-top: 80px;
}

.gg-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.gg-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;            /* ← ВАЖНО */
  justify-content: center;
  align-items: center;
}

.gg-footer-nav a {
  font-size: 14px;
  color: #e8921a;       /* синий как на скрине */
  text-decoration: none;
  white-space: nowrap;
}

.gg-footer-nav a:hover {
  text-decoration: underline;
}


.gg-footer-copy {
  font-size: 13px;
  color: #8a8a8a;
}


/* ===== NAV MENU FIX ===== */
.gg-nav a,
.gg-nav-link,
.nav-link {
  white-space: nowrap;
}

.gg-nav li {
  flex-shrink: 0;
}


.gg-header,
.gg-navbar,
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}


.lang-switch {
  display: flex;
  gap: 6px;
}

.lang-btn {
  border: 1px solid #ddd;
  background: #fff;
  padding: 4px 8px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 6px;
}

.lang-btn.active {
  background: #ff7a00;
  color: #fff;
  border-color: #ff7a00;
}


.gg-header, .gg-header * { pointer-events: auto; }
.gg-header { position: sticky; top: 0; z-index: 99999; }

.lang-switch { position: relative; z-index: 100000; }
.lang-btn { position: relative; z-index: 100001; pointer-events: auto; }


.tour-description {
  white-space: pre-wrap;
}

textarea {
  white-space: pre-wrap;
}