:root {
  --gold: #c5a059;
  --cream: #1a1a1a;
  --dark: #ffffff;
  --rose: #FF9B9B;
}
body {
  font-family: "Sen", sans-serif;
  background-color: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant", serif;
}
.nav-link {
  position: relative;
  padding: 5px 0;
  overflow: hidden;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.glass-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.pagination-container {
  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.pagination-dot {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin: 15px 0;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
}
.pagination-dot.active {
  height: 40px;
  border-radius: 10px;
  background: var(--gold);
  border-color: var(--gold);
}
.pagination-dot::before {
  content: attr(data-label);
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.pagination-dot:hover::before {
  opacity: 1;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  visibility: hidden;
  overflow: hidden;
}
.slide-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 0;
}
.hero-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.2);
  filter: contrast(1.1) brightness(0.9);
}

.btn-luxe {
  position: relative;
  padding: 16px 45px;
  background: #FF9B9B;
  border: 1px solid #FF9B9B;
  color: #fff;
  font-family: 'Sen', sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: visible;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 4px 4px 0px #FF9B9B;
}

/* Precision Corner Markers */
.btn-luxe::before, .btn-luxe::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-color: #fff;
  border-style: solid;
  transition: all 0.5s ease;
  opacity: 0.8;
}

.btn-luxe::before {
  top: -2px;
  left: -2px;
  border-width: 1px 0 0 1px;
}

.btn-luxe::after {
  bottom: -2px;
  right: -2px;
  border-width: 0 1px 1px 0;
}

.btn-luxe:hover {
  background: #fff;
  color: #FF9B9B;
  border-color: #FF9B9B;
  box-shadow: 8px 8px 0px #FF9B9B;
  transform: translate(-4px, -4px);
}

.btn-luxe:hover::before, .btn-luxe:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
  top: 0;
  left: 0;
}

.btn-secondary {
  position: relative;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
  padding-bottom: 5px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  transition: all 0.5s ease;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  padding-left: 10px;
}
.group:hover::before {
  left: 100%;
}
.group::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.05),
    transparent
  );
  transition: left 0.7s skewX(-20deg);
  z-index: 10;
}
.group,
.testimonial-card,
.reveal-stagger > *,
.stat-item {
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  will-change: opacity, transform;
}
.testimonial-wrapper {
  display: flex;
  white-space: nowrap;
  width: max-content;
}
.testimonial-card {
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 40px;
  width: 380px;
  margin-right: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0.3);
  transition: transform 0.6s ease;
  transform-origin: top;
}
.testimonial-card:hover::before {
  transform: scaleY(1);
}
.testimonial-card:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(197, 160, 89, 0.2);
}
.testimonial-quote {
  font-size: 50px;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  right: 20px;
  top: 20px;
  font-family: "Cormorant", serif;
}
.client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
  font-size: 14px;
  margin-right: 15px;
}
/* Skeleton Loading State */
.skeleton {
  background: #f6f7f8;
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #f8f8f8 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 2s infinite linear;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-card {
  height: 400px;
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.skeleton-img {
  width: 100%;
  height: 176px; /* matches h-44 */
}

.skeleton-content {
  padding: 24px;
}

.skeleton-line {
  height: 10px;
  margin-bottom: 12px;
  border-radius: 2px;
}

.skeleton-title {
  width: 70%;
  height: 24px;
  margin-bottom: 16px;
}

.skeleton-desc {
  width: 90%;
  height: 12px;
  margin-bottom: 8px;
}

.skeleton-button {
  width: 100%;
  height: 45px;
  margin-top: 20px;
}
