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

:root {
  --white: #FAFAF8;
  --espresso: #000642;
  --wood: #7070be;
  --wood-light: #4f44b7;
  --beige: #394ad0;
  --linen: #EDE7DC;
  --stone: #4A4540;
  --stone-light: #7A736C;
  --charcoal: #19162c;
  --border: rgba(28, 68, 176, 0.18);

}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--espresso);
  overflow-x: hidden;
  max-width: 100%;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--wood);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: multiply;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--wood);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.25s ease, width 0.3s, height 0.3s, border-color 0.3s;
  transform: translate(-50%, -50%);
}

.cursor-ring.expand {
  width: 56px;
  height: 56px;
  border-color: var(--wood-light);
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--linen);
}

::-webkit-scrollbar-thumb {
  background: var(--wood);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 48px;
  transition: background 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s;
  background-color: #fff !important;
}

nav.scrolled {
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(16px);
  /* padding: 16px 48px; */
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  width: 200px !important;
}

.nav-logo img {
  width: 65%;
  height: auto;
  display: block;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.4s;
}

nav.scrolled .nav-logo-name {
  color: var(--espresso);
}

.nav-logo-sub {
  font-size: 0.48rem;
  font-weight: 500;
  color: var(--wood);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.4s;
  white-space: nowrap;
  margin-top: 4px;
}

nav.scrolled .nav-logo-sub {
  color: var(--stone-light);
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #19162c !important;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

nav.scrolled .nav-links a {
  color: var(--stone);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--wood);
  transition: width 0.4s ease;
}

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

.nav-cta {
  padding: 10px 24px;
  border: 2px solid rgb(0 6 66);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000642;
  text-decoration: none;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

nav.scrolled .nav-cta {
  border-color: var(--wood);
  color: var(--wood);
}

.nav-cta:hover {
  background: var(--wood);
  border-color: var(--wood);
  color: var(--white) !important;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100%;
  /* min-height: 700px; */
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 14%;
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.1);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide:nth-child(1) {
  animation: kenBurns1 24s ease-out infinite alternate;
}

.hero-slide:nth-child(2) {
  animation: kenBurns2 24s ease-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 19, 30, 0.3) 0%, rgba(18, 19, 30, 0.15) 50%, rgba(18, 19, 30, 0.75) 100%);
  z-index: 2;
}

@keyframes kenBurns1 {
  0% {
    transform: scale(1.05) translate(0, 0);
  }

  100% {
    transform: scale(1.18) translate(-1.5%, -1%);
  }
}

@keyframes kenBurns2 {
  0% {
    transform: scale(1.18) translate(1.5%, 1%);
  }

  100% {
    transform: scale(1.05) translate(0, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 48px 80px;
  max-width: 1200px;
}

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.3s;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--beige);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 780px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease 0.5s;
}

.hero-h1 em {
  font-style: italic;
  color: var(--beige);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.9s;
}

.hero-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.7);
  line-height: 1.8;
  max-width: 320px;
  letter-spacing: 0.02em;
}

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

.btn-primary {
  padding: 14px 32px;
  background: var(--wood);
  color: var(--white);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--espresso);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 250, 248, 0.3);
  padding-bottom: 2px;
  transition: all 0.3s;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: var(--white);
}

.hero-loaded .hero-eyebrow,
.hero-loaded .hero-h1,
.hero-loaded .hero-bottom {
  opacity: 1;
  transform: translateY(0);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

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

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
}

.scroll-text {
  writing-mode: vertical-lr;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: rgba(250, 250, 248, 0.5);
  text-transform: uppercase;
}

.hero-year-badge {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  text-align: right;
  z-index: 2;
}

.hero-year {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 400;
  color: rgba(250, 250, 248, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--espresso);
  padding: 14px 0;
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
}

.marquee-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--wood);
  flex-shrink: 0;
}

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

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

/* ===== SECTION COMMONS ===== */
section {
  position: relative;
}

.section-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--wood);
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* ===== TRUST SECTION ===== */
#trust {
  padding: 120px 48px;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.trust-left {
  padding-right: 80px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--espresso);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.trust-headline em {
  font-style: italic;
  color: var(--wood);
}

.trust-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: #000000;
  /* max-width: 468px; */
  margin-bottom: 40px !important;
  text-align: justify;
}

.client-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.client-tab {
  padding: 8px 20px;
  border: 1px solid var(--border);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  cursor: pointer;
  background: none;
  transition: all 0.3s;
  opacity: 0.7;
}

.client-tab:hover,
.client-tab.active {
  background: var(--wood);
  border-color: var(--wood);
  color: var(--white);
  opacity: 1;
}

.trust-clients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-client-tag {
  padding: 6px 16px;
  border: 1px solid var(--border);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  transition: all 0.3s;
}

.trust-client-tag:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--white);
}

.trust-right {
  padding-left: 80px;
}

.trust-achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}


.trust-achievement-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-achievement-num span {
  font-size: 1.4rem;
  color: var(--wood);
}

.trust-achievement-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-light);
  line-height: 1.5;
}

.trust-achievement-desc {
  font-size: 0.78rem;
  color: var(--stone-light);
  margin-top: 4px;
  line-height: 1.6;
  font-weight: 300;
}

/* ===== ABOUT / STORY ===== */
#about {
  background: var(--espresso);
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.about-image-col {
  position: relative;
  overflow: hidden;
}

.about-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transition: transform 8s ease;
  filter: brightness(0.85);
}

.about-image-col:hover img {
  transform: scale(1);
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(20, 14, 10, 0.9), transparent);
}

.about-image-caption {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige);
  opacity: 0.7;
}

.about-content-col {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.about-headline em {
  font-style: italic;
  color: var(--beige);
}

.about-body {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgb(255, 255, 255);
  margin-bottom: 40px;
  max-width: 460px;
}

.about-timeline {
  margin-top: 48px;
  position: relative;
  padding-left: 24px;
  border-left: 1px solid rgba(139, 111, 78, 0.3);
}

.timeline-item {
  margin-bottom: 32px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--wood);
  background: var(--espresso);
  border-radius: 50%;
}

.timeline-year {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--wood);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgb(255, 255, 255);
  line-height: 1.6;
}

.about-chairman {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(139, 111, 78, 0.2);
}

.chairman-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(196, 180, 154, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
}

.chairman-name {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 8px;
}

.chairman-title {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #ffff;
  margin-top: 4px;
}

/* ===== STATS ===== */
#stats {
  background: var(--linen);
  padding: 100px 48px;
}

.stats-header {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.stats-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.1;
  /* max-width: 400px; */
}

.stats-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--stone-light);
  max-width: 320px;
}

.stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.stat-item {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--wood);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  background: var(--white);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-num .suffix {
  font-size: 1.5rem;
  color: var(--wood);
  vertical-align: super;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-light);
  line-height: 1.5;
}

.stat-sub {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--beige);
  margin-top: 6px;
}

/* ===== SERVICES ===== */
#services {
  padding: 120px 48px;
  background: var(--white);
}

.services-header {
  max-width: 1400px;
  margin: 0 auto 80px;
}

.services-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.05;
  /* max-width: 700px; */
}

.services-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto 60px;
}

.service-tab {
  padding: 16px 32px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.service-tab:hover {
  color: var(--espresso);
}

.service-tab.active {
  color: var(--espresso);
  border-bottom-color: var(--wood);
}

.services-content {
  max-width: 1400px;
  margin: 0 auto;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.services-content.active {
  display: grid;
}

.services-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.services-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.services-content.active .services-visual img {
  transform: scale(1);
}

.services-list-col {
  padding: 60px 72px;
  background: var(--linen);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-items {}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--espresso);
  transition: color 0.3s;
}

.service-item:hover .service-item-name {
  color: var(--wood);
}

.service-item-arrow {
  font-size: 1rem;
  color: var(--wood);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}

.service-item:hover .service-item-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== PORTFOLIO ===== */
#portfolio {
  padding: 0;
  background: var(--espresso);
}

.portfolio-header {
  padding: 100px 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
}

.portfolio-headline em {
    font-style: italic;
    color: #a1a7d5;
}

.portfolio-filters {
  display: flex;
  gap: 8px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid rgba(196, 180, 154, 0.25);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffffc9;
  cursor: pointer;
  background: none;
  transition: all 0.3s;
  opacity: 0.6;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--wood);
  border-color: var(--wood);
  color: var(--white);
  opacity: 1;
}

.portfolio-grid {
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 440px 440px;
  gap: 24px;
  padding: 0 48px 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-grid.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.portfolio-grid .p-item:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.p-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 6, 66, 0.15);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.p-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 6, 66, 0.25);
}

.p-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
  filter: brightness(0.95) contrast(1.02) saturate(1.05);
}

.p-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.8) contrast(1.05);
}

.p-item-overlay {
  position: absolute;
  inset: 0;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* background: linear-gradient(to top, rgba(0, 6, 66, 0.95) 0%, rgba(0, 6, 66, 0.3) 50%, transparent 100%); */
  transition: all 0.4s ease;
  border-radius: 16px;
}

.p-item-cat {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffff;
  margin-bottom: 8px;
  opacity: 0.95;
}

.p-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.p-item-link {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wood-light);
  text-decoration: none;
  border-bottom: 1px solid var(--wood-light);
  padding-bottom: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
  display: inline-block;
}

.p-item:hover .p-item-link {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LANDMARK PROJECTS ===== */
#landmark {
  padding: 120px 48px;
  background: var(--white);
}

.landmark-header {
  max-width: 1400px;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.landmark-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.1;
}

.landmark-desc {
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--stone-light);
}

.landmark-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.landmark-card {
  background: var(--white);
  padding: 40px;
  transition: all 0.4s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.landmark-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--wood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

.landmark-card:hover {
  background: var(--linen);
}

.landmark-card-idx {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--wood);
  margin-bottom: 20px;
}

.landmark-card-client {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.3;
  margin-bottom: 12px;
}

.landmark-card-type {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 16px;
}

.landmark-card-detail {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: #000000;
}

.landmark-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.landmark-card-area {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--espresso);
}

.landmark-card-area span {
  font-size: 0.7rem;
  color: #000000;
  letter-spacing: 0.1em;
  font-weight: 900;
}

.landmark-card-logo {
  height: 32px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.6) contrast(1.2);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.landmark-card:hover .landmark-card-logo {
  filter: none;
  opacity: 0.9;
}

/* ===== METHODOLOGY ===== */
#methodology {
  position: relative;
  padding: 120px 48px;
  background: radial-gradient(circle at 10% 20%, #080d32 0%, #03041c 45%, #01020a 100%);
  overflow: hidden;
}

/* Ambient background glows with subtle hover motion */
.methodology-glow-1 {
  position: absolute;
  top: -10%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(57, 74, 208, 0.18) 0%, rgba(0, 6, 66, 0) 70%);
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
  animation: ambientGlow1 20s infinite alternate ease-in-out;
}

.methodology-glow-2 {
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(112, 112, 190, 0.12) 0%, rgba(0, 6, 66, 0) 70%);
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
  animation: ambientGlow2 25s infinite alternate ease-in-out;
}

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

  100% {
    transform: translate(80px, 50px) scale(1.1);
  }
}

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

  100% {
    transform: translate(-100px, -40px) scale(1.05);
  }
}

/* Geometric line pattern overlay */
.methodology-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(250, 250, 248, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 250, 248, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
  pointer-events: none;
  z-index: 0;
}

.methodology-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.methodology-header {
  max-width: 1400px;
  margin: 0 auto 80px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.methodology-header .section-label {
  justify-content: center;
}

.methodology-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  max-width: 600px;
  margin-top: 12px;
}

/* Phase Columns Grid */
.phases-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .phases-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.phase-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.phase-header {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(250, 250, 248, 0.08);
}

.phase-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(250, 250, 248, 0.12);
  display: block;
  margin-bottom: 8px;
}

.phase-col:hover .phase-number {
  -webkit-text-stroke: 1px var(--wood);
  filter: drop-shadow(0 0 10px rgba(112, 112, 190, 0.2));
}

.phase-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.phase-subtitle {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.45);
  line-height: 1.4;
}

.phase-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  position: relative;
  padding: 32px 28px;
  background: rgba(250, 250, 248, 0.015);
  border: 1px solid rgba(250, 250, 248, 0.04);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  cursor: default;
}

.process-step:hover {
  transform: translateY(-8px);
  background: rgba(250, 250, 248, 0.05) !important;
  border-color: rgba(112, 112, 190, 0.3) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.step-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.3);
  border: 1px solid rgba(250, 250, 248, 0.08);
  padding: 3px 8px;
  border-radius: 20px;
  transition: all 0.4s;
}

.process-step:hover .step-badge {
  color: var(--white);
  border-color: var(--white);
  background: rgba(250, 250, 248, 0.05);
}

.process-step-icon {
  font-size: 1.6rem;
  color: var(--wood);
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
  line-height: 1;
}

.process-step:hover .process-step-icon {
  color: var(--white);
  transform: scale(1.12);
}

.process-step-name {
  font-size: 1.15rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.process-step-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgb(250 250 248);
  line-height: 1.5;
  transition: color 0.4s;
}

.process-step:hover .process-step-desc {
  color: rgba(250, 250, 248, 0.85);
}

/* ===== WHY AURACRAFT ===== */
#why {
  background-image: linear-gradient(to right, rgba(0, 6, 66, 0.97) 35%, rgba(0, 6, 66, 0.85) 100%), url('img/int-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

/* Ambient background glows for Why section */
.why-glow-1 {
  position: absolute;
  top: -10%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(112, 112, 190, 0.1) 0%, rgba(0, 6, 66, 0) 70%);
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}

.why-glow-2 {
  position: absolute;
  bottom: -15%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(57, 74, 208, 0.1) 0%, rgba(0, 6, 66, 0) 70%);
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.why-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.why-left {
  position: sticky;
  top: 120px;
}

.why-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.why-intro {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250, 250, 248, 0.5);
  margin-bottom: 40px;
}

.why-stat-big {
  font-family: 'Playfair Display', serif;
  font-size: 11rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(250, 250, 248, 0.06);
  line-height: 0.9;
  letter-spacing: -0.05em;
  position: absolute;
  bottom: -60px;
  left: -10px;
  z-index: -1;
  pointer-events: none;
  user-select: none;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

.why-left:hover .why-stat-big {
  -webkit-text-stroke: 1px rgba(57, 74, 208, 0.25);
  transform: scale(1.04);
  filter: drop-shadow(0 0 15px rgba(57, 74, 208, 0.15));
}

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

.why-feature {
  background: rgba(250, 250, 248, 0.015);
  border: 1px solid rgba(250, 250, 248, 0.04);
  border-radius: 16px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
  cursor: default;
}

.why-feature:first-child {
  padding-top: 36px;
}

.why-feature:hover {
  transform: translateY(-6px);
  background: rgba(250, 250, 248, 0.05);
  border-color: rgba(112, 112, 190, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-feature-icon-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  background: rgba(250, 250, 248, 0.02);
  border: 1px solid rgba(250, 250, 248, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
}

.why-feature:hover .why-feature-icon-wrapper {
  background: var(--beige);
  border-color: var(--beige);
  box-shadow: 0 0 15px rgba(57, 74, 208, 0.4);
  transform: scale(1.05);
}

.why-feature-icon {
  font-size: 1.4rem;
  color: var(--wood);
  transition: all 0.4s;
}

.why-feature:hover .why-feature-icon {
  color: var(--white);
}

.why-feature-num {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(250, 250, 248, 0.5);
  background: rgba(0, 6, 66, 0.8);
  border: 1px solid rgba(250, 250, 248, 0.1);
  padding: 2px 6px;
  border-radius: 10px;
  line-height: 1;
  letter-spacing: 0;
  transition: all 0.4s;
}

.why-feature:hover .why-feature-num {
  background: var(--white);
  color: var(--espresso);
  border-color: var(--white);
}

.why-feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.why-feature-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgb(250 250 248);
  transition: color 0.4s;
}


.why-feature:hover .why-feature-desc {
  color: rgba(250, 250, 248, 0.85);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 120px 48px;
  background: var(--white);
  overflow: hidden;
}

.testimonials-header {
  max-width: 1400px;
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.testimonials-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.1;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--stone);
  transition: all 0.3s;
}

.slider-btn:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--white);
}

.testimonials-slider {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.testimonial-item {
  flex: 0 0 calc(33.333% - 16px);
  margin-right: 24px;
  padding: 48px 40px;
  background: var(--linen);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--beige);
  line-height: 1;
  opacity: 0.4;
  margin-bottom: -16px;
  display: block;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--wood);
}

.testimonial-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.05em;
}

.testimonial-role {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--stone-light);
  margin-top: 2px;
  letter-spacing: 0.05em;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--espresso);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.contact-info {
  padding: 100px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(139, 111, 78, 0.2);
}

.contact-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
}

.contact-headline em {
  font-style: italic;
  color: var(--beige);
}

.contact-body {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(196, 180, 154, 0.65);
  margin-bottom: 48px;
  max-width: 380px;
}

.contact-details {
  margin-bottom: 48px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(139, 111, 78, 0.15);
}

.contact-detail-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wood);
  flex: 0 0 80px;
  padding-top: 2px;
}

.contact-detail-value {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.7);
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-btn {
  padding: 16px 28px;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.4s;
  display: inline-block;
  text-align: center;
}

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

.contact-btn-primary:hover {
  background: var(--white);
  color: var(--espresso);
}

.contact-btn-outline {
  border: 1px solid rgba(139, 111, 78, 0.4);
  color: var(--beige);
}

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

.contact-btn-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: rgba(37, 211, 102, 0.9);
}

.contact-btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
}

.contact-form-col {
  padding: 100px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(139, 111, 78, 0.3);
  padding: 12px 0;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(196, 180, 154, 0.35);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--wood);
}

.form-select option {
  background: var(--espresso);
}

.form-textarea {
  resize: none;
  min-height: 80px;
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--wood);
  color: var(--white);
  border: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s;
  font-family: 'Inter', sans-serif;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.form-submit:hover::before {
  transform: scaleY(1);
}

.form-submit:hover {
  color: var(--espresso);
}

.form-submit span {
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  padding: 80px 48px 40px;
  border-top: 1px solid rgba(139, 111, 78, 0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-brand-est {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--beige);
  opacity: 0.5;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-logo {
  width: 143px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(196, 180, 154, 0.5);
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  color: rgba(250, 250, 248, 0.6);
  font-size: 1.15rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250, 250, 248, 0.15);
  background: rgba(250, 250, 248, 0.02);
}

.footer-socials a:hover {
  color: var(--white);
  background: var(--beige);
  border-color: var(--beige);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(57, 74, 208, 0.3);
}

.footer-col-title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgb(250, 250, 248);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.04em;
}

.footer-links a:hover {
  color: var(--beige);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(139, 111, 78, 0.1);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(196, 180, 154, 0.35);
  letter-spacing: 0.1em;
}

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

.footer-legal a {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(196, 180, 154, 0.3);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

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

.footer-line {
  width: 32px;
  height: 1px;
  background: var(--wood);
  margin-bottom: 16px;
  opacity: 0.5;
}

/* ===== AWARDS STRIP ===== */
#awards {
  padding: 80px 48px;
  background: var(--linen);
}

.awards-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: center;
}

.awards-headline {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.1;
}

.awards-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.award-item {
  padding: 24px 32px;
  border: 1px solid var(--border);
  background: var(--white);
  flex: 1;
  min-width: 160px;
  transition: all 0.3s;
}

.award-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(139, 111, 78, 0.1);
}

.award-year {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--wood);
  margin-bottom: 8px;
}

.award-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.3;
}

.award-body {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--stone-light);
  margin-top: 4px;
}

/* ===== LEADERSHIP ===== */
#leadership {
  padding: 100px 48px;
  background: var(--white);
}

.leadership-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.leadership-header {
  margin-bottom: 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.leadership-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.team-card {
  background: var(--white);
  overflow: hidden;
  position: relative;
  group: 'card';
}

.team-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) brightness(0.95);
  transition: all 0.6s ease;
}

.team-card:hover .team-card-img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.04);
}

.team-card-body {
  padding: 24px 28px;
  background: var(--white);
  border-top: 2px solid var(--linen);
  transition: border-color 0.3s;
}

.team-card:hover .team-card-body {
  border-top-color: var(--wood);
}

.team-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood);
}

.team-card-exp {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--stone-light);
  margin-top: 8px;
}

/* FLOATING WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--espresso);
  border: 1px solid rgba(139, 111, 78, 0.3);
  padding: 12px 20px;
  text-decoration: none;
  transition: all 0.4s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.wa-float:hover {
  background: #25D366;
  border-color: #25D366;
}

.wa-float-text {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.8);
  transition: color 0.3s;
}

.wa-float:hover .wa-float-text {
  color: var(--white);
}

.wa-icon {
  font-size: 1.1rem;
}

/* SIDE STICKY SOCIAL BAR */
.side-social-bar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(18, 19, 30, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 111, 78, 0.2);
  border-left: none;
  border-radius: 0 8px 8px 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 6px 0;
}

.social-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 250, 248, 0.8);
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  color: var(--white);
  padding-left: 6px;
  width: 48px;
}

.social-btn.facebook:hover {
  background: #1877F2;
}

.social-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-btn.youtube:hover {
  background: #FF0000;
}

.social-btn.linkedin:hover {
  background: #0077B5;
}

.social-btn.twitter:hover {
  background: #000000;
}

/* MOBILE NAVIGATION DRAWER */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--espresso);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.menu-toggle:hover {
  color: var(--wood);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--espresso);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-close:hover {
  color: var(--wood);
}

.drawer-logo {
  margin-bottom: 12px;
}

.drawer-logo img {
  width: 150px;
  height: auto;
  display: block;
}

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

.drawer-links a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--espresso);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.drawer-links a:hover {
  color: var(--wood);
}

.drawer-socials {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 6, 66, 0.08);
}

.drawer-socials a {
  color: var(--espresso);
  font-size: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 6, 66, 0.08);
}

.drawer-socials a:hover {
  color: var(--white);
  background: var(--wood);
  border-color: var(--wood);
  transform: translateY(-3px);
}

.drawer-cta {
  margin-top: 20px;
  padding: 14px 24px;
  background: var(--wood);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s ease;
  display: block;
}

.drawer-cta:hover {
  background: var(--espresso);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 19, 30, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================
       RESPONSIVE BREAKPOINTS (12 VIEWPORTS)
       ========================================== */

/* 🖥️ 1. Ultra Wide (1920px+) */
@media (min-width: 1920px) {

  .trust-grid,
  .about-inner,
  .stats-header,
  .stats-grid,
  .services-header,
  .services-tabs,
  .services-content,
  .portfolio-header,
  .portfolio-grid,
  .landmark-header,
  .landmark-grid,
  .methodology-header,
  .process-line,
  .why-inner,
  .testimonials-header,
  .testimonials-slider,
  footer .footer-top {
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
  }

  html {
    font-size: 17.5px;
  }
}

/* 🖥️ 2. Large Desktop (1600px - 1919px) */
@media (min-width: 1600px) and (max-width: 1919px) {

  .trust-grid,
  .about-inner,
  .stats-header,
  .stats-grid,
  .services-header,
  .services-tabs,
  .services-content,
  .portfolio-header,
  .portfolio-grid,
  .landmark-header,
  .landmark-grid,
  .methodology-header,
  .process-line,
  .why-inner,
  .testimonials-header,
  .testimonials-slider,
  footer .footer-top {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }

  html {
    font-size: 16.5px;
  }
}

/* 🖥️ 3. Desktop (1400px Base) */
@media (max-width: 1400px) {
  .trust-headline {
    font-size: 3.2rem;
  }

  .about-headline {
    font-size: 2.8rem;
  }

  .services-headline {
    font-size: 3.5rem;
  }

  .portfolio-headline {
    font-size: 3.2rem;
  }

  .landmark-headline {
    font-size: 2.8rem;
  }
}

/* 💻 4. Large Laptop (1200px) */
@media (max-width: 1200px) {
  nav {
    padding: 24px 36px;
  }

  .hero-content {
    padding: 0 36px 80px;
  }

  #trust,
  #stats,
  #services,
  #portfolio,
  #landmark,
  #methodology,
  #why,
  #testimonials,
  #awards,
  #leadership,
  footer {
    padding-left: 36px;
    padding-right: 36px;
  }

  .trust-left {
    padding-right: 40px;
  }

  .trust-right {
    padding-left: 40px;
  }

  .about-content-col {
    padding: 60px 48px;
  }

  .services-list-col {
    padding: 40px 48px;
  }
}

/* 💻 5. Laptop (1024px) */
@media (max-width: 1024px) {
  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 0.7rem;
  }

  .trust-headline {
    font-size: 2.6rem;
  }

  .about-headline {
    font-size: 2.3rem;
  }

  .services-headline {
    font-size: 2.8rem;
  }

  .portfolio-headline {
    font-size: 2.6rem;
  }

  .landmark-headline {
    font-size: 2.3rem;
  }

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

  .stat-item {
    border: 1px solid var(--border) !important;
  }

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

/* 💻 6. Tablet Landscape (992px) */
@media (max-width: 992px) {
  nav {
    padding: 20px 28px;
  }

  .nav-logo {
    width: auto !important;
  }

  .nav-logo img {
    width: 130px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

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

  .about-image-col {
    min-height: 480px;
  }

  .about-content-col {
    padding: 80px 48px;
  }

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

  .trust-left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 48px;
    margin-bottom: 48px;
  }

  .trust-right {
    padding-left: 0;
  }

  #contact {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-info {
    border-right: none;
    border-bottom: 1px solid rgba(139, 111, 78, 0.15);
    padding: 60px 48px;
  }

  .contact-form-col {
    padding: 60px 48px;
  }

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

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

  .why-left {
    position: static;
  }

  .stats-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .landmark-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .leadership-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .side-social-bar {
    display: none;
  }
}

/* 📱 7. Tablet Portrait (768px) */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  #trust,
  #stats,
  #services,
  #portfolio,
  #landmark,
  #methodology,
  #why,
  #testimonials,
  #awards,
  #leadership,
  footer {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-info,
  .contact-form-col {
    padding: 48px 24px;
  }

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

  .services-tabs {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    padding-bottom: 8px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
  }

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

  .service-tab {
    padding: 12px 20px;
    font-size: 0.68rem;
    flex: 0 0 auto;
  }

  .services-content.active {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .services-visual {
    min-height: 380px;
  }

  .services-list-col {
    padding: 48px 32px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 16px;
    padding: 0 24px 40px;
  }

  .portfolio-grid .p-item:first-child {
    grid-column: auto;
    grid-row: auto;
  }

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

  .process-step {
    flex: none;
  }

  .testimonial-item {
    flex: 0 0 calc(100% - 24px);
  }
}

/* 📱 8. Bootstrap Small (576px) */
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

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

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px 40px;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .portfolio-filters {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .portfolio-filters::-webkit-scrollbar {
    display: none;
  }

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

  .why-feature {
    padding: 24px;
    gap: 20px;
    grid-template-columns: 48px 1fr;
    border-radius: 12px;
  }

  .why-feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .why-feature-icon {
    font-size: 1.2rem;
  }

  .why-feature-num {
    top: -6px;
    right: -6px;
    font-size: 0.5rem;
    padding: 1px 5px;
  }

  .why-feature-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }

  .why-feature-desc {
    font-size: 0.8rem;
    line-height: 1.7;
  }
}

/* 📱 9. Extra Large Mobile (480px) */
@media (max-width: 480px) {
  #hero {
    min-height: 550px;
  }

  .hero-content {
    padding: 0 20px 48px;
  }

  #trust,
  #stats,
  #services,
  #portfolio,
  #landmark,
  #methodology,
  #why,
  #testimonials,
  #awards,
  #leadership,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-info,
  .contact-form-col {
    padding: 40px 20px;
  }

  .about-content-col {
    padding: 60px 24px;
  }

  .services-list-col {
    padding: 36px 20px;
  }

  .about-image-col {
    min-height: 360px;
  }
}

/* 📱 10. Large Mobile (425px) */
@media (max-width: 425px) {
  .hero-h1 {
    font-size: 2.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost {
    text-align: center;
    width: 100%;
    padding: 12px;
  }

  .btn-ghost {
    border: 1px solid rgba(250, 250, 248, 0.3);
  }

  .trust-headline {
    font-size: 2rem;
  }

  .about-headline {
    font-size: 1.8rem;
  }

  .services-headline {
    font-size: 2.2rem;
  }

  .portfolio-headline {
    font-size: 2rem;
  }

  .landmark-headline {
    font-size: 1.8rem;
  }

  .why-headline {
    font-size: 1.8rem;
  }

  .testimonials-headline {
    font-size: 1.8rem;
  }
  .rounded-20 {
    width: 100% !important;
}
}

/* 📱 11. Mobile (375px) */
@media (max-width: 375px) {
  nav {
    padding: 16px 20px;
  }

  .nav-logo img {
    width: 120px;
  }

  #trust,
  #stats,
  #services,
  #portfolio,
  #landmark,
  #methodology,
  #why,
  #testimonials,
  #awards,
  #leadership,
  footer {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-info,
  .contact-form-col {
    padding: 40px 16px;
  }

  .about-content-col {
    padding: 48px 16px;
  }

  .services-list-col {
    padding: 28px 16px;
  }

  .landmark-card {
    padding: 24px;
  }

  .stat-item {
    padding: 32px 24px;
  }

  .portfolio-grid {
    padding: 0 16px 30px;
  }
}

/* 📱 12. Small Mobile (320px) */
@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  nav {
    padding: 12px 16px;
  }

  .nav-logo img {
    width: 110px;
  }

  #trust,
  #stats,
  #services,
  #portfolio,
  #landmark,
  #methodology,
  #why,
  #testimonials,
  #awards,
  #leadership,
  footer {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-info,
  .contact-form-col {
    padding: 30px 12px;
  }

  .about-content-col {
    padding: 36px 12px;
  }

  .services-list-col {
    padding: 24px 12px;
  }

  .landmark-card {
    padding: 20px;
  }

  .stat-item {
    padding: 24px 16px;
  }

  .hero-h1 {
    font-size: 2.2rem;
  }

  .portfolio-grid {
    padding: 0 12px 24px;
  }
  .rounded-20 {
    width: 100% !important;
}
}

#gallery-carousel-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.gallery-carousel-header {
  max-width: 1400px;
  margin: 0 auto 50px;
  padding: 0 48px;
}

@media (max-width: 992px) {
  #gallery-carousel-section {
    padding: 80px 0;
  }

  .gallery-carousel-header {
    padding: 0 36px !important;
    margin-bottom: 30px !important;
  }
}

@media (max-width: 768px) {
  .gallery-carousel-header {
    padding: 0 24px !important;
  }
}

@media (max-width: 480px) {
  .gallery-carousel-header {
    padding: 0 20px !important;
  }
}

@media (max-width: 320px) {
  .gallery-carousel-header {
    padding: 0 12px !important;
  }
}

/* ==========================================================================
   PREMIUM BOOTSTRAP 5 MODAL STYLES (MATCHES LUXURY THEME)
   ========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  background-color: rgba(0, 6, 66, 0.45);
  /* Elegant brand backdrop overlay */
  backdrop-filter: blur(8px);
  /* Smooth background blur */
}

.modal.fade {
  transition: opacity 0.3s ease;
  opacity: 0;
}

.modal.show {
  opacity: 1;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.5rem auto;
  pointer-events: none;
  display: flex;
  align-items: center;
  min-height: calc(100% - 3rem);
  transform: scale(0.96);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .modal-dialog {
  transform: scale(1);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  /* 18-20px rounded corners */
  outline: 0;
  box-shadow: 0 25px 60px rgba(0, 6, 66, 0.2);
  /* Soft deep shadow */
  padding: 1rem 1.5rem;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
}

.modal-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--espresso);
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-title i {
  color: var(--wood);
  font-size: 1.4rem;
}

.btn-close-modal {
  background: none;
  border: none;
  color: var(--espresso);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-close-modal:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1.5rem 1rem;
  max-height: 70vh;
  overflow-y: auto;
}

/* Custom Scrollbar for Modal Body */
.modal-body::-webkit-scrollbar {
  width: 5px;
}

.modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--wood);
  border-radius: 4px;
}

/* Project Cards */
.commercial-projects-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.commercial-project-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 6, 66, 0.02);
}

.commercial-project-card:hover {
  transform: translateY(-4px);
  border-color: var(--wood);
  box-shadow: 0 15px 35px rgba(0, 6, 66, 0.08);
}

.commercial-project-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--wood);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.commercial-project-card:hover::before {
  opacity: 1;
}

.project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.project-client-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--espresso);
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-client-name i {
  color: var(--wood);
  font-size: 1.2rem;
}

.project-client-subtitle {
  font-size: 0.68rem;
  font-weight: 500;
  background: var(--linen);
  color: var(--stone);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 576px) {
  .project-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .modal-dialog {
    margin: 1rem;
    min-height: calc(100% - 2rem);
  }

  .modal-title {
    font-size: 1.3rem;
  }
}

.project-grid-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.project-grid-icon {
  width: 36px;
  height: 36px;
  background: rgba(112, 112, 190, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wood);
  font-size: 1rem;
  flex-shrink: 0;
}

.project-grid-content {
  display: flex;
  flex-direction: column;
}

.project-grid-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--stone-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-grid-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--espresso);
}

@media (min-width: 992px) {
  .modal-lg {
    width: 800px;
    max-width: 90%;
  }

  .modal-xl {
    width: 1140px;
    max-width: 95%;
  }
}

/* Residential modal customizations */
.modal-subtitle {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--stone-light);
  margin-top: 8px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.residential-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .residential-projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.residential-project-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 6, 66, 0.02);
}

.residential-project-card:hover {
  transform: translateY(-4px);
  border-color: var(--wood);
  box-shadow: 0 15px 35px rgba(0, 6, 66, 0.08);
}

.residential-project-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--wood);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.residential-project-card:hover::before {
  opacity: 1;
}

/* Mobile Scrolling Hide for Side Social Bar */
@media (max-width: 991.98px) {
  .side-social-bar {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    will-change: transform, opacity;
  }

  .side-social-bar.scrolling-hide {
    transform: translate(-110%, -50%);
    opacity: 0;
  }
}

/* ==========================================================================
   PROJECTS DROPDOWN MENU STYLING (DESKTOP & MOBILE DRAWER ACCORDION)
   ========================================================================== */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.dropdown-toggle::after {
  display: none !important;
}

.dropdown-toggle:focus,
.dropdown-toggle:active,
.dropdown-toggle:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 35px rgba(0, 6, 66, 0.08);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1010;
  list-style: none;
}

.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: var(--espresso) !important;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  letter-spacing: 0.08em;
  text-align: left;
}

.dropdown-menu li a:hover {
  background: var(--linen);
  color: var(--wood) !important;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  margin-left: 4px;
  vertical-align: middle;
}

.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mobile Drawer Dropdown Accordion Menu Styling */
.drawer-dropdown {
  position: relative;
  width: 100%;
}

.drawer-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.drawer-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding-left: 20px;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.drawer-dropdown.active .drawer-dropdown-menu {
  max-height: 200px;
}

.drawer-dropdown-menu li a {
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  color: var(--stone) !important;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
  text-align: left;
  border-bottom: none !important;
}

.drawer-dropdown-menu li a:hover {
  color: var(--wood) !important;
}

.drawer-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}



















/* about page */
/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --white: #FAFAF8;
  --primary: #000642;
  --accent: #7070BE;
  --accent-light: #4F44B7;
  --linen: #EDE7DC;
  --charcoal: #19162C;
  --border: rgba(28, 68, 176, 0.18);
  --border-light: rgba(250, 250, 248, 0.12);
}

/* Base Typographies */
.font-heading {
  font-family: 'Playfair Display', serif;
}

.font-body {
  font-family: 'Inter', sans-serif;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
}

/* Helpers */
.bg-white-custom {
  background-color: var(--white);
}

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

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

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

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

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

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.mb-50 {
  margin-bottom: 50px;
}

.rounded-20 {
    border-radius: 20px;
    /* width: 75%; */
    position: relative;
    overflow: hidden;
}
.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-xl {
  max-width: 36rem;
}

.label-caps {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* Premium Buttons */
.btn-premium-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium-primary:hover {
  background-color: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 6, 66, 0.1);
}

.bg-charcoal .btn-premium-primary {
  background-color: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.bg-charcoal .btn-premium-primary:hover {
  background-color: transparent;
  color: var(--white);
}

.btn-premium-outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(250, 250, 248, 0.4);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium-outline:hover {
  background-color: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTION STYLES
   ========================================================================== */

/* 1. Hero Section */
.hero-section {
height: 650px !important;
}

.hero-bg-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 6, 66, 0.7), rgba(25, 22, 44, 0.9));
  z-index: 2;
}

.gradient-glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(112, 112, 190, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.positional-glow-right {
  left: auto;
  right: -10%;
  top: 20%;
  background: radial-gradient(circle, rgba(79, 68, 183, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.mouse-wheel {
  display: block;
  width: 20px;
  height: 35px;
  border: 2px solid rgba(250, 250, 248, 0.5);
  border-radius: 10px;
  position: relative;
}

.mouse-wheel::before {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background-color: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 15px);
  }
}

/* Image zoom component */
.premium-img-frame {
  border: 1px solid var(--border);
  padding: 10px;
  background-color: transparent;
}

.zoom-on-hover {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.premium-img-frame:hover .zoom-on-hover {
  transform: scale(1.04);
}

/* 3. Timeline */
.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(0, 6, 66, 0.1);
  transform: translateX(-50%);
}

.timeline-progress-line {
  position: absolute;
  left: 50%;
  top: 0;
  height: 0%;
  width: 1px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: height 0.1s linear;
}

.timeline-item {
  width: 100%;
}

.timeline-date {
  width: 45%;
  text-align: right;
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.timeline-marker {
  width: 12px;
  height: 12px;
  background-color: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: background-color 0.3s ease;
}

.timeline-content {
  width: 45%;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse !important;
}

.timeline-item:nth-child(even) .timeline-date {
  text-align: left;
}

@media(max-width: 768px) {

  .timeline-container::before,
  .timeline-progress-line {
    left: 20px;
    transform: none;
  }

  .timeline-marker {
    left: 20px;
    transform: translateX(-50%);
  }

  .timeline-date {
    width: 100%;
    text-align: left;
    padding-left: 45px;
    margin-bottom: 10px;
  }

  .timeline-content {
    width: 100%;
    padding-left: 45px;
  }

  .timeline-item {
    align-items: flex-start !important;
  }

  .timeline-item:nth-child(even) {
    flex-direction: column !important;
  }

  .timeline-item:nth-child(even) .timeline-date {
    text-align: left;
  }
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(250, 250, 248, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px 0 rgba(0, 6, 66, 0.03);
}

/* 4. Founder Section */
.absolute-watermark {
  position: absolute;
  bottom: -5%;
  left: 5%;
  font-size: 14rem;
  font-weight: 600;
  opacity: 0.03;
  color: var(--white);
  pointer-events: none;
}

.founder-quote {
  font-size: 1.85rem;
  font-style: italic;
  line-height: 1.5;
  font-weight: 400;
}

.gray-scale {
  /* filter: grayscale(100%); */
  transition: filter 0.5s ease;
}

.founder-img-wrapper:hover .gray-scale {
  filter: grayscale(0%);
}

/* 5. & 6. & 7. Card Transformations */
.premium-card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 6, 66, 0.06);
}

.accent-line-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent);
  transition: width 0.5s ease;
}

.premium-card:hover .accent-line-bottom {
  width: 100%;
}

.value-card,
.feature-card {
  background-color: transparent;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover,
.feature-card:hover {
  background-color: var(--white);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 6, 66, 0.05);
}

/* 10. Horizontal Work Process */
.process-line {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(0, 6, 66, 0.1);
  z-index: 1;
}

.process-node {
  z-index: 2;
  width: 15%;
}

.node-num {
  width: 40px;
  height: 40px;
  line-height: 38px;
  background-color: var(--linen);
  border: 1px solid rgba(0, 6, 66, 0.2);
  border-radius: 50%;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--primary);
  transition: all 0.4s ease;
}

.process-node:hover .node-num {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.1);
}

@media(max-width: 768px) {
  .process-horizontal-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .process-line {
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
  }

  .process-node {
    width: 100%;
    text-align: left !important;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .node-num {
    margin: 0;
  }
}

/* 11. Team Cards */
.team-img-wrap .team-social {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 6, 66, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-img-wrap:hover .team-social {
  opacity: 1;
}

.team-social a {
  color: var(--white);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.team-social a:hover {
  transform: scale(1.2);
  color: var(--linen);
}

.team-card img {
  transition: transform 0.6s ease;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

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


/* ==========================================================================
   ANIMATION INTERFACES
   ========================================================================== */
.reveal-text,
.reveal-text-delay,
.reveal-text-delay-2,
.fade-up-init {
  opacity: 0;
  transform: translateY(30px);
  animation: luxuryReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-text-delay {
  animation-delay: 0.2s;
}

.reveal-text-delay-2 {
  animation-delay: 0.4s;
}

.fade-up-init {
  animation-delay: 0.6s;
}

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

/* Scroll Reveals classes */
.scroll-reveal {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.fade-up {
  transform: translateY(40px);
}

.scroll-reveal.scale-in {
  transform: scale(0.95);
}

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

/* ==========================================
   PORTFOLIO PAGE SPECIFIC STYLES (REDESIGN)
   ========================================== */

/* Layout & Hero */
.portfolio-hero {
  padding: 20% 24px 100px !important;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  text-align: center;
  height: 650px;
}

.portfolio-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 9999;
}
.portfolio-hero h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
  color: var(--espresso) !important;
  font-weight: 300 !important;
  line-height: 1.2;
  margin-bottom: 24px;
}

.portfolio-hero p.lead {
  font-size: 1.1rem !important;
  color: var(--stone) !important;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.portfolio-hero .label-caps {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--accent) !important;
  margin-bottom: 16px;
  display: block;
}

/* Featured Projects Showcase section (grid replacement) */
main > section:has(.featured-project-card) {
  padding: 100px 24px !important;
  background-color: var(--white);
}

main > section:has(.featured-project-card) .container {
  max-width: 1200px;
  margin: 0 auto;
}

main > section:has(.featured-project-card) h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  color: var(--espresso) !important;
  font-weight: 300 !important;
  margin-top: 10px;
}

/* Redefining row inside featured project list as CSS Grid */
main > section:has(.featured-project-card) .row.g-4 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  margin-top: 40px;
}

@media (max-width: 991px) {
  main > section:has(.featured-project-card) .row.g-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  main > section:has(.featured-project-card) .row.g-4 {
    grid-template-columns: 1fr !important;
  }
}

/* Redesign Featured Project Cards */
.featured-project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 6, 66, 0.03);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 6, 66, 0.08);
  border-color: var(--accent-light);
}

.featured-image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(15%);
}

.featured-project-card:hover .featured-image {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--espresso);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  z-index: 2;
}

.featured-info-box {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 12px;
}

.featured-description {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.featured-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}

.featured-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-meta-icon {
  color: var(--accent);
  font-size: 1rem;
}

.featured-meta-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* Archive / Registry Section */
main > section:has(.portfolio-tabs-container) {
  padding: 100px 24px !important;
  background-color: var(--white);
  border-top: 1px solid var(--border);
}

main > section:has(.portfolio-tabs-container) .container {
  max-width: 1200px;
  margin: 0 auto;
}

main > section:has(.portfolio-tabs-container) .text-center {
  text-align: center;
  margin-bottom: 50px;
}

main > section:has(.portfolio-tabs-container) h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  color: var(--espresso) !important;
  font-weight: 300 !important;
  margin-top: 10px;
  margin-bottom: 16px;
}

main > section:has(.portfolio-tabs-container) p.text-muted {
  font-size: 0.95rem;
  color: var(--stone-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Filterable Directory Tab styling */
.portfolio-tabs-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.portfolio-tab-btn {
  padding: 12px 30px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--stone);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 0;
  cursor: pointer;
}

.portfolio-tab-btn:hover,
.portfolio-tab-btn.active {
  background-color: var(--espresso);
  border-color: var(--espresso);
  color: var(--white);
}

/* Directory Grid and Cards */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.directory-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  padding: 35px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: 0;
}

.directory-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(0, 6, 66, 0.05);
}

.directory-card-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.directory-client-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--espresso);
  margin-bottom: 5px;
  font-weight: 400;
}

.directory-client-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone-light);
}

.directory-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.directory-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.directory-meta-icon {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
}

.directory-meta-content {
  display: flex;
  flex-direction: column;
}

.directory-meta-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone-light);
}

.directory-meta-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* Collaboration CTA Section Redesign */
main > section:has(.btn-premium-cta) {
  padding: 100px 24px !important;
  text-align: center;
  background-color: #F6F5F2 !important; /* Premium Linen */
  border-top: 1px solid var(--border);
}

main > section:has(.btn-premium-cta) .container {
  max-width: 1200px;
  margin: 0 auto;
}

main > section:has(.btn-premium-cta) h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  color: var(--espresso) !important;
  font-weight: 300 !important;
  margin-top: 10px;
  margin-bottom: 40px;
  line-height: 1.3;
}

.btn-premium-cta {
  border: 1px solid var(--accent);
  color: var(--espresso) !important;
  background: transparent;
  padding: 14px 40px;
  font-size: 0.8rem;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
}

.btn-premium-cta:hover {
  color: var(--white) !important;
  border-color: var(--accent-light);
  background-color: var(--accent-light);
}

/* ==========================================================================
   CARD IMAGE SLIDER STYLING (PORTFOLIO FEATURED PROJECTS)
   ========================================================================== */
.card-image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slides .featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.slider-slides .featured-image.active {
  opacity: 1;
  z-index: 2;
}

.featured-project-card:hover .slider-slides .featured-image.active {
  transform: scale(1.06);
}

/* Glassmorphism Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #000642;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.featured-project-card:hover .slider-btn {
  opacity: 1;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

/* Indicators */
.slider-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.indicator-dot {
  width: 18px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background: #ffffff;
  width: 28px;
}

/* ==========================================================================
   SPOTLIGHT RESIDENCE SHOWCASE STYLING
   ========================================================================== */
.bg-linen-light {
  background-color: #f6f5f2; /* Light luxury beige/linen */
}

.spotlight-gallery {
  position: relative;
}

.spotlight-main-img-container {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 6, 66, 0.06);
  margin-bottom: 20px;
}

.spotlight-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.spotlight-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  z-index: 5;
}

.spotlight-thumbnails {
  display: flex;
  gap: 15px;
}

.spotlight-thumb {
  flex: 1;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.spotlight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: all 0.3s ease;
}

.spotlight-thumb.active {
  border-color: var(--accent);
}

.spotlight-thumb:hover img,
.spotlight-thumb.active img {
  filter: grayscale(0%);
}

.spotlight-tabs {
  margin-bottom: 25px;
}

.spotlight-tab-btn {
  background: none;
  border: none;
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.6;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.spotlight-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.spotlight-tab-btn.active {
  opacity: 1;
  color: var(--espresso);
}

.spotlight-tab-btn.active::after {
  width: 100%;
}

.spotlight-tab-pane {
  display: none;
  animation: fadeInSpotlight 0.5s ease forwards;
}

.spotlight-tab-pane.active {
  display: block;
}

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















p {
    margin-top: 0;
    margin-bottom: 0 !important;
}


.founder-name-box{
    width: auto;
    padding: 17px 20px;
    background: #0B2C5F;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    position: absolute;
    bottom: 6%;
    left: 0;
    z-index: 100;
}
.founder-name-box h6 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}.founder-img-wrapper img{
    position: relative;
    z-index: 1;
}
.contact-item{
    display: flex;
    align-items: flex-start;
    /* gap: 12px; */
}

.contact-item i{
    color: #6b63c8;
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-text{
    line-height: 1.7;
}
    span.textclr {
    color: #7070be;
    font-size: 17px;
    font-weight: 900;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}