/* ============================================================
   MEDIUS – Premium Real Estate Consulting
   Raghava World Theme Palette (https://ragavaworld.vercel.app/)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ──────────────────────────────────────────
   CSS CUSTOM PROPERTIES
   ────────────────────────────────────────── */
:root {
  /* 1. Primary Colors */
  --color-primary: #1e3a36;
  /* Deep Emerald Green / Dark Forest Teal */
  --color-secondary: #BD9A7B;
  /* Warm Sand Champagne Gold / Light Bronze */
  --color-accent: #CDAA81;
  /* Soft Gold / Warm Ochre / Tan */

  /* Legacy variable mappings */
  --gold: #BD9A7B;
  --gold-hover: #CDAA81;
  --gold-faint: rgba(189, 154, 123, 0.08);
  --gold-border: #f0e8df;
  --gold-border2: rgba(189, 154, 123, 0.35);

  /* 2. Background Colors */
  --page-bg: #fcfbf9;
  /* Soft Ivory / Off-White Cream */
  --card-bg: #ffffff;
  /* Pure White */
  --color-border-light: #f0e8df;
  /* Soft Warm Cream-Beige */

  --black: #ffffff;
  --bg-1: #fcfbf9;
  /* Hero Canvas */
  --bg-2: #ffffff;
  /* About Canvas */
  --bg-3: #f8f6f2;
  /* Services Canvas */
  --bg-4: #ffffff;
  /* Why Us Canvas */
  --bg-5: #fcfbf9;
  /* Projects Canvas */
  --bg-6: #ffffff;
  /* Insights Canvas */
  --bg-7: #1e3a36;
  /* Contact / Footer Canvas */

  /* 3. Typography & Neutral Colors */
  --color-text-dark: #1f2937;
  /* Dark Slate Charcoal */
  --color-text-body: #374151;
  /* Dark Charcoal Body */
  --color-text-muted: #4b5563;
  /* Medium Slate Gray */
  --color-text-light: #9ca3af;
  /* Light Gray */

  --text: #374151;
  --text-dim: #4b5563;
  --text-bright: #1f2937;
  --white: #ffffff;
  --emerald: #1e3a36;
  --emerald-hover: #142926;

  --font-collapse: 'Collapse', 'Cormorant Garamond', Georgia, serif !important;
  --font-collapse-italic: 'Collapse Italic', 'Collapse', 'Cormorant Garamond', serif !important;
  --font-greenwich-regular: 'Greenwich Regular', 'Greenwich', 'Plus Jakarta Sans', sans-serif !important;
  --font-greenwich-bold: 'Greenwich Bold', 'Greenwich', 'Plus Jakarta Sans', sans-serif !important;

  --serif: 'Collapse', 'Cormorant Garamond', serif !important;
  --sans: 'Greenwich Regular', 'Greenwich', 'Plus Jakarta Sans', sans-serif !important;

  --nav-h: 76px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --r: 4px;
  /* border-radius */
  --r-sm: 50px;
}

/* ──────────────────────────────────────────
   DEFINED FONTS ONLY:
   - Collapse
   - Collapse Italic
   - Greenwich Regular
   - Greenwich Bold
   ────────────────────────────────────────── */
@font-face {
  font-family: 'Collapse';
  src: local('Collapse'), local('Collapse-Regular'), local('Cormorant Garamond');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Collapse Italic';
  src: local('Collapse Italic'), local('Collapse-Italic'), local('Cormorant Garamond Italic');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Greenwich Regular';
  src: local('Greenwich Regular'), local('Greenwich-Regular'), local('Greenwich'), local('Plus Jakarta Sans');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Greenwich Bold';
  src: local('Greenwich Bold'), local('Greenwich-Bold'), local('Greenwich'), local('Plus Jakarta Sans');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Greenwich';
  src: local('Greenwich Regular'), local('Greenwich-Regular'), local('Greenwich'), local('Plus Jakarta Sans');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ──────────────────────────────────────────
   RESET & BASE STYLES
   ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body,
p,
span,
div,
a,
button,
input,
select,
textarea,
li,
td,
th,
label {
  font-family: 'Greenwich Regular', 'Greenwich', sans-serif !important;
}

b,
strong,
.font-bold,
.bold-text,
.eyebrow,
.filter-btn,
.cta-primary-btn,
.proj-site-btn {
  font-family: 'Greenwich Bold', 'Greenwich Regular', 'Greenwich', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title,
.serif,
.brand-text {
  font-family: 'Collapse', serif !important;
}

em,
i,
.italic,
.font-italic {
  font-family: 'Collapse Italic', 'Collapse', serif !important;
}

body {
  background-color: var(--page-bg);
  color: var(--color-text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 4px;
}

/* ──────────────────────────────────────────
   TYPOGRAPHY & UTILITIES
   ────────────────────────────────────────── */
.gold {
  color: var(--color-secondary);
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 18px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--color-secondary);
  flex-shrink: 0;
}

/* Section title */
.section-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-align: center;
}

.section-title .gold,
.section-title em {
  color: var(--color-secondary);
  font-style: normal;
}

/* Section subtitle */
.section-sub {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.85;
  max-width: 640px;
  margin: 18px auto 0;
  text-align: center;
}

/* Unified Centered Section Header Component */
.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Horizontal gold rule */
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--color-secondary);
  margin: 24px auto;
}

.logo-icon {
  display: flex;
  align-items: center;
}

.logo-icon svg {
  display: block;
}

.btn-arrow {
  font-size: 14px;
}

/* Fade-up animation */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger>*:nth-child(1) {
  transition-delay: 0ms;
}

.stagger>*:nth-child(2) {
  transition-delay: 100ms;
}

.stagger>*:nth-child(3) {
  transition-delay: 200ms;
}

.stagger>*:nth-child(4) {
  transition-delay: 300ms;
}

/* ──────────────────────────────────────────
   NAVBAR (HEADER)
   ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: background 0.4s;
}

.navbar.scrolled {
  background: #ffffff;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 52px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
  transition: transform 0.3s ease;
}

.site-logo-img:hover {
  transform: scale(1.02);
}

.site-logo-img-large {
  max-width: 220px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 5px;
  line-height: 1;
}

.logo-tag {
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
  margin-right: 36px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-dark);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-secondary);
}

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

.mobile-only-btn {
  display: none !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: 0;
}

.btn-consultation {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff !important;
  background: var(--color-primary);
  border: none;
  box-shadow: 0 4px 14px rgba(30, 58, 54, 0.25);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn-consultation:hover {
  background: var(--emerald-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 58, 54, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border-light);
  border-radius: 6px;
  background: var(--page-bg);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  padding: 0;
}

.hamburger:hover {
  background: #ffffff;
  border-color: var(--color-secondary);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ──────────────────────────────────────────
   MOBILE & TABLET SIDE DRAWER (LEFT TO RIGHT)
   ────────────────────────────────────────── */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  z-index: 9990;
}

.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1024px) {
  :root {
    --nav-h: 68px;
  }

  .nav-container {
    padding: 0 24px;
  }

  .mobile-only-btn {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    margin-top: 28px !important;
    background: var(--color-primary) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    padding: 14px 24px !important;
    border: none !important;
    border-radius: 50px !important;
    box-shadow: 0 6px 24px rgba(30, 58, 54, 0.35) !important;
    pointer-events: auto !important;
  }

  .mobile-only-btn .btn-arrow {
    color: #ffffff !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 84vw;
    height: 100vh;
    background: #ffffff !important;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 12px;
    transform: translateX(-105%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s var(--ease);
    border-right: 2px solid var(--color-secondary) !important;
    box-shadow: 15px 0 50px rgba(0, 0, 0, 0.15);
    z-index: 10000 !important;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-links.open {
    display: flex !important;
    transform: translateX(0);
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .nav-link {
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    color: var(--color-text-dark) !important;
    opacity: 1 !important;
    padding: 16px 0 !important;
    width: 100% !important;
    border-bottom: 1px solid var(--color-border-light) !important;
    pointer-events: auto !important;
    transition: color 0.25s, padding-left 0.25s, border-color 0.25s !important;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--color-secondary) !important;
    border-bottom-color: var(--color-secondary) !important;
    padding-left: 8px !important;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 10001 !important;
  }

  .nav-right .btn-consultation {
    display: none;
  }
}

/* ──────────────────────────────────────────
   LAYOUT HELPERS & PAGE HERO
   ────────────────────────────────────────── */
main {
  padding-top: var(--nav-h);
}

section {
  scroll-margin-top: var(--nav-h);
}

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

.section-wrap {
  padding: 80px 52px;
  position: relative;
  z-index: 1;
}

/* Page Hero for Sub-pages (Projects, Contact) */
.page-hero {
  padding: 100px 52px 50px;
  background: var(--page-bg);
  text-align: center;
  border-bottom: 1px solid var(--color-border-light);
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.page-hero-inner .eyebrow {
  margin-bottom: 20px;
}

.page-hero-inner .section-title {
  margin-bottom: 18px;
}

.page-hero-inner .section-sub {
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   01 — HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 640px;
  overflow: hidden;
  background: #091311;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.9;
  filter: brightness(0.95) contrast(1.05);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.07);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 11, 0.88) 0%, rgba(6, 12, 11, 0.55) 50%, rgba(6, 12, 11, 0.15) 100%),
    linear-gradient(180deg, rgba(6, 12, 11, 0.35) 0%, transparent 60%, rgba(6, 12, 11, 0.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 52px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text {
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #BD9A7B;
  margin-bottom: 28px;
}

.hero-eyebrow span {
  display: block;
  width: 40px;
  height: 2px;
  background: #BD9A7B;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 8.5vw, 104px);
  font-weight: 500;
  color: #ffffff !important;
  line-height: 0.98;
  letter-spacing: -1.5px;
  margin-bottom: 32px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-title em {
  font-style: italic;
  color: #BD9A7B !important;
  display: block;
}

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  color: #e5e2dc !important;
  line-height: 1.85;
  margin-bottom: 52px;
  max-width: 460px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  right: 52px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll-text {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  writing-mode: vertical-rl;
}

.hero-scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #BD9A7B;
  animation: pulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   02 — ABOUT SECTION
   ═══════════════════════════════════════════ */
.about-section {
  background: var(--card-bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.about-text {
  padding: 80px 80px 80px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--color-border-light);
}

.about-body {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--color-text-body);
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 40px;
}

.about-stats {
  display: flex;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--color-border-light);
}

.about-stat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-secondary);
  text-transform: uppercase;
}

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

.about-card {
  padding: 56px 44px;
  border-right: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.35s;
}

.about-card:nth-child(even) {
  border-right: none;
}

.about-card:nth-child(3),
.about-card:nth-child(4) {
  border-bottom: none;
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-secondary);
  transition: width 0.4s var(--ease);
}

.about-card:hover::after {
  width: 100%;
}

.about-card:hover {
  background: var(--page-bg);
}

.about-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(189, 154, 123, 0.1);
  border: 1px solid var(--color-border-light);
  border-radius: 6px;
}

.about-card-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.about-card-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   03 — SERVICES SECTION
   ═══════════════════════════════════════════ */
.services-section {
  background: var(--bg-3);
  padding: 80px 52px;
  border-top: 1px solid var(--color-border-light);
}

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

.service-item {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.service-item:hover {
  transform: translateY(-6px);
  border-color: var(--color-secondary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  margin-bottom: 24px;
  background: rgba(189, 154, 123, 0.08);
}

.service-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   04 — WHY MEDIUS (STATS)
   ═══════════════════════════════════════════ */
.why-section {
  position: relative;
  overflow: hidden;
  background: var(--page-bg);
  color: var(--color-text-body);
  padding: 80px 52px;
  border-top: 1px solid var(--color-border-light);
}

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

.why-section .section-title {
  color: var(--color-primary) !important;
}

.why-section .section-sub {
  color: var(--color-text-muted) !important;
}

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

.why-stat {
  padding: 48px 32px;
  border: 1px solid #f0e8df;
  border-radius: 12px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.why-stat:hover {
  transform: translateY(-6px);
  border-color: var(--color-secondary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.why-stat-num {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 12px;
}

.why-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  text-transform: uppercase;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   05 — INSIGHTS SECTION
   ═══════════════════════════════════════════ */
.insights-section {
  background: #ffffff;
  padding: 80px 52px;
  border-top: 1px solid var(--color-border-light);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.ins-card {
  background: var(--page-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 44px 36px;
  position: relative;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.ins-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-secondary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.ins-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(189, 154, 123, 0.12);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 20px;
  width: fit-content;
}

.ins-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.35;
  margin-bottom: 14px;
}

.ins-card p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

/* ═══════════════════════════════════════════
   06 — CONTACT & FOOTER SECTION
   ═══════════════════════════════════════════ */
.contact-section {
  border-top: 1px solid var(--color-border-light);
  background: var(--page-bg) !important;
  /* Light Off-White Canvas */
  color: var(--color-text-body);
  padding: 60px 24px 100px;
}

.contact-page-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.4fr;
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  align-items: stretch;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f0e8df;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.ctc-left {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-right: 1px solid #f0e8df;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.ctc-brand-name {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 6px;
  line-height: 1;
  margin-bottom: 4px;
}

.ctc-brand-tag {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 20px;
}

.ctc-brand-desc {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 320px;
}

.ctc-mid {
  padding: 44px;
  background: #ffffff;
  border-right: 1px solid #f0e8df;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ctc-info-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 24px;
}

.ctc-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.ctc-divider {
  height: 1px;
  background: #f0e8df;
  margin: 14px 0 18px;
}

.ctc-icon {
  width: 38px;
  height: 38px;
  border: 1px solid #f0e8df;
  background: rgba(189, 154, 123, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.ctc-lbl {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9ca3af;
  display: block;
  margin-bottom: 3px;
}

.ctc-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  display: block;
  margin-bottom: 2px;
}

.ctc-val {
  font-size: 13px;
  color: var(--color-text-dark);
  line-height: 1.6;
}

.ctc-dir-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-top: 10px;
}

.ctc-right {
  padding: 44px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enq-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.enq-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.enq-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.enq-form input,
.enq-form textarea {
  width: 100%;
  background: var(--page-bg);
  border: 1px solid #f0e8df;
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--color-text-dark);
  outline: none;
  border-radius: 8px;
  transition: border-color 0.3s, background 0.3s;
}

.enq-form input::placeholder,
.enq-form textarea::placeholder {
  color: #9ca3af;
}

.enq-form input:focus,
.enq-form textarea:focus {
  border-color: var(--color-secondary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(189, 154, 123, 0.15);
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 28px;
  background: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff !important;
  border: none;
  border-radius: 50px;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(30, 58, 54, 0.25);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--emerald-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 58, 54, 0.35);
}

/* ──────────────────────────────────────────
   LUXURY ARCHITECTURAL FOOTER
   ────────────────────────────────────────── */
.footer {
  background: #142926 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 72px 0 36px !important;
  color: rgba(255, 255, 255, 0.75);
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 360px;
}

.footer-col-title {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #BD9A7B;
  margin-bottom: 20px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-nav-list a:hover {
  color: #BD9A7B;
  padding-left: 4px;
}

.footer-contact-info li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}

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

@media (max-width: 1024px) {
  .footer-top-row {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 52px 20px 28px !important;
  }

  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
    padding-bottom: 32px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-legal-links {
    gap: 16px;
    flex-wrap: wrap;
  }
}

/* CTA Primary Button Styling */
.cta-primary-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 16px 36px !important;
  border-radius: 60px !important;
  background: #1e3a36 !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  box-shadow: 0 8px 24px rgba(30, 58, 54, 0.25) !important;
  transition: all 0.35s ease !important;
  text-decoration: none !important;
  margin: 0 auto !important;
}

.cta-primary-btn:hover {
  background: #142926 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(30, 58, 54, 0.4) !important;
}

@media (max-width: 768px) {
  .cta-primary-btn {
    width: 100% !important;
    padding: 15px 20px !important;
    font-size: 12px !important;
  }

  .eyebrow {
    font-size: 10.5px !important;
    letter-spacing: 2px !important;
    gap: 8px !important;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 18px !important;
  }
}

/* ── MODAL & LIGHTBOX OVERLAYS ── */
.modal-overlay,
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.open,
.lightbox-overlay.open {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.modal-container {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 40px;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  color: var(--color-text-dark);
}

.modal-title {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--color-primary);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  font-size: 32px;
  color: #BD9A7B;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.25s, color 0.25s;
}

.lightbox-close:hover {
  transform: scale(1.15);
  color: #ffffff;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #BD9A7B;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  color: #BD9A7B;
  letter-spacing: 1px;
  text-align: center;
}

/* ──────────────────────────────────────────
   RAGHAVA WORLD STYLE PROJECT SHOWCASE CARDS
   (ragavaworld.vercel.app/#projects UI)
   ────────────────────────────────────────── */
.proj-filter {
  display: flex !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid #f0e8df;
  border-radius: 60px;
  padding: 6px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 56px;
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.filter-btn {
  padding: 14px 32px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4b5563;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.filter-btn:last-child {
  border-right: none;
}

.filter-btn:hover {
  color: #1e3a36;
  background: #f8f6f2;
}

.filter-btn.active {
  background: #1e3a36 !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 16px rgba(30, 58, 54, 0.25) !important;
}

.proj-showcase-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.proj-showcase-container {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 1240px;
  margin: 0 auto;
}

.proj-showcase-card {
  background: #ffffff !important;
  border-radius: 24px !important;
  border: 1px solid #f0e8df !important;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06) !important;
  overflow: hidden;
  padding: 36px !important;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.proj-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12) !important;
  border-color: #BD9A7B !important;
}

.proj-media-box {
  position: relative;
  width: 100%;
  height: 440px;
  min-height: 440px;
  background: #142926;
  overflow: hidden;
  border-radius: 18px !important;
}

.proj-main-slideshow-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
  cursor: pointer;
}

.proj-main-slideshow-img.fade-out {
  opacity: 0;
  transform: scale(1.08);
  pointer-events: none;
}

.proj-main-slideshow-img.fade-in {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.yt-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.yt-badge:hover {
  transform: scale(1.1);
}

.proj-showcase-details {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proj-showcase-title {
  font-family: var(--sans) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #1e3a36 !important;
  margin-bottom: 2px !important;
  line-height: 1.2 !important;
}

.proj-showcase-location {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #BD9A7B !important;
  letter-spacing: 0.3px;
  margin-bottom: 12px !important;
  display: block;
}

.proj-showcase-desc {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #4b5563 !important;
  line-height: 1.6 !important;
  margin-bottom: 20px !important;
}

/* Single Auto-Fade Gallery Image */
.gallery-single-wrap {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #f4f0ea;
  border: 1px solid #f0e8df;
  margin-bottom: 20px;
}

.gallery-single-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-single-img:hover {
  filter: brightness(1.03);
}

.proj-site-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 24px;
  background: #1e3a36 !important;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  border-radius: 60px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 54, 0.2);
}

.proj-site-btn:hover {
  background: #BD9A7B !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(189, 154, 123, 0.35);
}

@media (max-width: 1024px) {
  .proj-showcase-card {
    grid-template-columns: 1fr;
    padding: 24px !important;
    gap: 24px;
  }

  .proj-media-box {
    height: 280px;
    min-height: 280px;
  }
}

.proj-showcase-specs {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
  padding-top: 18px;
  border-top: 1px solid #f0e8df;
}

.proj-showcase-spec-item {
  display: flex;
  flex-direction: column;
}

.proj-showcase-spec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 2px;
}

.proj-showcase-spec-value {
  font-size: 13.5px;
  font-weight: 600;
  color: #1f2937;
}

.proj-showcase-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: fit-content !important;
  padding: 13px 32px !important;
  background: #1e3a36 !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(30, 58, 54, 0.25) !important;
  transition: all 0.3s ease !important;
  text-decoration: none;
}

.proj-showcase-btn:hover {
  background: #142926 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(30, 58, 54, 0.4) !important;
}

/* ──────────────────────────────────────────
   RESPONSIVE MEDIA QUERIES FOR ALL DEVICES
   ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 28px;
  }

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

  .about-text {
    border-right: none;
    border-bottom: 1px solid var(--color-border-light);
    padding: 48px 24px;
  }

  .about-cards,
  .services-grid,
  .insights-grid,
  .why-stats {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .contact-page-wrap {
    grid-template-columns: 1fr;
  }

  .ctc-left,
  .ctc-mid,
  .ctc-right {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 24px;
  }

  .section-wrap,
  .services-section,
  .why-section,
  .insights-section,
  .projects-section,
  .page-hero {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .proj-showcase-card {
    grid-template-columns: 1fr;
    padding: 24px !important;
    gap: 20px !important;
  }

  .proj-media-box {
    height: 280px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 16px;
    height: 68px;
  }

  .site-logo-img {
    height: 38px;
    max-width: 160px;
  }

  .nav-links {
    display: none;
  }

  .mobile-only-btn {
    display: inline-flex !important;
  }

  /* Filter 4-button equal flex mobile pill container */
  .proj-filter {
    display: flex !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    padding: 4px !important;
    border-radius: 60px !important;
    background: #ffffff !important;
    border: 1px solid #f0e8df !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06) !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 28px !important;
    gap: 0 !important;
  }

  .filter-btn {
    flex: 1 1 0px !important;
    min-width: 0 !important;
    white-space: nowrap !important;
    padding: 10px 2px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    text-align: center !important;
    border: none !important;
    background: transparent !important;
    color: #374151 !important;
    border-radius: 50px !important;
  }

  .filter-btn.active {
    background: #1e3a36 !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 14px rgba(30, 58, 54, 0.25) !important;
  }

  /* Unified Mobile Card Dimension & Styling */
  .ins-card,
  .service-item,
  .why-stat,
  .about-card,
  .proj-showcase-card {
    background: #ffffff !important;
    border: 1px solid #f0e8df !important;
    border-radius: 24px !important;
    padding: 30px 24px !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03) !important;
    width: 100% !important;
    margin-bottom: 0 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  }

  .ins-card:hover,
  .service-item:hover,
  .why-stat:hover,
  .about-card:hover,
  .proj-showcase-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07) !important;
    border-color: #BD9A7B !important;
  }

  .about-cards,
  .services-grid,
  .insights-grid,
  .why-stats {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .proj-showcase-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .proj-showcase-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 24px 20px !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    border: 1px solid #f0e8df !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03) !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .proj-media-box {
    width: 100% !important;
    height: 185px !important;
    min-height: 185px !important;
    border-radius: 14px !important;
  }

  .proj-main-slideshow-img {
    border-radius: 14px !important;
  }

  .proj-showcase-title {
    font-size: 21px !important;
    font-weight: 700 !important;
    color: #1e3a36 !important;
    margin-bottom: 2px !important;
  }

  .proj-showcase-location {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #BD9A7B !important;
    margin-bottom: 8px !important;
  }

  .proj-showcase-desc {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    color: #4b5563 !important;
    margin-bottom: 16px !important;
  }

  .proj-site-btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 12px 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    background: #1e3a36 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(30, 58, 54, 0.2) !important;
    margin-top: 0 !important;
  }

  .proj-top-hero-banner {
    height: 42vh !important;
    min-height: 240px !important;
    max-height: 380px !important;
  }

  .proj-hero-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .map-card-box {
    height: 360px !important;
  }

  .map-section iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
  }
}

@media (max-width: 480px) {
  .filter-btn {
    font-size: 9.5px !important;
    letter-spacing: 0.2px !important;
    padding: 9px 1px !important;
  }

  .nav-container {
    padding: 0 12px;
  }

  .site-logo-img {
    height: 34px;
    max-width: 140px;
  }

/* ── MASTER FILTER HIDING RULE ── */
.proj-card.hidden-filter,
.proj-showcase-card.hidden-filter {
  display: none !important;
}

/* ── TOUCH & MOBILE INTERACTION BOOST ── */
.proj-site-btn,
.filter-btn,
.btn-consultation,
.cta-primary-btn,
.nav-link,
.hamburger,
.submit-btn,
.ins-link {
  position: relative !important;
  z-index: 10 !important;
  pointer-events: auto !important;
  touch-action: manipulation !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: rgba(30, 58, 54, 0.2) !important;
}

  .proj-media-box {
    height: 260px !important;
    min-height: 260px !important;
  }

  .proj-showcase-title {
    font-size: 20px !important;
  }

  .section-title {
    font-size: 28px !important;
  }

  .ctc-left,
  .ctc-mid,
  .ctc-right {
    padding: 20px 14px !important;
  }
}

/* Form Success Message */
.form-success {
  display: none !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f0e8df;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.form-success.show {
  display: flex !important;
  animation: fadeIn 0.4s ease forwards;
}

.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1e3a36;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 700;
  color: #1e3a36;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}