/* ============================================================
   SUVED CREATIONS - Home Page Styles
   ============================================================ */

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

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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.1);
  transition: transform 8s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.2) 40%,
    rgba(10, 10, 10, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-label::before {
  content: "";
  width: 50px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.95;
  margin-bottom: 30px;
  color: #ffffff;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: block;
  transform: translateY(110%);
}

.hero-description {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}

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

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

/* Slide navigation dots */
.hero-dots {
  position: absolute;
  right: var(--container-padding);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

/* --- About Preview Section --- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-preview-image {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--accent);
  z-index: -1;
}

.about-preview-content {
  padding: 40px 0;
}

.about-preview-content .section-label {
  margin-bottom: 20px;
}

.about-preview-content h2 {
  margin-bottom: 25px;
}

.about-preview-content p {
  margin-bottom: 15px;
}

.about-preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light-muted);
}

/* --- Services Marquee Section --- */
.services-marquee {
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* --- Featured Facades Section --- */
.featured-facades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.facade-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.facade-card-image {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.facade-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.facade-card:hover .facade-card-image img {
  transform: scale(1.08);
}

.facade-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.9) 0%,
    transparent 100%
  );
  z-index: 2;
}

.facade-card-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 8px;
}

.facade-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.facade-card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out-expo);
  z-index: 3;
}

.facade-card-arrow svg {
  width: 20px;
  height: 20px;
}

.facade-card:hover .facade-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* --- Horizontal Scroll Gallery --- */
.horizontal-scroll {
  overflow: hidden;
  padding: var(--section-padding) 0;
}

.horizontal-scroll-header {
  margin-bottom: 60px;
}

.horizontal-scroll-track {
  display: flex;
  gap: 30px;
  width: max-content;
}

.horizontal-scroll-item {
  width: 40vw;
  min-width: 350px;
  flex-shrink: 0;
}

.horizontal-scroll-item-image {
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
  margin-bottom: 20px;
}

.horizontal-scroll-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.horizontal-scroll-item:hover .horizontal-scroll-item-image img {
  transform: scale(1.05);
}

.horizontal-scroll-item h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.horizontal-scroll-item p {
  font-size: 0.85rem;
}

/* --- Testimonials Section --- */
.testimonials-slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-slide {
  text-align: center;
  padding: 0 20px;
}

.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 30px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px;
  overflow: hidden;
  border: 2px solid var(--accent);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 3px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.testimonial-nav-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.testimonial-nav-btn svg {
  width: 20px;
  height: 20px;
}

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

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

.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* --- Clients Section --- */
.clients-marquee {
  padding: 50px 0;
  overflow: hidden;
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 25s linear infinite;
}

.client-logo {
  height: 50px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.cta-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.8);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 20px;
  color: #ffffff;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .about-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-preview-image {
    height: 400px;
  }

  .featured-facades-grid {
    grid-template-columns: 1fr 1fr;
  }

  .facade-card-image {
    height: 350px;
  }

  .horizontal-scroll-item {
    width: 60vw;
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }

  .hero-dots {
    display: none;
  }

  .featured-facades-grid {
    grid-template-columns: 1fr;
  }

  .facade-card-image {
    height: 300px;
  }

  .about-preview-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .about-preview-image-accent {
    display: none;
  }

  .horizontal-scroll-item {
    width: 80vw;
  }

  .horizontal-scroll-item-image {
    height: 45vh;
    min-height: 280px;
  }

  .testimonial-text {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  .testimonial-nav {
    gap: 15px;
    margin-top: 30px;
  }

  .testimonial-nav-btn {
    width: 44px;
    height: 44px;
  }

  .about-preview-image {
    height: 350px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-preview-stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }

  .stat-number {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }
}
