/* ==========================================================================
   STRAWBERRY STAR GROUP — AWARD WINNING DESIGN SYSTEM
   Inspired by Wolverine Worldwide & Modern Architectural Luxury
   Fully Responsive for Mobile, Tablet, Laptop & Desktop
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace, sans-serif;

  /* Color Palette */
  --bg-dark: #090a0d;
  --bg-card-dark: #121318;
  --bg-card-elevated: #1a1b22;
  --bg-light: #f6f7f9;
  --bg-white: #ffffff;
  --bg-subtle: #eeeff3;

  --text-primary-dark: #ffffff;
  --text-secondary-dark: #9da1b4;
  --text-muted-dark: #63677a;

  --text-primary-light: #0d0e12;
  --text-secondary-light: #525668;
  --text-muted-light: #898e9f;

  --brand-red: #d82338;
  --brand-red-hover: #f02a42;
  --brand-red-glow: rgba(216, 35, 56, 0.25);
  --brand-gold: #c6a263;
  --brand-gold-glow: rgba(198, 162, 99, 0.2);

  /* Glassmorphic & Borders */
  --glass-bg: rgba(18, 19, 24, 0.75);
  --glass-bg-light: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-light: rgba(0, 0, 0, 0.08);
  --glass-blur: blur(20px);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.16);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.28);
  --shadow-glow: 0 0 35px var(--brand-red-glow);

  /* Spacing & Container */
  --container-max: 1540px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::selection {
  background: var(--brand-red);
  color: #ffffff;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

/* --- Responsive Flex & Grid Helper Classes --- */
.responsive-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

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

.service-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.service-row.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* --- Typography Utilities --- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-red);
  white-space: nowrap;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary-dark);
}

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

.section-subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  color: var(--text-secondary-dark);
  font-weight: 400;
  line-height: 1.6;
  max-width: 680px;
}

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

/* --- Pill Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap !important;
  flex-shrink: 0;
  text-align: center;
}

.btn-primary {
  background: var(--brand-red);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--brand-red-glow);
}

.btn-primary:hover {
  background: var(--brand-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(216, 35, 56, 0.4);
}

.btn-white {
  background: #ffffff;
  color: #090a0d;
}

.btn-white:hover {
  background: #f0f0f3;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-primary-light);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-outline-dark:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: #000;
  transform: translateY(-2px);
}

.btn-vr-tour {
  background: rgba(216, 35, 56, 0.12);
  color: #ffffff;
  border: 1px solid rgba(216, 35, 56, 0.45);
  box-shadow: 0 4px 15px rgba(216, 35, 56, 0.15);
}

.btn-vr-tour:hover {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(216, 35, 56, 0.45);
}

.btn-vr-tour svg {
  color: var(--brand-red);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.btn-vr-tour:hover svg {
  color: #ffffff;
  transform: scale(1.15);
}

.btn .arrow-icon {
  font-family: var(--font-mono);
  font-size: 1.1em;
  transition: transform var(--transition-fast);
}

.btn:hover .arrow-icon {
  transform: translate(2px, -2px);
}

/* ==========================================================================
   FLOATING PILL NAVIGATION (Single-Line Layout & Multi-Device Scalability)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all var(--transition-smooth);
}

.site-header .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap !important;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  gap: 1.5rem;
  transition: all var(--transition-smooth);
}

/* Sticky Morphing State into Floating Pill */
.site-header.scrolled {
  padding: 0.85rem 0;
}

.site-header.scrolled .nav-container {
  max-width: 1400px;
  width: 95%;
  background: rgba(14, 15, 20, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.5rem 0.55rem 1.75rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55);
}

/* Brand Logo (Official Image) */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  white-space: nowrap !important;
  flex-shrink: 0;
  z-index: 1002;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav Menu Links (Single Line Desktop) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.nav-item {
  position: relative;
  white-space: nowrap !important;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0;
  position: relative;
  white-space: nowrap !important;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transition: width var(--transition-fast);
}

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

.nav-link .dropdown-caret {
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.nav-item:hover .dropdown-caret {
  transform: rotate(180deg);
}

/* Nav Right Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.phone-quick-dial {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap !important;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.phone-quick-dial:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  padding: 11px;
  z-index: 1002;
  flex-shrink: 0;
}

.hamburger-btn span {
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* --- Mega Menu Dropdown Drawer (Wolverine Style) --- */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 90vw;
  max-width: 1100px;
  background: rgba(14, 15, 20, 0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  pointer-events: none;
}

.nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
  pointer-events: auto;
}

.mega-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
}

.mega-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mega-sidebar h4 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: #fff;
}

.mega-sidebar p {
  font-size: 0.875rem;
  color: var(--text-secondary-dark);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.mega-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.mega-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition-smooth), border-color var(--transition-fast);
}

.mega-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

.mega-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  opacity: 0.55;
}

.mega-card:hover .mega-card-img {
  transform: scale(1.08);
  opacity: 0.75;
}

.mega-card-content {
  position: relative;
  z-index: 2;
}

.mega-card-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  margin-bottom: 0.25rem;
}

.mega-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

/* ==========================================================================
   PAGE HERO FOR INNER SEPARATE PAGES
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem 0;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.page-hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: brightness(0.6);
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(9,10,13,0.7) 0%, var(--bg-dark) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

/* ==========================================================================
   HOMEPAGE HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem 0;
  overflow: hidden;
}

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

.hero-backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.1);
  transform: scale(1.03);
  animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(9, 10, 13, 0.4) 0%,
    rgba(9, 10, 13, 0.2) 40%,
    rgba(9, 10, 13, 0.85) 85%,
    var(--bg-dark) 100%
  );
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: flex-end;
  width: 100%;
}

.hero-text-block {
  max-width: 820px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.75rem;
}

.hero-badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 10px var(--brand-red);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-title span.text-highlight {
  background: linear-gradient(135deg, #ffffff 40%, var(--brand-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 660px;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Floating Hero Glass Card */
.hero-glass-card {
  background: rgba(14, 15, 20, 0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--brand-red-glow);
  filter: blur(40px);
  pointer-events: none;
}

.hero-glass-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-glass-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary-dark);
}

.hero-glass-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.hero-metric-big {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}

.hero-metric-sub {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.hero-metric-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-metric-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}

.hero-metric-item-val {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-metric-item-lbl {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   INTERACTIVE DEVELOPMENT SHOWCASE / SLIDER (Wolverine Brand Section)
   ========================================================================== */
.showcase-section {
  position: relative;
  padding: 7rem 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.showcase-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.showcase-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 680px;
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.showcase-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  transform: scale(1.02);
}

.showcase-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.showcase-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.showcase-slide-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(9, 10, 13, 0.92) 0%,
    rgba(9, 10, 13, 0.5) 50%,
    rgba(9, 10, 13, 0.85) 100%
  );
}

.showcase-slide-content {
  position: absolute;
  bottom: 3rem;
  left: 3.5rem;
  right: 3.5rem;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.showcase-slide-info {
  max-width: 640px;
}

.showcase-slide-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.showcase-badge {
  background: var(--brand-red);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.showcase-location {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.showcase-slide-title {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.showcase-slide-desc {
  font-size: clamp(0.95rem, 1.1vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.showcase-slide-specs {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.showcase-spec-item {
  border-left: 2px solid var(--brand-red);
  padding-left: 0.85rem;
}

.showcase-spec-val {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.showcase-spec-lbl {
  font-size: 0.75rem;
  color: var(--text-secondary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Floating Control Pill (Wolverine Style) */
.showcase-controls-pill {
  background: rgba(14, 15, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.showcase-counter {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.1em;
}

.showcase-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.showcase-nav-btn:hover {
  background: #ffffff;
  color: #090a0d;
  transform: scale(1.05);
}

/* Project Selection Tabs Bar */
.showcase-tabs-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.showcase-tabs-bar::-webkit-scrollbar {
  display: none;
}

.showcase-tab {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary-dark);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.showcase-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.showcase-tab.active {
  background: #ffffff;
  color: #090a0d;
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   WHO WE ARE — BENTO GRID SECTION (Light/Off-White Contrast)
   ========================================================================== */
.about-bento-section {
  padding: 8rem 0;
  background: var(--bg-light);
  color: var(--text-primary-light);
  position: relative;
}

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

.bento-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.bento-card.span-7 {
  grid-column: span 7;
}

.bento-card.span-5 {
  grid-column: span 5;
}

.bento-card.span-4 {
  grid-column: span 4;
}

.bento-card.span-8 {
  grid-column: span 8;
}

.bento-card.dark-card {
  background: var(--bg-dark);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-card.dark-card .section-subtitle {
  color: var(--text-secondary-dark);
}

.bento-card-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mask-image: linear-gradient(to left, rgba(0,0,0,1), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1), transparent);
}

.bento-big-num {
  font-family: var(--font-mono);
  font-size: clamp(3.5rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brand-red);
  margin-bottom: 0.5rem;
}

.bento-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: inherit;
}

.bento-card-desc {
  font-size: 1rem;
  color: var(--text-secondary-light);
  line-height: 1.6;
}

.bento-card.dark-card .bento-card-desc {
  color: var(--text-secondary-dark);
}

.differentiator-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.differentiator-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: inherit;
}

.differentiator-item svg {
  width: 20px;
  height: 20px;
  fill: var(--brand-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   SERVICES PILLARS SECTION (6 Interactive Luxury Cards)
   ========================================================================== */
.services-section {
  padding: 8rem 0;
  background: var(--bg-dark);
  color: #ffffff;
}

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

.service-card {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-card-elevated);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-red);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
}

.service-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: #ffffff;
}

.service-card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  transition: color var(--transition-fast);
}

.service-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card-link {
  color: var(--brand-red);
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   METRICS & DATA READOUT SECTION
   ========================================================================== */
.metrics-section {
  padding: 6rem 0;
  background: #0d0e12;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.metric-block {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.metric-block:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-number {
  font-family: var(--font-mono);
  font-size: clamp(2.6rem, 3.8vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.metric-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   EDITORIAL NEWS & INSIGHTS CAROUSEL SECTION
   ========================================================================== */
.news-section {
  padding: 8rem 0;
  background: var(--bg-light);
  color: var(--text-primary-light);
}

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

.news-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.news-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-card:hover .news-card-img {
  transform: scale(1.08);
}

.news-card-category {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(14, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-date {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted-light);
  margin-bottom: 0.75rem;
}

.news-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text-primary-light);
  margin-bottom: 0.85rem;
  transition: color var(--transition-fast);
}

.news-card:hover .news-card-title {
  color: var(--brand-red);
}

.news-card-excerpt {
  font-size: 0.9375rem;
  color: var(--text-secondary-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.news-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-red);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 8rem 0;
  background: var(--bg-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.testimonial-card {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-quote-icon {
  font-size: 3rem;
  line-height: 1;
  font-family: serif;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-style: italic;
}

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

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.testimonial-author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.testimonial-author-role {
  font-size: 0.8125rem;
  color: var(--text-secondary-dark);
}

/* ==========================================================================
   PRE-FOOTER CTA BANNER (Wolverine Style)
   ========================================================================== */
.cta-banner-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.cta-banner-desc {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   GLOBAL OFFICES SECTION
   ========================================================================== */
.offices-section {
  padding: 7rem 0;
  background: var(--bg-card-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.office-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.office-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.office-flag {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.office-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.office-phone {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--brand-red);
  font-weight: 600;
}

/* ==========================================================================
   TEAM & PEOPLE SECTION STYLES (For About Us & Leadership)
   ========================================================================== */
.team-showcase-box {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3.5rem;
}

.team-showcase-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
}

.team-showcase-body {
  padding: 2.5rem;
}

/* ==========================================================================
   DEVELOPMENTS GRID STYLES (For developments.html)
   ========================================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.project-card-full {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), border-color var(--transition-fast);
}

.project-card-full:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-lg);
}

.project-card-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card-full:hover .project-card-img {
  transform: scale(1.06);
}

.project-card-price-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(14, 15, 20, 0.88);
  backdrop-filter: blur(16px);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
}

.card-vr-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(14, 15, 20, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #ffffff;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(216, 35, 56, 0.6);
  transition: all var(--transition-fast);
  z-index: 3;
  text-decoration: none;
}

.card-vr-badge svg {
  color: var(--brand-red);
  transition: transform var(--transition-fast);
}

.card-vr-badge:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(216, 35, 56, 0.5);
}

.card-vr-badge:hover svg {
  color: #ffffff;
  transform: scale(1.15);
}

.project-card-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-card-title {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.project-card-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 1.5rem 0;
}

/* ==========================================================================
   MAIN DARK FOOTER (Wolverine Style Oversized Wordmark + Clean Nav)
   ========================================================================== */
.site-footer {
  background: #060709;
  color: #ffffff;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand-col p {
  font-size: 0.9375rem;
  color: var(--text-secondary-dark);
  line-height: 1.6;
  margin: 1.25rem 0 2rem 0;
  max-width: 320px;
}

.footer-accreditations {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.footer-accreditations img {
  height: 36px;
  width: auto;
  opacity: 0.75;
  filter: brightness(1.2);
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.footer-social-icon:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-nav-link {
  font-size: 0.9375rem;
  color: var(--text-secondary-dark);
  transition: color var(--transition-fast);
}

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

.footer-newsletter-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.35rem 0.35rem 1.25rem;
  margin-top: 1rem;
}

.footer-newsletter-input {
  background: transparent;
  color: #ffffff;
  width: 100%;
  font-size: 0.875rem;
}

.footer-newsletter-input::placeholder {
  color: var(--text-muted-dark);
}

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

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-wordmark-bottom {
  font-size: clamp(2.5rem, 8vw, 9.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-align: center;
  color: rgba(255, 255, 255, 0.03);
  user-select: none;
  line-height: 0.8;
  margin-top: 2rem;
  text-transform: uppercase;
}

/* ==========================================================================
   MODAL & INQUIRY OVERLAYS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  overflow-y: auto;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.open .modal-dialog {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--brand-red);
}

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

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

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-red);
  background: rgba(255, 255, 255, 0.09);
}

.form-select option {
  background: #18191f;
  color: #fff;
}

/* ==========================================================================
   MOBILE MENU DRAWER
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 10, 13, 0.98);
  backdrop-filter: blur(25px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5rem 2rem 2.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1003;
  transition: all var(--transition-fast);
  line-height: 1;
}

.mobile-drawer-close:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  transform: rotate(90deg);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  display: inline-block;
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--brand-red);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS (Mobile, Tablet, Laptop, Desktop)
   ========================================================================== */

/* --- Laptop & Medium Screens (1024px to 1280px) --- */
@media (max-width: 1280px) {
  .site-header.scrolled .nav-container {
    max-width: 100%;
    width: 96%;
    padding: 0.5rem 1.25rem;
  }
  .nav-menu {
    gap: 1.25rem;
  }
  .nav-link {
    font-size: 0.875rem;
  }
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-glass-card {
    max-width: 600px;
    margin-top: 1rem;
  }
  .bento-card.span-7 {
    grid-column: span 12;
  }
  .bento-card.span-5 {
    grid-column: span 12;
  }
  .bento-card.span-8 {
    grid-column: span 12;
  }
  .bento-card.span-4 {
    grid-column: span 12;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* --- Tablet Screens (768px to 1024px) --- */
@media (max-width: 1024px) {
  .nav-menu, .nav-actions .phone-quick-dial {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .showcase-container {
    height: auto;
    min-height: 640px;
  }
  .showcase-slide-content {
    flex-direction: column;
    align-items: flex-start;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    gap: 1.5rem;
  }
  .responsive-grid-2, .service-row, .service-row.reverse, .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .news-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric-block:nth-child(2)::after {
    display: none;
  }
  .team-showcase-img {
    height: 380px;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Mobile Landscape & Large Phones (576px to 768px) --- */
@media (max-width: 768px) {
  .site-header {
    padding: 1rem 0;
  }
  .site-header .nav-container {
    padding: 0 1.25rem;
  }
  .site-header.scrolled {
    padding: 0.6rem 0;
  }
  .site-header.scrolled .nav-container {
    width: 94%;
    padding: 0.5rem 1rem;
  }
  .brand-logo-img {
    height: 32px;
  }
  .hero-section {
    padding: 7rem 0 4rem 0;
    min-height: auto;
  }
  .page-hero {
    padding: 7.5rem 0 3.5rem 0;
  }
  .showcase-section, .about-bento-section, .services-section, .news-section, .testimonials-section, .offices-section, .cta-banner-section {
    padding: 5rem 0;
  }
  .showcase-slide-content {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
  }
  .showcase-slide-specs {
    gap: 1rem;
  }
  .services-grid, .news-grid, .testimonials-grid, .responsive-grid-3 {
    grid-template-columns: 1fr;
  }
  .differentiator-list {
    grid-template-columns: 1fr;
  }
  .bento-card {
    padding: 1.75rem;
  }
  .bento-card-bg-img {
    display: none;
  }
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .project-card-body {
    padding: 1.75rem;
  }
  .project-card-img-wrap {
    height: 240px;
  }
  .team-showcase-img {
    height: 260px;
  }
  .team-showcase-body {
    padding: 1.5rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .modal-dialog {
    padding: 1.75rem;
  }
}

/* --- Compact Mobile Devices (< 480px) --- */
@media (max-width: 480px) {
  .hero-badge-pill {
    font-size: 0.6875rem;
    padding: 0.4rem 0.85rem;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .metric-block {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .metric-block:not(:last-child)::after {
    display: none;
  }
  .offices-grid {
    grid-template-columns: 1fr;
  }
  .project-card-specs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-slide-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   CHATBOT FLOATING WIDGET
   ========================================================================== */
.chatbot-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 1500;
  cursor: pointer;
}

.chatbot-fab-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(216, 35, 56, 0.45);
  transition: all var(--transition-smooth);
  position: relative;
  z-index: 2;
}

.chatbot-fab:hover .chatbot-fab-icon {
  transform: scale(1.08);
  box-shadow: 0 10px 35px rgba(216, 35, 56, 0.6);
}

.chatbot-fab.active .chatbot-fab-icon {
  background: #333;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.chatbot-fab-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand-red);
  animation: chatPulse 2.5s infinite;
  z-index: 1;
}

@keyframes chatPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

.chatbot-fab.active .chatbot-fab-pulse {
  display: none;
}

/* Chat Window */
.chatbot-window {
  position: fixed;
  bottom: 6.5rem;
  right: 1.75rem;
  width: 400px;
  max-height: 560px;
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.chatbot-window.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Chat Header */
.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(14, 15, 20, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.chatbot-header-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}

.chatbot-header-status {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.chatbot-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
}

.chatbot-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.chatbot-close-btn:hover {
  background: var(--brand-red);
}

/* Messages Area */
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 260px;
  max-height: 320px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.chatbot-msg {
  display: flex;
  max-width: 88%;
}

.chatbot-msg-user {
  align-self: flex-end;
  justify-content: flex-end;
}

.chatbot-msg-bot {
  align-self: flex-start;
}

.chatbot-msg-bubble {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.55;
  word-break: break-word;
}

.chatbot-msg-bot .chatbot-msg-bubble {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  border-bottom-left-radius: 4px;
}

.chatbot-msg-user .chatbot-msg-bubble {
  background: var(--brand-red);
  color: #fff;
  border-bottom-right-radius: 4px;
}

/* Typing Dots Animation */
.chatbot-typing-dots {
  display: flex;
  gap: 4px;
  padding: 4px 0;
}

.chatbot-typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: typingBounce 1.2s infinite;
}

.chatbot-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.chatbot-typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Quick Action Buttons */
.chatbot-quick-actions {
  display: flex;
  gap: 0.5rem;
  padding: 0 1.25rem 0.75rem 1.25rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.chatbot-quick-btn {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.chatbot-quick-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Chat Input Area */
.chatbot-input-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 15, 20, 0.6);
  flex-shrink: 0;
}

.chatbot-input {
  flex: 1;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 0.875rem;
}

.chatbot-input::placeholder {
  color: var(--text-muted-dark);
}

.chatbot-input:focus {
  border-color: var(--brand-red);
  background: rgba(255, 255, 255, 0.09);
}

.chatbot-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.chatbot-send-btn:hover {
  background: var(--brand-red-hover);
  transform: scale(1.05);
}

/* Chatbot Responsive */
@media (max-width: 480px) {
  .chatbot-fab {
    bottom: 1rem;
    right: 1rem;
  }
  .chatbot-fab-icon {
    width: 52px;
    height: 52px;
  }
  .chatbot-fab-pulse {
    width: 52px;
    height: 52px;
  }
  .chatbot-window {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .chatbot-window {
    width: 360px;
    right: 1rem;
    bottom: 5.5rem;
  }
}

/* ==========================================================================
   VIRTUAL TOURS PAGE STYLES
   ========================================================================== */
.vt-section {
  padding: 5rem 0;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vt-section-alt {
  background: #0d0e12;
}

.vt-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}

.vt-card-reverse {
  grid-template-columns: 1.4fr 1fr;
  direction: rtl;
}

.vt-card-reverse > * {
  direction: ltr;
}

.vt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(216, 35, 56, 0.12);
  border: 1px solid rgba(216, 35, 56, 0.25);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.vt-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.vt-desc {
  font-size: 1rem;
  color: var(--text-secondary-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vt-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vt-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.vt-frame-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  aspect-ratio: 16 / 10;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.vt-iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

.vt-frame-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  z-index: 5;
}

.vt-frame-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}

.vt-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(216, 35, 56, 0.45);
  transition: all var(--transition-smooth);
}

.vt-frame-overlay:hover .vt-play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(216, 35, 56, 0.6);
}

.vt-frame-overlay span {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Virtual Tours Responsive */
@media (max-width: 1024px) {
  .vt-card,
  .vt-card-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .vt-card-reverse > * {
    direction: ltr;
  }
  .vt-frame-wrap {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .vt-section {
    padding: 3rem 0;
  }
  .vt-card {
    gap: 2rem;
  }
  .vt-play-btn {
    width: 56px;
    height: 56px;
  }
  .vt-play-btn svg {
    width: 24px;
    height: 24px;
  }
}
