/* ============================================================
   GLORIOUS GROUP — HOME PAGE STYLES
   Hero section, intro, services, projects, process,
   testimonials, CTA, and page-specific layouts
   ============================================================ */

/* ============================================================
   HERO SECTION — Canvas Scroll Animation
   ============================================================ */
.hero-section {
  position: relative;
  height: 600vh;
  background-color: transparent !important;
  color: #fff;
  z-index: 1;
}

/* Single sticky container — fills the viewport and stays pinned */
.hero-canvas-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  background-color: transparent !important;
}

.hero-canvas-wrapper canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: transparent;
}

/* Gradient overlay on top of the canvas */
.hero-canvas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Hero text overlay — positioned absolutely INSIDE hero-canvas-wrapper */
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  z-index: 10;
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 0;
  text-align: center;
}

.hero-content.faded {
  opacity: 0;
  transform: translateY(-20px);
}

.hero-content .overline {
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-size: 0.75rem;
  animation: fadeInUp 1s ease 0.3s both;
  display: block;
}

.hero-content h1 {
  color: #ffffff;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-content .hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease 0.7s both;
}

/* Elyse Style Hero (PC Only) */
@media (min-width: 1024px) {
  .hero-content.elyse-style {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    margin-top: 30vh;
  }
  
  .hero-content.elyse-style .giant-company-name {
    font-family: 'Playfair Display', serif;
    font-size: 10vw;
    line-height: 0.85;
    color: #fff;
    margin: 0;
    margin-bottom: -0.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    animation: fadeInUp 1.2s ease 0.3s both;
  }

  .hero-content.elyse-style .giant-company-sub {
    display: block;
    font-size: 0.75em;
    letter-spacing: 0.15em;
    font-weight: 400;
  }

  .hero-content.elyse-style .hero-right-text {
    max-width: 420px;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.5s both;
  }

  .hero-content.elyse-style .hero-right-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .hero-content.elyse-style .hero-right-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
  }
}

/* Mobile Elyse Style Fallback */
@media (max-width: 1023px) {
  .hero-content.elyse-style {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30vh;
  }
  .hero-content.elyse-style .giant-company-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 12vw, 6rem);
    line-height: 1;
    margin-bottom: 2rem;
    color: #fff;
    animation: fadeInUp 1s ease 0.2s both;
  }
  .hero-content.elyse-style .hero-right-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    animation: fadeInUp 1s ease 0.4s both;
  }
  .hero-content.elyse-style .hero-right-text p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 1s ease 0.6s both;
  }
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: auto;
  animation: fadeInUp 1.2s ease 1.2s both;
  transition: opacity 0.4s ease;
}

.hero-scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-scroll-indicator span {
  color: rgba(255, 255, 255, 0.4);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Hero gradient transition to content */
.hero-gradient-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  z-index: 9;
  pointer-events: none;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section {
  position: relative;
  z-index: 2;
  background: transparent;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.intro-content .overline {
  margin-bottom: 1rem;
}

.intro-content h2 {
  margin-bottom: 1.5rem;
}

.intro-content p {
  margin-bottom: 1.5rem;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.intro-stat .stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.intro-stat .stat-label {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.intro-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-tertiary);
  box-shadow: var(--card-shadow);
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-visual .floating-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  color: #ffffff;
}

.floating-badge .badge-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.floating-badge .badge-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: transparent;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--gold);
}

.why-card .card-icon {
  margin: 0 auto 1.25rem;
}

.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
}

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services-section {
  background: transparent;
}

.card-stack-wrapper {
  width: 100%;
  position: relative;
  overflow-x: clip; /* Fixes preserve-3d rendering bug on Safari */
  padding: 2rem 0;
}

.card-stack-stage {
  position: relative;
  width: 100%;
  height: 500px;
  outline: none;
}

.card-stack-spotlight-top,
.card-stack-spotlight-bottom {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
}

.card-stack-spotlight-top {
  top: 1.5rem;
  height: 12rem;
  width: 70%;
  background: rgba(0, 0, 0, 0.05);
}
[data-theme="dark"] .card-stack-spotlight-top {
  background: rgba(255, 255, 255, 0.05);
}

.card-stack-spotlight-bottom {
  bottom: 0;
  height: 10rem;
  width: 76%;
  background: rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] .card-stack-spotlight-bottom {
  background: rgba(0, 0, 0, 0.3);
}

.card-stack-3d-context {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 1100px;
}

.card-stack-item {
  position: absolute;
  bottom: 0;
  width: clamp(280px, 35vw, 400px);
  aspect-ratio: 4/5;
  max-height: 420px;
  border-radius: 1.5rem;
  border: 4px solid var(--border);
  background: var(--card-bg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  overflow: visible;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  cursor: pointer;
  user-select: none;
  /* CSS transitions for all properties calculated by JS */
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
}
[data-theme="dark"] .card-stack-item {
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-stack-item.active {
  cursor: grab;
}
.card-stack-item.active:active {
  cursor: grabbing;
}

.card-stack-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: calc(1.5rem - 4px);
  overflow: hidden;
  transform-style: preserve-3d;
}

.card-stack-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.card-stack-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  pointer-events: none;
}

.card-stack-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.card-stack-dots {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.card-stack-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-tertiary);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  border: none;
  opacity: 0.5;
}

.card-stack-dot:hover {
  opacity: 1;
}

.card-stack-dot.active {
  background: var(--text-primary);
  opacity: 1;
  transform: scale(1.2);
}

/* ============================================================
   FEATURED PROJECTS
   ============================================================ */
.projects-section {
  background: transparent;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--bg-secondary);
}

.project-card.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}


.luxury-slide-inner 
.luxury-slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover { box-shadow: var(--card-shadow-hover); }
.project-card:hover img {
  transform: scale(1.06);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

.project-card-overlay .overline {
  color: var(--gold-light);
  font-size: 0.7rem;
  margin-bottom: 0.4rem;
}

.project-card-overlay h4 {
  color: #ffffff;
  font-size: 1.2rem;
}

.project-card-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  background: transparent;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-app);
  transform: scale(1.1);
  box-shadow: 0 8px 24px var(--gold-glow);
}

.process-step h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: 0 3rem;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-quote-mark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: -1rem;
}

.testimonial-text {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-author-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.testimonial-author-info h5 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-author-info p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  color: var(--gold);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.testimonial-dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: transparent;
  text-align: center;
}

.cta-inner {
  background: linear-gradient(135deg, #1a1a1a, #2a2520);
  border-radius: 28px;
  padding: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner .overline {
  color: var(--gold-light);
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.cta-inner .btn-primary {
  background: var(--text-on-dark);
  color: var(--bg-app);
}
.cta-inner .btn-primary:hover {
  background: var(--border-light);
}

.cta-inner h2 {
  color: #ffffff;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner .btn-primary {
  position: relative;
  z-index: 1;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================================
   RESPONSIVE — HOME PAGE
   ============================================================ */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intro-visual {
    aspect-ratio: 16/10;
    max-height: 400px;
  }

  .intro-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card.large {
    grid-column: span 2;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 350vh;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .intro-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    width: 280px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card.large {
    grid-column: span 1;
  }

  .project-card {
    aspect-ratio: 16/10;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-inner {
    padding: 2.5rem 1.5rem;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline-white {
    width: 100%;
    justify-content: center;
  }

  .intro-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .intro-stat .stat-number {
    font-size: 1.6rem;
  }
}

/* ============================================================
   PREMIUM LOADING OVERLAY
   ============================================================ */
.premium-loader {
  position: fixed;
  inset: 0;
  background-color: #000000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.premium-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-logo-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0;
  animation: glowFade 2.5s ease-in-out forwards;
}

.loader-logo {
  height: 80px;
  width: auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.9);
  animation: logoReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

.loader-text-wrapper {
  overflow: hidden;
  box-shadow: var(--card-shadow);
  box-shadow: var(--card-shadow);
  padding: 0.2rem;
}

.loader-text {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: #ffffff;
  opacity: 0;
  transform: translateY(100%);
  animation: textSlideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
}

@keyframes logoReveal {
  to { opacity: 1; transform: scale(1); }
}

@keyframes textSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowFade {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
  100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
}

/* Loader exit */
.premium-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Progress bar */
.loader-progress {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  .intro-visual {
    aspect-ratio: 16/10;
    max-height: 400px;
  }

  .intro-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card.large {
    grid-column: span 2;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 350vh;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .intro-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    width: 280px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card.large {
    grid-column: span 1;
  }

  .project-card {
    aspect-ratio: 16/10;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-inner {
    padding: 2.5rem 1.5rem;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline-white {
    width: 100%;
    justify-content: center;
  }

  .intro-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .intro-stat .stat-number {
    font-size: 1.6rem;
  }
}

/* ============================================================
   PREMIUM LOADING OVERLAY
   ============================================================ */
.premium-loader {
  position: fixed;
  inset: 0;
  background-color: #000000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.premium-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-logo-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0;
  animation: glowFade 2.5s ease-in-out forwards;
}

.loader-logo {
  height: 80px;
  width: auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.9);
  animation: logoReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

.loader-text-wrapper {
  overflow: hidden;
  box-shadow: var(--card-shadow);
  box-shadow: var(--card-shadow);
  padding: 0.2rem;
}

.loader-text {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: #ffffff;
  opacity: 0;
  transform: translateY(100%);
  animation: textSlideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
}

@keyframes logoReveal {
  to { opacity: 1; transform: scale(1); }
}

@keyframes textSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowFade {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
  100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
}

/* Loader exit */
.premium-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Progress bar */
.loader-progress {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin-top: 2rem;
  overflow: hidden;
}

.loader-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, var(--gold, #c9ab6d), var(--gold-light, #e0c88e));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s ease;
}

.loader-counter {
  font-family: 'DM Sans', 'Inter', monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
  letter-spacing: 0.1em;
}


/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9997;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px; /* Above the bottom pill nav */
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--gold);
}

.card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 50%;
  padding: 14px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--bg-app);
}

.why-card h4 {
  font-family: 'DM Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .why-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   PROCESS SECTION (4-Step Timeline) — Scroll Light-Up
   ============================================================ */
.process-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 4rem;
  margin-top: 4rem;
  padding: 2rem 0;
}

/* Connecting line behind the steps */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

/* Animated progress line */
.process-timeline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  z-index: 0;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-timeline.line-25::after { transform: translateX(-50%) scaleY(0.25); }
.process-timeline.line-50::after { transform: translateX(-50%) scaleY(0.5); }
.process-timeline.line-75::after { transform: translateX(-50%) scaleY(0.75); }
.process-timeline.line-100::after { transform: translateX(-50%) scaleY(1); }

.process-step {
  width: 50%;
  text-align: right;
  padding-right: 4rem;
  position: relative;
  z-index: 1;
  opacity: 0.25;
  transform: translateY(10px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.process-step:nth-child(even) {
  align-self: flex-end;
  text-align: left;
  padding-right: 0;
  padding-left: 4rem;
  align-items: flex-start;
}

/* Lit state — triggered on scroll */
.process-step.lit {
  opacity: 1;
  transform: translateY(0);
}

/* Timeline Dot */
.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -6px; /* center on the 2px line */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--border);
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:nth-child(even)::after {
  right: auto;
  left: -6px;
}

.process-step.lit::after {
  background: var(--bg-app);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.process-number {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 6rem;
  font-weight: 800;
  color: transparent !important;
  -webkit-text-stroke: 2px rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When lit, the number gets the gold stroke */
.process-step.lit .process-number {
  -webkit-text-stroke: 2px var(--gold-light);
  transform: scale(1.05);
}

.process-step h4 {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.process-step p {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 350px;
}

/* ============================================================
   PROCESS SECTION - MOBILE OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  .process-timeline {
    gap: 3.5rem;
    padding-left: 10px;
  }
  .process-timeline::before,
  .process-timeline::after {
    left: 20px;
    right: auto;
    transform: none;
  }
  
  .process-step,
  .process-step:nth-child(even) {
    width: 100%;
    align-self: flex-start;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
    padding-right: 0;
    gap: 0.25rem;
    position: relative;
  }
  
  .process-step::after,
  .process-step:nth-child(even)::after {
    left: 14px; 
    right: auto;
    top: 35px; 
  }
  
  .process-number {
    font-size: 4.5rem;
  }
  
  .process-step h4 {
    font-size: 1.3rem;
  }
  
  .process-step p {
    max-width: none;
    font-size: 0.95rem;
    opacity: 0.8;
  }
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg-tertiary);
}

.testimonials-carousel {
  max-width: 850px;
  margin: 3rem auto 0;
  position: relative;
}

.testimonial-slide {
  display: none;
  text-align: left;
  animation: fadeSlideIn 0.5s ease;
  background: var(--bg-app);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

[data-theme="dark"] .testimonial-slide {
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.testimonial-slide::before {
  content: "“";
  position: absolute;
  top: 20px;
  right: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.1;
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-stars {
  display: flex;
  justify-content: flex-start;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  stroke: var(--gold);
}

.testimonial-text {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.testimonial-author-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.testimonial-author-info h5 {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  font-family: 'Outfit', sans-serif;
}

.testimonial-author-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  margin-top: 0.25rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2.5rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--text-tertiary);
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--gold);
  opacity: 1;
  transform: scale(1.2);
}


/* ============================================================
   MAPS SECTION
   ============================================================ */
.maps-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.maps-wrapper {
  margin-top: 2rem;
}

.maps-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: 'DM Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--gold);
  color: #fff;
}

.btn-secondary svg {
  transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .maps-wrapper iframe {
    height: 280px;
  }
}

/* ============================================================
   BACKGROUND HUGE TEXT
   ============================================================ */
.bg-huge-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(8rem, 15vw, 20rem);
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0.015;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: 0.1em;
}

/* ============================================================
   LUXURY PROJECTS SLIDER
   ============================================================ */
.luxury-projects-section {
  padding: 4rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.luxury-projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-secondary);
}

.lp-pagination {
  display: flex;
  gap: 1rem;
}

.lp-page {
  cursor: pointer;
  transition: color 0.3s;
}

.lp-page.active {
  color: var(--gold-light);
}

.luxury-slider-container {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  padding: 4rem 0;
}

.luxury-slider-track {
  display: flex;
  align-items: center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.luxury-slide {
  flex: 0 0 clamp(280px, 35vw, 550px);
  padding: 0 2vw;
  opacity: 0.3;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(0.85);
}

.luxury-slide.active {
  opacity: 1;
  transform: scale(1);
}

.luxury-slide-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 65vh;
}

.luxury-slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.luxury-title-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.luxury-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.luxury-slide.active .luxury-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.luxury-slide-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.luxury-slide.active .luxury-slide-footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.luxury-slide-footer p {
  max-width: 300px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.lp-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
}

.lp-control:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.lp-control svg {
  width: 24px;
  height: 24px;
}

.lp-control.prev { left: 4vw; }
.lp-control.next { right: 4vw; }

.luxury-slide-inner .luxury-slide-video { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1); will-change: transform; }

/* ============================================================
   BEHIND THE BUILD (Process)
   ============================================================ */
.build-section {
  background-color: var(--bg-primary);
}


/* ============================================================
   PROJECT GALLERY (Masonry)
   ============================================================ */
.gallery-section {
  background-color: var(--bg-secondary);
}
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
  margin-top: 40px;
}
.masonry-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.masonry-item:nth-child(even) {
  grid-row: span 2;
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.masonry-item:hover img {
  transform: scale(1.08);
}


/* ============================================================
   BEHIND THE BUILD (Carousel)
   ============================================================ */
.build-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.build-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.build-slide {
  min-width: 100%;
  height: 500px;
}

.build-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.build-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.build-control:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.1);
  border-color: var(--gold);
}

.build-control.prev { left: 20px; }
.build-control.next { right: 20px; }

.build-control svg {
  width: 24px;
  height: 24px;
}

.build-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

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

.build-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .build-slide {
    height: 350px;
  }
  .build-control {
    width: 40px;
    height: 40px;
  }
}




/* ============================================================
   TESTIMONIALS V2 - Premium 3-Card Grid
   ============================================================ */
.testimonials-section-v2 {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}

.testimonial-card-v2 {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  border: 1px solid var(--border-light);
  min-height: 340px;
}

.testimonial-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .testimonial-card-v2:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card-v2.featured {
  background: var(--gold);
  border: none;
  transform: scale(1.04);
}

.testimonial-card-v2.featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.testimonial-card-v2.featured .tcard-text,
.testimonial-card-v2.featured .tcard-stars,
.testimonial-card-v2.featured .tcard-info h5 {
  color: var(--bg-primary);
}

.testimonial-card-v2.featured .tcard-info span {
  color: var(--bg-secondary);
}

.testimonial-card-v2.featured .tcard-quote-icon {
  color: var(--bg-primary);
  opacity: 0.2;
}

.testimonial-card-v2.featured .tcard-avatar {
  background: var(--bg-primary);
  color: var(--gold);
}

.testimonial-card-v2.featured .tcard-badge {
  background: var(--bg-primary);
  color: var(--gold);
}

.tcard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.tcard-quote-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  opacity: 0.3;
}

.tcard-quote-icon svg {
  width: 100%;
  height: 100%;
}

.tcard-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 3px;
}

.tcard-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 24px;
}

.tcard-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.testimonial-card-v2.featured .tcard-bottom {
  border-top-color: rgba(0, 0, 0, 0.1);
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
}

.tcard-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 2px;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
}

.tcard-info span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: 'DM Sans', sans-serif;
}

.tcard-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   CTA V2 - Premium with Glow & Trust Badges
   ============================================================ */
.cta-section-v2 {
  background: transparent;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-inner-v2 {
  background: linear-gradient(145deg, #111111, #1a1a1a, #222222);
  border-radius: 32px;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-content-v2 .overline {
  color: rgba(255, 255, 255, 0.45);
}

.cta-content-v2 h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-content-v2 h2 em {
  font-style: italic;
  color: #ffffff;
  
}

.cta-content-v2 > p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 550px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-buttons-v2 {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-btn-main {
  background: #ffffff !important;
  color: #111 !important;
  padding: 16px 32px !important;
  border-radius: 14px !important;
  font-size: 1rem !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.1);
  background: #f0f0f0 !important;
}

.cta-btn-main svg {
  width: 18px;
  height: 18px;
}

.cta-btn-phone {
  padding: 16px 28px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  background: transparent !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem !important;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.cta-btn-phone:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.cta-trust-v2 {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
}

.cta-trust-item svg {
  opacity: 0.5;
  stroke: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-card-v2.featured {
    transform: none;
    order: -1;
  }
  .testimonial-card-v2.featured:hover {
    transform: translateY(-8px);
  }
  .testimonial-card-v2 {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .cta-buttons-v2 {
    flex-direction: column;
    align-items: center;
  }
  .cta-trust-v2 {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .cta-inner-v2 {
    border-radius: 24px;
  }
}

/* ============================================================
   WHY CHOOSE US V2 - Split Layout with Numbered Cards
   ============================================================ */
.why-section-v2 {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.why-v2-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.why-v2-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.why-v2-left > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.why-v2-accent-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.why-v2-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-v2-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.why-v2-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.3s ease;
  border-radius: 0 3px 3px 0;
}

.why-v2-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--gold);
}

[data-theme="dark"] .why-v2-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.why-v2-card:hover::before {
  background: var(--gold);
}

.why-v2-num {
  font-family: 'Outfit', 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border);
  min-width: 50px;
  line-height: 1;
  transition: -webkit-text-stroke 0.3s ease;
}

.why-v2-card:hover .why-v2-num {
  -webkit-text-stroke-color: var(--gold);
}

.why-v2-card-content {
  flex: 1;
}

.why-v2-card-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.why-v2-card-content p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.why-v2-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.why-v2-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-secondary);
  transition: stroke 0.3s ease;
}

.why-v2-card:hover .why-v2-icon {
  background: var(--gold);
  transform: scale(1.1);
}

.why-v2-card:hover .why-v2-icon svg {
  stroke: var(--bg-primary);
}

/* ============================================================
   HOW IT WORKS V2 - Horizontal Grid Cards
   ============================================================ */
.process-section-v2 {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-secondary);
}

.process-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.process-v2-step {
  position: relative;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-v2-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px;
  right: 0;
  width: 1px;
  height: 40%;
  background: linear-gradient(to bottom, var(--border), transparent);
}

.pv2-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--border);
  line-height: 1;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.process-v2-step:hover .pv2-number {
  -webkit-text-stroke-color: var(--gold);
  transform: scale(1.1);
}

.pv2-connector {
  width: 40px;
  height: 2px;
  background: var(--border-light);
  margin-bottom: 20px;
  border-radius: 2px;
  transition: background 0.3s ease, width 0.3s ease;
}

.process-v2-step:hover .pv2-connector {
  background: var(--gold);
  width: 60px;
}

.pv2-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pv2-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.pv2-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-secondary);
  transition: stroke 0.3s ease;
}

.process-v2-step:hover .pv2-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.process-v2-step:hover .pv2-icon svg {
  stroke: var(--bg-primary);
}

.pv2-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.pv2-content p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 240px;
}

/* Responsive */
@media (max-width: 900px) {
  .why-v2-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .why-v2-left h2 br {
    display: none;
  }
  .process-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .process-v2-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .why-v2-card {
    padding: 18px 16px;
    gap: 14px;
  }
  .why-v2-num {
    font-size: 1.6rem;
    min-width: 35px;
  }
  .why-v2-icon {
    display: none;
  }
  .process-v2-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ABOUT / WHO WE ARE V2 - Premium Layout
   ============================================================ */
.intro-section-v2 {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.about-v2-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.about-v2-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-end;
}

.about-v2-header .overline {
  margin-bottom: 1rem;
}

.about-v2-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0;
}

.about-v2-header h2 em {
  font-style: italic;
  color: #ffffff;
  
}

.about-v2-desc p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-v2-desc p:last-child {
  margin-bottom: 0;
}

.about-v2-bottom {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
}

.about-v2-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-right: 2rem;
  border-right: 1px solid var(--border-light);
}

.about-v2-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.av2-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.av2-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-v2-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  height: 500px;
}

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

.about-v2-image:hover img {
  transform: scale(1.05);
}

.about-v2-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--bg-primary);
  padding: 20px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 1px solid var(--border-light);
}

.av2-badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.av2-badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-v2-top {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: flex-start;
  }
  .about-v2-bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-v2-stats {
    flex-direction: row;
    justify-content: space-between;
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 2rem;
  }
  .av2-stat-num {
    font-size: 2.8rem;
  }
}

@media (max-width: 600px) {
  .about-v2-stats {
    flex-direction: column;
    text-align: center;
  }
  .about-v2-image {
    height: 400px;
  }
  .about-v2-badge {
    bottom: 15px;
    right: 15px;
    padding: 15px 20px;
  }
  .av2-badge-num {
    font-size: 2rem;
  }
}

