/* --- Base Styles & Variables --- */
:root {
  --gold: #cda274;
  --dark-bg: #141414;
  --light-bg: #fafafa;
  --dark-text: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #a0a0a0;
  --gray-text: #777777;
  --border-color: rgba(255, 255, 255, 0.1);
  --accent-color: #cda274;
  --font-main: "Outfit", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--light-bg);
  line-height: 1.6;
}

/* --- Typography & Utilities --- */
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 600;
}

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

/* .text-center {
    text-center;
} */

/* --- Buttons --- */
.btn-primary {
  background-color: var(--gold);
  color: var(--text-light);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #a88550;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid var(--gold);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: var(--gold);
}

/* --- Navbar --- */
/* --- Navbar (Dark Overlay) --- */
.navbar-dark {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  color: #fff;
  transition: background 0.3s;
}

.navbar-dark.scrolled {
  position: fixed;
  background-color: rgba(20, 20, 20, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

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

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}

.nav-links a.active {
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background-color: var(--gold);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* --- Desktop layout adjustments for the new wrapper --- */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 40px;
}

/* --- Hamburger Icon Styles --- */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 101; /* Keeps it above the mobile menu */
}

.hamburger .bar {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* --- Mobile Responsive Navigation --- */
@media (width < 1024px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: -100%; /* Hidden off-screen to the left by default */
    flex-direction: column;

    /* 🔥 ADD THESE 3 LINES */
    align-items: center;
    justify-content: flex-start;
    height: calc(100vh - 80px);
    z-index: 999;

    background-color: rgba(20, 20, 20, 0.98);
    width: 100%;
    padding: 30px 0 50px 0;
    transition: left 0.4s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    padding-left: 0;
  }

  /* Triggers the slide-in effect */
  .nav-menu.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    width: 100%;
    gap: 25px;
    margin-bottom: 40px;
  }

  .nav-actions {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .phone-info {
    justify-content: center;
  }

  /* Hamburger Animation: Turns into an 'X' when active */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
      center/cover;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.hero-content {
  max-width: 600px;
  color: var(--text-light);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  font-weight: 300;
}

/* --- Features Section --- */
.features {
  padding: 80px 5% 40px;
  background-color: #fff;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 2.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: -120px; /* Pulls cards up over the hero/gap slightly as seen in design */
  position: relative;
  z-index: 10;
}

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.card-number {
  color: rgba(193, 155, 98, 0.2);
  font-size: 3rem;
  margin-bottom: 15px;
}

.feature-card h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
}

/* --- Dark Promo Section --- */
.dark-promo {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 100px 5%;
}

.promo-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.promo-text {
  flex: 1;
}

.promo-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.promo-text p {
  color: #ccc;
  margin-bottom: 40px;
}

.promo-image {
  flex: 1;
}

.promo-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: -20px 20px 0px rgba(255, 255, 255, 0.05);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .promo-container {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
}

/* --- Base Variables & Reset --- */
:root {
  --gold: #cda274; /* Matches the prominent gold/tan color */
  --dark-text: #1a1a1a;
  --gray-text: #777777;
  --bg-color: #fafafa;
  --card-bg: #ffffff;
  --font-main: "Outfit", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--dark-text);
  /* Adding a subtle repeating linear gradient to mimic the faint architectural background lines */
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 100px,
    rgba(0, 0, 0, 0.01) 100px,
    rgba(0, 0, 0, 0.01) 102px
  );
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
}

/* --- Section Header --- */
.section-header {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers the main titles */
  text-align: center;
}

.badge {
  align-self: flex-start; /* Aligns badge to the left */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  background: #fff;
  margin-bottom: 40px;
}

.badge .dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

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

.highlighted-text {
  line-height: 1.8;
  font-size: 1.1rem;
  text-align: left;
  margin-top: 10px;
}

/* The block-highlight effect */
.highlighted-text span {
  background-color: #c3996b; /* Slightly darker gold for the background block */
  color: #ffffff;
  padding: 4px 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--card-bg);
  border-radius: 20px;
  padding: 0px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.icon {
  flex-shrink: 0;
}

.divider {
  border: none;
  height: 1px;
  background-color: #f0f0f0;
  margin-bottom: 25px;
}

.service-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
}

/* --- Floating Button --- */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: #b0b0b0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 100;
}

.back-to-top:hover {
  background-color: var(--dark-text);
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }

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

  .highlighted-text {
    text-align: center;
  }

  .badge {
    align-self: center;
  }
}

/* --- Base Variables & Reset --- */
:root {
  --gold: #cda274;
  --dark-bg: #141414; /* Very dark grey, almost black */
  --text-light: #ffffff;
  --text-muted: #a0a0a0;
  --font-main: "Outfit", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
}

/* --- Section Container --- */
.inspire-section {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* The giant, faint "rococo" background text */
.bg-watermark {
  position: absolute;
  bottom: -10%;
  left: 5%;
  font-size: 25vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03); /* Extremely faint */
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -5px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.relative-container {
  position: relative;
  z-index: 2; /* Keeps content above the watermark */
}

/* --- Layout --- */
.inspire-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 60px;
}

.image-column {
  flex: 1;
  display: flex;
  justify-content: center; /* Centers the image horizontally */
  align-items: center; /* Centers the image vertically */
  max-height: 500px; /* Limits how tall the container can get */
}

.image-column img {
  width: 100%;
  height: 100%;
  max-height: 500px; /* Ensures the image respects the 500px limit */
  object-fit: contain; /* Fits the whole image inside without cropping */
  object-position: center;
  border-radius: 20px; /* Keeps your nice rounded corners */
}

/* --- Typography & Elements --- */
.badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-light);
  margin-bottom: 30px;
}

.badge-dark .dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
}

.inspire-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

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

/* --- Checklist Grid --- */
.features-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}

.inspire-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

/* --- Button --- */
.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: transparent;
  color: var(--text-light);
  padding: 8px 8px 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-about:hover {
  border-color: var(--gold);
  background-color: rgba(205, 162, 116, 0.05);
}

.icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--gold);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.btn-about:hover .icon-circle {
  transform: scale(1.05);
}

/* --- Image Styling --- */
.image-column img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.spacer {
  width: 100%;
  height: 100px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .inspire-title {
    font-size: 3rem;
  }
}

@media (max-width: 900px) {
  .inspire-content {
    flex-direction: column;
  }

  .text-column {
    max-width: 100%;
  }

  .inspire-title {
    font-size: 2.5rem;
  }

  .bg-watermark {
    font-size: 30vw;
    bottom: 0;
  }
}

@media (max-width: 600px) {
  .features-checklist {
    grid-template-columns: 1fr; /* Stack checklist on mobile */
  }
}

/* --- Gallery Carousel Section --- */
.gallery-section {
  position: relative;
  background-color: #ffffff; /* Clean white background */
  padding: 150px 0;
  overflow: hidden;
  /* Prevent text selection while dragging */
  user-select: none;
  -webkit-user-select: none;
}

/* Giant background watermark */
.bg-watermark-gallery {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22vw; /* Scales massively with viewport */
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05); /* Extremely faint */
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -10px;
}

/* Carousel container & track */
.carousel-container {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: auto; /* Enables native horizontal scrolling */
  scrollbar-width: none; /* Firefox: hide scrollbar */
  cursor: grab;
}

/* Hide scrollbar for Chrome/Safari/Edge */
.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-container.active {
  cursor: grabbing;
}

.carousel-track {
  display: inline-flex; /* Keeps items in a horizontal line */
  gap: 24px;
  padding: 0 5vw; /* Adds padding to the left and right edges */
}

/* --- Columns & Image Layout --- */
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0; /* Prevents columns from shrinking to fit */
}

/* Column Widths */
.col-narrow {
  width: 250px;
}
.col-medium {
  width: 450px;
}
.col-wide {
  width: 650px;
}

/* Image Sizing and Styling */
.gallery-col img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  pointer-events: none; /* Prevents dragging the image file instead of the carousel */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Image Heights to create the staggered masonry look */
.img-short {
  height: 280px;
}
.img-medium {
  height: 380px;
}
.img-tall {
  height: 480px;
}
.img-large {
  height: 550px;
} /* The hero image in the center */

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .col-narrow {
    width: 200px;
  }
  .col-medium {
    width: 350px;
  }
  .col-wide {
    width: 500px;
  }

  .img-large {
    height: 400px;
  }
  .img-tall {
    height: 350px;
  }
  .img-medium {
    height: 250px;
  }
  .img-short {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .bg-watermark-gallery {
    font-size: 35vw;
  }
  .gallery-col {
    width: 85vw;
  } /* Almost full width on mobile */
  .img-large,
  .img-tall,
  .img-medium,
  .img-short {
    height: 300px; /* Normalize heights a bit more on mobile */
  }
}

/* --- Hero Section & Auto Carousel --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
  background-color: var(--dark-bg); /* Fallback color */
}

/* The individual background images */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0; /* Hidden by default */
  transition: opacity 1.5s ease-in-out; /* Super smooth 1.5 second crossfade */
  z-index: 1;
}

/* The active slide becomes visible */
.hero-slide.active {
  opacity: 1;
}

/* Keeps the dark tint so text remains readable over bright images */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 2;
}

.hero-content {
  position: relative;
  max-width: 600px;
  color: var(--text-light);
  z-index: 3; /* Keeps content ABOVE the images and overlay */
}

/* FAQs */

.faq-section {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

/* .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
} */

/* @media (min-width: 1024px) {
  .container {
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
  }
} */

.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 1024px) {
  .faq-container {
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
  }
}

/* --- Left Column Styles --- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.section-tag .dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: -1px;
}

.section-title .accent {
  color: var(--accent-color);
}

/* Accordion Styles */
.accordion {
  border-top: 1px solid var(--border-color);
}

.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  padding: 30px 0;
  cursor: pointer;
  text-align: left;
}

.accordion-header .number {
  font-size: 16px;
  color: #a0a0a0;
  min-width: 40px;
  font-weight: 500;
}

.accordion-header .title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--text-dark);
  flex-grow: 1;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.accordion-item.active .title {
  color: var(--text-dark);
}

/* Plus/Minus Icon using CSS */
.accordion-header .icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.accordion-header .icon::before,
.accordion-header .icon::after {
  content: "";
  position: absolute;
  background-color: var(--text-dark);
  transition: transform 0.3s ease;
}

.accordion-header .icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.accordion-header .icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.accordion-item.active .icon::after {
  transform: rotate(90deg) scale(0);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-inner {
  padding: 0 0 40px 40px; /* Offset to align with title, not number */
  position: relative;
}

.content-inner p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px 0;
  max-width: 90%;
}

.content-dot {
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin: 0 auto;
}

/* --- Right Column Sidebar --- */
.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.image-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

.sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
}

.sidebar-cta h3 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  max-width: 80%;
}

.arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #d3d3d3; /* Light gray from screenshot */
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.arrow-btn svg {
  transform: rotate(-45deg); /* Arrow pointing up-right */
  transition: transform 0.3s ease;
}

.arrow-btn:hover {
  background-color: var(--accent-color);
}

.arrow-btn:hover svg {
  transform: rotate(-45deg) translate(2px, -2px);
}

/* =========================================
   FAQ SECTION
========================================= */
.faq-section {
  background-color: var(--light-bg);
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 1024px) {
  .faq-container {
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
  }
}

/* Accordion Styles */
.accordion {
  border-top: 1px solid #e0e0e0; /* Fixed border color for light bg */
}

.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  padding: 30px 0;
  cursor: pointer;
  text-align: left;
}

.accordion-header .number {
  font-size: 16px;
  color: var(--gray-text);
  min-width: 40px;
  font-weight: 500;
}

.accordion-header .title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--dark-text);
  flex-grow: 1;
  padding-right: 20px;
  transition: color 0.3s ease;
  font-family: var(--font-main);
}

/* Plus/Minus Icon using CSS */
.accordion-header .icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.accordion-header .icon::before,
.accordion-header .icon::after {
  content: "";
  position: absolute;
  background-color: var(--dark-text);
  transition: transform 0.3s ease;
}

.accordion-header .icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.accordion-header .icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.accordion-item.active .icon::after {
  transform: rotate(90deg) scale(0);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-inner {
  padding: 0 0 40px 40px;
  position: relative;
}

.content-inner p {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 20px 0;
  max-width: 90%;
}

.content-dot {
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  margin: 0 auto;
}

/* Sidebar Styling */
.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.image-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

.sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #d3d3d3;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.arrow-btn svg {
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.arrow-btn:hover {
  background-color: var(--gold);
}

.arrow-btn:hover svg {
  transform: rotate(-45deg) translate(2px, -2px);
}

/* =========================================
   FEEDBACK SECTION
========================================= */
.feedback-section {
  background-color: #ffffff;
  padding: 60px 20px; /* Small padding for mobile screens */
}

/* Grid Layout */
.video-grid {
  display: grid;
  grid-template-columns: 1fr; /* 1 column for mobile */
  gap: 30px;
}

@media (min-width: 768px) {
  .feedback-section {
    padding: 80px 40px; /* Medium padding for tablets */
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .feedback-section {
    padding: 100px 5%; /* Large padding for desktop */
  }

  .video-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
  }
}

/* Video Card Styles */
.video-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 256px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

/* Custom Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold); /* Use global gold variable */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.video-wrapper:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--gold);
  color: #fff;
}

.video-wrapper.is-playing .play-btn {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

.video-wrapper.is-playing video {
  object-fit: contain;
}

/* Feedback Text */
.feedback-content {
  padding: 0 10px;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dark-text);
  font-weight: 500;
  margin: 0 0 10px 0;
  font-style: italic;
}

.client-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 4px 0;
}

.client-role {
  font-size: 0.85rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   VIDEO FEEDBACK CARDS
========================================= */

.feedback-section {
  background-color: var(
    --bg-color,
    #fafafa
  ); /* Light background behind the cards */
  padding: 100px 5%;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

/* --- The Card Container --- */
.video-card {
  background-color: #ffffff; /* Solid white card */
  border-radius: 20px;
  overflow: hidden; /* Keeps the video corners rounded at the top */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); /* Soft drop shadow */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-8px); /* Card lifts up on hover */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* --- The Video Area --- */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Cinematic ratio */
  background-color: #000;
  border-bottom-left-radius: 0; /* Removes radius so it sits flush with the text block */
  border-bottom-right-radius: 0;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 4px; /* Centers the triangle visually */
}

.video-wrapper:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--gold);
  color: #fff;
}

.video-wrapper.is-playing .play-btn {
  opacity: 0;
  pointer-events: none;
}

/* --- The Text Area Inside Card --- */
.feedback-content {
  padding: 0px 20px 20px 20px; /* Padding creates the internal card space */
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Ensures buttons/info align at the bottom if text lengths vary */
}

.client-info {
  border-top: 1px solid #eee; /* Subtle separator line */
  padding-top: 15px;
}

.client-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 4px 0;
}

.client-role {
  font-size: 0.85rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   AWARD VIDEO SECTION
========================================= */
.award-section {
  background-color: var(--dark-bg);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.award-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .award-container {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
  .award-section {
    padding: 120px 5%;
  }
}

.award-content {
  display: flex;
  flex-direction: column;
}

.award-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

/* Award Badges */
.award-badges {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

@media (min-width: 600px) {
  .award-badges {
    flex-direction: row;
    gap: 40px;
  }
}

.award-badge-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 2px solid rgba(205, 162, 116, 0.3); /* Faint gold border */
  padding-left: 20px;
  transition: border-color 0.3s ease;
}

.award-badge-item:hover {
  border-left-color: var(--gold);
}

.award-badge-item h4 {
  font-size: 1.1rem;
  margin: 0 0 4px 0;
  font-weight: 600;
}

.award-badge-item span {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Video Wrapper Styling */
.award-video-column {
  position: relative;
  width: 100%;
}

/* Cinematic Gold Glow behind the video */
.video-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background-color: var(--gold);
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.award-video-wrapper {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9; /* Widescreen cinematic ratio */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Enhancing the play button specifically for dark backgrounds */
.award-video-wrapper .play-btn {
  background-color: var(--gold);
  color: #fff;
  width: 80px;
  height: 80px;
}

.award-video-wrapper:hover .play-btn {
  background-color: #fff;
  color: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px) {
  .award-section {
    padding: 70px 16px;
  }

  .award-container {
    gap: 36px;
  }

  .award-content .main-title {
    font-size: 2rem;
    line-height: 1.25;
  }

  .award-content .main-title br {
    display: none;
  }

  .award-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .award-badges {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .award-badge-item {
    align-items: flex-start;
    gap: 12px;
    padding-left: 14px;
  }

  .award-badge-item svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }

  .award-badge-item h4 {
    font-size: 1rem;
  }

  .award-badge-item span {
    font-size: 0.8rem;
    letter-spacing: 0.8px;
  }

  .video-glow {
    width: 95%;
    height: 95%;
    filter: blur(55px);
  }

  .award-video-wrapper .play-btn {
    width: 60px;
    height: 60px;
  }

  .feedback-section {
    padding: 70px 16px;
  }

  .video-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    margin-top: 30px;
  }

  .video-card {
    min-width: 0;
  }

  .feedback-section .video-wrapper {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .feedback-content {
    padding: 0 16px 16px;
  }

  .quote {
    font-size: 1rem;
  }
}

/* =========================================
   AWARD VIDEO SECTION (No .video-wrapper)
========================================= */

.award-video-column {
  position: relative;
  width: 100%;
}

/* Cinematic Gold Glow behind the video */
.video-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background-color: var(--gold, #cda274);
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

/* New Dedicated Video Box */
.award-vid-box {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9; /* Ensures perfect widescreen on all devices */
  background-color: #000; /* Fallback while loading */
  border-radius: 16px; /* Smooth rounded corners */
  overflow: hidden; /* Keeps the video inside the rounded corners */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Forces the video to fill the box perfectly */
.award-vid-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Standalone Play Button Styling */
.award-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--gold, #cda274);
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.award-play-btn svg {
  width: 30px;
  height: 30px;
  margin-left: 4px; /* Visually centers the play triangle */
}

/* Hover effect for the button */
.award-vid-box:hover .award-play-btn {
  background-color: #fff;
  color: var(--gold, #cda274);
  transform: translate(-50%, -50%) scale(1.1);
}

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 768px) {
  .award-video-column {
    margin-top: 20px;
  }

  .video-glow {
    width: 95%;
    height: 95%;
    filter: blur(55px);
  }

  /* Shrink play button for smaller screens */
  .award-play-btn {
    width: 60px;
    height: 60px;
  }

  .award-play-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* =========================================
   FOLDER GALLERY SECTION
========================================= */
.folder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.folder-card {
  background: var(--card-bg, #ffffff);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.folder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.folder-icon {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #f0f0f0; /* Makes it look a bit like a polaroid/folder cover */
}

.folder-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 5px;
}

.folder-count {
  font-size: 0.9rem;
  color: var(--gray-text);
}

/* --- Image Grid View --- */
.images-container {
  animation: fadeIn 0.4s ease;
}

.images-container.hidden {
  display: none;
}

.images-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  color: var(--dark-text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
}

.btn-back:hover {
  color: var(--gold);
}

.album-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}

/* Grid for the actual photos inside a folder */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.image-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.02);
}

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

/* =========================================
   LIGHTBOX CSS
========================================= */
.lightbox {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999; /* Make sure it stays on top of everything including navbars */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* Dark semi-transparent background */
  opacity: 1;
  transition: opacity 0.3s ease;
}

.lightbox.hidden {
  display: none;
  opacity: 0;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10000;
  line-height: 1;
}

.close-lightbox:hover {
  color: var(--gold); /* Uses your existing gold variable */
}

/* Make grid images look clickable */
.image-grid img {
  cursor: pointer;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================================
   FULL-PAGE SERVICE MODAL
========================================= */
.service-page-modal {
  position: fixed;
  top: 90px; /* Pushes the modal down below your navbar */
  left: 0;
  width: 100%;
  height: calc(
    100vh - 90px
  ); /* Subtracts the 150px so it fits perfectly without a double scrollbar */
  background: var(--bg-color, #fafafa);
  z-index: 10000;
  overflow-y: auto;

  /* Keep your existing animation properties below... */
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-page-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Sticky Back Button */
.back-btn {
  position: fixed;
  top: 15px; /* 150px for the navbar + 25px of breathing room */
  left: 5%;
  /* Keep all your other existing button styles below... */
  background: rgba(20, 20, 20, 0.8);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 30px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  transition:
    background 0.3s,
    transform 0.2s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.back-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* --- Generated Page Content Styling --- */
.sp-hero {
  width: 100%;
  height: 40vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end; /* Pushes text to the bottom */
  padding: 60px 5%;
}

.sp-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(20, 20, 20, 0.95) 0%,
    rgba(20, 20, 20, 0.2) 100%
  );
  z-index: 1;
}

.sp-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
}

.sp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
}

.sp-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 800px;
}

/* Features Styling */
.sp-features-title,
.sp-gallery-title {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.sp-features {
  list-style: none;
  padding: 0;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.sp-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: #fff;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border-left: 4px solid var(--gold);
}

/* Gallery Styling */
.sp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.sp-gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  /* Adjust these numbers based on your mobile navbar height */
  .service-page-modal {
    top: 80px;
    height: calc(100vh - 80px);
  }
  .back-btn {
    top: 95px; /* 80px + 15px spacing */
    left: 15px;
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}

/* =========================================
   FULL-PAGE MODAL ENHANCEMENTS
========================================= */

/* Section Spacing */
.sp-section {
  margin-bottom: 60px;
}

.bg-light-gray {
  background-color: #f9fafb;
  padding: 0px;
}

.rounded-section {
  border-radius: 24px;
}

.sp-section-title {
  font-size: 2rem;
  color: var(--text-dark, #1a1a1a);
  margin-bottom: 30px;
  font-weight: 700;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}

/* Description Box */
.sp-desc-box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  margin-top: -60px; /* Pulls it up over the hero image slightly */
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
  border-top: 4px solid var(--gold, #cda274);
}

.sp-desc {
  font-size: 1.15rem;
  color: var(--text-muted, #666);
  line-height: 1.8;
  margin: 0;
}

/* Features */
.check-icon {
  color: var(--gold, #cda274);
  font-size: 1.4rem;
  font-weight: bold;
}

/* Gallery & Videos Grid */
.sp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.sp-gallery-img,
.sp-video-player {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.sp-gallery-img:hover {
  transform: scale(1.02);
}

/* Reviews / Testimonials */
.sp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.sp-review-card {
  background: #fff;
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.sp-review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.sp-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold, #cda274);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

.sp-review-name {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark, #1a1a1a);
}

.sp-review-stars {
  color: var(--gold, #cda274);
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.sp-review-video {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  object-fit: cover;
  background: #000;
  margin-bottom: 20px; /* NEW: Adds breathing room between the video and the text below it */
}

.sp-review-feedback {
  font-style: italic;
  color: var(--text-muted, #666);
  line-height: 1.7;
  margin: 0; /* CHANGED: Removed the bottom margin since it's now at the bottom of the card */
  flex-grow: 1; /* Keeps the text block balanced if the cards are different heights */
}

/* =========================================
   PROJECT GALLERY CAROUSEL
========================================= */
.sp-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 -15px; /* Allows buttons to hang slightly outside the image edge */
  padding: 0 15px;
}

.sp-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory; /* Snaps images neatly into place */
  scroll-behavior: smooth;
  padding: 10px 0 20px 0; /* Extra bottom padding for shadow breathing room */

  /* Hides the default browser scrollbar for a clean look */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sp-carousel-track::-webkit-scrollbar {
  display: none;
}

.sp-gallery-img {
  flex: 0 0 auto;
  width: 85%; /* Shows a peek of the next image to hint at scrolling */
  max-width: 350px;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  scroll-snap-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  cursor: zoom-in; /* Changes mouse to a magnifying glass */
  transition: transform 0.3s ease;
}

.sp-gallery-img:hover {
  transform: scale(1.02);
}

/* Carousel Arrow Buttons */
.sp-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%); /* Adjusted slightly for the bottom padding */
  background: #ffffff;
  border: 1px solid #f0f0f0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--text-dark, #1a1a1a);
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.sp-carousel-btn:hover {
  background: var(--gold, #cda274);
  color: #fff;
  border-color: var(--gold, #cda274);
}

.sp-prev {
  left: -5px;
}
.sp-next {
  right: -5px;
}

/* Hide arrows on mobile where users will just swipe */
@media (max-width: 768px) {
  .sp-carousel-btn {
    display: none;
  }
  .sp-gallery-img {
    width: 90%;
  }
}

/* =========================================
   ENHANCED SERVICE CARDS (60/40 SPLIT)
========================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 380px; /* Fixed height makes the 60/40 percentage split work perfectly */
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  border: 1px solid #f3f4f6;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover .sc-image {
  transform: scale(1.08); /* Zooms the image slightly */
}

/* TOP 60%: Image Container */
.sc-image-wrapper {
  height: 70%;
  width: 100%;
  overflow: hidden;
  background: #f9fafb;
}

.sc-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the space without stretching */
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* BOTTOM 40%: Text & Icon Container */
.sc-content {
  height: 30%;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.sc-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark, #1a1a1a);
  margin: 0;
  line-height: 1.3;
  /* Truncates text with an ellipsis (...) if the title is too long */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sc-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: var(--bg-color, #fafafa);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0f0f0;
  transition: background 0.3s ease;
}

/* Optional: Make the icon background gold when hovering over the card */
.service-card:hover .sc-icon {
  background: var(--gold, #cda274);
}

/* If your SVGs have strokes that need to turn white on hover */
.service-card:hover .sc-icon svg path,
.service-card:hover .sc-icon svg rect,
.service-card:hover .sc-icon svg circle {
  stroke: #ffffff;
}

/* =========================================
   MAIN SERVICES CAROUSEL
========================================= */

.services-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 20px; /* Gives the arrows room to breathe */
}

/* Change from Grid to a Scrollable Flexbox */
.services-grid {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 20px 0 40px 0; /* Extra bottom padding so hover shadows don't get cut off */

  /* Enables native smooth swiping on mobile */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  /* Hides the ugly default browser scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-grid::-webkit-scrollbar {
  display: none;
}

/* Lock the card widths so they don't shrink */
.service-card {
  /* On desktop, show ~3 cards at once. Adjust the 350px if needed */
  flex: 0 0 350px;
  scroll-snap-align: start; /* Snaps cards neatly into place when scrolling */

  /* ... keep all your existing .service-card styles here (height, bg, shadow, etc.) ... */
  display: flex;
  flex-direction: column;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  border: 1px solid #f3f4f6;
  padding: 0 !important;
}

/* Styling the Next/Prev Arrows */
.sc-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--text-dark, #1a1a1a);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: -10px; /* Adjusts for the bottom padding of the track */
}

.sc-nav-btn:hover {
  background: var(--gold, #cda274);
  color: #fff;
  border-color: var(--gold, #cda274);
  transform: translateY(-50%) scale(1.1);
}

.sc-prev {
  left: -15px;
}
.sc-next {
  right: -15px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .sc-nav-btn {
    display: none; /* Hide arrows on mobile, users will just swipe */
  }
  .services-carousel-wrapper {
    padding: 0;
  }
  .service-card {
    flex: 0 0 85%; /* Shows 85% of one card so the edge of the next one peeks out, hinting they should swipe! */
  }
}

/* =========================================
   DEDICATED SERVICE MODAL LIGHTBOX
========================================= */
.sp-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 99999; /* Higher than the service page modal */
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.sp-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.sp-lightbox-img {
  max-width: 100%;
  height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);

  /* Zoom-in effect */
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sp-lightbox.show .sp-lightbox-img {
  transform: scale(1);
}

.sp-lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #ffffff;
  font-size: 45px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.sp-lightbox-close:hover {
  color: var(--gold, #cda274);
  transform: scale(1.1);
}

/* =========================================
   VIDEO CAROUSEL (1 Item at a Time)
========================================= */
.sp-video-carousel-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  margin: 0 -15px;
  padding: 0 15px;
}

/* Position the Video Carousel Arrows */
.sp-video-prev {
  left: -5px;
  z-index: 10;
}
.sp-video-next {
  right: -5px;
  z-index: 10;
}

.sp-video-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 10px; /* Space between slides */
  padding: 10px 0 20px 0;

  /* Hides scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sp-video-track::-webkit-scrollbar {
  display: none;
}

.sp-video-slide {
  flex: 0 0 100%; /* CRITICAL: Forces the video to take up exactly 100% of the visible space */
  width: 100%;
  height: 560px; /* You can adjust this height */
  object-fit: cover;
  border-radius: 16px;
  scroll-snap-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background-color: #000; /* Adds black background for different aspect ratio videos */
}

/* Mobile Adjustments for Video Carousel */
@media (max-width: 768px) {
  .sp-video-slide {
    height: 250px;
  }

  .sp-video-track {
    padding: 0;
  }
}

/* =========================================
   FOLDER VIEW CAROUSEL (Albums List)
========================================= */
.folder-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 -15px;
  padding: 0 15px;
}

.folder-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 10px 0 20px 0;

  /* Hides scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.folder-track::-webkit-scrollbar {
  display: none;
}

/* Ensure the folder cards don't shrink and stay a fixed width */
.folder-track .folder-card {
  flex: 0 0 320px; /* Adjust this width based on your design */
  scroll-snap-align: start;
}

/* Position the Folder Arrows */
.folder-prev {
  left: -5px;
  z-index: 10;
}
.folder-next {
  right: -5px;
  z-index: 10;
}

/* Mobile Adjustment for Folder Carousel */
@media (max-width: 768px) {
  .folder-track .folder-card {
    flex: 0 0 85%;
  }
  .folder-prev,
  .folder-next {
    display: none;
  } /* Hide arrows on phone, let users swipe */
}

/* --- Popup Modal --- */
.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-modal.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 30px;
  max-width: 700px;
  width: 95%;
  position: relative;
  transform: scale(0.9) translateY(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.popup-modal.show .popup-content {
  transform: scale(1) translateY(0);
}

.close-popup {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--dark-text);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.close-popup:hover {
  background: var(--gold);
  color: #fff;
  transform: rotate(90deg);
}

.popup-header {
  margin-bottom: 40px;
  text-align: center;
}

.popup-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 10px;
}

/* Form styles for modal */
.popup-modal .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.popup-modal .input-group.full-width {
  grid-column: 1 / -1;
}

.popup-modal .input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-text);
}

.popup-modal .input-group input,
.popup-modal .input-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  background-color: #f9f9f9;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--dark-text);
  outline: none;
  transition: all 0.3s ease;
}

.popup-modal .input-group input:focus,
.popup-modal .input-group textarea:focus {
  background-color: #fff;
  border-color: var(--gold);
  box-shadow: 0 5px 15px rgba(205, 162, 116, 0.1);
}

.popup-modal .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: var(--dark-text);
  color: #fff;
  padding: 8px 8px 8px 30px;
  border: 1px solid var(--dark-text);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.popup-modal .btn-submit:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.popup-modal .icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: var(--gold);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.popup-modal .btn-submit:hover .icon-circle {
  background-color: #fff;
  transform: scale(1.05);
}

.popup-modal .btn-submit .icon-circle svg stroke {
  stroke: #ffffff;
  transition: all 0.3s ease;
}

.popup-modal .btn-submit:hover .icon-circle svg stroke {
  stroke: var(--gold);
}

@media (max-width: 768px) {
  .popup-content {
    padding: 30px 20px;
  }
  .popup-title {
    font-size: 1.8rem;
  }
  .popup-modal .form-grid {
    grid-template-columns: 1fr;
  }
}
