/* ==========================================================================
   RAJ MEDIA - ULTRA-PREMIUM PRODUCTION DESIGN SYSTEM
   ========================================================================== */

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

:root {
  /* Brand Sage Green Palette (Matching RM Logo & Design Mockup) */
  --primary: #76A654;
  --primary-dark: #5C8738;
  --primary-deep: #436625;
  --primary-bright: #8CB86C;
  --primary-glow: rgba(118, 166, 84, 0.4);
  --primary-soft: rgba(118, 166, 84, 0.12);
  --primary-subtle: rgba(118, 166, 84, 0.06);
  --primary-border: rgba(118, 166, 84, 0.22);
  --primary-gradient: linear-gradient(135deg, #93BE73 0%, #76A654 50%, #588336 100%);
  --primary-gradient-glow: linear-gradient(135deg, rgba(147, 190, 115, 0.25) 0%, rgba(118, 166, 84, 0.08) 100%);

  /* Neutrals & Clean Canvas */
  --bg-body: #F8FAF6;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #FFFFFF;
  --bg-surface-glass: rgba(255, 255, 255, 0.88);
  --bg-card-subtle: #F1F5ED;
  --bg-card-hover: #F3F8EE;
  --bg-dark: #121811;
  --bg-dark-surface: #182216;
  --bg-dark-card: #202D1E;
  --bg-dark-glass: rgba(18, 24, 17, 0.88);

  /* Typography */
  --text-main: #141A13;
  --text-muted: #5A6655;
  --text-subtle: #84927F;
  --text-light: #F4F7F2;
  --text-inverse: #FFFFFF;
  --text-inverse-muted: #A3B49E;

  /* Borders & Shadows */
  --border-glass: rgba(118, 166, 84, 0.18);
  --border-light: rgba(20, 26, 19, 0.08);
  --border-subtle: rgba(118, 166, 84, 0.12);
  --border-dark: rgba(255, 255, 255, 0.12);
  
  --shadow-subtle: 0 4px 20px -2px rgba(20, 26, 19, 0.05);
  --shadow-card: 0 12px 32px -6px rgba(20, 26, 19, 0.08), 0 0 1px 1px rgba(118, 166, 84, 0.1);
  --shadow-elevated: 0 24px 48px -12px rgba(20, 26, 19, 0.12), 0 0 0 1px rgba(118, 166, 84, 0.18);
  --shadow-green: 0 12px 28px -4px rgba(118, 166, 84, 0.42);
  --shadow-glow: 0 0 40px rgba(118, 166, 84, 0.3);

  /* Radius Tokens */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* Typography Tokens */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base Reset & Normalization
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Fluid Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 768px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}

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

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

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

/* WebGL / Particle Canvas */
#webgl-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

main {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Typography Utilities
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Section Title & Header Badges */
.section {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

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

.editorial-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 14px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  display: inline-block;
  box-shadow: 0 0 10px var(--primary);
  animation: pulseDot 2s infinite ease-in-out;
}

.section-title-editorial {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-title-editorial .accent-gradient {
  color: var(--primary);
  display: inline;
}

.section-subtitle-editorial {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 42px;
}

/* ==========================================================================
   Luxury Buttons System
   ========================================================================== */

.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-primary-luxury {
  background: var(--primary);
  color: #FFFFFF;
  border: 1px solid var(--primary);
  box-shadow: var(--shadow-green);
}

.btn-primary-luxury:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -4px rgba(118, 166, 84, 0.55);
  color: #FFFFFF;
}

.btn-glass-luxury {
  background: #FFFFFF;
  color: var(--text-main);
  border: 1.5px solid var(--border-glass);
  box-shadow: var(--shadow-subtle);
}

.btn-glass-luxury:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-play-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  padding: 8px 16px 8px 8px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.play-ring-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-glass);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}

.btn-play-action:hover .play-ring-box {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: var(--shadow-green);
}

/* ==========================================================================
   Floating Left Social Bar
   ========================================================================== */

.floating-social-bar {
  position: fixed;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 99;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-subtle);
}

.floating-social-bar a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.floating-social-bar a:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: scale(1.15);
}

@media (max-width: 1100px) {
  .floating-social-bar {
    display: none;
  }
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px -10px rgba(20, 26, 19, 0.06);
}

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

/* Brand Identity */
.brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-text .highlight {
  color: var(--primary);
}

/* Nav Links Menu */
.nav-links-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-subtle);
}

.nav-link-item {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.nav-link-item:hover, .nav-link-item.active {
  color: var(--primary);
  background: var(--primary-subtle);
}

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

/* Audio Toggle */
.sound-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-subtle);
}

.sound-toggle-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-subtle);
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-glass);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-elevated);
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .nav-links-menu {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

/* ==========================================================================
   Hero Section (Matching Exact User Mockup)
   ========================================================================== */

.hero-luxury-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-grid-luxury {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

/* Hero Left */
.hero-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.hero-title-giant {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-main);
}

.hero-brand-green {
  color: var(--primary);
  display: inline;
}

.hero-brand-dark {
  color: var(--text-main);
  display: inline;
}

.hero-tagline-sub {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.hero-tagline-sub .tag-highlight {
  color: var(--primary);
  font-style: normal;
}

.hero-description-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Studio Meta Bar */
.studio-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.studio-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.studio-meta-item i {
  color: var(--primary);
}

/* Hero Right: Circular Sage Glow Stage */
.hero-visual-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero-circle-backdrop {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(147, 190, 115, 0.35) 0%, rgba(118, 166, 84, 0.15) 50%, rgba(118, 166, 84, 0.02) 80%);
  border: 2px solid rgba(118, 166, 84, 0.28);
  box-shadow: 0 0 60px rgba(118, 166, 84, 0.2);
  z-index: 1;
  pointer-events: none;
}

.hero-circle-arc-decor {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 510px;
  height: 510px;
  border-radius: 50%;
  border: 1.5px dashed rgba(118, 166, 84, 0.35);
  pointer-events: none;
  animation: spinSlow 40s linear infinite;
  z-index: 0;
}

.hero-main-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border-glass);
  max-width: 520px;
  transition: transform var(--transition-normal);
}

.hero-main-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Floating Glass Badges */
.floating-glass-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-main);
  animation: floatSlow 6s ease-in-out infinite;
}

.floating-glass-badge.pos-top-left {
  top: 30px;
  left: -20px;
}

.floating-glass-badge.pos-bottom-right {
  bottom: 20px;
  right: -10px;
  animation-delay: -3s;
}

.badge-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* Hero Bottom Metric Cards */
.stats-container-luxury {
  position: relative;
  z-index: 2;
}

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

.stat-box-item {
  background: #FFFFFF;
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}

.stat-box-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}

.stat-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.stat-metric-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.1;
}

.stat-metric-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .hero-grid-luxury {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-visual-stage {
    min-height: auto;
  }
  .stats-grid-luxury {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .stats-grid-luxury {
    grid-template-columns: 1fr;
  }
  .floating-glass-badge {
    display: none;
  }
  .hero-circle-backdrop {
    width: 320px;
    height: 320px;
  }
}

/* ==========================================================================
   Client Logos Infinite Marquee
   ========================================================================== */

.clients-marquee-section {
  padding: 40px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  position: relative;
}

.marquee-gradient-track {
  display: flex;
  overflow: hidden;
  user-select: none;
  position: relative;
}

.marquee-gradient-track::before,
.marquee-gradient-track::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-gradient-track::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF, transparent);
}

.marquee-gradient-track::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF, transparent);
}

.marquee-content-loop {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-shrink: 0;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-content-loop:hover {
  animation-play-state: paused;
}

.brand-badge-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-main);
  white-space: nowrap;
}

.brand-badge-pill i {
  color: var(--primary);
}

/* ==========================================================================
   Services Section (Bento Grid)
   ========================================================================== */

.services-luxury-section {
  background: var(--bg-body);
}

.services-grid-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
  margin-bottom: 48px;
}

.bento-service-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.bento-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.service-icon-luxury {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}

.service-step-index {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-subtle);
}

.service-card-heading {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-main);
}

.service-card-paragraph {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-card-action {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.service-card-action:hover {
  gap: 10px;
}

/* Service Bottom Highlight CTA */
.service-highlight-cta {
  background: #FFFFFF;
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  flex-wrap: wrap;
  gap: 20px;
}

.service-cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-cta-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.service-cta-text-wrap h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

.service-cta-text-wrap p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .services-grid-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-grid-bento {
    grid-template-columns: 1fr;
  }
  .service-highlight-cta {
    border-radius: var(--radius-lg);
    padding: 24px;
  }
}

/* ==========================================================================
   About Us Section
   ========================================================================== */

.about-luxury-section {
  background: #FFFFFF;
}

.about-grid-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-media-wrapper {
  position: relative;
}

.about-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border-glass);
  position: relative;
}

.about-main-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-counter-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.about-counter-badge .count-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.about-counter-badge .count-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

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

.about-details-panel .lead-copy {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.values-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 10px 0;
}

.value-check-card {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

.value-check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

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

/* ==========================================================================
   Process Section ("Simple Steps, Powerful Results")
   ========================================================================== */

.process-luxury-section {
  background: var(--bg-body);
}

.process-steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
}

.step-luxury-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
  position: relative;
}

.step-luxury-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}

.step-number-badge {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-main);
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .process-steps-track {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .process-steps-track {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Portfolio / Recent Work Section
   ========================================================================== */

.portfolio-luxury-section {
  background: #FFFFFF;
}

.portfolio-filter-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-pill-btn {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-pill-btn.active, .filter-pill-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
}

.portfolio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.portfolio-showcase-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  position: relative;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-subtle);
  border: 1.5px solid var(--border-glass);
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.portfolio-image-holder {
  width: 100%;
  height: 100%;
  position: relative;
}

.portfolio-image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-showcase-card:hover .portfolio-image-holder img {
  transform: scale(1.08);
}

.portfolio-details-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 24, 17, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #FFFFFF;
}

.portfolio-badge-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-bright);
  margin-bottom: 4px;
}

.portfolio-title-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.portfolio-client-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 992px) {
  .portfolio-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .portfolio-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-luxury-section {
  background: var(--bg-body);
}

.testimonial-featured-card {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-card);
  position: relative;
  text-align: center;
}

.quote-decor-mark {
  font-size: 2.4rem;
  color: var(--primary);
  opacity: 0.4;
  margin-bottom: 14px;
}

.testimonial-quote-body {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 28px;
}

.testimonial-author-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.author-profile-group {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.author-avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.author-name-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
}

.author-role-title {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonial-pagination-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.testi-nav-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-glass);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.testi-nav-arrow:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.testi-bullet-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-glass);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testi-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Contact & CTA Bento Section
   ========================================================================== */

.contact-luxury-section {
  background: #FFFFFF;
}

.contact-bento-container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  background: var(--bg-body);
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-card);
}

.contact-side-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.contact-side-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-side-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-subtle);
}

.contact-info-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-title-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-detail-val {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-main);
}

/* Contact Form Side */
.contact-form-side {
  background: #FFFFFF;
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-subtle);
}

.form-title-wrap {
  margin-bottom: 24px;
}

.form-title-wrap h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-title-wrap p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.form-row-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field-wrap label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.input-luxury {
  width: 100%;
  padding: 13px 18px;
  background: var(--bg-body);
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition-fast);
}

.input-luxury:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px var(--primary-subtle);
}

textarea.input-luxury {
  resize: vertical;
  min-height: 110px;
}

.form-toast {
  display: none;
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-toast.success {
  display: block;
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #86EFAC;
}

@media (max-width: 992px) {
  .contact-bento-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
  .form-row-duo {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Footer Section
   ========================================================================== */

.site-footer-luxury {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 80px 0 30px 0;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-bio p {
  color: var(--text-inverse-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col-header {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

.footer-nav-list a {
  color: var(--text-inverse-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
  color: var(--primary-bright);
}

.footer-newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  padding: 4px 6px 4px 16px;
}

.footer-newsletter-form input {
  border: none;
  background: transparent;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.88rem;
  width: 100%;
  outline: none;
}

.footer-newsletter-form button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-newsletter-form button:hover {
  background: var(--primary-bright);
  transform: scale(1.08);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: var(--text-inverse-muted);
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}

/* Back to top button */
.back-to-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-green);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-fast);
  z-index: 999;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}
