/* -------------------------------------------------------------
 * WEBCENTRIC DESIGN SYSTEM & STYLE SHEET
 * Minimal Modern Startup Aesthetic - Spacing, Typography & Spacing
 * ------------------------------------------------------------- */

:root {
  --bg-color: #000000;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.45);
  
  /* User-Defined Design Palette */
  --palette-accent: #F4511E;       /* Orange/Red Accent */
  --palette-design: #0D1025;       /* Deep Navy */
  --palette-design-light: #7C85B5; /* Readable steel blue tint for text/lines */
  
  /* Map original variables to maintain backward compatibility and support seamless transition */
  --palette-pink: var(--palette-accent);
  --palette-blue: var(--palette-design-light);
  --palette-green: var(--palette-accent);
  --palette-yellow: var(--palette-design-light);
  --palette-dark: #000000;
  
  /* Typography */
  --font-family: 'Satoshi', sans-serif;
  
  /* Spacing & Transitions */
  --nav-height: 80px;
  --max-width: 1200px;
  --transition-clean: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-family);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
}

/* -------------------------------------------------------------
 * PRELOADER SCREEN (MINIMALIST)
 * ------------------------------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), 
              visibility 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.preloader-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preloader-logo .logo-svg {
  width: 44px;
  height: 44px;
}

.preloader-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.preloader-logo .text-accent {
  color: var(--palette-pink);
}

.loader-bar-container {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--palette-pink);
  transition: width 0.1s ease-out;
}

.loader-percent {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* -------------------------------------------------------------
 * BACKGROUND ENVIRONMENT (CALM & CLEAN GLOWS)
 * ------------------------------------------------------------- */
.bg-environment {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Soft, minimal ambient color spots */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
}

.glow-top-right {
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  background: radial-gradient(circle, var(--palette-design) 0%, rgba(30, 34, 61, 0) 70%);
  top: -10%;
  right: -5%;
  opacity: 0.4;
}

.glow-bottom-left {
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  background: radial-gradient(circle, var(--palette-accent) 0%, rgba(245, 79, 27, 0) 70%);
  bottom: -10%;
  left: -5%;
  opacity: 0.15;
}

/* Very subtle noise overlay for fine organic texture */
.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* -------------------------------------------------------------
 * TRANSPARENT NAVBAR
 * ------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: var(--max-width);
  height: 64px;
  border-radius: 50px;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  background: rgba(30, 34, 61, 0.5); /* Translucent dark navy background */
  backdrop-filter: blur(20px); /* Premium glassmorphism blur */
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 79, 27, 0.15); /* Sleek accent border */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 
              0 1px 1px rgba(255, 255, 255, 0.05) inset;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  top: 12px;
  height: 56px;
  background: rgba(30, 34, 61, 0.85);
  border-color: rgba(245, 79, 27, 0.3);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.65), 
              0 1px 1px rgba(255, 255, 255, 0.1) inset;
}

.navbar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--palette-accent);
}

.logo-img-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--palette-accent);
}

.brand-logo .logo-text {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.brand-logo .text-accent {
  color: var(--palette-pink);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-clean);
}

.nav-link:nth-child(1):hover { color: var(--palette-pink); }
.nav-link:nth-child(2):hover { color: var(--palette-yellow); }
.nav-link:nth-child(3):hover { color: var(--palette-green); }
.nav-link:nth-child(4):hover { color: var(--palette-blue); }

.nav-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Navbar CTA Button */
.btn-nav {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 18px;
  background-color: var(--palette-pink);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-clean);
  white-space: nowrap;
}

.btn-nav:hover {
  transform: translateY(-2px);
  background-color: #e23f0c;
  box-shadow: 0 4px 15px rgba(245, 79, 27, 0.35);
}

/* Secondary Navbar Button */
.btn-nav-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  background-color: rgba(30, 34, 61, 0.6);
  color: var(--text-secondary);
  border: 1px solid rgba(245, 79, 27, 0.4);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-clean);
  white-space: nowrap;
}

.btn-nav-secondary:hover {
  transform: translateY(-2px);
  background-color: var(--palette-accent);
  border-color: var(--palette-accent);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(245, 79, 27, 0.35);
}

/* -------------------------------------------------------------
 * HERO SECTION LAYOUT (TWO-COLUMN GRID)
 * ------------------------------------------------------------- */
.hero-viewport {
  position: relative;
  width: 100%;
  min-height: 140vh; /* Increased for more scroll space */
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  overflow: visible; /* Prevent 3D transforms from clipping */
}

.hero-container {
  width: 100%;
  max-width: 1400px; /* Expanded parent container width */
  margin: 0 auto;
  padding: 4rem 4rem 16rem 4rem; /* Padded bottom to give cards plenty of scroll room */
  position: relative;
  z-index: 2;
}

.hero-grid-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  width: 100%;
  max-width: 100%; /* Allowed layout to scale up beyond 960px */
  margin: 0 auto;
}

.hero-tagline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-align: center;
  max-width: 900px; /* Maintained readable width for tagline */
}

.video-box-container {
  width: 100%;
  max-width: 1300px; /* Increased card container size to 1300px */
  margin: 0 auto;
  perspective: 1000px;
}


.video-box-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Restored original 16:9 widescreen size */
  border-radius: 30px;
  background: #222222;
  border: 4px solid var(--palette-design);
  padding: 1.5rem; /* md:p-6 */
  box-shadow: 0 0 #0000004d, 0 9px 20px #0000004a, 0 37px 37px #00000042, 0 84px 50px #00000026, 0 149px 60px #0000000a, 0 233px 65px #00000003;
  transform-style: preserve-3d;
  will-change: transform;
}



.video-box-inner {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 16px; /* rounded-2xl */
  background: #111;
}

.video-box-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* -------------------------------------------------------------
 * LEFT COLUMN: CONTENT (CENTERED)
 * ------------------------------------------------------------- */
.hero-content-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.top-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--palette-green);
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.text-accent-blue {
  color: var(--palette-blue);
}

.text-accent-pink {
  color: var(--palette-pink);
}

.changing-word-wrapper {
  display: inline-block;
  position: relative;
  vertical-align: top;
  overflow: hidden;
  height: 1.25em;
}

#changing-word {
  display: inline-block;
  position: relative;
}

.text-highlight-yellow {
  color: var(--palette-yellow);
  font-weight: 500;
}

.text-highlight-green {
  color: var(--palette-green);
  font-weight: 500;
}

.text-highlight-blue {
  color: var(--palette-blue);
  font-weight: 500;
}

.hero-description {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 680px;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

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

/* Button Base Styles */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-clean);
  white-space: nowrap;
}

/* Primary Button Styling */
.btn-primary {
  background-color: var(--palette-pink);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background-color: #e23f0c;
  box-shadow: 0 8px 25px rgba(245, 79, 27, 0.4);
}

/* Secondary Button Styling */
.btn-secondary {
  background-color: transparent;
  color: var(--palette-blue);
  border: 2px solid var(--palette-blue);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background-color: var(--palette-accent);
  color: var(--text-primary);
  box-shadow: 0 8px 25px rgba(245, 79, 27, 0.3);
}

/* -------------------------------------------------------------
 * RIGHT COLUMN: MEDIA CENTERPIECE
 * ------------------------------------------------------------- */
.hero-media-col {
  width: 100%;
}

.media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
}

/* Subtle backing glow - very soft */
.media-glow-bg {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  border-radius: 16px;
  background: radial-gradient(circle, var(--palette-accent) 0%, rgba(245, 79, 27, 0) 70%);
  filter: blur(40px);
  opacity: 0.25;
  z-index: -1;
}

.media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 18, 0.6);
  border: 1px solid transparent;
  /* Clean gradient border clipping */
  background-image: linear-gradient(rgba(15, 15, 18, 0.6), rgba(15, 15, 18, 0.6)), 
                    linear-gradient(135deg, var(--palette-accent) 0%, var(--palette-design) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

#centerpiece-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 0.85;
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  z-index: 3;
}

/* -------------------------------------------------------------
 * RESPONSIVENESS AND DEVICE SCALING
 * ------------------------------------------------------------- */

/* Hamburger Button & Mobile Menu Overlay Styles */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 105; /* Above navbar glassmorphism */
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
  left: 0;
}

.line-top { top: 0; }
.line-mid { top: 8px; }
.line-bot { top: 16px; }

.hamburger-btn.active .line-top {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--palette-accent);
}

.hamburger-btn.active .line-mid {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-btn.active .line-bot {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--palette-accent);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(13, 16, 37, 0.94); /* Deep Navy matching theme */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-link {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: var(--palette-accent);
  transform: scale(1.05);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 280px;
  margin-top: 1rem;
}

.btn-mobile-primary {
  background-color: var(--palette-pink);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-clean);
}

.btn-mobile-primary:hover {
  transform: translateY(-2px);
  background-color: #e23f0c;
  box-shadow: 0 4px 15px rgba(245, 79, 27, 0.35);
}

.btn-mobile-secondary {
  background-color: rgba(30, 34, 61, 0.6);
  color: var(--text-secondary);
  border: 1px solid rgba(245, 79, 27, 0.4);
  text-align: center;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-clean);
}

.btn-mobile-secondary:hover {
  transform: translateY(-2px);
  background-color: var(--palette-accent);
  border-color: var(--palette-accent);
  color: var(--text-primary);
}

/* Base Founders grid styles */
.founders-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 0 2rem;
  }
  
  .hero-container {
    padding: 0 2rem;
  }
  
  .hero-grid {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .navbar {
    height: 70px;
  }
  
  .hero-viewport {
    padding-top: 70px;
    min-height: auto;
    padding-bottom: 4rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  
  .hero-content-col {
    align-items: center;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .media-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  /* Contact Section: Collapse layout */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 5rem !important;
  }
  .contact-info-col {
    align-items: center;
    text-align: center;
  }
  .contact-lead-text {
    margin: 0 auto;
  }
  .contact-details-list {
    width: 100%;
    max-width: 500px;
    margin: 2rem auto 0 auto !important;
  }
  .contact-card-row {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1.5rem;
    height: 64px;
    top: 12px;
  }
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .nav-links,
  .nav-cta {
    display: none !important; /* Hide desktop elements */
  }

  .hamburger-btn {
    display: flex; /* Show menu toggle */
  }
  
  /* Hero section adjustments */
  .hero-viewport {
    padding-top: 100px !important;
  }
  .hero-container {
    padding: 2.5rem 1.5rem 4rem 1.5rem !important;
  }

  .hero-grid-vertical {
    gap: 2rem;
  }

  .video-box-frame {
    padding: 0.5rem;
    border-radius: 20px;
    border-width: 3px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .btn {
    width: 100%;
  }

  /* Services Mobile Accordion */
  .services-section {
    padding: 6rem 1.5rem !important;
    overflow: hidden;
  }

  /* Disable sibling hover dimming on touch devices */
  .services-list-interactive:hover .service-row-interactive:not(:hover) {
    opacity: 1;
  }

  .service-row-interactive {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 2rem 0 !important;
    gap: 1rem !important;
  }

  .row-header {
    width: 100% !important;
    flex: none !important;
    gap: 1.5rem !important;
    align-items: center !important;
  }

  .row-title {
    font-size: 1.6rem !important;
    transform: none !important;
  }

  .row-value-prop {
    font-size: 0.85rem !important;
  }

  /* Hide description on mobile by default, open via click class */
  .row-description {
    width: 100% !important;
    flex: none !important;
    opacity: 0.8 !important;
    transform: none !important;
    pointer-events: auto !important;
    display: none !important;
    padding-left: 2.8rem !important;
  }
  
  .service-row-interactive.mobile-open .row-description {
    display: block !important;
    animation: slideDownMobile 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .row-description p {
    font-size: 0.92rem !important;
    color: var(--palette-design) !important;
  }

  .row-arrow {
    position: absolute !important;
    right: 0 !important;
    top: 2rem !important;
    flex: none !important;
    opacity: 1 !important;
  }

  .row-arrow svg {
    width: 24px !important;
    height: 24px !important;
  }

  .service-row-interactive.mobile-open .row-arrow svg {
    transform: rotate(90deg) !important; /* Point down when expanded */
  }

  /* Founders Showcase: Stacking Columns */
  .about-section {
    padding: 6rem 1.5rem !important;
  }
  
  /* Disable sibling hover dimming on touch */
  .founders-showcase:hover .founder-column:not(:hover) {
    opacity: 1;
  }

  .founders-showcase {
    grid-template-columns: 1fr !important;
    display: grid !important;
    gap: 3.5rem !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
    padding: 0 !important;
  }
  
  .founder-column {
    max-width: 450px !important;
    margin: 0 auto !important;
    flex: none !important;
    scroll-snap-align: none !important;
    gap: 1.8rem !important;
  }

  .founder-name {
    font-size: 1.4rem !important;
  }
  
  .founder-bio {
    font-size: 0.9rem !important;
  }

  /* Contact Form Spacing */
  .contact-section {
    padding: 6rem 1.5rem !important;
  }
  .form-submit-row {
    justify-content: center !important;
    margin-top: 1.5rem !important;
  }
  .form-input {
    font-size: 16px !important; /* Force 16px to prevent iOS auto-zoom */
    padding: 12px 0 !important;
  }
  .form-label {
    font-size: 1.1rem !important;
    top: 12px !important;
  }
  .form-group-pill {
    gap: 1rem !important;
    margin-top: 1rem !important;
  }
  .pill-group-label {
    font-size: 0.95rem !important;
  }
  .project-pill {
    padding: 10px 20px !important;
    font-size: 0.88rem !important;
  }
  .submit-circle {
    width: 56px !important;
    height: 56px !important;
  }
  .submit-circle svg {
    width: 22px !important;
    height: 22px !important;
  }

  /* Footer Section Stack */
  .footer {
    padding: 5rem 1.5rem 2.5rem 1.5rem !important;
  }
  .footer-grid {
    flex-direction: column !important;
    gap: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .footer-brand-col {
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    flex: none !important;
  }
  .footer-links-grid {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    text-align: center !important;
    flex: none !important;
  }
  .footer-links-col {
    align-items: center !important;
  }
  .footer-bottom-row {
    flex-direction: column !important;
    gap: 1.5rem !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 1rem;
    height: 56px;
    top: 8px;
  }
  
  .hero-viewport {
    padding-top: 90px !important;
  }
  .hero-container {
    padding: 1.5rem 1rem 3rem 1rem !important;
  }
  
  .brand-logo .logo-text {
    font-size: 1.1rem;
  }
  
  .hero-tagline {
    font-size: 1.8rem;
  }
  .hero-description {
    font-size: 0.95rem;
    margin-top: 1rem;
    margin-bottom: 1.8rem;
  }
  
  .media-wrapper {
    border-radius: 12px;
  }
  
  .media-frame {
    border-radius: 12px;
  }
}

/* =============================================================
 * SELECTED WORK SECTION (3D FAN-OUT GALLERY & HOLOGRAPHIC TILT)
 * ============================================================= */
.work-section {
  position: relative;
  width: 100%;
  padding: 10rem 4rem 14rem 4rem;
  background-color: var(--bg-color); /* Kept pure black */
  z-index: 10;
  overflow: hidden;
}

.section-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 6rem auto;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--palette-green);
  margin-bottom: 1.2rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Projects Marquee Container */
.projects-marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 4rem;
  padding: 1.5rem 0;
}

/* Projects Marquee Track */
.projects-marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  will-change: transform;
}

/* Project Card Sizing inside Marquee */
.projects-marquee-track .project-card {
  width: 380px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .projects-marquee-track .project-card {
    width: 290px;
  }
  .projects-marquee-track {
    gap: 2rem;
  }
}

/* Project Card 3D Setup */
.project-card {
  position: relative;
  background: rgba(30, 34, 61, 0.35);
  border: 1.5px solid rgba(245, 79, 27, 0.15);
  border-radius: 20px;
  padding: 1.5rem;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  will-change: transform;
  text-decoration: none;
  display: block;
}

.project-card:hover {
  background: rgba(30, 34, 61, 0.65);
  border-color: var(--palette-accent);
  box-shadow: 0 25px 60px rgba(245, 79, 27, 0.15);
}

/* Deepest Layer: Backing Glow */
.project-glow {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  border-radius: 20px;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
  transform: translateZ(-30px);
}

.project-card:hover .project-glow {
  opacity: 1;
}

/* Middle Layer: Image viewport */
.project-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
  transform: translateZ(40px);
  transform-style: preserve-3d;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  background-color: #ffffff;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card:hover .project-image {
  transform: scale(1.08);
}

/* Top Layer: Card Info overlay */
.project-info {
  margin-top: 2rem;
  z-index: 3;
  transform: translateZ(75px);
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  text-align: center;
}

.project-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--palette-blue);
  display: block;
  margin-bottom: 0.6rem;
  transform: translateZ(10px);
}

.project-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transform: translateZ(20px);
}

/* Responsive adjustments for the stack layout */
@media (max-width: 992px) {
  .work-section {
    padding: 8rem 2rem 10rem 2rem;
  }
  
  .projects-stack-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    perspective: none;
  }
  
  .project-card {
    transform-style: flat !important;
    transform: none !important;
  }
  
  .project-image-container,
  .project-info,
  .project-tag,
  .project-card-title,
  .project-glow {
    transform: none !important;
  }
}

/* =============================================================
 * SERVICES SECTION (PREMIUM AGENCY HOVER ACCORDION REDESIGN)
 * ============================================================= */
.services-section {
  position: relative;
  width: 100%;
  padding: 10rem 4rem;
  background: linear-gradient(135deg, var(--palette-accent) 0%, #D84315 100%);
  z-index: 10;
  overflow: visible; /* Crucial for floating preview box overflow! */
  border-top: 1px solid rgba(13, 16, 37, 0.15);
}

/* Background decorations (floating soft orbs + grain overlay) */
.services-bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.decor-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
  animation: floatOrb 12s infinite ease-in-out alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--palette-design); /* Deep Navy */
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: var(--palette-design);
  bottom: -15%;
  left: -10%;
  opacity: 0.08;
  animation-delay: 2s;
}

.services-grain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@keyframes floatOrb {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-50px) scale(1.15); }
}

/* Header typography on orange background */
.services-header-full {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
  position: relative;
  z-index: 2;
}

.services-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--palette-design);
  margin-bottom: 1.2rem;
  display: block;
}

.services-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--palette-design);
  margin-bottom: 1.5rem;
}

.services-description {
  font-size: 1.15rem;
  color: rgba(13, 16, 37, 0.85);
  line-height: 1.6;
  font-weight: 500;
}

/* Floating Preview Box */
.floating-preview-container {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 28px;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  background: var(--palette-design); /* Deep Navy */
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 
              0 1px 2px rgba(255, 255, 255, 0.1) inset;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform, opacity;
}

.floating-preview-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.float-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.float-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Custom Mockup Stylings */
.float-mockup {
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  position: relative;
}

/* Terminal Mockup */
.terminal-mock {
  background: #06070d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.2rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.72rem;
  text-align: left;
  align-items: flex-start;
  gap: 8px;
}
.mock-tag {
  color: var(--palette-accent);
  font-weight: 700;
}
.mock-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #a5b4fc;
}
.status-green {
  color: #4ade80;
  font-weight: 700;
}

/* Phone Mockup */
.phone-mock {
  border: 4px solid rgba(255, 255, 255, 0.1);
  background: #030408;
  width: 110px;
  height: 190px;
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}
.phone-notch {
  width: 40px;
  height: 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
}
.phone-screen-mini {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.phone-bar-mini {
  width: 70%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
.phone-circle-mini {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px dashed var(--palette-accent);
  animation: rotateCircle 6s linear infinite;
}
.phone-btn-mini {
  background: var(--palette-accent);
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  letter-spacing: 0.05em;
}

@keyframes rotateCircle {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Social Mockup */
.social-mock {
  gap: 8px;
}
.social-bubble-mini {
  background: rgba(244, 81, 30, 0.15);
  border: 2px solid var(--palette-accent);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 900;
  padding: 10px 18px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(244, 81, 30, 0.25);
  animation: pulseScale 2s infinite ease-in-out alternate;
}
.social-bubble-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.social-graph-dots {
  display: flex;
  gap: 6px;
}
.g-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

@keyframes pulseScale {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Chart Mockup */
.chart-mock {
  gap: 12px;
}
.chart-val-mini {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--palette-accent);
  text-shadow: 0 0 15px rgba(244, 81, 30, 0.3);
}
.chart-bars-mini {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  width: 100px;
  height: 60px;
}
.mini-bar {
  width: 12px;
  border-radius: 4px 4px 0 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 10%;
  transition: height 0.6s ease;
}
.float-slide.active .mini-bar.bar-a { height: 50%; background: var(--palette-accent); border-color: var(--palette-accent); }
.float-slide.active .mini-bar.bar-b { height: 90%; background: #ffffff; border-color: #ffffff; }
.float-slide.active .mini-bar.bar-c { height: 70%; background: var(--palette-accent); border-color: var(--palette-accent); }

/* Network Mockup */
.network-mock {
  gap: 10px;
}
.net-svg-mini {
  width: 100px;
  height: 100px;
}
.net-lbl-mini {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Typographic List Layout */
.services-list-interactive {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid rgba(13, 16, 37, 0.18);
  position: relative;
  z-index: 2;
}

.service-row-interactive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(13, 16, 37, 0.18);
  padding: 3rem 0;
  cursor: pointer;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

/* Hover Sibling Dimming */
.services-list-interactive:hover .service-row-interactive:not(:hover) {
  opacity: 0.15;
}

.row-header {
  display: flex;
  align-items: flex-start;
  gap: 3.5rem;
  flex: 0 0 55%;
}

.row-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: rgba(13, 16, 37, 0.45);
  transition: color 0.4s ease;
}

.service-row-interactive:hover .row-num {
  color: #ffffff;
}

.row-title-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.row-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--palette-design);
  letter-spacing: -0.02em;
  line-height: 1.1;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.service-row-interactive:hover .row-title {
  transform: translateX(20px);
  color: #ffffff;
}

.row-value-prop {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(13, 16, 37, 0.7);
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
}

.service-row-interactive:hover .row-value-prop {
  color: rgba(255, 255, 255, 0.75);
}

/* Inline Description Expansion on Hover */
.row-description {
  flex: 0 0 35%;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row-interactive:hover .row-description {
  opacity: 1;
  transform: translateY(0);
}

.row-description p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--palette-design);
  font-weight: 500;
}

.row-arrow {
  flex: 0 0 5%;
  display: flex;
  justify-content: flex-end;
  color: var(--palette-design);
  transition: color 0.4s ease;
}

.service-row-interactive:hover .row-arrow {
  color: #ffffff;
}

.row-arrow svg {
  width: 32px;
  height: 32px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row-interactive:hover .row-arrow svg {
  transform: rotate(-45deg) scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .services-section {
    padding: 8rem 2rem;
  }

  .service-row-interactive {
    padding: 2.5rem 0;
  }

  .row-header {
    gap: 2rem;
    flex: 0 0 60%;
  }

  .row-description {
    flex: 0 0 35%;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 6rem 1.5rem;
    overflow: hidden; /* Hide floating preview if spawned */
  }

  /* Disable sibling hover dimming on touch devices */
  .services-list-interactive:hover .service-row-interactive:not(:hover) {
    opacity: 1;
  }

  .service-row-interactive {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 0;
    gap: 1rem;
  }

  .row-header {
    width: 100%;
    flex: none;
    gap: 1.5rem;
    align-items: center;
  }

  .row-title {
    font-size: 1.6rem;
  }

  .row-value-prop {
    font-size: 0.85rem;
  }

  /* Show row description by default or act as simple text list on mobile */
  .row-description {
    width: 100%;
    flex: none;
    opacity: 0.8;
    transform: none;
    pointer-events: auto;
    display: none; /* Collapsed on mobile, opened via JS click */
    padding-left: 2.8rem;
  }
  
  .service-row-interactive.mobile-open .row-description {
    display: block;
    animation: slideDownMobile 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .row-description p {
    font-size: 0.92rem;
    color: var(--palette-design);
  }

  .row-arrow {
    position: absolute;
    right: 0;
    top: 2rem;
    flex: none;
  }

  .row-arrow svg {
    width: 24px;
    height: 24px;
  }

  .service-row-interactive.mobile-open .row-arrow svg {
    transform: rotate(90deg); /* Point down when expanded */
  }

  .service-row-interactive:hover .row-title {
    transform: none;
    color: var(--palette-design);
  }
  
  .service-row-interactive:hover .row-num {
    color: rgba(13, 16, 37, 0.45);
  }
  
  .service-row-interactive:hover .row-arrow {
    color: var(--palette-design);
  }

  .floating-preview-container {
    display: none !important; /* Force hide mouse preview on mobile */
  }
}

@keyframes slideDownMobile {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 0.85; transform: translateY(0); }
}

/* =============================================================
 * ABOUT US SECTION (EDITORIAL STORY & DYNAMIC PORTRAIT GRID)
 * ============================================================= */
.about-section {
  position: relative;
  width: 100%;
  padding: 12rem 4rem;
  background-color: var(--palette-design); /* Deep Navy #0D1025 */
  z-index: 10;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  width: 100%;
  margin-bottom: 8rem;
}

.about-story-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-large-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.about-tagline {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--palette-accent); /* Orange tagline */
}

.about-story-right {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  justify-content: center;
}

.about-text-p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}

.highlight-p {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  border-left: 3px solid var(--palette-accent);
  padding-left: 1.5rem;
}

/* Founders columns layout */
.founders-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  width: 100%;
}

.founder-column {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dim siblings on hover */
.founders-showcase:hover .founder-column:not(:hover) {
  opacity: 0.35;
}

.founder-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: #181d3a;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  perspective: 1000px;
  transform-style: preserve-3d;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15); /* Extra room to move for parallax window effect */
  will-change: transform;
}

.founder-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(13, 16, 37, 0.7) 0%, transparent 60%);
  opacity: 0.85;
  transition: opacity 0.6s ease;
}

.founder-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-column:hover .founder-info {
  transform: translateY(-5px);
}

.founder-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--palette-accent);
}

.founder-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.founder-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-section {
    padding: 8rem 2rem;
  }
  
  .about-story-grid {
    gap: 4rem;
  }
  
  .founders-showcase {
    gap: 2rem;
  }
  
  .founder-name {
    font-size: 1.4rem;
  }
  
  .founder-bio {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
  }
  
  .about-story-left {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 6rem 1.5rem;
  }
  
  /* Disable sibling hover dimming on touch */
  .founders-showcase:hover .founder-column:not(:hover) {
    opacity: 1;
  }

  .founders-showcase {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .founder-column {
    max-width: 450px;
    margin: 0 auto;
  }
}

/* =============================================================
 * CONTACT US & BOOKING SECTION (SPLIT DETAILS & PILL SELECTORS)
 * ============================================================= */
.contact-section {
  position: relative;
  width: 100%;
  padding: 12rem 4rem;
  background-color: #000000; /* Rich contrast finishing block */
  z-index: 10;
  overflow: visible; /* Required for custom buttons & fields overflow */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-anchor-target {
  position: absolute;
  top: -80px; /* Offset to counter navbar height */
  left: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 6rem;
  width: 100%;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-large-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.contact-lead-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card-row {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease;
}

.contact-card-row:hover {
  border-color: rgba(244, 81, 30, 0.3);
}

.contact-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--palette-accent);
  transition: all 0.3s ease;
}

.contact-card-row:hover .contact-icon-box {
  background: rgba(244, 81, 30, 0.1);
  border-color: rgba(244, 81, 30, 0.3);
  box-shadow: 0 0 15px rgba(244, 81, 30, 0.15);
}

.contact-icon-box svg {
  width: 22px;
  height: 22px;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card-value {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.contact-card-value:hover {
  color: var(--palette-accent);
}

/* Form Styles */
.interactive-form {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  color: #ffffff;
  transition: border-color 0.4s ease;
}

.form-input:focus {
  border-color: var(--palette-accent);
}

.form-label {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.form-input:focus ~ .form-label, 
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -12px;
  font-size: 0.82rem;
  color: var(--palette-accent);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--palette-accent);
  transition: width 0.4s ease;
}

.form-input:focus ~ .form-line {
  width: 100%;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Project Selection Pills */
.form-group-pill {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.pill-group-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.project-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.project-pill {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-pill:hover {
  border-color: var(--palette-accent);
  color: #ffffff;
  background: rgba(244, 81, 30, 0.05);
}

.project-pill.active {
  background: var(--palette-accent);
  border-color: var(--palette-accent);
  color: var(--palette-design);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(244, 81, 30, 0.25);
}

/* Magnetic Submit Button */
.form-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.btn-submit-magnetic {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 10px 0;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  transition: color 0.3s ease;
}

.submit-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--palette-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
  box-shadow: 0 10px 25px rgba(244, 81, 30, 0.25);
}

.submit-circle svg {
  width: 22px;
  height: 22px;
  transition: transform 0.4s ease;
}

.btn-submit-magnetic:hover .submit-circle {
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(244, 81, 30, 0.45);
}

.btn-submit-magnetic:hover .submit-circle svg {
  transform: rotate(-45deg);
}

.btn-submit-magnetic:hover {
  color: var(--palette-accent);
}

/* Floating Clipboard Alert Toast */
.clipboard-alert {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--palette-accent);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  box-shadow: 0 15px 45px rgba(244, 81, 30, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.clipboard-alert.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .contact-section {
    padding: 8rem 2rem;
  }
  .contact-grid {
    gap: 4rem;
  }
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .contact-info-col {
    align-items: center;
    text-align: center;
  }
  .contact-lead-text {
    margin: 0 auto;
  }
  .contact-details-list {
    width: 100%;
    max-width: 500px;
    margin: 2rem auto 0 auto;
  }
  .contact-card-row {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 6rem 1.5rem;
  }
  .form-submit-row {
    justify-content: center;
  }
}

/* =============================================================
 * FLOATING SOCIAL ACTIONS (FIXED WIDGETS IN CORNER)
 * ============================================================= */
.floating-social-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.social-widget-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(13, 16, 37, 0.85); /* Deep Navy Translucent */
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--palette-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 
              0 1px 1px rgba(255, 255, 255, 0.08) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s ease, 
              color 0.4s ease, 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
  text-decoration: none;
}

.social-widget-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.4s ease;
}

/* Hover effects */
.whatsapp-widget:hover {
  background: #25D366; /* WhatsApp Green */
  border-color: #25D366;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.instagram-widget:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); /* Instagram Gradient */
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(214, 36, 159, 0.45);
}

.social-widget-btn:hover svg {
  transform: scale(1.08);
}

/* =============================================================
 * TYPOGRAPHIC FOOTER (GIANT OUTLINES TITLE & EDITORIAL LINKS)
 * ============================================================= */
.footer {
  position: relative;
  width: 100%;
  padding: 8rem 4rem 4rem 4rem;
  background-color: var(--palette-accent);
  border-top: 1px solid rgba(13, 16, 37, 0.15);
  z-index: 10;
  overflow: hidden;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  width: 100%;
  margin-bottom: 6rem;
}

.footer-brand-col {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo .logo-text {
  color: #0D1025;
}

.footer-logo .logo-text .text-accent {
  color: #ffffff;
}

.footer-tagline {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(13, 16, 37, 0.85);
  max-width: 320px;
}

.footer-links-grid {
  flex: 0 0 55%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(13, 16, 37, 0.6);
  letter-spacing: 0.15em;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: #0D1025;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  width: fit-content;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Giant outlines brand header statement */
.footer-giant-title {
  width: 100%;
  text-align: center;
  font-size: clamp(3rem, 12.5vw, 10.5rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(13, 16, 37, 0.12); /* Minimal outlined aesthetic */
  user-select: none;
  pointer-events: none;
  margin: 4rem 0 3rem 0;
  text-transform: uppercase;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(13, 16, 37, 0.15);
  width: 100%;
}

.footer-copy {
  font-size: 0.88rem;
  color: rgba(13, 16, 37, 0.7);
}

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

.footer-legal-link {
  font-size: 0.88rem;
  color: rgba(13, 16, 37, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive Footer overrides */
@media (max-width: 1024px) {
  .footer {
    padding: 6rem 2rem 3rem 2rem;
  }
  .footer-grid {
    gap: 4rem;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
  }
  .footer-brand-col {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .footer-links-grid {
    width: 100%;
    gap: 3rem;
  }
  .footer-links-col {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 5rem 1.5rem 2.5rem 1.5rem;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .floating-social-widgets {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .social-widget-btn {
    width: 46px;
    height: 46px;
  }
  .social-widget-btn svg {
    width: 18px;
    height: 18px;
  }
}






