/* ==========================================================================
   Uzair Advertisers V2 — Ultra Modern Design System & CSS Animations
   Color Palette: Deep Obsidian Dark (#070707, #0d0d0d) + Mint Accent (#3fe08a)
   Typography: Poppins & Inter (Google Fonts)
   ========================================================================== */

/* ---------- CSS Variables & Utility Tokens ---------- */
:root {
  --bg-dark: #070707;
  --bg-card: #121212;
  --bg-card-hover: #181818;
  --bg-glass: rgba(18, 18, 18, 0.75);
  --mint-primary: #3fe08a;
  --mint-glow: rgba(63, 224, 138, 0.35);
  --mint-subtle: rgba(63, 224, 138, 0.08);
  --mint-border: rgba(63, 224, 138, 0.22);
  --text-main: #ffffff;
  --text-muted: #a3a3a3;
  --text-dim: #6e6e6e;
  --border-color: rgba(255, 255, 255, 0.08);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --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-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--mint-primary);
  color: #000;
}

/* ---------- Typography & Utility Classes ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--mint-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-mint {
  background: linear-gradient(135deg, var(--mint-primary) 0%, #2ec46f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mint-primary);
  background: var(--mint-subtle);
  border: 1px solid var(--mint-border);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  box-shadow: 0 0 15px rgba(63, 224, 138, 0.12);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-primary);
  box-shadow: 0 0 8px var(--mint-primary);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 14px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.section-alt {
  background: rgba(18, 18, 18, 0.4);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* ---------- Canvas & Ambient Animation Layer ---------- */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

.ambient-glow-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb-1, .orb-2, .orb-3 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.22;
  will-change: transform;
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--mint-primary) 0%, rgba(63, 224, 138, 0.3) 45%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: orb-float-1 18s ease-in-out infinite alternate;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #10b981 0%, rgba(16, 185, 129, 0.3) 45%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation: orb-float-2 22s ease-in-out infinite alternate;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #34d399 0%, rgba(52, 211, 153, 0.3) 45%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-float-3 15s ease-in-out infinite alternate;
}

@keyframes orb-float-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-120px, 140px) scale(1.2); }
}

@keyframes orb-float-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(140px, -100px) scale(1.15); }
}

@keyframes orb-float-3 {
  0% { transform: translate(-50%, -50%) scale(0.9); }
  100% { transform: translate(-40%, -60%) scale(1.3); }
}

/* ---------- Header & Navigation Bar ---------- */
.header-glass {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.3s ease, background 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

.header-glass.is-scrolled {
  padding: 12px 0;
  background: rgba(7, 7, 7, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.logo-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mint-primary) 0%, #2ec46f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #070707;
  box-shadow: 0 0 20px var(--mint-glow);
  transition: transform 0.3s var(--transition-bounce);
}

.logo-ua-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 17px;
  line-height: 1;
  color: #070707;
  letter-spacing: -0.5px;
}


.brand-logo:hover .logo-icon-box {
  transform: rotate(10deg) scale(1.08);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 999px;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.is-active {
  color: var(--mint-primary);
}

/* ---------- Custom Interactive Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--mint-primary);
  color: #070707;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 25px var(--mint-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(63, 224, 138, 0.5);
  background: #46f095;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

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

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  padding: 9px;
}

.bar {
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Mobile Drawer Navigation ---------- */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #0d0d0d;
  border-left: 1px solid var(--border-color);
  padding: 90px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-nav-drawer.is-open {
  right: 0;
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--mint-primary);
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  padding-top: 170px;
  padding-bottom: 90px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-title,
.hero-heading {
  font-size: clamp(28px, 3.1vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  line-height: 1.2;
  color: #ffffff;
}

.hero-heading .text-mint {
  color: var(--mint-primary);
  text-shadow: 0 0 30px rgba(63, 224, 138, 0.35);
}

.hero-description {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 34px;
}

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

/* Hero Portrait Canvas & Visual Float */
.hero-portrait-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 140px;
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--mint-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px var(--mint-subtle);
  background: var(--bg-card);
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.portrait-frame:hover .portrait-img {
  transform: scale(1.05);
}

.floating-badge {
  position: absolute;
  z-index: 10;
  background: rgba(18, 18, 18, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  padding: 14px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
  animation: float-badge 5s ease-in-out infinite alternate;
}

.badge-top-right {
  top: 8%;
  right: -140px;
  left: auto;
  border-color: var(--mint-border);
}

.badge-bottom-left {
  bottom: 8%;
  right: -140px;
  left: auto;
}

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

  .hero-portrait-wrapper {
    padding-right: 0;
  }

  .floating-badge {
    position: static;
    margin: 22px auto 0;
    transform: none;
    width: min(100%, 320px);
  }

  .floating-badge + .floating-badge {
    margin-top: 18px;
  }
}

@keyframes float-badge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--mint-subtle);
  color: var(--mint-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
}

.badge-lbl {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ---------- Stat Bar Counter Strip ---------- */
.stats-strip {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(18, 18, 18, 0.3);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

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

.stat-box {
  text-align: center;
  padding: 10px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--mint-primary);
  line-height: 1;
}

.stat-label {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ---------- Marquee Running Banner ---------- */
.marquee-bar {
  overflow: hidden;
  background: rgba(63, 224, 138, 0.06);
  border-top: 1px solid var(--mint-border);
  border-bottom: 1px solid var(--mint-border);
  padding: 14px 0;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-run 28s linear infinite;
}

.marquee-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.marquee-dot {
  color: var(--mint-primary);
  font-size: 16px;
}

@keyframes marquee-run {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Services Section (NO PRICES) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--transition-normal), border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--mint-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--mint-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--mint-subtle);
}

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

.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background: var(--mint-subtle);
  border: 1px solid var(--mint-border);
  color: var(--mint-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--transition-bounce);
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(6deg);
  background: var(--mint-primary);
  color: #070707;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
}

.service-feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.service-feature-item {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-feature-item svg {
  color: var(--mint-primary);
  min-width: 16px;
}

.service-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.service-cta-btn:hover {
  background: var(--mint-primary);
  color: #070707;
  border-color: var(--mint-primary);
}

/* ---------- Portfolio Gallery Section ---------- */
.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.is-active {
  background: var(--mint-subtle);
  border-color: var(--mint-primary);
  color: var(--mint-primary);
  box-shadow: 0 0 20px rgba(63, 224, 138, 0.2);
}

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

.portfolio-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--transition-normal), border-color 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  border-color: var(--mint-border);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px var(--mint-subtle);
}

.portfolio-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #181818;
}

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

.portfolio-item:hover .portfolio-img-wrapper img {
  transform: scale(1.08);
}

.portfolio-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(7, 7, 7, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--mint-border);
  color: var(--mint-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 999px;
}

.portfolio-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.portfolio-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.portfolio-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mint-primary);
  transition: gap 0.2s ease;
}

.portfolio-action:hover {
  gap: 12px;
}

/* ---------- Workflow / Process Section ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--mint-border);
}

.process-step-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.process-card:hover .process-step-num {
  color: var(--mint-primary);
}

.process-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-text {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ---------- Testimonials Section ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--mint-border);
}

.star-rating {
  display: flex;
  gap: 4px;
  color: var(--mint-primary);
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 14.5px;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.user-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}

.user-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- FAQ Accordion Section ---------- */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-card.is-open {
  border-color: var(--mint-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-btn {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-btn:hover {
  color: var(--mint-primary);
}

.faq-icon-badge {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--mint-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-card.is-open .faq-icon-badge {
  transform: rotate(45deg);
  background: var(--mint-primary);
  color: #070707;
}

.faq-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.4s ease;
}

.faq-card.is-open .faq-body {
  max-height: 320px;
  opacity: 1;
  padding: 0 28px 24px 28px;
}

.faq-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Contact Section & Form ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

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

.info-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-item-card:hover {
  transform: translateX(6px);
  border-color: var(--mint-border);
}

.info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: var(--mint-subtle);
  color: var(--mint-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-detail {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-top: 10px;
}

.map-wrapper iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

/* Contact Form Box */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #090909;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--mint-primary);
  box-shadow: 0 0 15px var(--mint-subtle);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M6 9l6 6 6-6' stroke='%233fe08a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
}

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

/* ---------- Sticky Floating WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--transition-bounce), box-shadow 0.3s ease;
  animation: pulse-wa 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.14) translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.65);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  background: #050505;
}

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

.footer-text {
  font-size: 14px;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--mint-primary);
  color: #070707;
  border-color: var(--mint-primary);
  transform: translateY(-3px);
}

/* ---------- Scroll Reveal Animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Interactive Project Scope Builder (No Prices) ---------- */
.scope-builder-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
}

.scope-step {
  display: none;
  animation: fadeInStep 0.4s ease forwards;
}

.scope-step.is-active {
  display: block;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.scope-progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
  position: relative;
}

.scope-progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
  transform: translateY(-50%);
}

.scope-progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  width: 25%;
  height: 2px;
  background: var(--mint-primary);
  z-index: 0;
  transform: translateY(-50%);
  transition: width 0.4s ease;
}

.scope-progress-step {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #121212;
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.scope-progress-step.is-active {
  border-color: var(--mint-primary);
  background: var(--mint-primary);
  color: #070707;
  box-shadow: 0 0 15px var(--mint-glow);
}

.scope-progress-step.is-completed {
  border-color: var(--mint-primary);
  background: var(--mint-subtle);
  color: var(--mint-primary);
}

.scope-step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.scope-step-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.scope-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.scope-option-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s ease;
  -webkit-user-select: none;
  user-select: none;
}

.scope-option-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(63, 224, 138, 0.4);
  transform: translateY(-2px);
}

.scope-option-card.is-selected {
  background: var(--mint-subtle);
  border-color: var(--mint-primary);
  box-shadow: 0 0 20px rgba(63, 224, 138, 0.15);
}

.scope-option-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--mint-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.scope-option-card.is-selected .scope-option-icon {
  background: var(--mint-primary);
  color: #070707;
}

.scope-option-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

.scope-option-text span {
  font-size: 12.5px;
  color: var(--text-muted);
}

.scope-nav-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.scope-summary-box {
  background: #090909;
  border: 1px dashed var(--mint-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  color: var(--text-muted);
}

.summary-value {
  font-weight: 600;
  color: var(--mint-primary);
  text-align: right;
}

/* ---------- Responsive Breakpoints ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .scope-options-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  .section-pad { padding: 70px 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .service-feature-list { grid-template-columns: 1fr; }
  .badge-top-right { right: 0; }
  .badge-bottom-left { left: 0; }
  .scope-builder-wrapper { padding: 24px; }

  .hero-portrait-wrapper {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .portrait-frame {
    max-width: 320px;
    width: min(100%, 320px);
  }

  .portrait-img {
    min-height: 380px;
  }

  .floating-badge {
    position: static;
    width: min(100%, 320px);
    margin: 16px auto 0;
    animation: none;
    transform: none;
  }

  .floating-badge + .floating-badge {
    margin-top: 16px;
  }
}
.map-wrapper iframe {
  border: 0;
}

#v2-form-status {
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
  font-weight: 600;
}

/* ---------- Sticky Floating WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  background-color: #20ba5a;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65), 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
  color: #ffffff;
  line-height: 1;
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 12px rgba(0, 0, 0, 0.3);
  }
}

.social-icon-wa:hover {
  background-color: #25D366 !important;
  color: #ffffff !important;
  border-color: #25D366 !important;
}

