/* ═══════════════════════════════════════════════
   Aurista Interiors — Home Page Styles
   ═══════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-carousel {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active img {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(44, 44, 44, 0.65) 0%,
    rgba(44, 44, 44, 0.2) 60%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 700px;
  animation: heroIn 1.2s ease forwards;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-tag {
  display: inline-block;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.dot {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--gold);
  width: 48px;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
  z-index: 3;
  pointer-events: none;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  cursor: pointer;
  pointer-events: all;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--cream);
  padding: 28px 40px;
  display: flex;
  gap: 40px;
  z-index: 3;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-mid);
  margin-top: 2px;
}

/* ── WHY AURISTA ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.why-left img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.why-right {
  background: var(--charcoal);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-right h2,
.why-right .section-label span {
  color: var(--gold-light);
}
.why-right .section-label::before {
  background: var(--gold);
}
.why-right .section-desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 100%;
}
.features-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.feature-text h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.feature-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ── SERVICES CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--border);
}
.service-card {
  background: var(--cream);
  padding: 44px 36px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 500;
}

/* ── PROCESS ── */
.process-section {
  background: var(--warm-white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-light);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold-dark);
}
.step-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.75rem;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--warm-white);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testi-card {
  background: white;
  padding: 36px;
  border: 1px solid var(--border);
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
}
.testi-text {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.85;
  font-style: italic;
  font-weight: 300;
}
.testi-author {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold-dark);
}
.testi-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 1px;
}
.testi-role {
  font-size: 0.68rem;
  color: var(--light-mid);
  letter-spacing: 1px;
}
.stars {
  color: var(--gold);
  font-size: 0.75rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

/* ── BRAND STRIP ── */
.brand-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.brand-strip::before,
.brand-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.brand-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.brand-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}
.brand-strip-label {
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--light-mid);
  margin-bottom: 22px;
}
.brand-track-wrap {
  overflow: hidden;
}
.brand-track {
  display: flex;
  width: max-content;
  animation: brandScroll 28s linear infinite;
}
.brand-track:hover {
  animation-play-state: paused;
}
@keyframes brandScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brand-logo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 44px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-logo-item img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.3s;
}
.brand-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
}
.brand-logo-item span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--light-mid);
  letter-spacing: 1px;
  transition: color 0.3s;
}
.brand-logo-item:hover span {
  color: var(--gold-dark);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-stats {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}
/* ── FOOTER LOGO ── */
.footer-logo-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-text .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: white;
  letter-spacing: 2px;
}

.footer-logo-text .tagline {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
  display: block;
  margin-bottom: 0;
}
