/* --------------------------------------------------------------------------

Theme Name: Arclight - Architecture HTML Template
Author: Theme Depo
Support: https://themedepo.com/contact
Description: Arclight - Architecture HTML Template
Version: 1.0

-----------------------------------------------------------------------------

   ***************** TABLE OF CONTENTS *****************
   1.  Font Face
   2.  CSS Variables & Reset
   3.  Global Utilities & Components
   4.  Header & Navigation
   5.  Hero Section
   6.  Features Stripe
   7.  Common Section Styles
   8.  About Section (Split)
   9.  Stats Section
   10. Feature Grid
   11. Innovation Slider Section
   12. Holistic Design Section
   13. Blueprint Steps Section
   14. Team Section
   15. Pricing Section
   16. Testimonials
   17. Blog Section
   18. Gallery Section
   19. Vision Section
   20. Curated Textures Section
   21. FAQ Section
   22. Ready to Build CTA Section
   23. Footer Section
   24. Page Hero Styles
   25. Who We Are (About Inner)
   26. About Page Stats
   27. Milestones Section
   28. Awards & Recognition
   29. Core Values Section
   30. Our People Section
   31. Project Page Components
   32. Services Page Sections
   33. Expertise Section
   34. Blog Page Layout
   35. Sidebar Widgets
   36. Single Blog Page
   37. Contact Page Sections
   38. Global Presence Section
   39. 404 Error Page
   40. Global Responsiveness
   41. Animations & Utilities

-------------------------------------------------------------------------- */

/* ==========================================================================
   1. Manrope Font Face
   ========================================================================== */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/manrope-v20-latin-300.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/manrope-v20-latin-400.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/manrope-v20-latin-500.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/manrope-v20-latin-600.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/manrope-v20-latin-700.ttf") format("truetype");
}

/* ==========================================================================
   2. CSS Variables & Reset
   ========================================================================== */
:root {
  /* --- Color Palette --- */
  --color-bg-body: #ffffff;
  --color-bg-dark: #1c1917;
  --color-bg-card: #f8f8f8;
  --color-bg-beige: #fafaf9;
  --color-bg-light-gray: #e6e7e8;

  --color-text-main: #333333;
  --color-text-light: #838383;
  --color-text-dim: #a8a29e;
  --color-text-inverse: #ffffff;
  --color-accent: #bc5a41;

  --color-border: #e5e5e5;
  --color-border-dark: rgba(255, 255, 255, 0.2);

  /* --- Typography --- */
  --font-primary: "Manrope", sans-serif;
  --font-size-base: 16px;
  --font-weight-thin: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* --- Spacing --- */
  --spacing-xs: 0.5rem; /* 8px */
  --spacing-sm: 1rem; /* 16px */
  --spacing-md: 2rem; /* 32px */
  --spacing-lg: 4rem; /* 64px */
  --spacing-xl: 8rem; /* 128px */

  /* --- Motion & Effects --- */
  --transition-speed: 0.3s;
  --transition-bezier: cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;

  /* --- Layout --- */
  --container-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

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

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   3. Global Utilities & Components
   ========================================================================== */
/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  position: relative;
}

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

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

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

.text--beige {
  color: var(--color-bg-beige) !important;
}

.text--dim {
  color: var(--color-text-dim) !important;
}

.text--thin {
  font-weight: var(--font-weight-thin);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-speed);
}

.btn--primary {
  background-color: var(--color-bg-dark);
  color: var(--color-text-inverse);
}

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

.btn--white {
  background-color: #fff;
  color: var(--color-bg-dark);
}

.btn--pill {
  border-radius: var(--border-radius-full);
  padding: 16px 36px;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.btn__text--mr {
  margin-right: 10px;
}

.u-flex-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.u-text-thin {
  font-weight: var(--font-weight-thin);
}

/* ============== Arrow btn ============== */

.carousel__arrows {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.arrow-btn {
  width: 3rem;
  /* 48px */
  height: 3rem;
  /* 48px */
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
  border: 1px solid var(--color-text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.arrow-btn.arrow-nav-img {
  background-color: rgba(255, 255, 255, 0.8);
}

.arrow-btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
  /* Slightly darker on hover */
}

.arrow-icon {
  font-size: 1.25rem;
  /* Size of arrow */
  color: var(--color-text-inverse);
  /* Light gray color */
  line-height: 1;
}

.arrow-nav-img .arrow-icon {
  color: var(--color-bg-dark);
}

/* ==========================================================================
   4. Header & Navigation
   ========================================================================== */
.header {
  padding: 15px 0;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-speed);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-bg-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__img {
  width: 40px;
  height: 40px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-weight: var(--font-weight-medium);
  font-size: 0.95rem;
}

.nav__link:hover {
  color: var(--color-accent);
}

.nav__link--pages {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link--btn {
  padding: 10px 24px;
  background: var(--color-bg-dark);
  color: white;
  border-radius: 50px;
  transition: all var(--transition-speed);
  display: inline-flex;
}

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

.menu-toggle {
  background: none;
  border: 1px solid var(--color-border);
  cursor: pointer;
  border-radius: var(--border-radius-full);
  padding: 8px;
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

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

/* Dropdown Menu */
.nav__item {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid var(--color-border);
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown li {
  width: 100%;
}

.nav__dropdown-item {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--color-text-main);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.nav__dropdown-item:hover {
  background-color: var(--color-bg-card);
  color: var(--color-accent);
  padding-left: 20px;
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
.hero {
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  /* background: linear-gradient(to right, #ffffff, #fcfcfc); */
  background-image: url("../images/hero/hero-bg.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.hero__label {
  letter-spacing: 2px;
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
}

.hero__title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
  color: #8b3a3a;
}

.hero__description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  max-width: 480px;
  border-left: 2px solid var(--color-accent);
  padding-left: 24px;
}

.hero__actions {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 10px;
}

.btn-play {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.btn-play__icon {
  width: 56px;
  height: 56px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: transparent;
  color: #1a1a1a;
}

.btn-play:hover .btn-play__icon {
  border-color: var(--color-accent);
  background-color: rgba(188, 90, 65, 0.05);
  transform: scale(1.05);
}

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

@media (max-width: 768px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .btn-play__icon {
    width: 56px;
    height: 56px;
  }
}

.hero__visual {
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 600px;
}

.hero__image-wrapper img.hero__img {
  border-bottom-left-radius: 100px;
}
.card-gap-2,
.card-gap-3 {
  width: 50px;
  height: 50px;
  background-image: url("../images/hero/hero-bg.png");
  background-attachment: fixed;
  background-color: #fff;
  z-index: 1;
  position: absolute;
  bottom: -25px;
  corner-shape: scoop;
  left: 115px;
  border-radius: 100%;
}
.card-gap-3 {
  bottom: 115px;
  corner-shape: scoop;
  left: -25px;
}

.card-gap-1 {
  content: "ssed";
  color: #fff;
  width: 140px;
  aspect-ratio: 1;
  position: absolute;
  bottom: 0px;
  height: 140px;
  background-image: url("../images/hero/hero-bg.png");
  background-color: #fff;
  background-attachment: fixed;
  border-top-right-radius: 70px;
  z-index: 10;
}

.hero__side-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  bottom: 0;
  margin-right: 2rem;
  z-index: 10;
}

.hero__side-nav-container {
  height: 21rem; /* Adjust based on (item height * 2) + gap */
  overflow: hidden;
  position: relative;
}

.hero__side-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__side-nav-item {
  height: 10rem;
  width: 8rem;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.hero__side-nav-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

.hero__side-nav-item:hover::after,
.hero__side-nav-item.active::after {
  opacity: 0;
}

.hero__side-nav-item.active {
  border-color: var(--color-accent);
}

.hero__side-nav-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.hero__explore-btn {
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 30;
  cursor: pointer;
}

.hero__explore-btn-img {
  width: 80%;
  height: 80%;
  transition: transform 0.6s ease;
}

.hero__explore-btn:hover .hero__explore-btn-img {
  animation: spin-slow 10s linear infinite;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   6. Features Stripe
   ========================================================================== */
.features-stripe {
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 15px 0;
  background: white;
  width: 100%;
}

.features-stripe__wrapper {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.features-stripe__content {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.features-stripe p {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--color-text-light);
  white-space: nowrap;
  text-transform: uppercase;
}

.features-stripe__dot {
  color: var(--color-accent);
  font-weight: 900;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .features-stripe__wrapper {
    animation-duration: 25s;
    /* Faster on mobile for better UX */
  }
}

/* ==========================================================================
   7. Common Section Styles
   ========================================================================== */
.section {
  padding: var(--spacing-xl) 0;
}

.section--light {
  background-color: var(--color-bg-body);
}

.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-inverse);
}

.section--beige {
  background-color: var(--color-bg-beige);
}

.section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-label-bar {
  height: 4px;
  width: 60px;
  background-color: #c47d5e;
}

.section-label-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--spacing-xs);
}

.section-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
  color: #1a1a1a;
}

.section-text {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  max-width: 500px;
}

.section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--spacing-lg);
}

.section--dark .section-title {
  color: var(--color-text-inverse);
}

.section-header--light .section-title {
  color: white;
}

.section-title-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-subtext {
  max-width: 50%;
}

.section-title .thin {
  font-weight: var(--font-weight-light);
  color: #4a4a4a;
}

/* ==========================================================================
   8. About Section (Split)
   ========================================================================== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.split-layout__image {
  position: relative;
}

.experience-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background-color: #f2f0ea;
  /* Slightly warm off-white */
  border-radius: 20px;
  padding: 24px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
}

.experience-badge__number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 8px;
}

.experience-badge__text {
  font-size: 0.7rem;
  font-weight: 700;
  color: #c47d5e;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-tabs {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1rem;
}

.about-tab {
  font-size: 0.8rem;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s;
}

.about-tab:hover {
  color: #666;
}

.about-tab.active {
  color: #1a1a1a;
}

.about-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
}

.about-tab-content {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.about-tab-content.active {
  display: block;
}

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

.about-tab.active::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
}

.btn-arrow {
  margin-left: 12px;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition:
    transform 0.3s,
    background-color 0.3s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
  background-color: rgba(255, 255, 255, 0.3);
}

.rounded-img {
  border-radius: 24px;
  width: 100%;
}

.floating-badge {
  /* Deprecated in new design, but keeping if used elsewhere or hiding */
  display: none;
}

.badge-icon {
  font-size: 1.5rem;
}

/* ==========================================================================
   9. Stats Section
   ========================================================================== */
.section--stats {
  background: #fdfdfd;
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--spacing-sm);
}

.stat-card {
  background: #fff;
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--color-border);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-header--stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--spacing-lg);
}

.section-subtext--wide {
  max-width: 450px;
  color: #777;
  line-height: 1.6;
}

/* ==========================================================================
   10. Feature Grid
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: var(--spacing-lg);
}

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.feature-card {
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  position: relative;
  transition: all 0.5s ease;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-card--image {
  color: white;
}

.feature-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
  border-radius: 20px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.feature-card--light .feature-card__overlay {
  opacity: 0;
}

.feature-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.feature-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.feature-number {
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.8;
  transition: color 0.5s ease;
}

.feature-card--light .feature-number {
  color: #e6e6e6;
  opacity: 1;
  font-size: 3rem; /* Matching watermark-number */
}

.feature-card--image .feature-number {
  color: white;
  font-size: 2rem;
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  /* Default light card icon bg */
  color: #1a1a1a;
}

.icon-circle--accent {
  background: #bc5a41;
  color: white;
}

.feature-card--light .feature-icon-circle {
  background: rgba(0, 0, 0, 0.05);
  color: #1a1a1a;
}

.feature-card--image .feature-icon-circle {
  background: #bc5a41;
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.feature-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  line-height: 1.5;
}

.feature-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: white; /* Always white in image mode */
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.5s ease;
  opacity: 1;
  visibility: visible;
}

.feature-card--light .feature-link {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.feature-link:hover {
  gap: 12px;
}

/* Light Card Specifics */
.feature-card--light {
  background-color: #f7f7f7;
  color: var(--color-text-main);
  background-image: none !important; /* Hide image in light mode if desired, or keep and dim */
}

/* If we want to keep the image but dim it in light mode:
.feature-card--light {
    background-color: #f7f7f7;
}
.feature-card--light::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #f7f7f7;
    z-index: 0;
    transition: opacity 0.5s ease;
}
*/

/* Stats Row */
.stats-separator {
  height: 1px;
  background-color: #e5e5e5;
  margin-bottom: var(--spacing-md);
}

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

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

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stats__value {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 5px;
}

.stats__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================================================
   11. Innovation Slider Section
   ========================================================================== */
.project-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  overflow-x: auto;
  padding-bottom: var(--spacing-md);
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
}

.project-slider::-webkit-scrollbar {
  display: none;
}

.project-card {
  width: 320px;
  overflow: hidden;
}

.project-card__image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 20px;
}

.project-card__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card__image-container:hover img {
  transform: scale(1.05);
}

.project-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #1e1e1e;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 50%;
  z-index: 2;
}

.project-card__action {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 2;
}

.project-card:hover .project-card__action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.project-card__action:hover {
  background-color: var(--color-text-main);
}

.project-card__content {
  padding-top: 20px;
}

.project-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.project-card__category {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-card__duration {
  background: rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.project-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  padding-bottom: 1rem;
  border-bottom: 1px solid
    color-mix(in srgb, var(--color-text-light) 30%, transparent);
}

.project-card__location {
  display: flex;
  align-items: center;
  color: #aaa;
  font-size: 14px;
  gap: 6px;
}

.project-card__location-icon {
  color: #d35400;
}

.project-card__duration-icon {
  color: #d35400;
}

/* Navigation Buttons */
.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.slider-btn:hover {
  background: white;
  color: black;
}

/* ==========================================================================
   12. Holistic Design Section
   ========================================================================== */
/* Holistic Grid Styles */
.holistic-grid {
  display: flex;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Base Card Styles */
.holistic-card {
  background: #ffffff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition:
    flex 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-image 0.5s ease;
  border: 1px solid #f0f0f0;
  flex: 1;
  min-width: 120px;
}

.holistic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

/* ==================== FEATURED CARD (Architecture) ==================== */
.holistic-card--featured {
  flex: 2.5;
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* White to transparent gradient overlay - left to right */
.holistic-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 40%,
    rgba(255, 255, 255, 0.5) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}

/* Ensure content is above the gradient overlay */
.holistic-card--featured > * {
  position: relative;
  z-index: 2;
}

/* Header Section */
.holistic-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
}

.holistic-card__number {
  font-size: 32px;
  font-weight: 600;
  color: #c4c2be;
  letter-spacing: -0.5px;
}

.holistic-card--featured .holistic-card__title {
  font-size: 24px;
  font-weight: 600;
  color: #2a2826;
  margin: 0;
}

.holistic-card__icon-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background: #c77c5f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.holistic-card__icon-btn:hover {
  background: #b36b4f;
}

/* Divider Line */
.holistic-card__divider {
  width: 50px;
  height: 3px;
  background: #c77c5f;
  margin-bottom: 20px;
  border-radius: 2px;
}

/* Text Content */
.holistic-card--featured .holistic-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4745;
  margin-bottom: 24px;
  max-width: 90%;
}

/* Explore Button */
.holistic-card__explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: #4a4745;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 0;
  margin-bottom: auto;
  transition: color 0.3s ease;
}

.holistic-card__explore-btn:hover {
  color: #c77c5f;
}

.holistic-card__explore-btn svg {
  width: 14px;
  height: 14px;
}

/* Hide image wrapper in featured card since it's now a background */
.holistic-card--featured .holistic-card__img-wrapper {
  display: none;
}

/* ==================== VERTICAL CARDS (Other 3 Cards) ==================== */
.holistic-card--vertical {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 420px;
  background: #ffffff;
}

/* Icon Circle */
.holistic-card__icon-circle {
  width: 56px;
  height: 56px;
  background: #f5f4f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a4745;
  margin-bottom: auto;
}

/* Vertical Title */
.holistic-card__title-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 18px;
  font-weight: 500;
  color: #3a3835;
  letter-spacing: 3px;
  margin: auto 0;
  text-transform: capitalize;
}

/* Vertical Number */
.holistic-card__number-vertical {
  font-size: 32px;
  font-weight: 600;
  color: #d4d2ce;
  letter-spacing: -0.5px;
  margin-top: auto;
}

/* ==================== INTERACTIVE TOGGLE STYLES ==================== */
.holistic-card {
  cursor: pointer;
  transition: all 0.5s ease;
}

/* Featured mode: show featured content, hide vertical content */
.holistic-card--featured .holistic-card__featured-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease 0.2s;
}

.holistic-card--featured .holistic-card__vertical-content {
  display: none;
}

/* Vertical mode: show vertical content, hide featured content */
.holistic-card--vertical .holistic-card__featured-content {
  display: none;
}

.holistic-card--vertical .holistic-card__vertical-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}

/* Vertical mode base */
.holistic-card--vertical {
  flex: 1;
  background-image: none !important;
}

/* Add back the ::before overlay only on featured */
.holistic-card--vertical::before {
  display: none;
}

/* ==========================================================================
   13. Blueprint Steps Section
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Base Step Item Styles */
.step-item {
  background: #ffffff;
  border: 2px solid #e8e6e3;
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: all 0.5s ease;
  position: relative;
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: #d4d2ce;
}

/* Number Styles */
.step-item__number {
  font-size: 48px;
  font-weight: 300;
  color: #e8e6e3;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 24px;
}

/* Icon Styles */
.step-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

/* Featured card - filled icon */
.step-item--featured .step-item__icon {
  background: #2a2826;
  color: #ffffff;
}

/* Other cards - outline icon */
.step-item__icon--outline {
  background: transparent;
  border: 1.5px solid var(--color-text-light);
  color: #2a2826;
}

.step-item:hover .step-item__icon--outline {
  background: #f5f4f2;
}

/* Title Styles */
.step-item__title {
  font-size: 22px;
  font-weight: 600;
  color: #2a2826;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.step-item--featured .step-item__title {
  color: #c77c5f;
}

/* Text Styles */
.step-item__text {
  font-size: 15px;
  line-height: 1.7;
  color: #6b6862;
  margin: 0 0 auto 0;
  flex-grow: 1;
}

/* Duration Badge */
.step-item__duration {
  font-size: 11px;
  font-weight: 800;
  color: #a8a5a0;
  letter-spacing: 1px;
  margin-top: 15px;
  padding-top: 20px;

  display: block;
}

.step-item--featured .step-item__duration {
  color: #8b8885;
}

/* Featured Card - Special Styling */
.step-item--featured {
  border: 2px solid #c77c5f;
  background: #fdfcfb;
}

.step-item--featured:hover {
  border-color: #b36b4f;
  box-shadow: 0 12px 32px rgba(199, 124, 95, 0.15);
}

/* Hover - Apply featured style to all cards */
.step-item:hover {
  border: 2px solid #c77c5f;
  background: #fdfcfb;
  box-shadow: 0 12px 32px rgba(199, 124, 95, 0.15);
}

.step-item:hover .step-item__title {
  color: #c77c5f;
}

.step-item:hover .step-item__icon--outline {
  background: #2a2826;
  border-color: #2a2826;
  color: #ffffff;
}

.step-item:hover .step-item__duration {
  color: #8b8885;
}

/* ==========================================================================
   14. Team Section
   ========================================================================== */
.team-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ==================== TEAM LIST (Left Sidebar) ==================== */

.team-names {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding: 10px 20px;
  cursor: pointer;
  border-radius: 20px;
  position: relative;
}

.team-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
}

.team-name:hover {
  border: 2px solid #f5f4f2;
}

.team-name:hover::before {
  background: #e8e6e3;
  height: 60%;
  width: 6px;
  border-radius: 0 10px 10px 0;
  margin-top: auto;
  margin-bottom: auto;
}

.team-name.active::before {
  background: #c77c5f;
  height: 60%;
  width: 6px;
  border-radius: 0 10px 10px 0;
  margin-top: auto;
  margin-bottom: auto;
}

.team-name.active {
  border: 2px solid #f5f4f2;
}

/* Team Name Number */
.team-name__number {
  font-size: 14px;
  font-weight: 800;
  color: #d4d2ce;
  letter-spacing: -0.5px;
  min-width: 28px;
  margin-top: 2px;
}

.team-name.active .team-name__number {
  color: #c77c5f;
}

/* Team Name Content */
.team-name__content {
  flex: 1;
}

.team-name__title {
  font-size: 18px;
  font-weight: 600;
  color: #a8a5a0;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.team-name:hover .team-name__title {
  color: #6b6862;
}

.team-name.active .team-name__title {
  color: #2a2826;
}

.team-name__role {
  font-size: 11px;
  font-weight: 900;
  color: #c77c5f;
  letter-spacing: 0.5px;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-name.active .team-name__role {
  opacity: 1;
}

/* ==================== TEAM SHOWCASE (Right Card) ==================== */
.team-showcase {
  background: #b5a698;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  max-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 40px 48px;
}

/* Background Image */
.team-showcase__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient Overlay */
.team-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

/* Dark Bottom Gradient */
.team-showcase::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Experience Badge */
.team-showcase__badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 10px 20px;
  align-self: flex-start;
  margin-bottom: auto;
}

.badge__years {
  font-size: 14px;
  font-weight: 700;
  color: #c77c5f;
  letter-spacing: 0.5px;
}

.badge__label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
}

/* Social Icons */
.team-showcase__social {
  position: absolute;
  top: 40px;
  right: 48px;
  z-index: 2;
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Team Member Info */
.team-showcase__info {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: 32px;
}

.team-showcase__name {
  font-size: 56px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.team-showcase__description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  max-width: 600px;
}

/* Stats Section */
.team-showcase__stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 64px;
  align-items: flex-end;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-item__value {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-item__label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  line-height: 1.4;
  text-align: left;
}

/* ==========================================================================
   15. Pricing Section
   ========================================================================== */
.section--pricing {
  background-color: var(--color-bg-light-gray);
  /* Added bg color */
  background-image: url("../../assets/imgs/landing/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-header--center {
  align-items: center;
  text-align: center;
}

.section-label-group--center {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: var(--spacing-sm);
}

.section-title--center {
  margin-bottom: var(--spacing-md);
}

.section-subtext--center {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.pricing-header-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  gap: 20px;
}

.pricing-header-actions .section-subtext {
  margin-bottom: 0;
  text-align: left;
  max-width: 450px;
}

/* Toggle Switch */
.pricing-toggle-container {
  display: flex;
  justify-content: flex-end;
  /* Align right in the flex container */
  margin-bottom: 0;
}

.pricing-toggle {
  background: #f0f0f0;
  border-radius: 50px;
  padding: 4px;
  display: inline-flex;
  gap: 4px;
}

.pricing-toggle-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #888;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-family: inherit;
  /* Fixes Arial font issue */
}

.pricing-toggle-btn.active {
  background: #1a1a1a;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pricing-toggle-btn:hover:not(.active) {
  color: #333;
}

/* Price Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: var(--spacing-md);
}

.pricing-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 32px;
  border: 1px solid #f0f0f0;
  /* Very subtle border */
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

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

.pricing-card--dark {
  background: #231f1e;
  /* Dark chocolate/black from image */
  color: white;
  border: none;
}

.pricing-card__badge {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: white;
  /* Accent color */
}

.pricing-card__header {
  margin-bottom: 30px;
}

.pricing-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.pricing-card--dark .pricing-card__title {
  color: white;
}

.pricing-card__price {
  font-size: 4.5rem;
  /* Big price */
  font-weight: 700;
  line-height: 1;
  color: #1a1a1a;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card--dark .pricing-card__price {
  color: white;
}

.pricing-card__price .currency {
  font-size: 2.5rem;
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-card__price .unit {
  font-size: 0.75rem;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card--dark .pricing-list li {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-list li::before {
  content: "•";
  color: #bc5a41;
  /* Accent bullet */
  font-size: 1.5rem;
  line-height: 0;
}

.btn--pricing {
  width: 100%;
  justify-content: center;
  /* Centered items */
  padding: 16px 24px;
  /* Less padding */
  border-radius: 50px;
  font-size: 0.9rem;
  /* Increased font */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  /* Bold */
  gap: 10px;
  /* Space between text and arrow */
}

.btn--light-gray {
  background: #f5f5f5;
  color: #1a1a1a;
}

.btn--light-gray:hover {
  background: #e0e0e0;
}

.btn-arrow-simple {
  font-size: 1.1rem;
  line-height: 1;
}

.pricing-footer-text {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  margin-top: var(--spacing-lg);
}

.pricing-footer-text a {
  color: #bc5a41;
  font-weight: 600;
}

.pricing-footer-text a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   16. Testimonials
   ========================================================================== */
.testimonial-header-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 600px;
}

.testimonial-header-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.section-header--between {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
}

.slider-nav {
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}

.slider-btn:hover {
  border-color: #333;
  background: #f9f9f9;
}

.testimonials-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.testimonials-grid::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}

.testimonials-grid .testimonial-card {
  flex: 0 0 calc(50% - 15px);
  scroll-snap-align: start;
}

.testimonial-card {
  background: white;
  border-radius: 32px;
  border: 1px solid #f0f0f0;
  display: flex;
  overflow: hidden;
  height: 400px;
  /* Fixed height for consistency */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.testimonial-card__content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card__image-wrapper {
  width: 45%;
  /* Image takes less than half */
  position: relative;
}

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

.star-rating {
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-val {
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0;
  font-size: 0.8rem;
}

.testimonial-quote {
  font-size: 1.35rem;
  line-height: 1.4;
  color: #333;
  margin-bottom: 24px;
  font-family: inherit;
  /* Use main font */
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #f5f5f5;
}

.author-info strong {
  display: block;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.author-info span {
  font-size: 0.85rem;
  color: #888;
}

.quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: #e0e0e0;
  font-family: serif;
}

/* ==========================================================================
   17. Blog Section
   ========================================================================== */
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--spacing-lg);
}

.section-header-left {
  flex: 1;
}

.section-header-left .section-label-group {
  margin-bottom: var(--spacing-sm);
}

.section-header-left .section-title {
  margin-bottom: var(--spacing-md);
}

.section-header-right {
  display: flex;
  align-items: center;
}

.btn-pill-action,
.btn-pill-common {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: #1a1a1a;
  color: white;
  padding: 8px 8px 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-pill-action:hover,
.btn-pill-common:hover {
  background-color: var(--color-accent);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem 2rem;
  /* Increased vertical gap */
  margin-bottom: 4rem;
  padding-top: 5rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Portfolio Card */
.portfolio-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.portfolio-card__image-wrapper {
  position: relative;
  border-radius: 2rem;
  /* More rounded */
  overflow: hidden;
  aspect-ratio: 4/5;
  /* Taller aspect ratio */
  background-color: #f0f0f0;
}

.portfolio-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover .portfolio-card__image {
  transform: scale(1.08);
  /* Slightly more zoom */
}

.portfolio-card__info {
  padding: 0 0.25rem;
}

.portfolio-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Center align items */
  margin-bottom: 0.5rem;
}

.portfolio-card__title {
  font-size: 1.5rem;
  /* Larger title */
  font-weight: 600;
  line-height: 1.2;
}

.portfolio-card:hover .portfolio-card__title {
  color: var(--color-accent);
}

.portfolio-card__year {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-light);
  background: transparent;
  padding: 0.2rem 0.8rem;
  border-radius: 2rem;
  border: 1px solid var(--color-border);
  /* Light border */
}

.portfolio-card__category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  /* Bold */
  text-transform: uppercase;
  color: #666;
  letter-spacing: 0.05em;
}

.portfolio-card__category::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #c06045;
  /* Use same accent color */
  border-radius: 50%;
}

.btn-pill-action__icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.btn-pill-action:hover .btn-pill-action__icon {
  transform: translateX(0);
}

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

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card__image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.8;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

.blog-card__category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #1a1a1a;
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.blog-card__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px;
}

.blog-card__number {
  color: var(--color-accent);
}

.blog-card__date {
  color: #888;
}

.blog-card__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.blog-card__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a1a;
  flex: 1;
}

.blog-card__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.blog-card__btn:hover {
  background-color: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

.blog-card__btn--accent {
  background-color: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.blog-card__btn--accent:hover {
  background-color: #a64d36;
  border-color: #a64d36;
}

/* ==========================================================================
   18. Gallery Section
   ========================================================================== */
.section--gallery {
  padding-bottom: var(--spacing-xl);
  background-color: var(--color-bg-beige);
}

.section--gallery .section-label-group {
  margin-bottom: var(--spacing-sm);
}

.section--gallery .section-title {
  margin-bottom: var(--spacing-md);
}

.gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  gap: 24px;
}

.gallery-filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 1px solid var(--color-border);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.filter-btn:hover {
  background: #f5f5f5;
  color: #1a1a1a;
}

.filter-btn.active {
  background: #1a1a1a;
  color: white;
}

.gallery-nav {
  display: flex;
  gap: 12px;
}

.gallery-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1a1a1a;
}

.gallery-nav-btn:hover {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

.gallery-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.gallery-grid::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}

.gallery-grid .gallery-item {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
}

.gallery-item {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 1 / 1.15;
  background-color: #f0f0f0;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.gallery-item--hidden {
  opacity: 0;
  transform: scale(0.8);
  position: absolute;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.gallery-item__number {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}

.gallery-item__action {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transform: translate(10px, -10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}

.gallery-item:hover .gallery-item__action {
  transform: translate(0, 0);
  opacity: 1;
}

.gallery-item__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  color: white;
  z-index: 2;
}

.gallery-item__category {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.gallery-item__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

/* ==========================================================================
   19. Vision Section
   ========================================================================== */
.vision-section {
  position: relative;
  height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.vision-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.vision-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.vision-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.vision-section__play-btn {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vision-section__play-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.vision-section__play-btn svg {
  fill: white;
  margin-left: 4px; /* Offset for visual centering of triangle */
}

.vision-section__title {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0;
  line-height: 1.1;
}

.vision-section__subtext {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  opacity: 0.8;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}

.vision-section__subtext:hover {
  opacity: 1;
}

/* ==========================================================================
   20. Curated Textures Section
   ========================================================================== */
.textures-section {
  background-color: var(--color-bg-light-gray);
  background-image: url("../../assets/images/hero/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.textures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.texture-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.texture-card:hover {
  transform: translateY(-10px);
}

.texture-card__img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.texture-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.texture-card:hover .texture-card__img {
  transform: scale(1.1);
}

.texture-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.texture-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.texture-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--color-text-main);
}

.texture-card__badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.texture-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
  opacity: 0.8;
}

/* ==========================================================================
   21. FAQ Section
   ========================================================================== */
.faq-section {
  background-color: white;
  padding: 120px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}

.faq-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
  margin-top: 20px;
  margin-bottom: 30px;
}

.faq-title .thin {
  font-weight: 300;
  color: #666;
}

.faq-description {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.6;
  max-width: 380px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 35px 0;
  transition: all 0.3s ease;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.3s ease;
  margin: 0;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-icon {
  position: relative;
  width: 14px;
  height: 2px;
  background-color: #999;
  transition: all 0.3s ease;
}

.faq-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

/* Active State */
.faq-item--active .faq-question {
  color: var(--color-accent);
}

.faq-item--active .faq-toggle {
  background-color: var(--color-accent);
}

.faq-item--active .faq-icon {
  background-color: white;
}

.faq-item--active .faq-icon::before {
  transform: rotate(0deg);
}

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

.faq-item--active .faq-content {
  max-height: 200px;
  opacity: 1;
  margin-top: 20px;
}

.faq-answer {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
  max-width: 90%;
}

/* ==========================================================================
   22. Ready to Build CTA Section
   ========================================================================== */
.build-cta-section {
  background-color: var(--color-accent);
  padding: 120px 0;
  text-align: center;
  color: white;
}

.build-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.build-cta-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.build-cta-title .thin {
  font-weight: 300;
  opacity: 0.9;
}

.build-cta-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.build-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

/* Reuse or new button styles */
.btn--primary {
  background-color: white;
  color: var(--color-accent);
  padding: 20px 40px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.btn--primary:hover {
  background-color: white;
  color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn--outline-white {
  background-color: transparent;
  color: white;
  padding: 20px 40px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn--outline-white:hover {
  background-color: white;
  color: var(--color-accent);
  border-color: white;
}

/* ==========================================================================
   23. Footer Section
   ========================================================================== */
.footer {
  background-color: var(--color-bg-dark);
  color: white;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.footer__hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__cta-title {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.footer__cta-light {
  color: rgba(255, 255, 255, 0.3);
}

.footer__start-btn {
  width: 140px;
  height: 140px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-top: 10px;
}

.footer__start-btn:hover {
  transform: scale(1.05);
  background-color: #a64d36;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 80px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--color-border-dark);
}

.footer__newsletter-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.footer__newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border-dark);
  padding-bottom: 8px;
  max-width: 320px;
}

.footer__newsletter-input {
  background: transparent;
  border: none;
  color: white;
  flex: 1;
  padding: 8px 0;
  font-size: 14px;
  outline: none;
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer__newsletter-submit {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.footer__newsletter-submit:hover {
  transform: translateX(5px);
}

.footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer__nav-col--divider {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 40px;
}

.footer__nav-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-list li {
  margin-bottom: 12px;
}

.footer__nav-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer__nav-list a:hover {
  color: white;
}

.footer__address p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer__phone {
  margin-top: 16px;
  font-weight: 600;
}

.footer__brand-area {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  position: relative;
}

.footer__watermark {
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 16px;
  line-height: 0.9;
  margin-bottom: -10px;
  pointer-events: none;
  flex: 1;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-bottom: 0;
  flex-shrink: 0;
}

.footer__vision {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 15px;
  text-wrap: wrap;
  max-width: 400px;
  /* Added to prevent overflow */
}

.footer__copyright {
  display: flex;
  gap: 40px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer__copyright p {
  margin: 0;
}

.footer__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: white;
}

/* ==========================================================================
   24. Page Hero Styles
   ========================================================================== */

.page-hero {
  position: relative;
  height: 646px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding-top: 100px;
}

/* Semi-transparent overlay to ensure text readability if needed */
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 1;
}

.page-hero__container {
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.page-hero__label-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 2rem;
}

.page-hero__label-line {
  width: 40px;
  height: 1px;
  background-color: white;
}

.page-hero__label {
  font-size: 0.85rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-hero__title {
  font-size: 5rem;
  line-height: 1.1;
  font-weight: var(--font-weight-bold);
  max-width: 900px;
}

/* Single Blog Page Hero */
.single-blog-hero {
  background-image: url("../images/hero/single-blog-hero.jpg");
  height: 80vh;
  min-height: 600px;
}

.back-to-journal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  transition: color 0.3s;
}

.back-to-journal:hover {
  color: white;
}

.hero-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 2rem;
}

.hero-tag {
  background: var(--color-accent);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-meta__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-meta__item svg {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero__title span {
  display: inline;
}

.page-hero__breadcrumb {
  margin-bottom: 5px;
  /* Fine-tune baseline alignment with large title text */
}

.breadcrumb-capsule {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 1px;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-speed);
}

.breadcrumb-link:hover {
  color: white;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
  color: white;
}

/* Responsive adjustments for About Hero */
@media (max-width: 1024px) {
  .about-hero__title {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 50vh;
    padding-top: 80px;
  }

  .about-hero__title {
    font-size: 3.5rem;
  }

  .about-hero__title span {
    display: block;
  }

  .about-hero__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .about-hero__breadcrumb {
    margin-bottom: 0;
    align-self: flex-start;
  }

  .breadcrumb-capsule {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .about-hero__title {
    font-size: 2.75rem;
  }

  .about-hero__label-line {
    width: 30px;
  }
}

/* ==========================================================================
   25. Who We Are (About Inner)
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
}

.about-grid__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.4s cubic-bezier(0.2, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

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

.about-card__content {
  position: relative;
  z-index: 3;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-card__icon {
  margin-bottom: 40px;
  color: inherit;
  display: flex;
  align-items: center;
}

.about-card__icon svg {
  width: 32px;
  height: 32px;
}

.about-card__title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
}

.about-card__text {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* The Vision Card */
.about-card--vision {
  color: white;
  min-height: 500px;
}

.about-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.about-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
}

.about-card__bottom-content {
  display: flex;
  flex-direction: column;
}

.about-card--vision .about-card__icon {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  justify-content: center;
}

.about-card--vision .about-card__icon svg {
  width: 28px;
  height: 28px;
}

.about-card--vision .about-card__text {
  max-width: 90%;
}

/* Our Mission Card */
.about-card--mission {
  background-color: #f7f3f0;
  color: var(--color-text-main);
  flex: 1;
}

.about-card--mission .about-card__icon {
  background: none;
  color: var(--color-accent);
}

/* The Philosophy Card */
.about-card--philosophy {
  background-color: var(--color-accent);
  color: white;
  flex: 1;
}

.about-card--philosophy .about-card__icon {
  background: none;
}

/* Responsive adjustments for Who We Are */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card--vision {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .about-card__content {
    padding: 30px;
  }

  .about-card__title {
    font-size: 1.5rem;
  }

  .about-card__icon {
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   26. About Page Stats
   ========================================================================== */

.about-stats {
  padding: 100px 0;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg-body);
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.about-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #838383;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Responsive adjustments for Stats */
@media (max-width: 1024px) {
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}

@media (max-width: 480px) {
  .about-stats__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stat-number {
    font-size: 2.75rem;
  }
}

/* ==========================================================================
   27. Milestones Section
   ========================================================================== */
.milestones {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-beige);
  padding: 100px 0;
  background-image: url(../imgs/landing/hero-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.milestones .container {
  position: relative;
  z-index: 2;
}

.milestones__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Milestone Card */
.milestone-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.milestone-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.milestone-card--dark {
  background-color: #121212;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.05);
}

.milestone-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 35px;
}

.milestone-card__year-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.milestone-card__year {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.milestone-card__number {
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.8;
  opacity: 0.05;
}

.milestone-card--dark .milestone-card__number {
  opacity: 0.1;
}

.milestone-card__content {
  margin-bottom: 40px;
}

.milestone-card__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.milestone-card__text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.milestone-card--dark .milestone-card__text {
  color: rgba(255, 255, 255, 0.7);
}

.milestone-card__footer {
  margin-top: auto;
}

.milestone-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: inherit;
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
}

.milestone-card--dark .milestone-card__link {
  border-top: 1px solid var(--color-border-dark);
}

.milestone-card__link-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.milestone-card--dark .milestone-card__link-icon {
  background-color: var(--color-accent);
}

.milestone-card:hover .milestone-card__link-icon {
  background-color: var(--color-accent);
  color: white;
}

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

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

  .milestone-card__title {
    font-size: 1.75rem;
  }

  .milestone-card {
    min-height: auto;
    padding: 30px;
  }
}

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

/* ==========================================================================
   28. Awards & Recognition
   ========================================================================== */
.awards {
  background-color: var(--color-bg-body);
  padding: 100px 0;
}

.awards__header {
  margin-bottom: 60px;
}

.awards__header-left {
  max-width: 400px;
}

.awards__header-left .section-text {
  margin-bottom: 0;
}

.awards__content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}

.awards__image-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background-color: #d4ccc4;
}

.awards__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.awards__image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.awards__list {
  display: flex;
  flex-direction: column;
}

.award-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--color-border);
}

.award-item:first-child {
  padding-top: 0;
}

.award-item__year {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.award-item__details {
  flex: 1;
}

.award-item__title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--color-text-main);
}

.award-item__project {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.award-item__org {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-text-light);
  text-transform: uppercase;
}

.award-item__link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: all 0.3s ease;
  opacity: 0;
}

.award-item:hover .award-item__link {
  opacity: 1;
}

.award-item:hover .award-item__year {
  color: var(--color-accent);
}

.award-item__link:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

/* Responsive Awards */
@media (max-width: 1024px) {
  .awards__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .awards__image-card {
    max-width: 400px;
  }

  .award-item {
    grid-template-columns: 60px 1fr auto;
    gap: 20px;
  }

  .award-item__link {
    display: none;
  }
}

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

  .award-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .award-item__year {
    order: 1;
  }

  .award-item__details {
    order: 2;
  }

  .award-item__org {
    order: 3;
    margin-top: 10px;
  }

  .award-item__title {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   29. Core Values Section
   ========================================================================== */

.core-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Value Card */
.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.value-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.value-card__icon {
  width: 44px;
  height: 44px;
  background: #bc5a411a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.value-card--accent .value-card__icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
  border-radius: 50%;
  color: #ffffff;
}

.value-card__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.value-card__content {
  margin-top: auto;
}

.value-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.value-card__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .value-card {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .core-values__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   30. Our People Section
   ========================================================================== */
.our-people {
  background-color: var(--color-bg-body);
}

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

.team-card {
  display: flex;
  flex-direction: column;
}

.team-card__image-wrapper {
  position: relative;
  background-color: #c9bfb4;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card__image {
  transform: scale(1.03);
}

/* Social Links */
.team-card__social {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.team-card:hover .team-card__social {
  opacity: 1;
  transform: translateX(0);
}

.team-card__social-link {
  width: 32px;
  height: 32px;
  background-color: var(--color-bg-light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-card__social-link:hover {
  background-color: var(--color-accent);
  transform: scale(1.1);
}

.team-card__social-link:hover svg {
  color: var(--color-bg-light-gray);
}

/* Location Badge */
.team-card__location {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 8px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-main);
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.team-card:hover .team-card__location {
  opacity: 1;
  transform: translateY(0);
}

.team-card__location svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

/* Team Info */
.team-card__info {
  padding: 16px 4px 0;
}

.team-card__name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.team-card--featured .team-card__name {
  color: var(--color-accent);
}

.team-card__role {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Our People */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .team-card__name {
    font-size: 1rem;
  }

  .team-card__role {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .team-card__image-wrapper {
    border-radius: 12px;
  }

  .team-card__info {
    padding: 12px 2px 0;
  }

  .team-card__name {
    font-size: 0.9rem;
  }

  .team-card__social-link {
    width: 28px;
    height: 28px;
  }

  .team-card__location {
    padding: 6px 10px;
    font-size: 0.6rem;
  }
}

.portfolio-hero {
  background-image: url("../../assets/images/hero/page-hero-portfolio.jpg");
}

.services-hero {
  background-image: url("../../assets/images/hero/page-hero-services.jpg");
}

.projects-hero {
  background-image: url("../../assets/images/hero/page-hero-projects.jpg");
}

.contact-hero {
  background-image: url("../../assets/images/hero/page-hero-contact.jpg");
}

.about-us-hero {
  background-image: url("../../assets/images/hero/page-hero-about-us.jpg");
}

.project-details-hero {
  background-image: url("../../assets/images/hero/page-hero-project-details.jpg");
}

.discover-more {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.btn-pill-common {
  width: fit-content;
}

/* ==========================================================================
   31. Project Page Components
   ========================================================================== */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 64px;
}

.project-list-card {
  display: flex;
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.project-list-card__image-wrapper {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.project-list-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.project-list-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.project-list-card:hover .project-list-card__image {
  transform: scale(1.05);
}

.project-list-card__content {
  flex: 0 0 50%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.project-list-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.project-list-card__id {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  margin-bottom: 4px;
}

.project-list-card__id::after {
  content: "PROJECT ID";
  display: block;
  font-size: 0.625rem;
  color: #999;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
}

.project-list-card__year {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  text-align: right;
  display: block;
  margin-bottom: 4px;
}

.project-list-card__year::after {
  content: "YEAR";
  display: block;
  font-size: 0.625rem;
  color: #999;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  text-align: right;
}

.project-list-card__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-bg-dark);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.project-list-card__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
  max-width: 90%;
}

/* Details Grid */
.project-list-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
  margin-bottom: 24px;
}

.project-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.project-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-detail-label svg {
  color: var(--color-accent);
}

.project-detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-bg-dark);
}

/* Button */
.project-list-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1c1c1c;
  color: white;
  padding: 8px 8px 8px 24px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 100%;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.project-list-card__btn:hover {
  background-color: var(--color-accent);
}

.btn-icon-circle {
  width: 36px;
  height: 36px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c1c1c;
  transition: transform 0.3s ease;
}

.project-list-card__btn:hover .btn-icon-circle {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 900px) {
  .project-list-card {
    flex-direction: column;
    min-height: auto;
    height: auto;
  }

  .project-list-card__image-wrapper {
    flex: 0 0 300px;
    height: 300px;
  }

  .project-list-card__content {
    flex: 1;
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .project-list-card__details {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.project-details-section {
  padding-bottom: var(--spacing-xl);
  background-color: var(--color-bg-beige);
}

.project-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

/* Left Column: Info */
.project-info-col {
  padding-right: var(--spacing-md);
}

.project-concept {
  margin-bottom: var(--spacing-lg);
}

.project-concept-title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: #1a1a1a;
}

.project-concept-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  max-width: 90%;
}

/* Data Blocks */
.project-data-block {
  margin-bottom: var(--spacing-md);
}

.varticle-bar {
  border-left: 2px solid var(--color-accent);
  padding-left: var(--spacing-sm);
}

.project-data-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.dot-indicator {
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
}

.project-data-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-accent);
  text-transform: uppercase;
}

.project-client-name {
  font-size: 2rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-top: 4px;
}

.project-data-label-sm {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #999;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.project-data-value {
  font-size: 2rem;
  font-weight: 500;
  color: #1a1a1a;
}

.project-data-value-md {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a1a1a;
}

/* Features Pills */
.project-features-block {
  margin-top: var(--spacing-lg);
}

.project-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.project-features-block .project-data-label-sm {
  color: var(--color-text-main);
  font-size: 0.8rem;
}

.feature-pill {
  border: 1px solid #e0e0e0;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-text-main);
  background: white;
  transition: all 0.3s;
}

.feature-pill:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Right Column: Gallery */
.project-gallery-col {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.project-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.project-gallery-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.dot-indicator-sm {
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
}

/* Next Project Button */
.next-project-wrapper {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-xl);
}

/* Responsive */
@media (max-width: 900px) {
  .project-details-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .project-info-col {
    padding-right: 0;
  }
}

/* ==========================================================================
   32. Services Page Sections
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: var(--spacing-md);
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-card__img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.1);
}

.service-card__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  color: var(--color-accent);
  padding: 4px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.full-services-section {
  background-color: var(--color-bg-beige);
}

.service-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
  padding: 0 10px;
}

.service-card__list {
  list-style: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #f5f5f5;
  margin-top: 6px;
}

.service-card__item {
  font-size: 0.95rem;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.service-card__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #eee;
  border-radius: 50%;
}

.service-card__item:hover::before {
  background: var(--color-accent);
}

.service-card__item a {
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.service-card__item:hover a {
  color: var(--color-accent);
  font-weight: 600;
}

.service-card__item--active {
  color: var(--color-accent);
}

.service-card__item--active::before {
  background: var(--color-accent);
}

.service-card__item--active a {
  font-weight: 600;
}

.service-card__arrow {
  font-weight: 400;
  opacity: 0;
}

.service-card__item:hover .service-card__arrow,
.service-card__item--active .service-card__arrow {
  opacity: 1;
}

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

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

  .service-card__title {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   33. Expertise Section
   ========================================================================== */
.expertise-section {
  background-color: var(--color-bg-body);
  padding: var(--spacing-xl) 0;
}

.expertise-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
}

.expertise-title .thin {
  font-weight: 300;
  color: #666;
}

.expertise-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 400px;
  line-height: 1.6;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  margin-top: var(--spacing-md);
  align-items: flex-start;
}

/* Branding Image */
.expertise-branding__img-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.expertise-branding__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-branding__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.expertise-branding__tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.expertise-branding__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

/* Disciplines Accordion */
.expertise-disciplines {
  display: flex;
  flex-direction: column;
}

.expertise-item {
  border-top: 1px solid #eee;
  padding: 30px 0;
  transition: all 0.4s ease;
  overflow: hidden;
}

.expertise-item:last-child {
  border-bottom: 1px solid #eee;
}

.expertise-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.expertise-item__title-group {
  display: flex;
  align-items: center;
  gap: 30px;
}

.expertise-item__number {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ccc;
  transition: color 0.3s ease;
}

.expertise-item__title {
  font-size: 2rem;
  font-weight: 600;
  color: #999;
  transition: all 0.3s ease;
}

.expertise-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: all 0.3s ease;
}

.expertise-item--active .expertise-item__number {
  color: var(--color-accent);
}

.expertise-item--active .expertise-item__title {
  color: #1a1a1a;
}

.expertise-item--active .expertise-item__icon {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

/* Content Area */
.expertise-item__content {
  max-height: 0;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 55px; /* Aligns with title after number */
}

.expertise-item--active .expertise-item__content {
  max-height: 500px;
  opacity: 1;
  margin-top: 25px;
}

.expertise-item__desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 550px;
}

.expertise-sublist-wrapper {
  display: flex;
  gap: 40px;
  background: #fcfcfc;
  padding: 15px 25px;
  border-radius: 12px;
  width: fit-content;
}

.expertise-sublist {
  list-style: none;
  padding: 0;
}

.expertise-sublist li {
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
  margin: 10px 0;
  position: relative;
  padding-left: 15px;
}

.expertise-sublist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

/* Responsive Expertise */
@media (max-width: 1024px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .expertise-item__title {
    font-size: 1.5rem;
  }

  .expertise-sublist-wrapper {
    flex-direction: column;
    gap: 0;
  }
}

/* ==========================================================================
   34. Blog Page Layout
   ========================================================================== */
.blog-content {
  padding: 100px 0;
}

.blog-grid-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}

/* Blog Items */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.blog-item {
  position: relative;
}

.blog-item__img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-item__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-item__img {
  transform: scale(1.05);
}

.blog-item {
  padding-bottom: 60px;
  border-bottom: 1px solid #eee;
}

.blog-item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.blog-item__tags {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  gap: 10px;
}

.blog-item__tag {
  background: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #333;
  letter-spacing: 1px;
}

.blog-item__content-row {
  display: flex;
  gap: 40px;
}

.blog-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.blog-item__date .day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #1a1a1a;
}

.blog-item__date .month {
  font-size: 0.75rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-item__info {
  flex: 1;
}

.blog-item__title {
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 20px;
  line-height: 1.1;
  transition: opacity 0.3s;
}

.blog-item__title:hover {
  opacity: 0.8;
}

.blog-item__excerpt {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.blog-item__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.read-article {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.read-article__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.read-article:hover .read-article__icon {
  background: var(--color-accent);
  color: white;
}

.read-article__icon--active {
  background: var(--color-accent);
  color: white;
}

.blog-item__category {
  font-size: 0.75rem;
  font-weight: 800;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   35. Sidebar Widgets
   ========================================================================== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.sidebar-widget__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.sidebar-widget__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #eee;
}

/* Specific Search Widget */
.search-widget {
  background: #fafaf9;
  padding: 40px;
  border-radius: 30px;
}

.sidebar-widget:first-of-type .sidebar-widget__title {
  margin-bottom: 20px;
}

.sidebar-widget:first-of-type .sidebar-widget__title::after {
  display: none;
}

.search-box {
  position: relative;
}

.search-box__input {
  width: 100%;
  padding: 18px 25px 18px 55px;
  border-radius: 12px;
  border: 1px solid #eee;
  background: white;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.search-box__input:focus {
  border-color: var(--color-accent);
}

.search-box__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ccc;
}

/* Categories Widget */
.categories-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  padding: 5px 0;
  transition: color 0.3s;
}

.category-link:hover,
.category-link--active {
  color: var(--color-accent);
}

.category-count {
  width: 32px;
  height: 32px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #999;
}

.category-link:hover .category-count,
.category-link--active .category-count {
  background: var(--color-accent);
  color: white;
}

/* Recent Posts Widget */
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.recent-post-card {
  display: flex;
  gap: 20px;
  align-items: center;
}

.recent-post-img {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  object-fit: cover;
}

.recent-post-info {
  flex: 1;
}

.recent-post-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 8px;
  display: block;
}

.recent-post-meta {
  font-size: 0.8rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-btn {
  padding: 10px 20px;
  background: #f8f8f8;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  transition: all 0.3s;
}

.tag-btn:hover,
.tag-btn--active {
  background: #1a1a1a;
  color: white;
}

/* Sidebar Newsletter Widget */
.blog-load-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.load-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1.5px;
  min-width: 250px;
}

.load-more-btn:hover {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: white;
}

/* Sidebar Newsletter Widget */
.sidebar-newsletter {
  background: #1a1917;
  padding: 50px 40px;
  border-radius: 30px;
  color: white;
  text-align: center;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.newsletter-desc {
  font-size: 0.95rem;
  color: #999;
  margin-bottom: 30px;
}

.newsletter-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-input {
  width: 100%;
  padding: 18px 25px;
  background: #2a2a2a;
  border: none;
  border-radius: 12px;
  color: white;
  outline: none;
}

.newsletter-submit {
  width: 100%;
  padding: 18px;
  background: #bc5a41;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-submit:hover {
  background: #a44d36;
}

/* Responsive Grid */
@media (max-width: 1200px) {
  .blog-grid-layout {
    gap: 40px;
  }
  .blog-item__title {
    font-size: 2.2rem;
  }
  .page-hero__title {
    font-size: 4rem;
  }
}

@media (max-width: 991px) {
  .blog-grid-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    margin-top: 60px;
  }
  .page-hero__title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 507px;
  }
  .page-hero__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .page-hero__title {
    font-size: 48px; /* Fixed size as requested */
  }
  .page-hero__label-group {
    margin-bottom: 1.5rem;
  }
  .blog-item__content-row {
    flex-direction: column;
    gap: 20px;
  }
  .blog-item__date {
    flex-direction: row;
    gap: 10px;
    align-items: baseline;
  }
  .blog-item__title {
    font-size: 2rem;
  }
  .blog-item__img-wrapper {
    border-radius: 16px;
  }
}

/* Success Numbers Section */
.success-numbers {
  background-color: #1a1917;
  padding: 80px 0;
  color: white;
}

.success-numbers__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.success-numbers__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.success-numbers__value {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  letter-spacing: -1px;
}

.success-numbers__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .success-numbers__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .success-numbers {
    padding: 60px 0;
  }

  .success-numbers__value {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .success-numbers__container {
    gap: 32px 16px;
  }

  .success-numbers__value {
    font-size: 2rem;
  }

  .success-numbers__label {
    font-size: 0.65rem;
  }
}

/* ==========================================================================
   36. Single Blog Page
   ========================================================================== */

.article-section {
  padding: 100px 0;
  background-color: white;
}

.article-container {
  display: flex;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Social Share Sidebar */
.social-sidebar {
  width: 40px;
  flex-shrink: 0;
}

.social-sidebar__sticky {
  position: sticky;
  top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.share-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #999;
  text-transform: uppercase;
}

.share-line {
  width: 1px;
  height: 40px;
  background-color: #eee;
}

.share-icon {
  width: 36px;
  height: 36px;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s;
}

.share-icon:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Article Body */
.article-body {
  flex-grow: 1;
}

.article-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444;
}

.article-content p {
  margin-bottom: 2rem;
}

.article-content h2,
.article-content h3 {
  margin: 3rem 0 1.5rem;
  color: var(--color-bg-dark);
  font-weight: 700;
}

.article-content h2 {
  font-size: 1.75rem;
}

.article-content h3 {
  font-size: 1.5rem;
}

/* Article Image */
.article-image-box {
  margin: 4rem 0;
}

.article-image-box img {
  border-radius: 20px;
  width: 100%;
}

.article-image-caption {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  margin-top: 1.5rem;
}

/* Bottom Tags */
.article-footer {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid #eee;
}

.article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 4rem;
}

.article-tags__label {
  font-weight: 700;
  font-size: 1.15rem;
  color: #1a1a1a;
  margin-right: 8px;
}

.article-tag {
  background: #f4f4f4;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.article-tag:hover {
  background: #ebebeb;
  color: #111;
}

/* Author Box */
.author-box {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.author-box__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-box__info {
  flex-grow: 1;
}

.author-box__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.author-box__name {
  font-weight: 700;
  font-size: 1.25rem;
  color: #1a1a1a;
}

.author-box__label {
  background: #ffebe6;
  color: var(--color-accent);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.author-box__bio {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.author-box__social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.author-box__social-link {
  width: 32px;
  height: 32px;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s;
  text-decoration: none;
}

.author-box__social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

@media (max-width: 991px) {
  .article-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 15px;
  }

  .social-sidebar {
    display: none;
  }

  .article-body {
    width: 100%;
  }

  .article-content {
    font-size: 1rem;
  }

  .article-image-box {
    margin: 2.5rem 0;
  }

  /* Social Share Mobile (Refined Design) */
  .social-share-mobile {
    display: block !important;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }

  .share-header-mobile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
  }

  .share-line-mobile {
    height: 1px;
    width: 40px;
    background: #ccc;
  }

  .share-label-mobile {
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .share-icons-mobile {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
  }

  .share-icons-mobile .share-icon {
    width: 44px;
    height: 44px;
    border: 1px solid #eee;
    color: #333;
  }

  .article-footer {
    margin-top: 3rem;
    padding-top: 0;
    border-top: none;
  }

  .article-tags {
    gap: 15px;
  }

  .article-tags__label {
    width: auto;
    margin-bottom: 0;
  }

  .author-box {
    flex-direction: column;
    gap: 25px;
    padding: 30px;
  }

  .author-box__img {
    width: 110px;
    height: 110px;
  }
}

/* ==========================================================================
   Related Posts Section
   ========================================================================== */

.related-posts {
  padding: 80px 0;
  background-color: var(--color-bg-beige);
}

.related-posts__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  margin-bottom: 40px;
}

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-post-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-post-card__image-wrap {
  position: relative;
  margin-bottom: 20px;
}

.related-post-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.related-post-card__tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-bg-dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.related-post-card__tag svg {
  color: var(--color-accent);
}

.related-post-card__heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-bg-dark);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.related-post-card:hover .related-post-card__heading {
  color: var(--color-accent);
}

.related-post-card__date {
  font-size: 0.8rem;
  color: #57534e;
}

@media (max-width: 991px) {
  .related-posts__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .related-posts__title {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   37. Contact Page Sections
   ========================================================================== */

.contact-content {
  padding: 100px 0;
  background-color: #fff;
}

.contact-content__grid {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.contact-content__info {
  flex: 1;
}

.contact-content__details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.contact-detail__title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  margin-bottom: 2px;
}

.contact-detail__text {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

/* Contact Form */
.contact-content__form-wrap {
  flex: 1;
}

.contact-form__row {
  display: flex;
  gap: 20px;
}

.contact-form__group {
  margin-bottom: 20px;
  flex: 1;
}

.contact-form__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-bg-dark);
  margin-bottom: 8px;
}

.contact-form__input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
  font-size: 0.9rem;
  font-family: inherit;
  color: #333;
  transition: border-color 0.3s;
  outline: none;
  box-sizing: border-box;
}

.contact-form__input::placeholder {
  color: #bbb;
}

.contact-form__input:focus {
  border-color: #ccc;
}

.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ==========================================================================
   38. Global Presence Section
   ========================================================================== */

.global-presence {
  padding: 80px 0 100px;
  background-color: var(--color-bg-beige);
}

.global-presence__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.global-presence__card {
  display: block;
}

.global-presence__city {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  margin-bottom: 8px;
}

.global-presence__address,
.global-presence__phone {
  font-size: 0.85rem;
  color: #777;
  margin: 0 0 4px;
  line-height: 1.6;
}

.global-presence__email {
  font-size: 0.85rem;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}

.global-presence__email:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .contact-content__grid {
    flex-direction: column;
    gap: 50px;
  }

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

/* ==========================================================================
   39. 404 Error Page
   ========================================================================== */

.error-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-beige);
  padding: 120px 0 80px;
}

.error-section__content {
  text-align: center;
  position: relative;
}

.error-section__watermark {
  display: block;
  font-size: 15rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.error-section__header-wrap {
  position: relative;
  display: inline-block;
}

.error-section__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}

.error-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  margin-bottom: 15px;
  position: relative;
}

.error-section__text {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 35px;
  position: relative;
}

.error-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  position: relative;
}

.error-section__go-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-bg-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.error-section__go-back:hover {
  color: var(--color-accent);
}

@media (max-width: 991px) {
  .error-section__watermark {
    font-size: 8rem;
  }

  .error-section__title {
    font-size: 1.8rem;
  }

  .error-section__actions {
    flex-direction: column;
    gap: 20px;
  }
}

.social-share-mobile {
  display: none;
}

/* ==========================================================================
   21. Journal Subscribe Section
   ========================================================================== */
.journal-subscribe {
  background-color: var(--color-bg-dark);
  padding: 100px 0;
  text-align: center;
  color: white;
}

.journal-subscribe__container {
  display: flex;
  justify-content: center;
}

.journal-subscribe__content {
  max-width: 650px;
}

.journal-subscribe__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}

.journal-subscribe__text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.journal-subscribe__form {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.journal-subscribe__input {
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  color: white;
  min-width: 320px;
  font-size: 14px;
  outline: none;
}

.journal-subscribe__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.btn--subscribe {
  background-color: var(--color-accent);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0 32px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--subscribe:hover {
  background-color: #a64d36;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .journal-subscribe {
    padding: 60px 0;
  }

  .journal-subscribe__title {
    font-size: 28px;
  }

  .journal-subscribe__form {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .journal-subscribe__input {
    width: 100%;
    min-width: auto;
  }

  .btn--subscribe {
    width: 100%;
    padding: 16px 0;
  }
}

/* ==========================================================================
   40. Global Responsiveness
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --font-size-base: 15px;
    --spacing-xl: 5rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero_image_nav {
    gap: 0.8rem;
    margin-right: 1.5rem;
  }

  .hero_nav_image_container:nth-of-type(2) {
    display: none;
  }

  .hero_nav_image_container {
    height: 8rem;
    width: 6.5rem;
  }

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

  .stats-grid .stat-card--dark {
    grid-column: span 2;
  }

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

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

  .stats-row {
    padding: 0 1rem;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .gallery-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-item__title {
    font-size: 18px;
  }

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

  .holistic-card--featured {
    grid-column: span 2;
  }

  .holistic-card--vertical {
    min-height: 320px;
  }

  .team-layout {
    grid-template-columns: 320px 1fr;
    gap: 20px;
  }

  .team-name {
    padding: 24px 28px;
  }

  .team-showcase {
    padding: 36px 40px;
  }

  .team-showcase__name {
    font-size: 48px;
  }

  .team-showcase__stats {
    gap: 48px;
  }

  .team-item__value {
    font-size: 40px;
  }

  /* Vision Section Adjustments */
  .vision-section {
    height: 500px;
  }

  .vision-section__title {
    font-size: 48px;
  }

  /* Textures Section Adjustments */
  .textures-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FAQ Section Adjustments */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-title {
    font-size: 2.8rem;
  }

  /* CTA Section Adjustments */
  .build-cta-title {
    font-size: 3rem;
  }

  .build-cta-section {
    padding: 80px 0;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex; /* Changed from block to flex */
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .nav--active {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    gap: 15px;
  }

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

  .split-layout,
  .team-layout,
  .testimonial-layout {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

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

  .holistic-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .holistic-card--featured {
    grid-column: span 1;
    min-height: 420px;
  }

  .team-layout {
    grid-template-columns: 1fr;
  }

  .team-list {
    max-width: 100%;
  }

  .team-showcase {
    min-height: 600px;
  }

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

  /* Transform vertical cards to horizontal on mobile */
  .holistic-card--vertical {
    min-height: auto;
    padding: 20px 24px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .holistic-card--vertical .holistic-card__vertical-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    gap: 20px;
  }

  .holistic-card__title-vertical {
    writing-mode: horizontal-tb;
    transform: none;
    letter-spacing: 1px;
    font-size: 18px;
    margin: 0;
    flex: 1;
    order: 2; /* Title in middle */
  }

  .holistic-card__icon-circle {
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    order: 3; /* Icon last */
  }

  .holistic-card__number-vertical {
    margin-top: 0;
    font-size: 24px;
    order: 1; /* Number first */
  }
}

@media (max-width: 600px) {
  :root {
    --spacing-xl: 3rem;
    --spacing-lg: 2rem;
  }

  .flex-center,
  .u-flex-center {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .footer__watermark {
    font-size: 2rem;
    letter-spacing: 6px;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__explore-btn-img {
    width: 80%;
    height: 80%;
  }

  .hero__side-nav-container {
    height: 10rem;
  }

  .hero__image-wrapper {
    height: 400px;
  }

  .split-layout,
  .stats-grid,
  .holistic-grid,
  .steps-grid,
  .team-layout,
  /* Pricing grid mobile */
  .features-grid,
  .pricing-grid,
  .testimonials-grid,
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .testimonials-grid,
  .project-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    scroll-behavior: smooth;
    width: 100%;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Webkit */
  }

  .testimonial-card,
  .project-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    height: auto;
    min-height: 400px;
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    scroll-behavior: smooth;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Webkit */
  }

  .gallery-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .gallery-item__action {
    opacity: 1;
    transform: translate(0, 0);
  }

  .gallery-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    overflow: hidden;
  }

  .gallery-filter-bar {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    gap: 10px;
    padding-bottom: 8px;
    /* Extra padding for shadows/overflow */
    justify-content: flex-start;
  }

  .gallery-filter-bar::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .filter-btn {
    white-space: nowrap;
    padding: 10px 20px;
    flex: 0 0 auto;
    /* Prevent buttons from shrinking */
  }

  .stats-row {
    flex-direction: column;
    gap: 3rem;
  }

  .stats-grid .stat-card--dark {
    grid-column: span 1;
  }

  .section-title-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .section-subtext {
    max-width: 100%;
  }

  .testimonial-card {
    height: auto;
    flex-direction: column-reverse;
    /* Image on top on mobile? or Bottom? Let's do Image on Top actually, standard card behavior. But design had text left. changing to column-reverse puts image on top if we want, or column puts image on bottom. Let's do column-reverse so image is first? No let's stick to text then image stack. flex-direction: column */
    flex-direction: column;
  }

  .testimonial-card__image-wrapper {
    width: 100%;
    height: 200px;
  }

  .testimonial-card__content {
    padding: 30px;
  }

  .section-header--between,
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* Testimonial header mobile adjustments */
  .testimonial-header-right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .testimonial-header-right .slider-nav {
    align-self: flex-end;
    margin-top: 10px;
  }

  .project-card {
    min-width: 85%;
    scroll-snap-align: start;
  }

  /* Pricing Header Responsive */
  .pricing-header-actions {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .pricing-header-actions .section-subtext {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }

  .pricing-toggle-container {
    justify-content: center;
  }

  .project-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .footer {
    padding: 60px 0 40px;
  }

  .footer__hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
    padding-bottom: 40px;
  }

  .footer__cta-title {
    font-size: 2.5rem;
    line-height: 1.1;
    text-align: left;
  }

  .footer__start-btn {
    width: 90px;
    height: 90px;
    font-size: 10px;
    flex-shrink: 0;
  }

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

  .footer__newsletter-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .footer__newsletter-form {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .footer__nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }

  .footer__nav-col--divider {
    border-left: none;
    padding-left: 0;
  }

  .footer__brand-area {
    margin-top: 40px;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    position: relative;
  }

  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
  }

  .footer__nav-list a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
  }

  .footer__nav-title {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-bottom: 32px;
  }

  .footer__watermark {
    font-size: 4rem;
    /* Reduced from 5.5rem to prevent overflow */
    letter-spacing: 4px;
    /* Reduced from 12px */
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
  }

  .footer__vision {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    width: 100%;
    text-align: left;
  }

  .footer__copyright {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* margin-top: 60px; */
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer__copyright span,
  .footer__link {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
  }

  .holistic-card--featured .holistic-card__title {
    font-size: 20px;
  }

  .holistic-card__number {
    font-size: 28px;
  }

  .holistic-card--featured .holistic-card__text {
    font-size: 14px;
  }

  .holistic-card__img-wrapper {
    height: 180px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-item {
    padding: 28px 24px;
    min-height: 320px;
  }

  .step-item__number {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .step-item__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .step-item__icon svg {
    width: 20px;
    height: 20px;
  }

  .step-item__title {
    font-size: 20px;
  }

  .step-item__text {
    font-size: 14px;
  }

  .team-layout {
    gap: 16px;
  }

  .team-name {
    padding: 20px 24px;
  }

  .team-name__title {
    font-size: 16px;
  }

  .team-showcase {
    padding: 32px 28px;
    min-height: 500px;
  }

  .team-showcase__social {
    top: 32px;
    right: 28px;
    gap: 8px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .team-showcase__name {
    font-size: 36px;
  }

  .team-showcase__description {
    font-size: 14px;
  }

  .team-showcase__stats {
    gap: 32px;
  }

  .stat-item__value {
    font-size: 32px;
  }

  .stat-item__label {
    font-size: 10px;
  }

  /* Vision Section Adjustments Mobile */
  .vision-section {
    height: 400px;
  }

  .vision-section__play-btn {
    width: 80px;
    height: 80px;
  }

  .vision-section__title {
    font-size: 32px;
  }

  /* Textures Section Adjustments Mobile */
  .textures-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .textures-section {
    padding: 60px 0;
  }

  /* FAQ Section Adjustments Mobile */
  .faq-section {
    padding: 80px 0;
  }

  .faq-title {
    font-size: 2.2rem;
  }

  .faq-description {
    max-width: 100%;
  }

  .faq-question {
    font-size: 1.15rem;
  }

  .faq-item {
    padding: 25px 0;
  }

  /* CTA Section Adjustments Mobile */
  .build-cta-title {
    font-size: 2.2rem;
  }

  .build-cta-description {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .build-cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn--primary,
  .btn--outline-white {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
  }
}

/* ==========================================================================
   41. Animations & Utilities
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}
