/* ============================================
   Daniel & Constance - Custom Builder
   Luxurious Website Styles
   ============================================ */

/* Google Fonts loaded via <link> in HTML for better performance */

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  /* Primary Colors - from logo */
  --gold: #C4A35A;
  --gold-light: #D4B76A;
  --gold-dark: #A8893E;
  --gold-glow: rgba(196, 163, 90, 0.3);

  /* Background Colors */
  --charcoal: #231F1C;
  --charcoal-light: #2D2824;
  --charcoal-dark: #1A1714;
  --black: #0A0908;

  /* Text Colors */
  --text-primary: #F5F0E8;
  --text-secondary: #B8B0A4;
  --text-muted: #7A746A;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gold-text {
  color: var(--gold);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 24px;
}

.section-description {
  max-width: 600px;
  margin-bottom: 48px;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition-medium);
}

.nav.scrolled {
  background: rgba(10, 9, 8, 0.95);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  height: 50px;
  transition: transform var(--transition-fast);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo img {
  height: 100%;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-medium);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 28px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, var(--charcoal) 0%, var(--black) 70%);
  opacity: 0.8;
}

.hero-content {
  text-align: center;
  z-index: 1;
  padding: 24px;
}

.hero-logo {
  width: min(400px, 80vw);
  margin: 0 auto 48px;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-logo img {
  width: 100%;
  filter: drop-shadow(0 0 60px var(--gold-glow));
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 48px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--gold-glow);
}

/* Hero Buttons Container */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

/* Speak With Us Button */
.speak-with-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.speak-with-us-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(196, 163, 90, 0.1), transparent);
  transition: left 0.5s ease;
}

.speak-with-us-btn:hover {
  background: rgba(196, 163, 90, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--gold-glow), inset 0 0 20px rgba(196, 163, 90, 0.05);
}

.speak-with-us-btn:hover::before {
  left: 100%;
}

.speak-with-us-btn svg {
  animation: micPulse 2s ease-in-out infinite;
}

@keyframes micPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Contact Section Speak Button */
.contact-speak-btn {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
  padding: 20px 40px;
}

/* Hide default ElevenLabs floating widget pill */
elevenlabs-convai {
  z-index: 9999;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ============================================
   About Section
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  background: var(--charcoal-dark);
}

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

.about-content {
  padding-right: 40px;
}

.about-text {
  margin-bottom: 24px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(196, 163, 90, 0.2);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

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

/* ============================================
   Services Section
   ============================================ */
.services {
  padding: var(--section-padding) 0;
  background: var(--black);
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header .section-description {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  padding: 48px 40px;
  background: linear-gradient(145deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
  border: 1px solid rgba(196, 163, 90, 0.1);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 163, 90, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 2rem;
  color: var(--gold);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-description {
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio {
  padding: var(--section-padding) 0;
  background: var(--charcoal-dark);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 80px;
}

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

.portfolio-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 8, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  transform: translateY(20px);
  transition: transform var(--transition-medium);
}

.portfolio-category {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: translateY(20px);
  transition: transform var(--transition-medium) 0.1s;
}

.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-category {
  transform: translateY(0);
}

/* Featured Portfolio Item */
.portfolio-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  padding: var(--section-padding) 0;
  background: var(--black);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px;
  background: linear-gradient(145deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
  border: 1px solid rgba(196, 163, 90, 0.15);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.testimonial-quote::before {
  content: '"';
  display: block;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 24px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--gold);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  padding: var(--section-padding) 0;
  background: var(--charcoal-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-content h2 {
  margin-bottom: 24px;
}

.contact-content p {
  margin-bottom: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 163, 90, 0.1);
  color: var(--gold);
  font-size: 1.25rem;
  border: 1px solid rgba(196, 163, 90, 0.2);
}

.contact-text {
  color: var(--text-secondary);
}

.contact-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
  padding: 16px 20px;
  background: var(--charcoal);
  border: 1px solid rgba(196, 163, 90, 0.2);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  align-self: flex-start;
  padding: 18px 48px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--gold-glow);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 80px 0 40px;
  background: var(--black);
  border-top: 1px solid rgba(196, 163, 90, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 80px;
  margin-bottom: 24px;
}

.footer-logo img {
  height: 100%;
  width: auto;
}

.footer-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 163, 90, 0.1);
  color: var(--gold);
  border: 1px solid rgba(196, 163, 90, 0.2);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(196, 163, 90, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    gap: 60px;
  }

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

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

  .portfolio-item.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 9, 8, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid rgba(196, 163, 90, 0.1);
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .about-content {
    padding-right: 0;
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

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

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

  .portfolio-item.featured {
    grid-column: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 60px;
  }

  .hero-logo {
    width: min(280px, 70vw);
  }

  .hero-cta {
    padding: 16px 36px;
    font-size: 0.85rem;
  }

  .service-card {
    padding: 36px 28px;
  }

  .testimonial-card {
    padding: 40px 24px;
  }

  .testimonial-quote {
    font-size: 1.25rem;
  }
}

/* ============================================
   PREMIUM ENHANCEMENTS
   ============================================ */

/* ---- Page Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 120px;
  animation: preloaderPulse 1.5s ease infinite;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(196, 163, 90, 0.15);
  margin: 28px auto 0;
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: preloaderSlide 1.2s ease infinite;
}

@keyframes preloaderPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.97);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes preloaderSlide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(350%);
  }
}

/* ---- Hero Shimmer / Particles ---- */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(196, 163, 90, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(196, 163, 90, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(196, 163, 90, 0.03) 0%, transparent 70%);
  animation: heroShimmer 8s ease infinite alternate;
  pointer-events: none;
}

@keyframes heroShimmer {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}

.hero .hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero .hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s ease-in-out infinite;
}

.hero .hero-particles span:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 7s;
}

.hero .hero-particles span:nth-child(2) {
  left: 25%;
  top: 60%;
  animation-delay: 1s;
  animation-duration: 5s;
}

.hero .hero-particles span:nth-child(3) {
  left: 40%;
  top: 35%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.hero .hero-particles span:nth-child(4) {
  left: 55%;
  top: 75%;
  animation-delay: 0.5s;
  animation-duration: 6s;
}

.hero .hero-particles span:nth-child(5) {
  left: 70%;
  top: 15%;
  animation-delay: 3s;
  animation-duration: 7s;
}

.hero .hero-particles span:nth-child(6) {
  left: 85%;
  top: 50%;
  animation-delay: 1.5s;
  animation-duration: 5.5s;
}

.hero .hero-particles span:nth-child(7) {
  left: 15%;
  top: 80%;
  animation-delay: 2.5s;
  animation-duration: 6.5s;
}

.hero .hero-particles span:nth-child(8) {
  left: 60%;
  top: 40%;
  animation-delay: 0.8s;
  animation-duration: 8s;
}

.hero .hero-particles span:nth-child(9) {
  left: 90%;
  top: 25%;
  animation-delay: 3.5s;
  animation-duration: 5s;
}

.hero .hero-particles span:nth-child(10) {
  left: 35%;
  top: 90%;
  animation-delay: 1.8s;
  animation-duration: 7.5s;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  20% {
    opacity: 0.6;
    transform: translateY(-20px) scale(1);
  }

  80% {
    opacity: 0.3;
    transform: translateY(-80px) scale(0.5);
  }

  100% {
    opacity: 0;
    transform: translateY(-120px) scale(0);
  }
}

/* ---- CTA Button Glow Pulse ---- */
.hero-cta {
  position: relative;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0;
  z-index: -1;
  animation: ctaGlow 3s ease infinite;
  filter: blur(15px);
}

@keyframes ctaGlow {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 0.4;
  }
}

/* ---- Glassmorphism Service Cards ---- */
.service-card {
  background: linear-gradient(145deg,
      rgba(45, 40, 36, 0.6) 0%,
      rgba(26, 23, 20, 0.4) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(196, 163, 90, 0.12);
  border-radius: 4px;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(196, 163, 90, 0) 0%,
      rgba(196, 163, 90, 0.3) 50%,
      rgba(196, 163, 90, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-medium);
  pointer-events: none;
}

.service-card:hover {
  background: linear-gradient(145deg,
      rgba(45, 40, 36, 0.8) 0%,
      rgba(26, 23, 20, 0.6) 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(196, 163, 90, 0.1);
}

.service-card:hover::after {
  opacity: 1;
}

/* ---- Portfolio Premium Polish ---- */
.portfolio-item {
  border-radius: 6px;
}

.portfolio-item img {
  border-radius: 6px;
}

.portfolio-overlay {
  border-radius: 6px;
}

.portfolio-item.featured::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(196, 163, 90, 0.25);
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
  transition: border-color var(--transition-medium);
}

.portfolio-item.featured:hover::before {
  border-color: rgba(196, 163, 90, 0.5);
}

/* ---- Gold Section Dividers ---- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 40px;
  background: transparent;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.section-divider .divider-icon {
  width: 8px;
  height: 8px;
  margin: 0 20px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.5;
}

/* ---- Noise / Grain Texture Overlay ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 4000;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ---- Custom Gold Cursor (Desktop Only) ---- */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 4500;
  transition: transform 0.15s ease, opacity 0.3s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor-dot.active {
  opacity: 1;
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(196, 163, 90, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 4500;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor-ring.active {
  opacity: 1;
}

.cursor-ring.hover {
  width: 48px;
  height: 48px;
  border-color: var(--gold);
}

@media (max-width: 1024px) {

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

/* ---- Active Nav Link Highlight ---- */
.nav-link.active-section {
  color: var(--gold);
}

.nav-link.active-section::after {
  width: 100%;
}

/* ============================================
   AI CHATBOT WIDGET
   ============================================ */

.chat-widget {
  position: fixed !important;
  bottom: 24px;
  right: 24px;
  z-index: 5000;
  font-family: var(--font-body);
}

/* Floating Chat Button */
.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(196, 163, 90, 0.35);
  transition: all var(--transition-fast);
  position: relative;
}

.chat-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(196, 163, 90, 0.5);
}

.chat-toggle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: chatPulse 2.5s ease infinite;
  z-index: -1;
}

@keyframes chatPulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

.chat-toggle svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.chat-toggle.open svg {
  transform: rotate(90deg) scale(0.9);
}

/* Chat Window */
.chat-window {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 380px;
  max-height: 520px;
  background: rgba(26, 23, 20, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(196, 163, 90, 0.2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.chat-window.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Chat Header */
.chat-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
  border-bottom: 1px solid rgba(196, 163, 90, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.chat-header-info {
  flex: 1;
}

.chat-header-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.chat-header-status {
  font-size: 0.75rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-header-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
}

/* Chat Messages Area */
.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  max-height: 340px;
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 163, 90, 0.2) transparent;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(196, 163, 90, 0.2);
  border-radius: 4px;
}

/* Message Bubbles */
.chat-message {
  display: flex;
  gap: 10px;
  animation: messageIn 0.3s ease;
}

@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.chat-message.bot {
  align-self: flex-start;
}

.chat-message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-message .msg-avatar {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.chat-message.user .msg-avatar {
  background: var(--charcoal-light);
  color: var(--text-secondary);
}

.chat-message .msg-bubble {
  max-width: 260px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-message.bot .msg-bubble {
  background: var(--charcoal);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(196, 163, 90, 0.1);
}

.chat-message.user .msg-bubble {
  background: var(--gold);
  color: var(--black);
  border-bottom-right-radius: 4px;
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: var(--charcoal);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(196, 163, 90, 0.1);
  width: fit-content;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: typingBounce 1.4s ease infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* Chat Input */
.chat-input-area {
  padding: 16px 20px;
  border-top: 1px solid rgba(196, 163, 90, 0.1);
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(35, 31, 28, 0.5);
}

.chat-input {
  flex: 1;
  padding: 10px 16px;
  background: var(--charcoal-dark);
  border: 1px solid rgba(196, 163, 90, 0.15);
  border-radius: 24px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.chat-input::placeholder {
  color: var(--text-muted);
}

.chat-input:focus {
  border-color: var(--gold);
}

.chat-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.chat-send:hover {
  background: var(--gold-light);
  transform: scale(1.08);
}

.chat-send svg {
  width: 18px;
  height: 18px;
}

/* Chat Widget Mobile */
@media (max-width: 480px) {
  .chat-window {
    width: calc(100vw - 32px);
    right: -8px;
    bottom: 68px;
    max-height: 440px;
  }
}

/* ============================================
   WORLD-CLASS ENHANCEMENTS v2
   ============================================ */

/* --- 1. Cinematic Hero Background (Ken Burns) --- */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.png') center/cover no-repeat;
  animation: kenBurns 20s ease-in-out infinite alternate;
  opacity: 0.35;
  z-index: 0;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.15) translate(-2%, -1%);
  }
}

.hero {
  position: relative;
  overflow: hidden;
}

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

.hero-particles {
  z-index: 1;
}

/* --- 2. Directional Reveal Animations --- */
.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-up {
  transform: translateY(60px);
}

.reveal-scale {
  transform: scale(0.85);
}

.reveal-left.active,
.reveal-right.active,
.reveal-up.active,
.reveal-scale.active {
  transform: translate(0) scale(1);
}

/* Staggered service cards */
.service-card:nth-child(1) {
  transition-delay: 0s;
}

.service-card:nth-child(2) {
  transition-delay: 0.1s;
}

.service-card:nth-child(3) {
  transition-delay: 0.2s;
}

.service-card:nth-child(4) {
  transition-delay: 0.3s;
}

.service-card:nth-child(5) {
  transition-delay: 0.4s;
}

.service-card:nth-child(6) {
  transition-delay: 0.5s;
}

/* Staggered portfolio items */
.portfolio-item:nth-child(1) {
  transition-delay: 0s;
}

.portfolio-item:nth-child(2) {
  transition-delay: 0.15s;
}

.portfolio-item:nth-child(3) {
  transition-delay: 0.3s;
}

.portfolio-item:nth-child(4) {
  transition-delay: 0.15s;
}

.portfolio-item:nth-child(5) {
  transition-delay: 0.3s;
}

/* --- 3. Parallax container --- */
.parallax-section {
  transform-style: preserve-3d;
}

/* --- 4. Portfolio Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 85vw;
  max-height: 85vh;
  position: relative;
  transform: scale(0.85);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(196, 163, 90, 0.3);
}

.lightbox-caption {
  text-align: center;
  padding: 20px 0 0;
}

.lightbox-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.lightbox-caption span {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lightbox-close:hover {
  color: var(--gold);
  background: rgba(196, 163, 90, 0.1);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(196, 163, 90, 0.15);
  border: 1px solid rgba(196, 163, 90, 0.3);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(196, 163, 90, 0.3);
  transform: translateY(-50%) scale(1.1);
}

/* Portfolio items cursor */
.portfolio-item {
  cursor: pointer;
}

/* --- 5. Testimonial Carousel --- */
.testimonial-carousel {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
}

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

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.2);
  box-shadow: 0 0 12px var(--gold-glow);
}

.carousel-dot:hover:not(.active) {
  background: rgba(196, 163, 90, 0.3);
}

/* --- 6. Process Timeline --- */
.process {
  padding: var(--section-padding) 0;
  background: var(--charcoal-dark);
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-line {
  display: none;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  z-index: 2;
  position: relative;
  transition: all 0.5s ease;
  box-shadow: 0 0 0 rgba(196, 163, 90, 0);
}

.timeline-item.active .timeline-marker {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 20px var(--gold-glow);
}

.timeline-content {
  flex: 1;
  padding: 8px 0;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    text-align: left;
  }

  .timeline-line {
    left: 28px;
  }

  .timeline-item {
    gap: 24px;
    padding-left: 0;
  }
}

/* --- 7. Enhanced Navigation --- */
.nav-active-indicator {
  position: fixed;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 1001;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1), width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  opacity: 0;
}

.nav-active-indicator.visible {
  opacity: 1;
}

.nav-link.active-link {
  color: var(--gold) !important;
}

/* --- 8. Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

/* --- 9. Before/After Slider --- */
.before-after-section {
  padding: var(--section-padding) 0;
  background: var(--black);
}

.before-after-header {
  text-align: center;
  margin-bottom: 60px;
}

.ba-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  cursor: col-resize;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(196, 163, 90, 0.2);
  aspect-ratio: 4 / 3;
}

.ba-image {
  position: absolute;
  inset: 0;
}

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

.ba-before {
  z-index: 2;
  width: 50%;
  overflow: hidden;
}

.ba-before img {
  width: 200%;
  max-width: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle-line {
  flex: 1;
  width: 3px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.ba-handle-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.ba-label {
  position: absolute;
  bottom: 20px;
  z-index: 4;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.ba-label-before {
  left: 20px;
}

.ba-label-after {
  right: 20px;
}

/* --- 10. Animated Stats --- */
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  position: relative;
}

.stat-number::after {
  content: attr(data-suffix);
}

.stat {
  position: relative;
  padding-bottom: 16px;
}

.stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat.counted::after {
  transform: translateX(-50%) scaleX(1);
}

/* --- Lightbox Mobile --- */
@media (max-width: 768px) {
  .lightbox-prev {
    left: 8px;
    width: 44px;
    height: 44px;
  }

  .lightbox-next {
    right: 8px;
    width: 44px;
    height: 44px;
  }

  .lightbox-content {
    max-width: 95vw;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .ba-slider {
    aspect-ratio: 3 / 4;
  }

  .back-to-top {
    bottom: 90px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ============================================
   CALL US 24/7 SECTION
   ============================================ */

.call-us-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--black) 0%, rgba(196, 163, 90, 0.05) 50%, var(--black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.call-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold));
}

.call-us-content {
  max-width: 600px;
  margin: 0 auto;
}

.call-us-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(196, 163, 90, 0.12);
  border: 1px solid rgba(196, 163, 90, 0.3);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(196, 163, 90, 0.2);
  }

  50% {
    box-shadow: 0 0 20px 4px rgba(196, 163, 90, 0.15);
  }
}

.call-us-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.call-us-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.call-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--black);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.call-us-btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 163, 90, 0.3);
}

.call-us-btn-outline {
  background: transparent;
  color: var(--gold);
}

.call-us-btn-outline:hover {
  background: rgba(196, 163, 90, 0.1);
  color: var(--gold);
}

.call-us-divider {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.6;
}

/* ElevenLabs widget z-index (above chat widget) */
elevenlabs-convai {
  z-index: 10000 !important;
}

@media (max-width: 768px) {
  .call-us-section {
    padding: 60px 0;
  }

  .call-us-actions {
    flex-direction: column;
    gap: 12px;
  }

  .call-us-btn {
    width: 100%;
    justify-content: center;
  }

  .call-us-divider {
    margin: 4px 0;
  }
}
.speak-with-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: transparent;
  color: #C4A35A;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid #C4A35A;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.speak-with-us-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(196,163,90,0.1), transparent);
  transition: left 0.5s ease;
}
.speak-with-us-btn:hover {
  background: rgba(196,163,90,0.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(196,163,90,0.15), inset 0 0 20px rgba(196,163,90,0.05);
}
.speak-with-us-btn:hover::before { left: 100%; }
.speak-with-us-btn svg { animation: micPulse 2s ease-in-out infinite; }
@keyframes micPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* Skip to content — accessibility */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  padding: 12px 24px;
  z-index: 100000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 0;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  padding: var(--section-padding) 0;
  background: var(--charcoal-dark);
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(196, 163, 90, 0.15);
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question span {
  flex: 1;
  margin-right: 24px;
}

.faq-question svg {
  color: var(--gold);
  transition: transform var(--transition-medium);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-medium);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 32px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  padding-right: 48px;
}

@media (max-width: 768px) {
  .faq {
    padding: 80px 0;
  }

  .faq-header {
    margin-bottom: 60px;
  }

  .faq-question {
    font-size: 1.1rem;
    padding: 24px 0;
  }

  .faq-question span {
    margin-right: 16px;
  }

  .faq-answer p {
    padding-right: 24px;
    font-size: 0.95rem;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
  }
}

/* ============================================
   Blog Post Pages
   ============================================ */
.blog-post {
  padding: 140px 0 80px;
  background: var(--black);
}

.blog-post-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.blog-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-post-category {
  background: var(--gold);
  color: var(--black);
  padding: 4px 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.blog-post-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.blog-post-excerpt p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

.blog-post-image {
  max-width: 800px;
  margin: 0 auto 60px;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: auto;
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.blog-post-content h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.8rem;
  margin: 48px 0 24px;
  line-height: 1.3;
}

.blog-post-content h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin: 36px 0 16px;
  font-weight: 600;
}

.blog-post-content p {
  margin-bottom: 24px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 24px 0 24px 32px;
}

.blog-post-content ul li,
.blog-post-content ol li {
  margin-bottom: 12px;
  padding-left: 8px;
}

.blog-post-content ul li::marker {
  color: var(--gold);
}

.blog-post-cta {
  background: var(--charcoal);
  border: 1px solid rgba(196, 163, 90, 0.2);
  padding: 40px;
  margin-top: 60px;
  text-align: center;
}

.blog-post-cta h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.blog-post-cta p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.btn-cta {
  display: inline-block;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 163, 90, 0.3);
}

@media (max-width: 768px) {
  .blog-post {
    padding: 100px 24px 60px;
  }

  .blog-post-meta {
    flex-direction: column;
    gap: 8px;
  }

  .blog-post-content {
    padding: 0 24px;
  }

  .blog-post-content h2 {
    font-size: 1.5rem;
    margin: 36px 0 20px;
  }

  .blog-post-content h3 {
    font-size: 1.2rem;
    margin: 28px 0 16px;
  }

  .blog-post-cta {
    padding: 32px 24px;
    margin-top: 40px;
  }
}
