/* ===== HOME PAGE STYLES ===== */

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.3) 60%, rgba(26,26,26,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 680px;
}

.hero-text .label {
  color: var(--gold-light);
  animation: fadeUp 1s 0.3s both;
}

.hero-h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp 1s 0.5s both;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeUp 1s 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.9s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeUp 1s 1.2s both;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.8); }
}

/* Stats Bar */
.stats-bar {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--ivory);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-left: 4px;
}

.stat-item p {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--ivory);
  flex-shrink: 0;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 75%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-accent:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  top: 50%; left: 70%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(200,169,110,0.4);
  z-index: 3;
}

.about-badge i { font-size: 1.3rem; }
.about-badge span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.05em; line-height: 1.3; }

.about-content h2 em { font-style: italic; color: var(--gold); }

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--ivory);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid var(--gold-light);
}

.feature-pill i { color: var(--gold); font-size: 0.75rem; }

/* Services Preview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 44px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-light), var(--ivory));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i { font-size: 1.4rem; color: var(--gold-dark); }

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card p { font-size: 0.95rem; line-height: 1.7; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: gap 0.3s;
}

.service-link:hover { gap: 14px; }

/* Before/After Slider */
.ba-slider-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 520px;
  user-select: none;
}

.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-before img, .ba-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.ba-label {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(26,26,26,0.75);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.ba-label-right { left: auto; right: 20px; background: rgba(200,169,110,0.85); }

.ba-handle {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 3px;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ba-handle-circle {
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  color: var(--charcoal);
  font-size: 1rem;
}

/* Testimonials */
.testimonials-section { overflow: hidden; }

.testimonials-carousel { margin-top: 16px; }

.testimonial-track {
  display: flex;
  gap: 32px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc(100% / 3 - 22px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
}

.testimonial-stars { color: var(--gold); margin-bottom: 20px; letter-spacing: 4px; }

.testimonial-quote {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.carousel-dots { display: flex; gap: 8px; }

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,42,42,0.88), rgba(42,42,42,0.7));
}

.cta-content {
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .stats-grid { flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 calc(100% - 0px); }
  .ba-slider { height: 320px; }
  .hero-actions { flex-direction: column; }
}
