.btn-gold-pulse,
.team-profile-link,
a {
  text-decoration: none;
}

.btn,
.btn-gold-pulse,
.btn-gold-wide,
.btn-link,
.main-nav a,
.top-bar-marquee {
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

body,
html {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

/* FAQ styles handled at the end of file */

.main-nav a,
.top-bar-marquee {
  font-size: 0.9rem;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  width: 100%;
}

.carousel-track,
.dropdown-item,
.hero-carousel,
.main-nav a,
.team-card,
.top-bar-marquee {
  position: relative;
}

.contact-form-card p,
.contact-intro-text,
.contact-main-title,
.footer-bottom,
.service-info,
.slide,
.team-card,
.text-center {
  text-align: center;
}

.btn,
.btn-gold-wide,
.btn-ver-mas,
.carousel-btn,
.menu-toggle,
.team-card {
  cursor: pointer;
}

.btn,
.btn-gold-wide,
.btn-link,
.main-nav .submenu li a,
.main-nav a,
.top-bar-marquee {
  text-transform: uppercase;
}

:root {
  --gold: #d4af37;
  --gold-light: #f9eac3;
  --gold-gradient: linear-gradient(
    135deg,
    #bf953f 0%,
    #fcf6ba 25%,
    #b38728 50%,
    #fbf5b7 75%,
    #aa771c 100%
  );
  --black: #0a0a0a;
  --dark-grey: #141414;
  --card-bg: rgb(30 30 30 / 70%);
  --text-white: #f4f4f4;
  --text-grey: #b3b3b3;
  --glass-bg: rgb(0 0 0 / 60%);
  --glass-border: rgb(255 255 255 / 10%);
  --glass-shadow: 0 8px 32px 0 rgb(0 0 0 / 80%);
  --font-logo: 'Ephesis', cursive;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Animations Utility */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

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

.fade-in {
  animation: fade-in 1.2s ease forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.fade-in-up {
  animation: fade-in-up 1s ease forwards;
}

* {
  box-sizing: border-box;
}

.sticky-footer-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* body/html combined above */
body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--text-white);
  line-height: 1.7;
}

a {
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

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

.top-bar-marquee {
  background: var(--gold-gradient);
  color: var(--black);
  overflow: hidden;
  white-space: nowrap;
  height: 35px;
  display: flex;
  align-items: center;
  z-index: 1100;
  font-weight: 700;
  box-shadow: 0 2px 10px rgb(0 0 0 / 30%);
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: 25s linear infinite marquee;
}

.marquee-content span {
  padding-right: 50px;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }

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

#main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-logo);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--text-white);
  text-shadow: 0 0 10px rgb(212 175 55 / 30%);
}

.contact-form-card h3,
.contact-main-title,
.footer-col h4,
.hero-content h1,
.section-title,
.service-info h3,
.team-overlay h3 {
  font-family: var(--font-heading);
}

.carousel-btn,
.contact-list a:hover,
.gold-text,
.hero-content h1,
.logo span,
.menu-toggle,
.section-title,
.social-icons a:hover {
  color: var(--gold);
}

.main-nav a {
  position: relative;
  font-weight: 400;
  transition: var(--transition-smooth);
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

/* handled above */

.menu-toggle {
  display: none;
  font-size: 1.5rem;
}

.hero-carousel {
  height: 85vh;
  width: 100%;
  overflow: hidden;
}

.carousel-track,
.slide {
  width: 100%;
  height: 100%;
}

.carousel-btn,
.slide,
.slide-bg-img {
  position: absolute;
}

.slide {
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgb(0 0 0 / 30%) 0, rgb(0 0 0 / 80%) 100%);
  z-index: 1;
}

.hero-content h1,
.hero-content .hero-slide-title {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgb(0 0 0 / 80%);
  font-family: var(--font-heading);
  color: var(--gold);
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 80%);
}

.carousel-btn {
  top: 50%;
  transform: translateY(-50%);
  background: rgb(0 0 0 / 50%);
  border: 1px solid var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 10;
  transition: 0.3s;
}

.btn-outline:hover,
.carousel-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slide-bg-img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 2;
  position: relative;
}

/* handled above */

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

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

.bg-dark {
  background-color: var(--dark-grey);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--black);
  border: 1px solid var(--gold);
  font-weight: 800;
  box-shadow: 0 4px 15px rgb(212 175 55 / 30%);
  transition: var(--transition-smooth);
}

.divider-gold {
  width: 80px;
  height: 2px;
  margin: 20px auto;
  background: var(--gold-gradient);
}

.mt-20 {
  margin-top: 20px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

/* Divider gold handled above */

.btn {
  padding: 14px 35px;
  border-radius: 50px;
  display: inline-block;
  font-size: 0.9rem;
}

/* combined below */

/* combined above */

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgb(212 175 55 / 50%);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background: var(--gold-gradient);
  color: var(--black);
  border-color: transparent;
  transform: translateY(-3px);
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.grid-img img {
  border-radius: 10px;
  box-shadow: -15px 15px 0 rgb(212 175 55 / 10%);
}

.check-list li {
  margin-bottom: 10px;
  color: var(--text-grey);
}

.check-list i,
.details-list li i {
  color: var(--gold);
  margin-right: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-content: center;
}

.team-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 550px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 50%);
}

.teaser-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold-gradient);
  color: var(--black);
  padding: 6px 14px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgb(0 0 0 / 60%);
  z-index: 10;
  border: 1px solid var(--gold);
  overflow: hidden;
}

.teaser-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgb(255 255 255 / 0%) 0%,
    rgb(255 255 255 / 80%) 50%,
    rgb(255 255 255 / 0%) 100%
  );
  transform: skewX(-25deg);
  animation: badge-shine 3s infinite;
}

@keyframes badge-shine {
  0% {
    left: -150%;
  }

  30% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

.team-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgb(0 0 0 / 90%), rgb(212 175 55 / 20%));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}

.overlay-info {
  transform: translateY(20px);
  transition: transform 0.4s;
}

.team-card:hover img,
.team-profile-link:hover .team-img-box img,
.whatsapp-float:hover {
  transform: scale(1.1);
}

.team-card:hover .team-overlay,
.team-profile-link:hover .team-overlay {
  opacity: 1;
}

.team-card:hover .overlay-info,
.team-profile-link:hover .overlay-info {
  transform: translateY(0);
}

.team-overlay h3 {
  color: var(--gold);
  font-size: 1.4rem;
}

.team-overlay p {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 5px;
}

.team-overlay .cert {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-style: italic;
  display: block;
}

#main-footer {
  background: #050505;
  padding: 60px 0 20px;
  border-top: 1px solid rgb(212 175 55 / 20%);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.social-icons a {
  font-size: 1.2rem;
  margin-right: 15px;
  color: var(--text-grey);
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.8rem;
  color: #666;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgb(0 0 0 / 50%);
  z-index: 2000;
  transition: transform 0.3s;
}

.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgb(0 0 0 / 60%);
}

.service-img {
  height: 250px;
  overflow: hidden;
  padding: 15px;
  background: 0 0;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 80px;
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-img img {
  border-radius: 20px;
  transform: scale(1.05);
}

.service-info {
  padding: 20px 30px 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.service-info h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-info p {
  color: var(--text-grey);
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-link {
  color: var(--gold);
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.service-card:hover .btn-link {
  border-bottom: 1px solid var(--gold);
}

.contact-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: var(--black);
}

.contact-main-title {
  color: var(--gold);
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-intro-text {
  max-width: 800px;
  color: var(--text-grey);
  margin-bottom: 60px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-row i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 5px;
}

.info-row h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.info-row a,
.info-row p {
  color: var(--text-grey);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-image-wrapper {
  position: relative;
  height: 350px;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 20px 100px;
  box-shadow: 0 20px 40px rgb(0 0 0 / 50%);
  transition: transform 0.5s;
}

.contact-image-wrapper:hover {
  transform: scale(1.02);
}

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

.contact-form-card {
  background: #fff;
  color: #333;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgb(0 0 0 / 20%);
  position: relative;
}

.contact-form-card h3 {
  color: #000;
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}

.contact-form-card p {
  color: #666;
  margin-bottom: 30px;
}

.light-form-group {
  margin-bottom: 20px;
}

.light-form-group label {
  display: block;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
  font-weight: 700;
}

.light-form-group input,
.light-form-group select,
.light-form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #f9f9f9;
  color: #333;
  font-family: var(--font-body);
  transition: 0.3s;
}

.light-form-group input:focus,
.light-form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
  outline: 0;
  box-shadow: 0 0 5px rgb(212 175 55 / 30%);
}

.btn-gold-wide {
  width: 100%;
  padding: 15px;
  background-color: var(--gold);
  color: #000;
  font-weight: 800;
  border: none;
  border-radius: 50px;
  transition: 0.3s;
  font-size: 1rem;
}

.btn-gold-wide:hover {
  background-color: #bfa14f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgb(212 175 55 / 40%);
}

.btn-ver-mas:hover,
.main-nav .submenu li a:hover {
  background-color: var(--gold);
  color: var(--black);
}

@media (width <= 900px) {
  .contact-premium-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 30px;
  }

  .contact-main-title {
    font-size: 2.2rem;
  }
}

.light-form-group.checkbox-option input {
  box-shadow: none;
  border-color: var(--gold);
  accent-color: var(--gold);
  transform: scale(1.2);
}

.btn-ver-mas {
  background-color: var(--dark-grey);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 15px;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: 0.3s;
}

.gallery-grid {
  display: grid;
  gap: 30px;
}

.main-photo img,
.thumb-photos img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgb(0 0 0 / 40%);
}

.thumb-photos {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.profile-details {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 8px;
}

.details-list {
  margin-top: 20px;
  padding-left: 0;
}

.details-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media (width >= 768px) {
  .gallery-grid {
    grid-template-columns: 2fr 1fr;
    grid-template-areas: 'photo details' 'thumbs thumbs';
  }

  .main-photo {
    grid-area: photo;
  }

  .profile-details {
    grid-area: details;
  }

  .thumb-photos {
    grid-area: thumbs;
    justify-content: start;
  }

  .thumb-photos img {
    width: 30%;
    max-width: 200px;
  }
}

.team-profile-link {
  display: block;
  color: inherit;
  height: 100%;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}

.btn-ver-perfil {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 15px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  border-radius: 20px;
  background: rgb(0 0 0 / 60%);
}

.main-photo img {
  transition: opacity 0.3s;
}

.thumb-photos img {
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
  opacity: 0.7;
}

.thumb-photos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.thumb-photos img.selected {
  border-color: var(--gold);
  opacity: 1;
  transform: scale(0.95);
}

.main-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgb(0 0 0 / 95%);
  backdrop-filter: blur(10px);
  min-width: 200px;
  box-shadow: 0 4px 15px rgb(0 0 0 / 80%);
  border-top: 2px solid var(--gold);
  flex-direction: column;
  padding: 10px 0;
  border-radius: 0 0 5px 5px;
  gap: 0;
  z-index: 2000;
}

.dropdown-item:hover .submenu {
  display: flex;
}

.main-nav .submenu li {
  width: 100%;
  margin: 0;
  display: block;
}

.main-nav .submenu li a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  font-size: 0.85rem;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  width: 100%;
}

.main-nav .submenu li a::after {
  display: none;
}

.main-nav .submenu li a:hover {
  padding-left: 25px;
}

.lead-text {
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 300;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.lead-text strong {
  color: var(--gold);
  font-weight: 700;
}

@media (width <= 768px) {
  .dropdown-item:hover .submenu,
  .menu-toggle {
    display: block;
  }

  .main-nav ul {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #000;
    flex-direction: column;
    padding: 40px 20px;
    transition: 0.4s;
  }

  .main-nav ul.active {
    right: 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .logo {
    font-size: 2.8rem;
  }

  .grid-2-col {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    height: 70vh;
  }

  .main-nav .submenu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-top: none;
    background-color: rgb(255 255 255 / 5%);
    display: none;
  }

  .main-nav .submenu li a {
    padding: 15px;
    font-size: 0.9rem;
    text-align: center;
  }

  .lead-text {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-main-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .contact-intro-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .contact-hero-container {
    padding: 40px 15px;
  }
}

.cta-gold-container {
  text-align: center;
  padding: 60px 20px;
  background: radial-gradient(circle, #1a1a1a 0, #000 100%);
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin: 40px 0;
}

.cta-title {
  color: #bf953f;
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-family: serif;
}

.cta-subtitle {
  color: #ccc;
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.btn-gold-pulse {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 800;
  color: #2c2005;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    #bf953f 0,
    #fcf6ba 25%,
    #b38728 50%,
    #fbf5b7 75%,
    #aa771c 100%
  );
  background-size: 250% auto;
  box-shadow: 0 0 15px rgb(191 149 63 / 50%);
  transition: 0.4s;
  animation:
    3s linear infinite shine-move,
    2s infinite pulse-shadow;
}

.btn-gold-pulse .icon {
  font-size: 1.4rem;
  margin-right: 10px;
}

.btn-gold-pulse:hover {
  transform: scale(1.05) translateY(-3px);
  color: #000;
  box-shadow: 0 10px 30px rgb(191 149 63 / 80%);
}

@keyframes shine-move {
  0% {
    background-position: 0 50%;
  }

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

@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgb(191 149 63 / 70%);
  }

  70% {
    box-shadow: 0 0 0 15px rgb(191 149 63 / 0%);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(191 149 63 / 0%);
  }
}

@media (width <= 600px) {
  .btn-gold-pulse {
    width: 100%;
    font-size: 16px;
    padding: 15px 20px;
  }
}

/* OFFERS SECTION */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.offer-card {
  position: relative;
  padding: 60px 30px 40px;
  border-radius: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgb(0 0 0 / 30%);
}

.offer-card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgb(212 175 55 / 10%);
  border-radius: 50%;
}

.offer-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.offer-discount {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  padding: 5px 15px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 2;
}

.offer-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-white);
}

.offer-card p {
  font-size: 0.95rem;
  color: var(--text-grey);
  line-height: 1.6;
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
  background: var(--black);
}

.faq-accordion {
  max-width: 860px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--gold);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.faq-question span {
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  font-family: var(--font-body);
}

.faq-icon {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 28px 22px;
}

.faq-answer p {
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer strong {
  color: var(--gold-light, #e2c97e);
}

@media (width <= 768px) {
  .faq-question {
    padding: 18px 20px;
  }

  .faq-question span {
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.open .faq-answer {
    padding: 0 20px 18px;
  }
}

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