/* ========= SLIDER ========= */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-slides {
  display: flex;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}

.hero-slide {
  min-width: 100vw;
  width: 100vw;
  flex-shrink: 0;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: transparent;
  box-sizing: border-box;
}

.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(4, 4, 4, 0.8) 0%, rgba(4, 4, 4, 0.4) 50%, transparent 100%);
  z-index: 1;
}

.hero-slide .hero-img {
  position: absolute;
  right: calc(max(0px, 50vw - 700px));
  bottom: 0;
  height: 100%;
  width: 50%;
  max-width: 700px;
  object-fit: contain;
  object-position: bottom right;
  z-index: 0;
}

.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 4rem 2rem;
}

@media(max-width:768px) {
  .hero-slide .hero-img {
    width: 45%;
    opacity: .25;
  }

  .hero-slide .hero-content {
    max-width: 100%;
  }

  .hero-slide {
    min-height: 400px;
  }
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #c29b3a;
  background: transparent;
  cursor: pointer;
  transition: .3s;
  padding: 0;
}

.slider-dots button.active {
  background: #c29b3a;
  transform: scale(1.2);
}

/* ========= GLASS NAV ========= */
.glass-nav {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

/* ========= BUTTONS ========= */
.btn-gold {
  background: linear-gradient(135deg, #c29b3a 0%, #b0892b 100%);
  transition: all .3s ease;
}

.btn-gold:hover {
  box-shadow: 0 12px 24px -8px rgba(194, 155, 58, .6);
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: 2px solid rgba(194, 155, 58, .5);
  transition: all .3s;
}

.btn-outline-gold:hover {
  background: rgba(194, 155, 58, .15);
  border-color: #c29b3a;
}

/* ========= GRADIENT TEXT ========= */
.text-gradient-gold {
  background: linear-gradient(135deg, #c29b3a, #d4b363);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========= SERVICE CARDS ========= */
.service-card {
  transition: all .35s ease;
  border-top: 4px solid transparent;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgb(0 0 0 / .08);
  border-top-color: #c29b3a;
  transform: translateY(-4px);
}

.service-card .icon-wrap {
  transition: all .3s;
}

.service-card:hover .icon-wrap {
  background: #c29b3a !important;
  color: white !important;
  transform: scale(1.1);
}

/* ========= IMAGE CARDS ========= */
.img-card img {
  transition: transform .7s ease;
}

.img-card:hover img {
  transform: scale(1.1);
}

.img-card .card-overlay {
  transition: opacity .3s;
}

.img-card:hover .card-reveal {
  opacity: 1;
  max-height: 60px;
  margin-bottom: 12px;
}

.card-reveal {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
}

/* ========= ACCORDION ========= */
details[open] summary {
  color: #c29b3a;
  background: rgba(194, 155, 58, .05);
}

details summary .chevron {
  transition: transform .3s;
}

details[open] summary .chevron {
  transform: rotate(180deg);
}

/* ========= CONTACT CARDS ========= */
.contact-card {
  transition: transform .3s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

/* ========= FOOTER ========= */
.footer-social a:hover {
  background: #c29b3a;
  border-color: transparent;
  color: white;
}

/* ========= PARTNER LOGOS ========= */
.partner-logo {
  filter: grayscale(100%);
  opacity: .6;
  transition: all .3s;
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}