/* ==========================================================================
   ARPIT GANGWAR ESTATES - LUXURY ARCHITECTURAL PORTFOLIO & RING GALLERY
   ========================================================================== */

/* --- CSS Variables & Design System --- */
:root {
  --bg-primary: #f7f7f4;
  --bg-secondary: #f0f0eb;
  --bg-card: #ffffff;
  --bg-overlay: rgba(247, 247, 244, 0.94);
  --bg-dark-overlay: rgba(17, 17, 17, 0.75);

  --text-main: #111111;
  --text-muted: #555555;
  --text-faded: #888888;
  --text-light: #f7f7f4;

  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-medium: rgba(0, 0, 0, 0.18);
  --border-strong: #111111;

  --accent-gold: #c5a059;
  --accent-badge: #e8e8e2;

  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-editorial: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-subtle: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-panel: 0 10px 24px rgba(0, 0, 0, 0.10);
  --shadow-modal: 0 30px 60px rgba(0, 0, 0, 0.18);

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
}

/* Floating Agency Return Button */
.agency-return-strip {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111111;
  color: #EDE8DD;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.agency-return-strip:hover {
  transform: translateY(-2px);
  background: #D94332;
  color: #FFFFFF;
}

/* --- Global Reset & Box Sizing --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  width: 100%;
  min-height: 100%;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

/* Custom Selection */
::selection {
  background-color: var(--text-main);
  color: var(--bg-primary);
}

/* Link Resets */
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

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

/* ==========================================================================
   CUSTOM CURSOR FOLLOWER
   ========================================================================== */
.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: var(--text-main);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.15s ease-out;
  opacity: 0;
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(17, 17, 17, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ffffff;
  opacity: 0;
}

body.cursor-active .custom-cursor-dot,
body.cursor-active .custom-cursor-follower {
  opacity: 1;
}

.custom-cursor-follower.hovering {
  width: 58px;
  height: 58px;
  background-color: rgba(17, 17, 17, 0.85);
  border-color: transparent;
}

.custom-cursor-follower.dragging {
  width: 48px;
  height: 48px;
  background-color: rgba(17, 17, 17, 0.95);
  transform: translate(-50%, -50%) scale(0.9);
}

/* ==========================================================================
   TOP NAVIGATION HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: linear-gradient(180deg, rgba(247, 247, 244, 0.92) 0%, rgba(247, 247, 244, 0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.header-left {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.brand-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 3px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-main);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background-color: var(--text-main);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.btn-header-action {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-main);
  position: relative;
  padding-bottom: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-header-action::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--text-main);
  transition: width 0.25s ease;
}

.btn-header-action:hover::after {
  width: 60%;
}

.btn-lang-toggle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 2px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.btn-lang-toggle:hover {
  color: var(--text-main);
  border-color: var(--border-strong);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  height: 20px;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--text-main);
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO / RING GALLERY SECTION
   ========================================================================== */
.hero-ring-viewport {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  user-select: none;
  touch-action: none;
}

/* Subtle architectural grid pattern overlay */
.hero-ring-viewport::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(0,0,0,0.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
}

/* Left & Right Orbit Navigation Arrows (Positioned on Left & Right X-Axis, Elevated Slightly Below Ring) */
.orbit-nav-arrow {
  position: absolute;
  top: 79%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(247, 247, 244, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(17, 17, 17, 0.22);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 45;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.orbit-nav-arrow svg {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.orbit-nav-arrow.arrow-left {
  left: 36px;
}

.orbit-nav-arrow.arrow-right {
  right: 36px;
}

.orbit-nav-arrow:hover {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%) scale(1.08);
}

.orbit-nav-arrow:active {
  transform: translateY(-50%) scale(0.92);
}

/* ==========================================================================
   NEO-BRUTALIST FUNKY DEMO BANNER & PC MASCOT STICKER
   ========================================================================== */
.hero-banners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.brutalist-demo-banner {
  position: relative;
  background: #ffe600;
  border: 2px solid #000000;
  border-radius: 999px;
  padding: 5px 10px 5px 7px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 4px 4px 0px #000000;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  user-select: none;
  cursor: pointer;
}

.brutalist-demo-banner:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 6px 6px 0px #000000;
}

/* Funky Geometric PC Recommendation Sticker */
.pc-geometric-badge {
  position: relative;
  background: #a3ff00;
  border: 2px solid #000000;
  border-radius: 6px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 3px 3px 0px #000000;
  transform: rotate(-2deg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
  cursor: default;
}

.pc-geometric-badge:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow: 5px 5px 0px #000000;
}

.pc-mascot-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: mascotBob 2.5s ease-in-out infinite;
}

@keyframes mascotBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px) rotate(3deg); }
}

.pc-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  color: #000000;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.15;
}

.pc-badge-text span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.pc-badge-text strong {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.6px;
}

.brutal-badge {
  background: #ff007a;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.8px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1.5px solid #000000;
  box-shadow: 1.5px 1.5px 0px #000000;
  text-transform: uppercase;
  white-space: nowrap;
}

.brutal-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.brutal-line-1 {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.6px;
  color: #000000;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.15;
}

.brutal-line-2 {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-weight: 900;
  font-size: 9.5px;
  letter-spacing: 0.5px;
  color: #000000;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.15;
}

.brutal-highlight {
  background: #00f0ff;
  color: #000000;
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid #000000;
  box-shadow: 1px 1px 0px #000000;
}

.brutal-action-btn {
  background: #000000;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1.5px solid #000000;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  box-shadow: 2px 2px 0px #ff007a;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.brutal-action-btn .brutal-arrow {
  transition: transform 0.15s ease;
}

.brutalist-demo-banner:hover .brutal-action-btn {
  background: #ff007a;
  color: #000000;
  border-color: #000000;
  box-shadow: 2px 2px 0px #000000;
}

.brutalist-demo-banner:hover .brutal-action-btn .brutal-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   CENTER STAGE (DEFAULT HEADLINE & ACTIVE PREVIEW)
   ========================================================================== */
.center-stage-container {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 780px;
  text-align: center;
  z-index: 60;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Default Editorial Headline State */
.center-default-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.center-default-view.hidden {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.center-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.02;
  color: var(--text-main);
  max-width: 680px;
  margin-bottom: 10px;
  text-transform: none;
  pointer-events: none;
}

.center-hero-subtitle {
  font-size: clamp(12.5px, 1.1vw, 16px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-muted);
  max-width: 520px;
  pointer-events: none;
}

/* Hover & Active Project Preview State (Solid, Crisp, Elevated Luxury Card) */
.center-preview-view {
  display: none;
  flex-direction: column;
  align-items: center;
  width: auto;
  min-width: 290px;
  max-width: 440px;
  padding: 14px 20px 12px;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32), 0 4px 16px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  pointer-events: none;
  z-index: 100;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.center-preview-view.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.preview-project-title {
  font-family: var(--font-primary);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 6px;
  text-align: center;
}

.preview-image-wrapper {
  position: relative;
  width: clamp(200px, 20vw, 260px);
  height: clamp(110px, 11vw, 140px);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  border: 1.5px solid #000000;
  background-color: #e2e2dc;
  margin-bottom: 8px;
  cursor: pointer;
}

.preview-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.preview-image-wrapper:hover img {
  transform: scale(1.04);
}

.preview-badge-status {
  position: absolute;
  top: 6px;
  right: 6px;
  padding: 3px 8px;
  background: #000000;
  color: #ffffff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
}

.preview-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #555555;
  margin-bottom: 8px;
}

.preview-meta-row span.bullet {
  font-size: 6px;
  opacity: 0.5;
}

.preview-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  background: #000000;
  padding: 8px 22px;
  border-radius: 6px;
  border: 1.5px solid #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  cursor: pointer;
}

.preview-cta-btn:hover {
  background: #ffe600;
  color: #000000;
  border-color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   3D ELLIPTICAL RING ORBIT CONTAINER (ORIGINAL GRAND FORMAT - ELEVATED)
   ========================================================================== */
.ring-orbit-container {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 360px;
  perspective: 1200px;
  transform-style: preserve-3d;
  z-index: 30;
  pointer-events: auto;
  cursor: grab;
}

.ring-orbit-container.is-dragging {
  cursor: grabbing;
}

.ring-orbit-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Individual Image Panels on the Ring (Crisp, Soft Architectural Photography) */
.ring-card-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 116px;
  margin-left: -22px;
  margin-top: -58px;
  border-radius: 3px;
  overflow: hidden;
  background-color: #dfdfd9;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

.ring-card-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
}

.ring-card-panel.is-active,
.ring-card-panel:hover {
  border-color: #000000;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.ring-card-panel.is-front-center {
  border-color: #111111;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

/* ==========================================================================
   BOTTOM CONTROLS & STATUS HINT
   ========================================================================== */
.hero-bottom-bar {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  padding: 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
  pointer-events: none;
}

.bottom-instruction-hint {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.40);
}

.bottom-stats-counter {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bottom-stats-counter strong {
  color: var(--text-main);
  font-weight: 800;
}

/* ==========================================================================
   SLIDE-OVER FILTER DRAWER
   ========================================================================== */
.filter-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

.filter-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-modal);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 201;
}

.filter-drawer-overlay.open .filter-drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  padding: 32px 36px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-close-drawer {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  padding: 8px;
  cursor: pointer;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-group-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-main);
}

.filter-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-chip:hover {
  border-color: var(--text-main);
  color: var(--text-main);
}

.filter-chip.active {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
}

.filter-select {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.drawer-footer {
  padding: 24px 36px 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 14px;
}

.btn-drawer-apply {
  flex: 2;
  padding: 14px 20px;
  background: var(--text-main);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  text-align: center;
  transition: var(--transition-fast);
}

.btn-drawer-apply:hover {
  opacity: 0.88;
}

.btn-drawer-reset {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  text-align: center;
  transition: var(--transition-fast);
}

.btn-drawer-reset:hover {
  background: #ebebe5;
}

/* ==========================================================================
   EDITORIAL GRID VIEW SECTION (TOGGLEABLE)
   ========================================================================== */
.grid-view-section {
  display: none;
  width: 100%;
  min-height: 100vh;
  padding: 120px 44px 80px;
  background-color: var(--bg-primary);
  position: relative;
  z-index: 50;
}

.grid-view-section.active {
  display: block;
}

.grid-header-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1.5px solid var(--border-strong);
}

.grid-title-wrap h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.grid-title-wrap p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}

.grid-controls-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.projects-masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 36px 28px;
}

.project-grid-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.project-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-modal);
  border-color: var(--border-medium);
}

.card-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #e4e4de;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-grid-card:hover .card-image-wrap img {
  transform: scale(1.05);
}

.card-status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
}

.card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-cat-location {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faded);
  margin-bottom: 6px;
}

.card-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.card-specs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.card-price {
  color: var(--text-main);
  font-weight: 800;
}

/* ==========================================================================
   PROPERTY DOSSIER MODAL (FULL DETAILS)
   ========================================================================== */
.property-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  transition: opacity 0.35s ease;
}

.property-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.property-modal-dialog {
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  background: var(--bg-primary);
  border-radius: 2px;
  box-shadow: var(--shadow-modal);
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-modal-overlay.open .property-modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-subtle);
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--text-main);
  color: #fff;
}

.modal-hero-cover {
  width: 100%;
  height: 380px;
  position: relative;
}

.modal-hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content-body {
  padding: 40px 48px;
}

.modal-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.modal-project-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px 0;
  margin: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.spec-item-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faded);
}

.spec-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
}

.modal-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.modal-highlights-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.modal-highlights-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.modal-highlights-list li::before {
  content: '✓';
  color: var(--text-main);
  font-weight: 800;
}

.modal-inquiry-box {
  background: var(--bg-card);
  padding: 32px;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
}

.modal-inquiry-box h4 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.inquiry-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.inquiry-input {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 13px;
  background: var(--bg-primary);
  border: 1px solid var(--border-medium);
  border-radius: 2px;
  outline: none;
}

.btn-submit-inquiry {
  width: 100%;
  padding: 14px;
  background: var(--text-main);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.btn-submit-inquiry:hover {
  opacity: 0.9;
}

/* ==========================================================================
   RESPONSIVE DESIGN & BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .site-header {
    padding: 18px 28px;
  }
  .header-nav {
    gap: 20px;
  }
  .hero-bottom-bar { padding: 0 28px; }
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .center-stage-container {
    top: 27%;
  }
  .center-hero-title {
    font-size: clamp(24px, 4.2vw, 36px);
    margin-bottom: 8px;
  }
  .center-hero-subtitle {
    font-size: 12.5px;
  }
  .preview-project-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .preview-image-wrapper {
    width: 210px;
    height: 115px;
    margin-bottom: 5px;
  }
  .ring-orbit-container {
    top: 57%;
    height: 280px;
  }
  .ring-card-panel {
    width: 34px;
    height: 90px;
    margin-left: -17px;
    margin-top: -45px;
    border-radius: 2px;
  }
  .orbit-nav-arrow {
    top: 79%;
    width: 48px;
    height: 48px;
  }
  .orbit-nav-arrow svg {
    width: 22px;
    height: 22px;
  }
  .orbit-nav-arrow.arrow-left { left: 20px; }
  .orbit-nav-arrow.arrow-right { right: 20px; }
  .modal-specs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .modal-highlights-list {
    grid-template-columns: 1fr;
  }
  .inquiry-form-grid {
    grid-template-columns: 1fr;
  }
  .hero-banners-row {
    margin-top: 10px;
    gap: 8px;
  }
  .brutalist-demo-banner {
    margin-top: 0;
    gap: 7px;
    padding: 4px 8px 4px 5px;
    max-width: 95%;
  }
  .brutal-line-1 {
    font-size: 9px;
  }
  .brutal-line-2 {
    font-size: 8.5px;
  }
  .brutal-badge {
    font-size: 8.5px;
    padding: 3px 6px;
  }
  .brutal-action-btn {
    font-size: 8.5px;
    padding: 4px 8px;
  }
  .pc-geometric-badge {
    padding: 4px 8px;
    transform: rotate(0deg);
  }
  .pc-badge-text span { font-size: 7px; }
  .pc-badge-text strong { font-size: 8px; }
  .hero-bottom-bar {
    padding: 0 20px;
    bottom: 18px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 14px 16px;
  }
  .brand-logo {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
  .brand-tagline {
    font-size: 7px;
  }
  .btn-header-action {
    font-size: 10px;
    gap: 3px;
  }
  .btn-lang-toggle {
    font-size: 9px;
    padding: 3px 5px;
  }
  .center-stage-container {
    top: 25%;
    width: 92%;
    z-index: 60;
  }
  .center-hero-title {
    font-size: 22px;
    letter-spacing: -0.8px;
    margin-bottom: 4px;
  }
  .center-hero-subtitle {
    font-size: 11px;
    line-height: 1.35;
  }
  .center-preview-view {
    min-width: 250px;
    max-width: 320px;
    padding: 10px 14px 8px;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    z-index: 100;
  }
  .preview-project-title {
    font-size: 14px;
    margin-bottom: 3px;
  }
  .preview-image-wrapper {
    width: 170px;
    height: 90px;
    margin-bottom: 4px;
    border-radius: 4px;
  }
  .preview-badge-status {
    font-size: 7px;
    padding: 2px 5px;
  }
  .preview-meta-row {
    font-size: 9.5px;
    margin-bottom: 5px;
    gap: 4px;
  }
  .preview-cta-btn {
    padding: 6px 16px;
    font-size: 9px;
    letter-spacing: 1px;
    border-radius: 4px;
  }
  .ring-orbit-container {
    top: 57%;
    height: 230px;
  }
  .ring-card-panel {
    width: 26px;
    height: 72px;
    margin-left: -13px;
    margin-top: -36px;
    border-radius: 2px;
  }
  .orbit-nav-arrow {
    top: 78%;
    width: 44px;
    height: 44px;
  }
  .orbit-nav-arrow svg {
    width: 20px;
    height: 20px;
  }
  .orbit-nav-arrow.arrow-left { left: 12px; }
  .orbit-nav-arrow.arrow-right { right: 12px; }
  .hero-banners-row {
    margin-top: 8px;
    gap: 6px;
  }
  .brutalist-demo-banner {
    margin-top: 0;
    gap: 5px;
    padding: 3px 6px 3px 4px;
    max-width: 96%;
    border-width: 1.5px;
    box-shadow: 2.5px 2.5px 0px #000000;
  }
  .brutal-line-1 {
    font-size: 7.5px;
    letter-spacing: 0.2px;
  }
  .brutal-line-2 {
    font-size: 7px;
    letter-spacing: 0.1px;
  }
  .brutal-highlight {
    padding: 1px 3px;
  }
  .brutal-badge {
    font-size: 7px;
    padding: 2px 5px;
  }
  .brutal-action-btn {
    font-size: 7px;
    padding: 3px 6px;
    gap: 2px;
  }
  .pc-geometric-badge {
    padding: 3px 6px;
    border-width: 1.5px;
    box-shadow: 2px 2px 0px #000000;
    transform: rotate(0deg);
  }
  .pc-mascot-svg {
    width: 14px;
    height: 14px;
  }
  .pc-badge-text span {
    font-size: 6.5px;
  }
  .pc-badge-text strong {
    font-size: 7.5px;
  }
  .modal-content-body {
    padding: 20px 16px;
  }
  .hero-bottom-bar {
    padding: 0 14px;
    bottom: 14px;
  }
  .bottom-instruction-hint {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .bottom-stats-counter {
    font-size: 8.5px;
  }
}

/* ==========================================================================
   DEDICATED CONTACT & CUSTOMIZATION ACTION MODAL
   ========================================================================== */
.custom-contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

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

.custom-contact-dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border: 3px solid #000000;
  border-radius: 12px;
  box-shadow: 10px 10px 0px #000000;
  padding: 36px 32px 28px;
  text-align: center;
  transform: translateY(24px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-contact-overlay.active .custom-contact-dialog {
  transform: translateY(0) scale(1);
}

.custom-contact-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f4f0;
  border: 2px solid #000000;
  color: #000000;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 2px 2px 0px #000000;
  transition: all 0.15s ease;
}

.custom-contact-close:hover {
  background: #ff007a;
  color: #ffffff;
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0px #000000;
}

.custom-contact-close:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0px #000000;
}

.contact-header-badge {
  display: inline-block;
  background: #ffe600;
  color: #000000;
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 2px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  margin-bottom: 14px;
}

.contact-dialog-title {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.25;
}

.contact-dialog-subtitle {
  font-size: 13.5px;
  line-height: 1.55;
  color: #555555;
  margin-bottom: 26px;
}

/* Two Action Buttons Grid */
.contact-channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-channel-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 10px;
  border: 2.5px solid #000000;
  text-decoration: none;
  text-align: left;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.18s ease, background 0.18s ease;
  user-select: none;
  cursor: pointer;
  pointer-events: auto;
}

.contact-channel-btn * {
  pointer-events: none;
}

/* Option 1: WhatsApp Themed Green */
.contact-channel-btn.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 5px 5px 0px #000000;
}

.contact-channel-btn.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px #000000;
}

.contact-channel-btn.btn-whatsapp:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0px #000000;
}

/* Option 2: Phone Call Themed Blue */
.contact-channel-btn.btn-call {
  background: #0066ff;
  color: #ffffff;
  box-shadow: 5px 5px 0px #000000;
}

.contact-channel-btn.btn-call:hover {
  background: #0052cc;
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px #000000;
}

.contact-channel-btn.btn-call:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0px #000000;
}

.channel-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.channel-tag {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.92);
}

.channel-number {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.channel-hint {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

.contact-dialog-footer {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #777777;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .custom-contact-dialog {
    padding: 28px 18px 20px;
    box-shadow: 6px 6px 0px #000000;
  }
  .contact-dialog-title {
    font-size: 19px;
  }
  .contact-dialog-subtitle {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .contact-channel-btn {
    padding: 12px 14px;
    gap: 12px;
    box-shadow: 4px 4px 0px #000000;
  }
  .channel-icon-wrap {
    width: 42px;
    height: 42px;
  }
  .channel-icon-wrap svg {
    width: 24px;
    height: 24px;
  }
  .channel-tag {
    font-size: 9px;
  }
  .channel-number {
    font-size: 15px;
  }
  .channel-hint {
    font-size: 10px;
  }
}

/* ==========================================================================
   CONTACT ADVISORY MODAL (CALL & WHATSAPP TO 8789489588)
   ========================================================================== */
.btn-header-action.btn-contact-pill {
  background: #000000;
  color: #ffffff;
  border: 1.5px solid #000000;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.btn-header-action.btn-contact-pill:hover {
  background: #ffe600;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-header-action.btn-contact-pill::after {
  display: none;
}

.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

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

.contact-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border: 2.5px solid #000000;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 8px 8px 0px #000000;
  padding: 36px 28px 24px;
  text-align: left;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal-overlay.active .contact-modal-dialog {
  transform: translateY(0) scale(1);
}

.contact-modal-badge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #000000;
  background: #ffe600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1.5px solid #000000;
  margin-bottom: 12px;
}

.contact-modal-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.contact-modal-subtitle {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 22px;
}

.contact-options-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-option-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 2px solid #000000;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  user-select: none;
}

.contact-option-card.card-call {
  background: #0066ff;
  color: #ffffff;
  box-shadow: 4px 4px 0px #000000;
}

.contact-option-card.card-call:hover {
  background: #0052cc;
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px #000000;
}

.contact-option-card.card-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 4px 4px 0px #000000;
}

.contact-option-card.card-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px #000000;
}

.option-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option-text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.option-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  opacity: 0.9;
  text-transform: uppercase;
}

.option-highlight-num {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.option-sub {
  font-size: 11px;
  opacity: 0.85;
}

.option-arrow {
  font-size: 18px;
  font-weight: 800;
  padding-right: 4px;
}

.contact-modal-footer {
  text-align: center;
  font-size: 11px;
  color: #777777;
  font-weight: 600;
}
