:root {
  --pri: #FDFBF5;
  --sec: #D4B896;
  --acc: #A8855C;
  --dark: #4A3020;
  --textDark: #1A1008;
  --textMid: #4A3020;
  --textLight: #6B4A35;
  --radius-btn: 16px;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.05);
  --radius-card: 8px;
  --font-h: 'Poppins', serif;
  --font-b: 'Inter', sans-serif;
  --accent-gradient: linear-gradient(90deg, #D4B896, #A8855C, #D4B896);
  --padding-btn: 16px 32px;
  --transition: all 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--font-b);
  color: var(--textDark);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased
}

body.gol-menu-open {
  overflow: hidden;
  touch-action: none
}

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

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

ul,
ol {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

h1 {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark)
}

h2 {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark)
}

h3 {
  font-family: var(--font-h);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--textMid)
}

p {
  color: var(--textMid);
  font-size: 1rem;
  line-height: 1.7
}

.gol-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 80px)
}

.gol-section {
  padding: clamp(60px, 8vw, 120px) 0
}

.gol-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition)
}

.gol-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08)
}

.gol-header__inner,
.gol-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%
}

.gol-header__logo,
.gol-logo {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark)
}

.gol-nav {
  display: flex;
  gap: 32px;
  align-items: center
}

.gol-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--textMid);
  transition: color 0.2s
}

.gol-nav a:hover,
.gol-nav a.active,
.gol-nav__link:hover,
.gol-nav__link--active {
  color: var(--acc)
}

.gol-nav__list {
  display: flex;
  align-items: center;
  gap: 32px
}

.gol-nav__dropdown {
  position: relative
}

.gol-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 12px 0 8px;
  min-width: 200px;
  z-index: 200;
  margin-top: 0;
}

.gol-nav__dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 12px;
}

.gol-nav__dropdown:hover .gol-nav__dropdown-menu,
.gol-nav__dropdown.open .gol-nav__dropdown-menu {
  display: block
}

.gol-nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--textMid);
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 1
}

.gol-nav__dropdown-menu a:hover {
  background: var(--pri);
  color: var(--acc)
}

.gol-header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 44px;
  height: 44px
}

.gol-header__hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  position: relative
}

.gol-header__hamburger::before,
.gol-header__hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition)
}

.gol-header__hamburger::before {
  top: -6px
}

.gol-header__hamburger::after {
  top: 6px
}

.gol-header__menu-toggle[aria-expanded="true"] .gol-header__hamburger,
#menu-toggle[aria-expanded="true"] .gol-header__hamburger,
#menu-toggle[aria-expanded="true"] span {
  background: transparent
}

.gol-header__menu-toggle[aria-expanded="true"] .gol-header__hamburger::before,
#menu-toggle[aria-expanded="true"] .gol-header__hamburger::before,
#menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg)
}

.gol-header__menu-toggle[aria-expanded="true"] .gol-header__hamburger::after,
#menu-toggle[aria-expanded="true"] .gol-header__hamburger::after,
#menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg)
}

.gol-nav-mobile {
  display: none
}

#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px
}

#menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  position: relative
}

#menu-toggle span::before,
#menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition)
}

#menu-toggle span::before {
  top: -6px
}

#menu-toggle span::after {
  top: 6px
}

.gol-dropdown {
  position: relative
}

.gol-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 200px;
  z-index: 200
}

.gol-dropdown:hover .gol-dropdown__menu {
  display: block
}

.gol-dropdown__menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--textMid);
  transition: background 0.2s, color 0.2s
}

.gol-dropdown__menu a:hover {
  background: var(--pri);
  color: var(--acc)
}

.gol-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

.gol-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1
}

.gol-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
  pointer-events: none
}

.gol-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px
}

.gol-hero h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5)
}

.gol-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 16px 0 32px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4)
}

#particles-js {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-btn);
  padding: var(--padding-btn);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-decoration: none
}

.gol-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2)
}

.gol-btn--outline {
  background: transparent;
  color: var(--acc);
  border: 2px solid var(--acc)
}

.gol-btn--outline:hover {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
}

.gol-btn--primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15)
}

.gol-btn--secondary {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15)
}

.gol-btn--secondary:hover {
  background: var(--textDark);
  color: #fff
}

.gol-btn--small {
  padding: 10px 20px;
  font-size: 0.9rem
}

.gol-btn--text {
  background: transparent;
  color: var(--textMid);
  box-shadow: none
}

.gol-btn--text:hover {
  background: transparent;
  color: var(--acc);
  transform: none
}

.gol-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease
}

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

.gol-card__img {
  overflow: hidden;
  aspect-ratio: 16/9
}

.gol-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease
}

.gol-card:hover .gol-card__img img {
  transform: scale(1.05)
}

.gol-card__body {
  padding: 24px
}

.gol-card__title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px
}

.gol-card__text {
  color: var(--textMid);
  font-size: 0.95rem;
  line-height: 1.6
}

.gol-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease
}

.gol-card:hover .gol-card__image {
  transform: scale(1.05)
}

.gol-grid {
  display: grid;
  gap: clamp(16px, 3vw, 32px)
}

.gol-grid-2 {
  grid-template-columns: 1fr
}

.gol-grid-3 {
  grid-template-columns: 1fr
}

.gol-grid-4 {
  grid-template-columns: 1fr
}

.gol-grid--3-col {
  grid-template-columns: 1fr
}

.gol-grid--4-col {
  grid-template-columns: 1fr
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal:nth-child(1) {
  transition-delay: 0.05s
}

.reveal:nth-child(2) {
  transition-delay: 0.1s
}

.reveal:nth-child(3) {
  transition-delay: 0.15s
}

.reveal:nth-child(4) {
  transition-delay: 0.2s
}

.reveal:nth-child(5) {
  transition-delay: 0.25s
}

.reveal:nth-child(6) {
  transition-delay: 0.3s
}

.gol-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center
}

.gol-popup.active {
  display: flex
}

.gol-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease
}

.gol-popup__box {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px);
  max-width: 440px;
  width: 90%;
  text-align: center;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2)
}

.gol-popup__icon {
  font-size: 56px;
  margin-bottom: 16px;
  line-height: 1
}

.gol-popup__title {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px
}

.gol-popup__msg {
  color: var(--textMid);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px
}

.gol-popup__close {
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s
}

.gol-popup__close:hover {
  transform: translateY(-2px)
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px)
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(40px, 30px) scale(1.1)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-30px, 40px)
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(20px, -20px) scale(0.9)
  }
}

@keyframes aurora1 {

  0%,
  100% {
    transform: rotate(-3deg) scale(1)
  }

  50% {
    transform: rotate(3deg) scale(1.05)
  }
}

@keyframes aurora2 {

  0%,
  100% {
    transform: rotate(2deg)
  }

  50% {
    transform: rotate(-2deg) scale(1.08)
  }
}

@keyframes meshMove {

  0%,
  100% {
    filter: hue-rotate(0deg)
  }

  50% {
    filter: hue-rotate(30deg)
  }
}

.gol-section-separator {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: -1px 0
}

.gol-section-separator svg {
  display: block;
  width: 100%;
  height: 60px;
  fill: var(--pri)
}

.gol-section-separator path {
  fill: var(--pri)
}

.gol-featured-attractions + .gol-section-separator svg,
.gol-featured-attractions + .gol-section-separator path {
  fill: var(--dark)
}

.gol-separator {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.gol-separator svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.gol-separator .shape-fill {
  fill: var(--pri);
}

.gol-separator--footer {
  transform: rotate(0deg);
}

.gol-separator--footer .shape-fill {
  fill: var(--dark);
}

.gol-bg--light {
  background: var(--pri)
}

.gol-section__title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 12px;
  text-align: center
}

.gol-section__subtitle {
  color: var(--textMid);
  font-size: clamp(1rem, 2vw, 1.15rem);
  text-align: center;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}

.gol-newsletter-section {
  padding: clamp(48px, 8vw, 80px) 0
}

.gol-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto
}

.gol-newsletter-form .gol-form__input {
  flex: 1;
  min-width: 200px;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-b);
  color: var(--textDark);
  background: #fff
}

.gol-newsletter-form .gol-form__input:focus {
  outline: none;
  border-color: var(--acc)
}

.gol-features-section {
  padding: clamp(60px, 8vw, 120px) 0
}

.gol-feature-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease
}

.gol-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08)
}

.gol-feature-card__icon {
  margin: 0 auto 16px;
  display: block
}

.gol-feature-card__title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px
}

.gol-feature-card__desc {
  color: var(--textMid);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0
}

.gol-featured-attractions {
  padding: clamp(60px, 8vw, 120px) 0
}

.gol-destinations-section {
  padding: clamp(60px, 8vw, 120px) 0
}

.gol-destination-card {
  position: relative;
  display: block;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform 0.3s ease
}

.gol-destination-card:hover {
  transform: translateY(-6px)
}

.gol-destination-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease
}

.gol-destination-card:hover .gol-destination-card__image {
  transform: scale(1.08)
}

.gol-destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  z-index: 1
}

.gol-destination-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: #fff
}

.gol-destination-card__content h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 4px 0 0
}

.gol-testimonials-section {
  padding: clamp(60px, 8vw, 120px) 0
}

.gol-testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease
}

.gol-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08)
}

.gol-testimonial-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block
}

.gol-testimonial-card blockquote {
  font-size: 1rem;
  color: var(--textMid);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic
}

.gol-testimonial-card cite {
  font-size: 0.9rem;
  color: var(--textLight);
  font-style: normal
}

.gol-text-center {
  text-align: center;
  margin-top: 32px
}

.gol-page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--textDark) 100%);
  color: #fff;
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center
}

.gol-page-hero--gradient {
  background: linear-gradient(135deg, var(--acc) 0%, var(--dark) 50%, var(--textDark) 100%)
}

.gol-page-hero__title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px
}

.gol-page-hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0
}

.gol-about-content {
  padding: clamp(48px, 8vw, 80px) 0
}

.gol-grid--gap-large {
  gap: clamp(24px, 4vw, 48px)
}

.gol-about-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card)
}

.gol-about-text h2,
.gol-about-text h3 {
  margin-top: 24px;
  margin-bottom: 12px
}

.gol-about-text h2:first-child {
  margin-top: 0
}

.gol-values-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px
}

.gol-values-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--textMid)
}

.gol-values-list li img {
  flex-shrink: 0;
  width: 32px;
  height: 32px
}

.gol-contact-section {
  padding: clamp(48px, 8vw, 80px) 0
}

.gol-contact-info h2,
.gol-contact-form-wrapper h2 {
  margin-bottom: 16px
}

.gol-contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px
}

.gol-contact-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px
}

.gol-contact-item p {
  margin: 0;
  font-size: 0.95rem
}

.gol-form__label {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--textDark)
}

.gol-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-b);
  color: var(--textDark);
  background: #fff;
  min-height: 140px;
  resize: vertical
}

.gol-form__textarea:focus {
  outline: none;
  border-color: var(--acc);
  box-shadow: 0 0 0 3px rgba(168, 133, 92, 0.2)
}

.gol-reviews-page {
  padding: clamp(48px, 8vw, 80px) 0
}

.gol-overall-rating {
  text-align: center;
  margin-bottom: 40px
}

.gol-rating-stars {
  color: #f59e0b;
  font-size: 2rem;
  letter-spacing: 4px;
  margin-bottom: 8px
}

.gol-rating-summary {
  font-size: 1.1rem;
  color: var(--textMid)
}

.gol-reviews-grid {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  grid-template-columns: 1fr
}

@media (min-width: 768px) {
  .gol-reviews-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (min-width: 1024px) {
  .gol-reviews-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.gol-review-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease
}

.gol-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08)
}

.gol-review-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px
}

.gol-review-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover
}

.gol-review-card__name {
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 4px
}

.gol-review-card__destination {
  font-size: 0.85rem;
  color: var(--textLight);
  margin: 0
}

.gol-review-card__rating {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 12px
}

.gol-review-card__quote {
  color: var(--textMid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  font-style: italic
}

.gol-legal-content {
  padding: clamp(48px, 8vw, 80px) 0
}

.gol-legal-content h2 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px
}

.gol-legal-content h2:first-child {
  margin-top: 0
}

.gol-legal-content p {
  margin-bottom: 16px
}

.gol-hero--country {
  min-height: 70vh
}

.gol-country-intro {
  padding: clamp(32px, 5vw, 48px) 0
}

.gol-country-intro p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8
}

.gol-attractions-section {
  padding: clamp(48px, 8vw, 80px) 0
}

.gol-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--acc);
  margin-bottom: 8px;
  padding: 4px 10px;
  background: rgba(168, 133, 92, 0.12);
  border-radius: 6px
}

.gol-cta-section {
  padding: clamp(48px, 8vw, 80px) 0;
  text-align: center;
  background: var(--dark);
  color: #fff
}

.gol-cta-section h2 {
  color: #fff;
  margin-bottom: 12px
}

.gol-cta-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px
}

.gol-section--alt {
  background: var(--pri)
}

.gol-section--dark {
  background: var(--dark);
  color: #fff
}

.gol-section--dark h2,
.gol-section--dark h3,
.gol-section--dark p {
  color: #fff
}

.gol-section--accent {
  background: var(--accent-gradient);
  color: #fff
}

.gol-form {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.gol-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.gol-form label {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--textDark)
}

.gol-form input,
.gol-form textarea,
.gol-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-b);
  color: var(--textDark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s
}

.gol-form input:focus,
.gol-form textarea:focus,
.gol-form select:focus {
  outline: none;
  border-color: var(--acc);
  box-shadow: 0 0 0 3px rgba(168, 133, 92, 0.2)
}

.gol-form textarea {
  min-height: 140px;
  resize: vertical
}

.gol-footer {
  background: var(--dark);
  color: #fff;
  padding-top: 120px;
  padding-bottom: 24px;
  position: relative;
}

.gol-footer__wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  pointer-events: none
}

.gol-footer__wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  fill: var(--dark)
}

.gol-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 1
}

.gol-footer__col {
  min-width: 0
}

.gol-footer__heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px
}

.gol-footer__links {
  list-style: none;
  padding: 0;
  margin: 0
}

.gol-footer__links li {
  margin-bottom: 10px
}

.gol-footer__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: color 0.2s
}

.gol-footer__links a:hover {
  color: #fff
}

.gol-footer__logo {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px
}

.gol-footer__tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.gol-footer__address {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: normal;
}

.gol-footer__address p {
  color: #fff;
  margin: 0 0 8px;
  font-size: 0.95rem
}

.gol-footer__address a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px
}

.gol-footer__address a:hover {
  color: var(--sec);
}

.gol-footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px
}

.gol-footer ul li {
  margin-bottom: 10px
}

.gol-footer ul li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: color 0.2s
}

.gol-footer ul li a:hover {
  color: #fff
}

.gol-footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem
}

.gol-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 8888;
  transform: translateY(100%);
  transition: transform 0.4s ease
}

.gol-cookie.show {
  transform: translateY(0)
}

.gol-cookie p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  min-width: 200px;
  margin: 0;
}

.gol-cookie__btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0
}

.gol-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 2147483647;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent
}

.gol-cookie-banner p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  min-width: 200px;
  margin: 0;
  pointer-events: none
}

.gol-cookie-banner > div {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  pointer-events: auto
}

.gol-cookie-banner .gol-btn {
  pointer-events: auto;
  cursor: pointer
}

.gol-cookie-banner--hidden {
  display: none !important
}

.gol-accordion__item {
  border: 1.5px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px
}

.gol-accordion__btn {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s
}

.gol-accordion__btn:hover {
  background: var(--pri)
}

.gol-accordion__btn::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--acc);
  transition: transform 0.3s
}

.gol-accordion__btn.open::after {
  transform: rotate(45deg)
}

.gol-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease
}

.gol-accordion__content.open {
  max-height: 500px
}

.gol-accordion__text {
  padding: 0 24px 20px;
  color: var(--textMid);
  line-height: 1.7
}

.gol-review {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px;
  position: relative
}

.gol-review__quote {
  font-size: 1rem;
  color: var(--textMid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic
}

.gol-review__author {
  display: flex;
  align-items: center;
  gap: 16px
}

.gol-review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover
}

.gol-review__name {
  font-weight: 600;
  color: var(--dark)
}

.gol-review__sub {
  font-size: 0.85rem;
  color: var(--textLight)
}

.gol-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px
}

@media(min-width:768px) {
  .gol-grid-2,
  .gol-grid--2-col,
  .gol-grid--3-col {
    grid-template-columns: repeat(2, 1fr)
  }

  .gol-grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .gol-grid-4,
  .gol-grid--4-col {
    grid-template-columns: repeat(2, 1fr)
  }

  .gol-footer__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gol-nav-mobile {
    display: none
  }
}

@media(min-width:1024px) {
  .gol-grid-3,
  .gol-grid--3-col {
    grid-template-columns: repeat(3, 1fr)
  }

  .gol-grid-4,
  .gol-grid--4-col {
    grid-template-columns: repeat(4, 1fr)
  }

  .gol-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr
  }

  .gol-nav {
    display: flex
  }

  #menu-toggle,
  .gol-header__menu-toggle {
    display: none
  }
}

@media(max-width:767px) {
  .gol-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 80px 24px 40px
  }

  .gol-nav.open {
    display: flex;
    animation: fadeIn 0.3s ease
  }

  .gol-nav .gol-nav__list {
    flex-direction: column;
    gap: 24px
  }

  .gol-nav .gol-nav__dropdown-menu {
    position: static;
    margin-top: 8px;
    box-shadow: none;
    padding-left: 16px;
    display: none
  }

  .gol-nav .gol-nav__dropdown.open .gol-nav__dropdown-menu {
    display: block
  }

  #menu-toggle,
  .gol-header__menu-toggle {
    display: flex;
    z-index: 222;
  }

  .gol-nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 40px
  }

  .gol-nav-mobile.open {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .gol-nav-mobile a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark)
  }

  .gol-hero h1 {
    font-size: clamp(1.8rem, 7vw, 3rem)
  }

  .gol-card__body {
    padding: 16px
  }

  .gol-footer__grid {
    grid-template-columns: 1fr
  }
}
