* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #4a4a4a;
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f5f4f1 0%, #faf9f7 50%, #f0f9f7 100%);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  opacity: 0.9;
}

.social-icon--wa {
  background: #25d366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.social-icon--ig {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  box-shadow: 0 4px 14px rgba(214, 36, 159, 0.35);
}

.photo-gallery-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #fef7f0 0%, #fff5eb 100%);
  position: relative;
  overflow: hidden;
}

.photo-gallery-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 179, 102, 0.2), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.gallery-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.gallery-title h2 {
  font-size: 48px;
  color: #c86b4a;
  margin-bottom: 20px;
  font-weight: 700;
  animation: fadeInUp 0.8s ease-out;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.8s ease-out;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}
.gallery-item:nth-child(4) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(5) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(6) {
  animation-delay: 0.3s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 107, 74, 0.7),
    rgba(169, 130, 95, 0.5)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-label {
  color: white;
  font-size: 16px;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-label {
  transform: translateY(0);
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease-out;
}

.hero-logo {
  width: 400px;
  height: auto;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
  animation: scaleIn 0.6s ease-out 0.2s both;
}

.hero-logo:hover {
  transform: scale(1.05) translateY(-5px);
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-logo.float {
  animation: float 3s ease-in-out infinite;
}

@keyframes spinIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

.hero-logo.spin {
  animation: spinIn 0.8s ease-out !important;
}

.story-intro {
  padding: 80px 60px;
  background: white;
  text-align: center;
  position: relative;
}

.story-intro h2 {
  font-size: 48px;
  color: #2d5a4a;
  margin-bottom: 30px;
  font-weight: 700;
  animation: fadeInUp 0.8s ease-out;
}

.story-intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-intro p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.story-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 80px 60px;
  background: linear-gradient(135deg, #faf9f7 0%, #f0f9f7 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #56b4a0, #d4af37);
}

.story-section h2 {
  text-align: center;
  font-size: 56px;
  color: #2d5a4a;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: 2px;
}

.story-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d4af37;
  margin: 20px auto 0;
}

.story-paragraph {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
  text-align: justify;
  padding: 25px;
  border-left: 4px solid #d4af37;
  background: white;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.story-paragraph:hover {
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
  transform: translateX(10px);
}

.story-paragraph:first-of-type::first-letter {
  font-size: 36px;
  font-weight: 700;
  color: #d4af37;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .story-section {
    padding: 50px 30px;
    margin: 40px 20px;
  }

  .story-section h2 {
    font-size: 36px;
  }

  .story-paragraph {
    font-size: 16px;
    text-align: left;
  }
}

.story-philosophy {
  padding: 100px 60px;
  background: linear-gradient(135deg, #fef7f0 0%, #fff5eb 100%);

  position: relative;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.philosophy-item {
  padding: 40px;
  background: linear-gradient(135deg, #f0f9f7, #faf9f7);
  border-radius: 15px;
  border-left: 4px solid #d4af37;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.philosophy-item:nth-child(2) {
  animation-delay: 0.1s;
  border-left-color: #56b4a0;
}

.philosophy-item:nth-child(3) {
  animation-delay: 0.2s;
  border-left-color: #2d5a4a;
}

.philosophy-item h3 {
  font-size: 20px;
  color: #2d5a4a;
  margin-bottom: 15px;
  font-weight: 700;
}

.philosophy-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.philosophy-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(45, 90, 74, 0.12);
}

.philosophy-features {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2d5a4a, #1a3a2e);
  color: white;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
}

.philosophy-features h3 {
  color: #d4af37;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 700;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .story-intro,
  .story-timeline,
  .story-philosophy {
    padding: 60px 30px;
  }

  .story-intro h2,
  .story-timeline h2 {
    font-size: 32px;
  }

  .timeline-container::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    width: 100%;
    margin-left: 0;
    text-align: left;
    padding-left: 60px;
    padding-right: 0;
  }

  .timeline-item:nth-child(even) {
    margin-left: 0;
    padding-left: 60px;
  }

  .timeline-content {
    border-left: 4px solid #56b4a0;
    border-right: none;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-features {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .features-list {
    grid-template-columns: 1fr;
  }

  .timeline-marker {
    font-size: 18px;
  }

  .timeline-content {
    padding: 20px;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(45, 90, 74, 0.12);
  animation: slideDown 0.6s ease-out;
  backdrop-filter: blur(10px);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #d4af37 0%, #56b4a0 50%, #c86b4a 100%) 1;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-left {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 180px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.logo-img:hover {
  transform: scale(1.08) rotate(-2deg);
}

nav {
  display: flex;
  gap: 45px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #a67c00;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #56b4a0, #d4af37);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

nav a:hover {
  color: #56b4a0;
  transform: translateY(-2px);
}

nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.language-selector {
  position: relative;
}

.lang-btn {
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(45, 90, 74, 0.2);
}

.lang-btn:hover {
  box-shadow: 0 8px 25px rgba(45, 90, 74, 0.4);
  transform: translateY(-3px);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e8e6e2;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 130px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 8px;
  backdrop-filter: blur(10px);
}

.language-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
  transition: all 0.2s ease;
  color: #4a4a4a;
}

.lang-option:hover {
  background: linear-gradient(
    135deg,
    rgba(45, 90, 74, 0.1),
    rgba(86, 180, 160, 0.1)
  );
  color: #2d5a4a;
  padding-left: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 50%;
  text-decoration: none;
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  box-shadow: 0 4px 15px rgba(45, 90, 74, 0.2);
}

.contact-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(45, 90, 74, 0.3);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 0;
}

.phone-icon {
  animation: ring 1s infinite;
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-icon:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.hero-full {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  min-height: 85vh;
  background: linear-gradient(135deg, #2d5a4a 0%, #1a3a2e 50%, #0d2622 100%);
  align-items: stretch;
  margin-top: 70px;
  animation: fadeIn 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  30% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  70% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-full::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(86, 180, 160, 0.2), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-full::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

.hero-text {
  padding: 70px 60px;
  background: linear-gradient(
    135deg,
    rgba(45, 90, 74, 0.9),
    rgba(26, 58, 46, 0.9)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.tagline {
  font-size: 40px;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 25px;
  text-transform: uppercase;
  margin-left: 110px;
  animation: slideInLeft 0.8s ease-out 0.2s both;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.main-title {
  font-size: 80px;
  font-weight: 800;
  color: white;
  margin-bottom: 35px;
  line-height: 1.15;
  letter-spacing: 1px;
  animation: slideInLeft 0.8s ease-out 0.3s both;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: white;
  margin-bottom: 50px;
  max-width: 500px;
  line-height: 1.85;
  font-weight: 300;
  text-align: center;
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.btn-explore {
  background: linear-gradient(135deg, #56b4a0, #2d5a4a);
  border: 2px solid #d4af37;
  color: white;
  padding: 15px 50px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 600;
  width: fit-content;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-left: 150px;
  position: relative;
  overflow: hidden;
  animation: slideInLeft 0.8s ease-out 0.5s both;
  box-shadow: 0 10px 30px rgba(86, 180, 160, 0.3);
}

.btn-explore::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.2);
  transition: left 0.5s ease;
}

.btn-explore:hover {
  background: linear-gradient(135deg, #d4af37, #56b4a0);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(86, 180, 160, 0.5);
  border-color: white;
}

.btn-explore:hover::before {
  left: 100%;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  animation: slideInRight 0.8s ease-out 0.4s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.carousel-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes zoomIn {
  from {
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(45, 90, 74, 0.5) 0%,
    rgba(45, 90, 74, 0.15) 40%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.slide-label {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  font-size: 22px;
  font-weight: 600;
  z-index: 20;
  opacity: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 90, 74, 0.8),
    rgba(212, 175, 55, 0.6)
  );
  padding: 12px 25px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transform: translateY(10px);
}

.carousel-slide.active .slide-label {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-controls {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 30;
}

.carousel-btn {
  background: linear-gradient(
    135deg,
    rgba(86, 180, 160, 0.4),
    rgba(45, 90, 74, 0.4)
  );
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.6),
    rgba(86, 180, 160, 0.6)
  );
  border-color: white;
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 30;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.carousel-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.3);
}

.carousel-dots .dot.active {
  width: 28px;
  border-radius: 4px;
  background: linear-gradient(90deg, #d4af37, white);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  border-color: white;
}

.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 25;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #56b4a0);
  width: 100%;
  transform: scaleX(0.33);
  transform-origin: left;
  transition: transform 0.8s ease;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.reviews-platforms {
  padding: 100px 60px;
  background: linear-gradient(135deg, #faf9f7 0%, #f0f9f7 100%);
  position: relative;
  overflow: hidden;
}

.reviews-platforms::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(86, 180, 160, 0.12), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.reviews-platforms::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.features-header h2 {
  font-size: 52px;
  font-weight: 300;
  color: #2d5a4a;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.header-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #56b4a0);
  margin: 0 auto;
  border-radius: 2px;
  animation: slideInCenter 0.8s ease-out 0.3s both;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

@keyframes slideInCenter {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.reviews-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.platform-reviews {
  background: white;
  border: 2px solid #e8e6e2;
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
  height: 100%;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.platform-reviews:nth-child(1) {
  animation-delay: 0.1s;
  border-left: 4px solid #d4af37;
}
.platform-reviews:nth-child(2) {
  animation-delay: 0.2s;
  border-left: 4px solid #56b4a0;
}
.platform-reviews:nth-child(3) {
  animation-delay: 0.3s;
  border-left: 4px solid #2d5a4a;
}

.platform-reviews:hover {
  box-shadow: 0 20px 50px rgba(45, 90, 74, 0.15);
  border-color: #56b4a0;
  transform: translateY(-8px);
}

.platform-header-small {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 0;
  border-bottom: none;
}

.platform-header-small h3 {
  font-size: 18px;
  color: #2d5a4a;
  font-weight: 700;
  margin: 0;
}

.platform-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #56b4a0);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(45, 90, 74, 0.25);
  flex-shrink: 0;
}

.rating-label {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.reviews-carousel-wrapper {
  position: relative;
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-carousel {
  width: 100%;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.carousel-review {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.carousel-review.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.carousel-review h4 {
  font-size: 15px;
  font-weight: 700;
  color: #2d5a4a;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.carousel-review p {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 12px 0;
  flex: 1;
}

.review-footer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author {
  font-size: 12px;
  font-weight: 700;
  color: #2d5a4a;
  display: block;
}

.review-date {
  font-size: 11px;
  color: #999;
  display: block;
}

.view-all-link {
  display: inline-block;
  font-size: 12px;
  color: #56b4a0;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: auto;
  margin-bottom: 25px;
}

.view-all-link:hover {
  color: #d4af37;
  transform: translateX(5px);
}

.booking-logo-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-score {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #003580, #1e5fa3);
  color: white;
  font-size: 22px;
  font-weight: 800;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 53, 128, 0.25);
  flex-shrink: 0;
}

.booking-brand {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #003580;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.booking-ratings {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  margin-bottom: 0;
}

.rating-item {
  display: grid;
  grid-template-columns: 100px 1fr 40px;
  align-items: center;
  gap: 15px;
}

.rating-category {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.rating-bar {
  height: 6px;
  background: #e8e6e2;
  border-radius: 3px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, #56b4a0, #d4af37);
  border-radius: 3px;
  transition: width 0.6s ease-out;
  box-shadow: 0 0 10px rgba(86, 180, 160, 0.3);
}

.rating-score {
  font-size: 14px;
  font-weight: 700;
  color: #2d5a4a;
  text-align: right;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-section-v2 {
  padding: 80px 60px;
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 50%, #e6f7ff 100%);
  position: relative;
  overflow: hidden;
}

.social-section-v2::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 206, 209, 0.08), transparent);
  border-radius: 50%;
  animation: floatSlow 12s ease-in-out infinite;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-50px, 50px) scale(1.1);
  }
}

.social-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.social-title {
  font-size: 44px;
  color: #0099ff;
  margin-bottom: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #0099ff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInDown 0.8s ease-out;
}

.social-subtitle {
  font-size: 16px;
  color: #999;
  margin-bottom: 50px;
  animation: slideInUp 0.8s ease-out 0.1s both;
}

.social-icons-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-link {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.social-link:nth-child(1) {
  animation-delay: 0.1s;
}
.social-link:nth-child(2) {
  animation-delay: 0.2s;
}
.social-link:nth-child(3) {
  animation-delay: 0.3s;
}
.social-link:nth-child(4) {
  animation-delay: 0.4s;
}
.social-link:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.social-icon-bg {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.social-icon-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link svg {
  width: 45px;
  height: 45px;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.platform-label {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.instagram-link .social-icon-bg {
  background: linear-gradient(135deg, #ffd700, #ff6ba6);
  box-shadow: 0 8px 25px rgba(255, 107, 166, 0.3);
}

.instagram-link:hover .social-icon-bg {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 40px rgba(255, 107, 166, 0.5);
}

.instagram-link:hover .social-icon-bg::before {
  opacity: 1;
}

.instagram-link:hover .platform-label {
  color: #ff6ba6;
  font-weight: 700;
}

.facebook-link .social-icon-bg {
  background: linear-gradient(135deg, #0099ff, #0066cc);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.facebook-link:hover .social-icon-bg {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.5);
}

.facebook-link:hover .social-icon-bg::before {
  opacity: 1;
}

.facebook-link:hover .platform-label {
  color: #0066cc;
  font-weight: 700;
}

.tripadvisor-link .social-icon-bg {
  background: linear-gradient(135deg, #00ae26, #00d47a);
  box-shadow: 0 8px 25px rgba(0, 174, 38, 0.3);
}

.tripadvisor-link:hover .social-icon-bg {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 40px rgba(0, 174, 38, 0.5);
}

.tripadvisor-link:hover .social-icon-bg::before {
  opacity: 1;
}

.tripadvisor-link:hover .platform-label {
  color: #00ae26;
  font-weight: 700;
}

.booking-link .social-icon-bg {
  background: linear-gradient(135deg, #0092c5, #00ced1);
  box-shadow: 0 8px 25px rgba(0, 146, 197, 0.3);
}

.booking-link:hover .social-icon-bg {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 40px rgba(0, 146, 197, 0.5);
}

.booking-link:hover .social-icon-bg::before {
  opacity: 1;
}

.booking-link:hover .platform-label {
  color: #0092c5;
  font-weight: 700;
}

.whatsapp-link .social-icon-bg {
  background: linear-gradient(135deg, #25d366, #20b2aa);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover .social-icon-bg {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-link:hover .social-icon-bg::before {
  opacity: 1;
}

.whatsapp-link:hover .platform-label {
  color: #25d366;
  font-weight: 700;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .social-section-v2 {
    padding: 60px 30px;
  }

  .social-title {
    font-size: 32px;
  }

  .social-icons-row {
    gap: 15px;
  }

  .social-link {
    width: 85px;
    height: 85px;
  }

  .social-icon-bg {
    width: 70px;
    height: 70px;
    margin-bottom: 8px;
  }

  .social-link svg {
    width: 35px;
    height: 35px;
  }

  .platform-label {
    font-size: 11px;
  }
}

.social-section {
  padding: 40px 60px;
  background: linear-gradient(135deg, #2d5a4a, #1a3a2e);
  text-align: center;
  position: relative;
  margin: 60px 60px;
  border-radius: 20px;
  overflow: hidden;
}

.social-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
  border-radius: 50%;
}

.social-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.social-label {
  font-size: 16px;
  color: #d4af37;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.8s ease-out;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-icon svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.social-icon:hover svg {
  transform: scale(1.25);
}

.instagram-icon {
  color: #e1306c;
}

.instagram-icon:hover {
  background: linear-gradient(135deg, #e1306c, #fd5949);
  color: white;
}

.facebook-icon {
  color: #1877f2;
}

.facebook-icon:hover {
  background: #1877f2;
  color: white;
}

.booking-icon {
  color: #003580;
}

.booking-icon:hover {
  background: #003580;
  color: white;
}

.features-zone {
  padding: 100px 60px;
  background: #faf9f7;
  position: relative;
  margin-top: 40px;
}

.features-zone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  text-align: center;
  padding: 40px 30px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 15px;
  background: transparent;
  cursor: pointer;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  border: 2px solid transparent;
}

.feature-box:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-box:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-box:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-box:nth-child(4) {
  animation-delay: 0.1s;
}
.feature-box:nth-child(5) {
  animation-delay: 0.2s;
}
.feature-box:nth-child(6) {
  animation-delay: 0.3s;
}

.feature-box:hover {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(86, 180, 160, 0.1)
  );
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(45, 90, 74, 0.12);
  border-radius: 20px;
  border: 2px solid #d4af37;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-box:hover .feature-icon {
  font-size: 56px;
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.feature-box h3 {
  font-size: 18px;
  color: #2d5a4a;
  margin-bottom: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.feature-box:hover h3 {
  color: #56b4a0;
}

.feature-box p {
  font-size: 13px;
  color: #999;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.feature-box:hover p {
  color: #666;
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: #d4af37;
  border-radius: 50%;
  margin: 15px auto 0;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.feature-box:hover .feature-dot {
  opacity: 1;
  transform: scale(2);
}

.stats-section {
  padding: 80px 60px;
  background: linear-gradient(135deg, #2d5a4a, #1a3a2e);
  color: #faf9f7;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 60px 60px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
  border-radius: 50%;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
  padding: 20px;
}

.stat-item:nth-child(1) {
  animation-delay: 0s;
}
.stat-item:nth-child(2) {
  animation-delay: 0.1s;
}
.stat-item:nth-child(3) {
  animation-delay: 0.2s;
}
.stat-item:nth-child(4) {
  animation-delay: 0.3s;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #d4af37, #56b4a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-section {
  padding: 100px 60px;
  background: #faf9f7;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-text h2 {
  font-size: 45px;
  font-weight: bold;
  color: #2d5a4a;
  margin-bottom: 30px;
  line-height: 1.3;
  animation: fadeInUp 0.8s ease-out;
}

.about-text p {
  font-size: 17px;
  font-weight: 500;
  color: #888;
  margin-bottom: 20px;
  line-height: 1.9;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f0f9f7, #faf9f7);
  color: #2d5a4a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid #56b4a0;
  animation: fadeInUp 0.8s ease-out;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-badge:hover {
  background: linear-gradient(135deg, #56b4a0, #d4af37);
  color: white;
  border-color: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.about-badge:nth-child(1) {
  animation-delay: 0.2s;
}
.about-badge:nth-child(2) {
  animation-delay: 0.25s;
}
.about-badge:nth-child(3) {
  animation-delay: 0.3s;
}

.about-image {
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, #c9e4d8 0%, #d8ecdf 100%);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  border: 3px solid #d4af37;
}

.about-image svg {
  width: 100%;
  height: 100%;
}

.cta-section {
  padding: 80px 60px;
  text-align: center;
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  position: relative;
  margin: 60px 60px;
  border-radius: 20px;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  position: relative;
  z-index: 2;
}

.btn-cta {
  background: linear-gradient(135deg, #d4af37, #faf9f7);
  color: #2d5a4a;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  z-index: 2;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: left 0.5s ease;
}

.btn-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
}

.btn-cta:hover::before {
  left: 100%;
}

footer {
  background: linear-gradient(135deg, #1f3d32, #0d2622);
  color: white;
  padding: 50px 60px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.footer-links {
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 25px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #56b4a0);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  opacity: 0.85;
}

.footer-bottom a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }

  .header-left,
  .header-right {
    width: 100%;
  }

  .header-right {
    gap: 15px;
    justify-content: center;
  }

  nav {
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    order: 3;
    width: 100%;
  }

  .logo-img {
    height: 40px;
  }

  .hero-full {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .hero-text {
    padding: 50px 30px;
    order: 2;
    position: relative;
    z-index: 10;
  }

  .carousel-container {
    order: 1;
    height: 300px;
    z-index: 1;
  }

  .tagline {
    margin-left: 100px;
    font-size: 24px;
  }

  .main-title {
    font-size: 48px;
  }

  .btn-explore {
    margin-left: 0;
    padding: 10px 35px;
    font-size: 14px;
  }

  .info-widgets {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 20px;
    margin-top: -60px;
    padding: 30px 20px;
  }

  .features-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-zone,
  .about-section {
    padding: 60px 30px;
  }

  .reviews-comparison {
    grid-template-columns: 1fr;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    margin: 30px;
    padding: 50px 30px;
  }

  .cta-section {
    margin: 30px;
    padding: 50px 30px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  footer {
    padding: 30px;
    font-size: 11px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .lang-dropdown {
    left: -50%;
  }

  .title-box {
    display: inline-block;
    padding: 18px 26px;
    border: 2px solid var(--gold-accent);
    background: rgba(255, 255, 255, 0.85);
  }

  .title-box h2 {
    margin: 0;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 48px);
  }

  .tripadvisor-icon {
    color: #34e0a1;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 28px);
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(45, 90, 74, 0.3);
  border-radius: 12px;
  background: #fff;
  color: #2d5a4a;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-full {
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.35fr);
}

.hero-text {
  padding: clamp(32px, 5vw, 70px) clamp(22px, 4vw, 60px);
  align-items: center;
  text-align: center;
}

.hero-logo {
  width: min(100%, 340px);
}

.hero-desc {
  max-width: 62ch;
}

.btn-explore {
  margin-left: 0;
}

.carousel-container,
.carousel-wrapper {
  min-height: clamp(280px, 45vw, 760px);
}

.carousel-slide.active img {
  transform: scale(1);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.philosophy-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}

.moments-video-wrap {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.moments-video {
  width: min(100%, 960px) !important;
  height: 560px !important;
  border: none !important;
  background: transparent !important;
}

.moments-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.reviews-comparison {
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}

.stats-section {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .header-right {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 4;
    width: 100%;
    display: grid;
    gap: 0;
    border: 1px solid #e8e6e2;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #f1efeb;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav.is-open {
    max-height: 460px;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-full {
    grid-template-columns: 1fr;
  }

  .hero-text {
    order: 2;
  }

  .carousel-container {
    order: 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .moments-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .moments-video {
    height: min(76vh, 620px) !important;
  }
}

@media (max-width: 640px) {
  .gallery-grid,
  .features-grid,
  .moments-gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .moments-section {
    padding: 64px 18px !important;
  }

  .moments-video-wrap {
    margin-bottom: 52px !important;
  }

  .moments-video {
    width: 100% !important;
    height: min(82vh, 680px) !important;
    border-radius: 14px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .header-right {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
  }

  .main-nav {
    order: 4;
    width: 100%;
    display: grid;
    gap: 0;
    border: 1px solid #e8e6e2;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #f1efeb;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav.is-open {
    max-height: 460px;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 640px) {
  .header-right {
    justify-content: center;
  }

  .language-selector {
    width: 100%;
  }

  .lang-btn {
    width: 100%;
    border-radius: 12px;
  }

  .lang-dropdown {
    left: 0;
    right: 0;
    min-width: unset;
  }
}
