/* ==========================================================================
   Lumina Luxury Interior Design CSS Stylesheet
   ========================================================================== */

/* Design Tokens & Variables */
:root {
  --color-primary: #d9822b;
  --color-primary-light: #f4a259;
  --color-primary-dark: #b56417;
  
  --color-dark-bg: #121212;
  --color-dark-surface: #1a1a1a;
  --color-dark-surface-hover: #262626;
  --color-dark-border: rgba(255, 255, 255, 0.08);
  --color-dark-text: #ffffff;
  --color-dark-text-muted: #a0a0a0;
  
  --color-light-bg: #FAF9F6;
  --color-light-surface: #ffffff;
  --color-light-surface-hover: #f1efe9;
  --color-light-border: rgba(0, 0, 0, 0.08);
  --color-light-text: #1a1a1a;
  --color-light-text-muted: #606060;
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
  
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  --container-max-width: 1280px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-light-bg);
  color: var(--color-light-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Common Typography & Layout elements */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

p {
  font-family: var(--font-sans);
  font-weight: 400;
}

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

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

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

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

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

/* Buttons Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(217, 130, 43, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-dark-text);
  border: 1px solid var(--color-dark-border);
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #121212;
  border-color: #ffffff;
}

.btn-text {
  background: transparent;
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  text-transform: none;
  font-weight: 500;
}

.btn-text:hover {
  color: var(--color-primary);
}

.btn-block {
  width: 100%;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 1rem;
  gap: 0.5rem;
}

.btn-link .arrow {
  transition: transform 0.3s ease;
}

.btn-link:hover .arrow {
  transform: translateX(6px);
}

/* Badges and labels */
.section-badge-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.orange-bar {
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
  display: inline-block;
}

.section-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: inherit;
}

/* Header Section */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
  height: 40px;
}

.nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

/* Navigation Dropdown styling */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.dropdown-toggle .chevron {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown-menu-list {
  position: absolute;
  top: 100%;
  left: 55%;
  transform: translateX(-55%) translateY(15px);
  background-color: var(--color-dark-surface);
  border: 1px solid var(--color-dark-border);
  min-width: 240px;
  border-radius: var(--border-radius-sm);
  padding: 0.85rem 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1100;
}

.dropdown-menu-list a {
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 0.8125rem;
  color: var(--color-dark-text-muted);
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.dropdown-menu-list a:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.04);
  padding-left: 1.75rem;
}

.nav-dropdown:hover .dropdown-menu-list {
  opacity: 1;
  visibility: visible;
  transform: translateX(-55%) translateY(8px);
}

.nav-dropdown:hover .dropdown-toggle .chevron {
  transform: rotate(180deg);
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.05);
  animation: subtleZoom 20s forwards;
}

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

.hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-content {
  max-width: 650px;
}

.hero-tagline {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-title .highlight {
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.play-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  color: #ffffff;
  transition: var(--transition-fast);
}

.play-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.play-trigger:hover .play-icon {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.08);
}

.scroll-indicator {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  z-index: 1400;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #ffffff; /* White base color so mix-blend-mode difference can invert it cleanly */
  mix-blend-mode: difference;
  pointer-events: none;
}

.scroll-text {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.scroll-line-container {
  position: relative;
  width: 80px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  display: inline-block;
}

.scroll-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #ffffff;
  transition: width 0.1s ease-out;
}

/* Intro Section */
.intro {
  padding: 8rem 0;
  background-color: var(--color-light-bg);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.intro-text {
  font-size: 1.125rem;
  color: var(--color-light-text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Approach Section */
.approach {
  padding: 8rem 0;
  background-color: #ffffff;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.overlap-images {
  position: relative;
  height: 550px;
}

.image-box {
  position: absolute;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: var(--border-radius-sm);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.primary-box {
  width: 75%;
  height: 420px;
  left: 0;
  top: 0;
  z-index: 2;
}

.secondary-box {
  width: 65%;
  height: 320px;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.accordion {
  margin-top: 2rem;
}

.accordion-item {
  border-bottom: 1px solid var(--color-light-border);
  padding: 1.5rem 0;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--color-light-text);
  transition: var(--transition-fast);
}

.accordion-header:hover {
  color: var(--color-primary);
}

.accordion-icon {
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

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

.accordion-content p {
  padding-top: 1rem;
  color: var(--color-light-text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* Stats Banner Section */
.stats {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* Projects Showcase Slider */
.projects-slider {
  padding: 8rem 0;
  background-color: var(--color-dark-bg);
  color: #ffffff;
  overflow: hidden;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.slider-controls {
  display: flex;
  gap: 1rem;
}

.control-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.control-btn:hover {
  background-color: #ffffff;
  color: var(--color-dark-bg);
  border-color: #ffffff;
}

.slider-wrapper {
  margin: 0 -2rem;
  padding: 0 2rem;
}

.slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.project-slide-card {
  min-width: calc(33.333% - 1.333rem);
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
}

.project-slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 0.4) 50%, rgba(18, 18, 18, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  opacity: 0.85;
}

.project-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.project-card-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.project-year {
  font-size: 0.875rem;
  opacity: 0.6;
}

.project-slide-card:hover img {
  transform: scale(1.05);
}

.project-slide-card:hover .project-overlay {
  opacity: 1;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--color-primary);
  transform: scale(1.2);
}

/* Curated Work Section */
.curated {
  padding: 8rem 0;
  background-color: var(--color-light-bg);
}

.curated-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.curated-item {
  position: relative;
  background-color: #ffffff;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.curated-img-wrapper {
  overflow: hidden;
  position: relative;
}

.curated-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.curated-item:hover .curated-img-wrapper img {
  transform: scale(1.03);
}

.large-item .curated-img-wrapper {
  height: 400px;
}

.large-item .curated-content {
  padding: 3rem;
}

.large-item h3 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.large-item p {
  color: var(--color-light-text-muted);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.curated-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.small-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  padding: 1.5rem;
  height: calc(50% - 1.25rem);
}

.small-item .curated-img-wrapper {
  width: 120px;
  height: 120px;
  border-radius: var(--border-radius-sm);
}

.small-item .curated-content {
  padding-left: 2rem;
}

.small-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.curated-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}

/* Vision / Execution Timeline Section */
.vision {
  padding: 8rem 0;
  background-color: #ffffff;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.steps-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}

.step-item h4 {
  font-size: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-item p {
  color: var(--color-light-text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.video-preview-card {
  position: relative;
  height: 480px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.video-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.video-preview-card:hover img {
  transform: scale(1.03);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.play-button-pulse {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(217, 130, 43, 0.4);
  animation: pulseButton 2s infinite;
  transition: var(--transition-smooth);
}

.play-button-pulse svg {
  margin-left: 4px;
}

.video-preview-card:hover .play-button-pulse {
  background-color: var(--color-primary-light);
  transform: scale(1.1);
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 130, 43, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(217, 130, 43, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 130, 43, 0);
  }
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
  background-color: var(--color-light-bg);
}

.testimonial-slider-container {
  max-width: 800px;
  margin: 4rem auto 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  text-align: center;
  padding: 0 2rem;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-light-text);
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  opacity: 0.05;
  font-family: var(--font-serif);
}

.client-info {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
}

.client-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  font-style: normal;
  display: block;
}

.client-role {
  font-size: 0.8125rem;
  color: var(--color-light-text-muted);
}

/* Team Grid Section */
.team {
  padding: 8rem 0;
  background-color: #ffffff;
}

.team-header-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.team-header-text {
  font-size: 1.125rem;
  color: var(--color-light-text-muted);
  font-weight: 300;
}

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

.team-card {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  background-color: var(--color-light-bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.team-img-wrapper {
  overflow: hidden;
  height: 340px;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.8125rem;
  color: var(--color-light-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.team-card:hover .team-img-wrapper img {
  transform: scale(1.04);
}

/* Sofa Transformation Banner */
.transformation {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
}

.transformation-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: var(--transition-smooth);
}

.transformation-content {
  text-align: center;
}

.transformation-title {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

.play-btn-large {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--color-primary);
  border: none;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(217, 130, 43, 0.4);
  animation: pulseButton 2.5s infinite;
  transition: var(--transition-smooth);
}

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

.play-btn-large:hover {
  background-color: var(--color-primary-light);
  transform: scale(1.08);
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background-color: var(--color-light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-text {
  font-size: 1.125rem;
  color: var(--color-light-text-muted);
  margin-bottom: 3rem;
  font-weight: 300;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-info-list li.align-start {
  align-items: flex-start;
}

.contact-info-list svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-info-list span {
  font-weight: 500;
  font-size: 1rem;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phone-numbers span {
  display: block;
  font-weight: 500;
  font-size: 1rem;
}

.contact-form {
  background-color: #ffffff;
  padding: 3.5rem;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--color-light-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-light-border);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background-color: var(--color-light-bg);
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background-color: #ffffff;
}

.form-success-message {
  display: none;
  background-color: #ffffff;
  padding: 3.5rem;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.form-success-message h3 {
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Footer Section */
.footer {
  background-color: var(--color-dark-bg);
  color: #ffffff;
  padding: 6rem 0 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  margin-bottom: 5rem;
}

.footer-desc {
  color: var(--color-dark-text-muted);
  margin: 1.5rem 0;
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.social-links a:hover {
  color: var(--color-primary);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.footer-link-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 1.75rem;
}

.footer-link-col p {
  color: var(--color-dark-text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.footer-link-col a {
  display: block;
  color: var(--color-dark-text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.footer-link-col a:hover {
  color: #ffffff;
}

.subscribe-form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
}

.subscribe-form input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  width: 100%;
}

.subscribe-form button {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.25rem;
  padding-left: 1rem;
  transition: var(--transition-fast);
}

.subscribe-form button:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--color-dark-text-muted);
}

.footer-legal a {
  margin-left: 2rem;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* Video Modal Popup styling */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(8px);
}

.video-modal-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background-color: #000000;
  aspect-ratio: 16/9;
  z-index: 2001;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-modal.active .video-modal-container {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2002;
  transition: var(--transition-fast);
}

.video-modal-close:hover {
  color: var(--color-primary);
}

.video-wrapper {
  width: 100%;
  height: 100%;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .approach-grid,
  .vision-grid,
  .contact-grid {
    gap: 4rem;
  }
  
  .project-slide-card {
    min-width: calc(50% - 1rem);
  }
  
  .curated-grid {
    grid-template-columns: 1fr;
  }
  
  .small-item {
    height: auto;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1.5rem;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-dark-bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav.active {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.5rem 0;
  }

  .nav-dropdown .dropdown-menu-list {
    position: static;
    transform: none;
    background-color: rgba(255, 255, 255, 0.02);
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--color-primary);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    transition: none;
  }

  .nav-dropdown.active .dropdown-menu-list {
    display: block;
  }

  .nav-dropdown.active .dropdown-toggle .chevron {
    transform: rotate(180deg);
  }
  
  .nav-actions {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .intro-grid,
  .approach-grid,
  .vision-grid,
  .team-header-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .overlap-images {
    height: 400px;
  }
  
  .primary-box {
    height: 300px;
  }
  
  .secondary-box {
    height: 220px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .project-slide-card {
    min-width: 100%;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-legal a {
    margin: 0 1rem;
  }
  
  .transformation-title {
    font-size: 2.25rem;
  }
}

/* ==========================================================================
   Advanced Animations & Scroll Reveal Systems
   ========================================================================== */

/* Animated Glow Blobs */
.glow-blob {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(150px);
  -webkit-filter: blur(150px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  animation: floatBlob 15s infinite alternate ease-in-out;
}

.blob-primary {
  background-color: var(--color-primary);
  top: -10%;
  left: -5%;
}

.blob-secondary {
  background-color: var(--color-primary-light);
  bottom: 10%;
  right: -5%;
  animation-delay: -7s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(60px, -80px) scale(1.15) rotate(180deg);
  }
  100% {
    transform: translate(-30px, 40px) scale(0.9) rotate(360deg);
  }
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

/* Delays for cascading entrance animations */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Interactive Hover States */
.header.scrolled {
  background-color: rgba(18, 18, 18, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header.scrolled .header-container {
  padding: 0.875rem 2rem;
}

/* Card hover scaling enhancements */
.project-slide-card {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-slide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.curated-item {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.curated-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* Smooth active highlight styling for approach box overlapping images */
.overlap-images .primary-box {
  animation: floatImagePrimary 6s infinite alternate ease-in-out;
}

.overlap-images .secondary-box {
  animation: floatImageSecondary 6s infinite alternate ease-in-out;
  animation-delay: -3s;
}

@keyframes floatImagePrimary {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

@keyframes floatImageSecondary {
  0% { transform: translateY(0); }
  100% { transform: translateY(12px); }
}

/* Text highlight gradient pulsing */
.hero-title .highlight {
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 5s linear infinite;
}

@keyframes shineText {
  to { background-position: 200% center; }
}

/* ==========================================================================
   Real Projects Gallery & Lightbox
   ========================================================================== */
.real-gallery {
  padding: 8rem 0;
  background-color: var(--color-light-bg);
}

.gallery-lead {
  max-width: 600px;
  margin: -1rem auto 3rem auto;
  color: var(--color-light-text-muted);
  font-weight: 300;
  font-size: 1.1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.gallery-item {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  background-color: #eaeaea;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox-container {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 80vh;
  z-index: 2501;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.lightbox-close {
  position: absolute;
  top: -3.5rem;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 3rem;
  cursor: pointer;
  z-index: 2502;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2502;
  transition: var(--transition-smooth);
}

.lightbox-nav:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.lightbox-prev {
  left: -4rem;
}

.lightbox-next {
  right: -4rem;
}

.lightbox-container img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {
  .lightbox-prev {
    left: 1rem;
    background: rgba(18, 18, 18, 0.6);
  }
  .lightbox-next {
    right: 1rem;
    background: rgba(18, 18, 18, 0.6);
  }
}

/* Sticky Social Sidebar */
.sticky-social-bar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  background-color: rgba(90, 107, 60, 0.82); /* Olive green color matching reference image */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 2.5rem 0.85rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.social-text {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #ffffff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin-bottom: 0.25rem;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
}

.social-icons a {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
  opacity: 0.82;
}

.social-icons a:hover {
  transform: scale(1.25);
  opacity: 1;
}

/* Hide or scale bar slightly on small tablet/mobile screens */
@media (max-width: 768px) {
  .sticky-social-bar {
    right: 12px;
    padding: 1.8rem 0.65rem;
    gap: 1.5rem;
  }
  .social-text {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }
  .social-icons {
    gap: 1.25rem;
  }
  .social-icons a svg {
    width: 16px;
    height: 16px;
  }
}

/* ==========================================================================
   Service Subpages Styling
   ========================================================================== */

.subpage-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.4) 0%, rgba(18, 18, 18, 0.8) 100%);
  z-index: 1;
}

.subpage-hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-sans);
  font-weight: 500;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

.breadcrumbs span {
  color: var(--color-primary);
}

.subpage-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.subpage-title .highlight {
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.subpage-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  font-weight: 300;
  line-height: 1.6;
}

/* Overview Section */
.subpage-overview {
  padding: 7rem 0;
  background-color: #ffffff;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.overview-text {
  font-size: 1.05rem;
  color: var(--color-light-text-muted);
  line-height: 1.7;
  margin-top: 1.5rem;
  font-weight: 300;
}

.overview-img-wrapper {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  height: 480px;
}

.overview-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Features Bento Grid */
.subpage-features {
  padding: 7rem 0;
  background-color: var(--color-light-bg);
}

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

.bento-card {
  background-color: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-light-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

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

.bento-num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--color-primary);
  font-weight: 600;
  display: block;
  margin-bottom: 1.5rem;
}

.bento-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--color-light-text);
}

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

/* Subpage Gallery */
.subpage-gallery {
  padding: 7rem 0;
  background-color: #ffffff;
}

.subpage-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.subpage-gallery-item {
  position: relative;
  height: 340px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.subpage-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.subpage-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.subpage-gallery-overlay h4 {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  transform: translateY(15px);
  transition: transform 0.4s ease;
}

.subpage-gallery-item:hover img {
  transform: scale(1.06);
}

.subpage-gallery-item:hover .subpage-gallery-overlay {
  opacity: 1;
}

.subpage-gallery-item:hover .subpage-gallery-overlay h4 {
  transform: translateY(0);
}

/* CTA Banner */
.subpage-cta {
  padding: 4rem 0 8rem 0;
  background-color: #ffffff;
}

.cta-card-glass {
  background-color: var(--color-dark-surface);
  border: 1px solid var(--color-dark-border);
  padding: 5rem 3rem;
  border-radius: var(--border-radius-sm);
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-card-glass::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 130, 43, 0.1) 0%, rgba(217, 130, 43, 0) 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.75rem;
  font-family: var(--font-serif);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.cta-text {
  font-size: 1.05rem;
  color: var(--color-dark-text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
  font-weight: 300;
}

/* Subpages Responsiveness */
@media (max-width: 992px) {
  .subpage-title {
    font-size: 3.25rem;
  }
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .overview-img-wrapper {
    height: 380px;
  }
  .features-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .subpage-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .subpage-hero {
    min-height: 40vh;
  }
  .subpage-title {
    font-size: 2.5rem;
  }
  .subpage-overview {
    padding: 5rem 0;
  }
  .overview-img-wrapper {
    height: 300px;
  }
  .subpage-features {
    padding: 5rem 0;
  }
  .features-bento-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .subpage-gallery {
    padding: 5rem 0;
  }
  .subpage-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .subpage-gallery-item {
    height: 280px;
  }
  .cta-title {
    font-size: 2rem;
  }
  .cta-card-glass {
    padding: 3.5rem 2rem;
  }
}

