@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Poppins:wght@300;400;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (max-width: 900px) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #0a192f;
  background-color: #e6f1ff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.8rem;
}

p {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.text-gold {
  color: #c5a059;
}

.text-uppercase {
  text-transform: uppercase;
}

.fw-bold {
  font-weight: 700;
}

.btn-premium, .btn-premium-outline {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: #c5a059;
  color: #0a192f;
  font-weight: 600;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  min-height: 44px;
  min-width: 12rem;
  text-align: center;
  border: 2px solid #c5a059;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn-premium:hover, .btn-premium-outline:hover {
  background-color: transparent;
  color: #c5a059;
}

.btn-premium-outline {
  background-color: transparent;
  color: #e6f1ff;
  border: 2px solid #e6f1ff;
}
.btn-premium-outline:hover {
  background-color: #e6f1ff;
  color: #0a192f;
  border-color: #e6f1ff;
}

.tour-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
.tour-card__image {
  position: relative;
  width: 100%;
  height: 25rem;
  overflow: hidden;
}
.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.tour-card:hover .tour-card__image img {
  transform: scale(1.05);
}
.tour-card__badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: #c5a059;
  color: #0a192f;
  padding: 0.5rem 1.5rem;
  border-radius: 5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}
.tour-card__content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.tour-card__title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #0a192f;
}
.tour-card__meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: #c5a059;
  font-weight: 500;
}
.tour-card__meta i {
  margin-right: 0.5rem;
}
.tour-card__description {
  font-size: 1.45rem;
  color: #8892b0;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.tour-card__link {
  margin-top: auto;
  font-size: 1.4rem;
  font-weight: 700;
  color: #c5a059;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.tour-card__link i {
  transition: all 0.3s ease-in-out;
}
.tour-card__link:hover i {
  transform: translateX(5px);
}
.tour-card .btn-premium, .tour-card .btn-premium-outline {
  margin-top: auto;
  align-self: flex-start;
}

.about-images {
  flex: 1;
}

.about-collage {
  position: relative;
  padding: 2rem;
  margin-bottom: 5rem;
}
.about-collage .about-img-main {
  width: 80%;
  height: 40rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.1);
}
.about-collage .about-img-secondary {
  position: absolute;
  bottom: -5rem;
  right: 0;
  width: 60%;
  height: 30rem;
  object-fit: cover;
  border-radius: 1rem;
  border: 1rem solid #e6f1ff;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.15);
}

.about-content {
  flex: 1;
  padding-left: 5rem;
}
@media (max-width: 900px) {
  .about-content {
    padding-left: 0;
    margin-top: 5rem;
  }
}

.contact-info .contact-methods {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact-info .contact-method {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.contact-info .contact-method i {
  font-size: 2.4rem;
  color: #c5a059;
  margin-top: 0.5rem;
}
.contact-info .contact-method h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #0a192f;
}
.contact-info .contact-method p {
  font-size: 1.5rem;
  color: #8892b0;
  margin-bottom: 0.2rem;
}

.contact-form-container {
  background: #f8f9fa;
  padding: 5rem;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}
.contact-form-container h3 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: #0a192f;
}
.contact-form-container .contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-form-container .contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 600px) {
  .contact-form-container .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}
.contact-form-container .contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-form-container .contact-form .form-group label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #8892b0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-form-container .contact-form .form-group input,
.contact-form-container .contact-form .form-group textarea {
  padding: 1.5rem 2rem;
  border: 1px solid rgba(10, 25, 47, 0.1);
  border-radius: 0.8rem;
  font-family: inherit;
  font-size: 1.5rem;
  background: white;
  transition: all 0.3s ease-in-out;
}
.contact-form-container .contact-form .form-group input:focus,
.contact-form-container .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #c5a059;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}
.contact-form-container .contact-form .form-note {
  font-size: 1.3rem;
  color: #8892b0;
  text-align: center;
  margin-top: 1rem;
}
.contact-form-container .contact-form .form-note i {
  color: #c5a059;
  margin-right: 0.5rem;
}

.map-section {
  line-height: 0;
}
.map-section iframe {
  filter: grayscale(1) invert(0.9) contrast(1.2);
}

.tour-detail__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
}
@media (max-width: 900px) {
  .tour-detail__grid {
    grid-template-columns: 1fr;
  }
}
.tour-detail__content h4 {
  font-size: 2.2rem;
  margin: 4rem 0 2rem;
  color: #0a192f;
}
.tour-detail__content p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.tour-detail__content img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.itinerary-accordion {
  margin-top: 3rem;
}
.itinerary-accordion__item {
  border-bottom: 1px solid rgba(10, 25, 47, 0.1);
}
.itinerary-accordion__item:last-child {
  border-bottom: none;
}
.itinerary-accordion__header {
  padding: 2rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #0a192f;
  transition: all 0.3s ease-in-out;
}
.itinerary-accordion__header:hover {
  color: #c5a059;
}
.itinerary-accordion__header::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.4rem;
  transition: all 0.3s ease-in-out;
}
.itinerary-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.itinerary-accordion__content p {
  padding-bottom: 2rem;
  font-size: 1.5rem;
  color: #8892b0;
}
.itinerary-accordion__item.active .itinerary-accordion__header {
  color: #c5a059;
}
.itinerary-accordion__item.active .itinerary-accordion__header::after {
  transform: rotate(180deg);
}
.itinerary-accordion__item.active .itinerary-accordion__content {
  max-height: 20rem;
}

.tour-booking-card {
  background: white;
  padding: 4rem;
  border-radius: 2rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 12rem;
}
.tour-booking-card h5 {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #0a192f;
}
.tour-booking-card .form-group {
  margin-bottom: 2rem;
}
.tour-booking-card .form-group label {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #8892b0;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.tour-booking-card .form-group input {
  width: 100%;
  padding: 1.2rem 2rem;
  border: 1px solid rgba(10, 25, 47, 0.1);
  border-radius: 5rem;
  font-size: 1.4rem;
}
.tour-booking-card .form-group input:focus {
  outline: none;
  border-color: #c5a059;
}
.tour-booking-card .help-box {
  margin-top: 3rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 2rem;
}
.tour-booking-card .help-box p {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.tour-booking-card .help-box .btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}
.tour-booking-card .help-box .btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(37, 211, 102, 0.3);
}

.page-banner-title {
  font-size: 5.6rem !important;
}
@media (max-width: 600px) {
  .page-banner-title {
    font-size: 3.2rem !important;
  }
}

.page-banner-subtitle {
  font-size: 2rem !important;
}

.lead {
  font-size: 2rem !important;
}

.accordion-body,
.accordion-header,
.tour-booking-card p,
.trust-bar h5,
.footer p,
.footer li,
.footer address,
.bg-midnight p,
.bg-midnight li,
.bg-midnight address,
.bg-midnight .fs-6,
.bg-midnight .text-white-50,
.concierge-text,
.form-label,
.form-control,
.list-unstyled li,
.content p,
.content li,
.content div,
.text-muted,
h6,
.h6,
h5,
.h5,
h4,
.h4 {
  font-size: 1.6rem !important;
}

.accordion-button {
  font-size: 1.8rem !important;
  font-weight: 600 !important;
}

.btn-premium, .btn-premium-outline {
  font-size: 1.3rem !important;
  padding: 1.5rem 3.5rem !important;
}

.nav__link {
  font-size: 1.4rem !important;
}

.footer h5,
.bg-midnight h5,
h2,
.h2 {
  font-size: 3.2rem !important;
}

h3,
.h3 {
  font-size: 2.4rem !important;
}

.row.g-4.mb-5.text-center h6 {
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  margin-top: 1rem !important;
}
.row.g-4.mb-5.text-center i {
  font-size: 2.8rem !important;
  color: #c5a059 !important;
}

.small,
small,
.text-xs {
  font-size: 1.2rem !important;
}

.text-uppercase.letter-spacing-2 {
  font-size: 1.3rem !important;
  letter-spacing: 2px !important;
}

.page-banner-subtitle {
  font-size: 1.8rem !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 10rem 0;
}
@media (max-width: 600px) {
  .section-padding {
    padding: 6rem 0;
  }
}

.flex {
  display: flex;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .flex {
    flex-direction: column;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-gold {
  color: #c5a059 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-center {
  text-align: center !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.letter-spacing-1 {
  letter-spacing: 1px !important;
}

.letter-spacing-2 {
  letter-spacing: 2px !important;
}

.section-header,
.section-intro {
  text-align: center;
  margin-bottom: 6rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 3.6rem;
  margin-top: 1rem;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .section-title {
    font-size: 2.8rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  background-color: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  z-index: 3000;
  border-bottom: 1px solid rgba(197, 160, 89, 0.1);
  transition: all 0.3s ease-in-out;
}
.header.not-transparent, .header.scrolled {
  background-color: #0a192f !important;
  padding: 1.5rem 0;
}
.header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .nav__brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
}
.header .nav__brand-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 600px) {
  .header .nav__brand-text {
    font-size: 1.8rem;
  }
}
.header .nav__logo {
  height: 5.5rem;
  width: auto;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .header .nav__logo {
    height: 4.5rem;
  }
}
.header .nav__links {
  display: flex;
  gap: 3rem;
}
@media (max-width: 600px) {
  .header .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #0a192f;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10rem;
    align-items: center;
    z-index: 1001;
    transition: all 0.3s ease-in-out;
  }
  .header .nav__links.active {
    right: 0;
  }
}
.header .nav__mobile-logo {
  display: none;
}
@media (max-width: 600px) {
  .header .nav__mobile-logo {
    display: block;
    margin-bottom: 5rem;
  }
  .header .nav__mobile-logo img {
    width: 12rem;
    height: auto;
    filter: brightness(0) invert(1);
  }
}
.header .nav__link {
  color: rgba(230, 241, 255, 0.8);
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.header .nav__link:hover {
  color: #c5a059;
}
.header .nav__toggle {
  display: none;
  background: none;
  border: none;
  color: #e6f1ff;
  font-size: 2.4rem;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}
@media (max-width: 600px) {
  .header .nav__toggle {
    display: block;
  }
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background-color: #0a192f;
}
.hero__vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero__progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(230, 241, 255, 0.1);
  z-index: 10;
}
.hero__progress-bar {
  height: 100%;
  background: #c5a059;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}
.hero__scroll-indicator span {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: "Montserrat", sans-serif;
}
.hero__scroll-indicator .line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #c5a059, transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-indicator .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  animation: scrollLine 2s infinite;
}
.hero__scroll-indicator:hover {
  opacity: 1;
}
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 25, 47, 0.2), rgba(10, 25, 47, 0.7));
  z-index: 1;
}
.hero-slider-item.active {
  opacity: 1;
  visibility: visible;
  animation: kenBurns 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
.hero--small {
  height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 10rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero--small::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 25, 47, 0.4), rgba(10, 25, 47, 0.7));
  z-index: 1;
}
.hero--small .hero__content .hero__title {
  opacity: 1;
  transform: none;
  font-size: 5.6rem;
}
.hero--small .hero__content .text-gold,
.hero--small .hero__content .hero__lead,
.hero--small .hero__content .hero__actions {
  opacity: 1;
  transform: none;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 90rem;
  padding: 0 2rem;
}
.hero__content .text-gold {
  display: block;
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
}
.hero__content .hero__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 5.6rem;
  margin-bottom: 2.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
  transform: translateY(30px);
  opacity: 0;
}
.hero__content .hero__title span {
  display: inline;
}
@media (max-width: 900px) {
  .hero__content .hero__title {
    font-size: 4.8rem;
  }
}
@media (max-width: 600px) {
  .hero__content .hero__title {
    font-size: 3.6rem;
  }
}
.hero__content .hero__lead {
  font-size: 2.2rem;
  color: rgba(230, 241, 255, 0.8);
  margin-bottom: 4.5rem;
  max-width: 60rem;
  transform: translateY(20px);
  opacity: 0;
}
@media (max-width: 600px) {
  .hero__content .hero__lead {
    font-size: 1.8rem;
  }
}
.hero__content .hero__actions {
  display: flex;
  gap: 2.5rem;
  transform: translateY(20px);
  opacity: 0;
}
@media (max-width: 600px) {
  .hero__content .hero__actions {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
.tour-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 900px) {
  .tour-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .tour-gallery {
    grid-template-columns: 1fr;
  }
}

.about-preview__images {
  flex: 1;
}
.about-preview__img-main {
  width: 100%;
  height: 45rem;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}
.about-preview__content {
  flex: 1;
}

@media (max-width: 900px) {
  .excellence__intro {
    text-align: center;
    margin-bottom: 4rem;
  }
}

.cta {
  background-color: #0a192f;
  color: #ffffff;
  text-align: center;
}
.cta .section-title {
  color: #ffffff;
  margin-bottom: 2.5rem;
}
.cta p {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  padding: 5rem 3rem;
  background: #ffffff;
  border-radius: 2rem;
  text-align: center;
  border: 1px solid rgba(197, 160, 89, 0.1);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.feature-card__number {
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(197, 160, 89, 0.05);
  line-height: 1;
  transition: all 0.3s ease-in-out;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.feature-card:hover {
  transform: translateY(-15px);
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.12);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card:hover .feature-card__number {
  color: rgba(197, 160, 89, 0.1);
  transform: translateY(-5px);
}
.feature-card__icon {
  width: 9rem;
  height: 9rem;
  background: rgba(197, 160, 89, 0.08);
  color: #c5a059;
  font-size: 3.5rem;
  border-radius: 2.5rem;
  margin: 0 auto 3rem;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h3 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: #0a192f;
  font-weight: 700;
  position: relative;
  padding-top: 2rem;
}
.feature-card h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 2px;
  background: #c5a059;
}
.feature-card p {
  font-size: 1.6rem;
  color: #8892b0;
  line-height: 1.7;
  margin: 0;
}

.footer {
  background-color: #0a192f;
  color: #e6f1ff;
  padding: 8rem 0 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 6rem;
}
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer h3,
.footer h4 {
  color: #e6f1ff;
  margin-bottom: 2.5rem;
}
.footer p,
.footer li,
.footer address {
  color: rgba(230, 241, 255, 0.6);
  font-size: 1.4rem;
  line-height: 1.8;
}
.footer ul li {
  margin-bottom: 1.5rem;
}
.footer ul li a:hover {
  color: #c5a059;
  padding-left: 0.5rem;
}
.footer address {
  font-style: normal;
}
.footer address p {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .footer address p {
    justify-content: center;
  }
}
.footer address p i {
  color: #c5a059;
  margin-top: 0.4rem;
}
.footer__socials {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 600px) {
  .footer__socials {
    justify-content: center;
  }
}
.footer__socials a {
  width: 5.5rem !important;
  height: 5.5rem !important;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c5a059;
  font-size: 2.2rem !important;
}
.footer__socials a:hover {
  background-color: #c5a059;
  color: #0a192f;
  transform: translateY(-3px);
}
.footer__bottom {
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(230, 241, 255, 0.1);
  text-align: center;
}
.footer__bottom p {
  font-size: 1.2rem;
}

.floating-whatsapp {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 6rem;
  height: 6rem;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s ease-in-out;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
