/**
 * ============================================================
 * sections.css — ALL PAGE SECTIONS
 * ============================================================
 *
 * Styles for every section in order:
 *   Hero → Stats → Laptop → Portfolio → Services →
 *   Quote Strip → Process → Testimonials → FAQ →
 *   Contact → Footer → WhatsApp Button
 *
 * To find a section quickly: Ctrl+F the section name
 * e.g. search "PORTFOLIO" to jump to portfolio styles
 *
 * ============================================================
 */


/* ╔══════════════════════════════════════════════════════════╗
   ║  HERO                                                    ║
   ╚══════════════════════════════════════════════════════════╝ */

#hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 var(--section-pad-x);
  position: relative;
  overflow: hidden;
}

/* Teal + purple background gradients */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 72% 18%, var(--teal) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(139,92,246,.07) 0%, transparent 55%);
}

/* Film grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='.04'/%3E%3C/svg%3E");
}

/* Decorative crosshair (+) accents — hidden on mobile */
.xhair { position: absolute; width: 14px; height: 14px; pointer-events: none; }
.xhair::before, .xhair::after {
  content: ''; position: absolute;
  background: var(--cyan); border-radius: 1px;
}
.xhair::before { width: 14px; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.xhair::after  { width: 1px; height: 14px; left: 50%; top: 0; transform: translateX(-50%); }

/* Small dot decorations */
.dot-accent { position: absolute; border-radius: 50%; pointer-events: none; }

/* "Lebanon & Worldwide" label above title */
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 30px;
  font-weight: 500;
  opacity: 0;             /* animated in by GSAP */
  transform: translateY(18px);
}

/* Big headline — each word slides up from masked container */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 9vw, 130px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.035em;
  margin-bottom: 36px;
}
.hero-title .line      { display: block; overflow: hidden; }
.hero-title .line span { display: block; transform: translateY(105%); will-change: transform; }
.hero-title .accent    { color: var(--purple); }

/* Subheading body text */
.hero-body {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
  transform: translateY(18px);
  margin-bottom: 52px;
}

/* Button row */
.hero-btns {
  display: flex;
  gap: 14px;
  opacity: 0;
  transform: translateY(18px);
  flex-wrap: wrap;
}

/* Animated scroll hint at bottom of hero */
.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  opacity: 0;
}
.scroll-cue span {
  font-size: 9px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--text-dim);
}
.scroll-cue-line {
  width: 1px; height: 54px;
  background: linear-gradient(to bottom, rgba(139,92,246,.9), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .25; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(.65); }
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  STATS BAR                                               ║
   ║  To update numbers: change data-target in index.html    ║
   ╚══════════════════════════════════════════════════════════╝ */

.stats-band {
  display: flex;
  border-top: 1px solid rgba(255,255,255,.045);
  border-bottom: 1px solid rgba(255,255,255,.045);
}

.stat-item {
  flex: 1;
  padding: 48px 16px;
  border-right: 1px solid rgba(255,255,255,.045);
  opacity: 0;
  transform: translateY(28px);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  /* Gradient text effect */
  background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,.4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 10px;
  letter-spacing: .02em;
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  LAPTOP SCROLL SECTION                                   ║
   ║  Animated by js/laptop.js                               ║
   ╚══════════════════════════════════════════════════════════╝ */

#laptop-section {
  min-height: 520vh; /* tall enough for all scroll panels */
  position: relative;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark2) 30%, var(--black) 100%);
}

/* Sticky container — stays in viewport while user scrolls */
.laptop-sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}

/* Purple ambient glow behind laptop — appears when lid opens */
.laptop-ambient {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 58%, rgba(139,92,246,.07) 0%, transparent 70%);
  opacity: 0; /* controlled by js/laptop.js */
}

/* "What We Build / Open. Explore." heading above laptop */
.laptop-intro {
  text-align: center;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(32px);
}
.laptop-intro-label {
  font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--purple-lt);
  display: block; margin-bottom: 14px;
}
.laptop-intro-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.05;
}
.laptop-intro-title em { font-style: normal; color: var(--purple); }

/* 3D perspective container */
.laptop-scene {
  width: min(820px, 88vw);
  perspective: 1600px;
  position: relative;
}
.laptop-base { position: relative; width: 100%; }

/* Silver aluminium lid — rotates open on scroll */
.laptop-lid {
  width: 100%;
  transform-origin: bottom center;
  transform: rotateX(-118deg); /* starts closed */
  will-change: transform;
  position: relative;
  /* Realistic aluminium gradient */
  background: linear-gradient(165deg,
    #eceef0 0%, #d8dade 15%, #c8cbce 35%,
    #babdbf 55%, #c4c6c9 72%, #d2d4d7 88%, #dcdfe2 100%
  );
  border-radius: 14px 14px 3px 3px;
  border-top:    1px solid rgba(255,255,255,.85);
  border-left:   1px solid rgba(255,255,255,.5);
  border-right:  1px solid rgba(200,202,205,.7);
  border-bottom: 1px solid rgba(150,152,155,.6);
  padding: 2.2% 2.2% 0;
  box-shadow:
    inset 0  1px 0 rgba(255,255,255,.7),
    inset 0 -1px 0 rgba(0,0,0,.15),
    inset  1px 0 0 rgba(255,255,255,.25),
    inset -1px 0 0 rgba(0,0,0,.08),
    0 -30px 90px rgba(0,0,0,.95),
    0 -6px  20px rgba(0,0,0,.6);
  aspect-ratio: 16 / 10.1;
  overflow: hidden;
}

/* Purple screen glow — appears as lid opens */
.lid-glow {
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 55% at 50% 38%, rgba(139,92,246,.2) 0%, transparent 65%);
  opacity: 0; pointer-events: none; mix-blend-mode: screen;
}

/* Black screen bezel */
.screen-bezel {
  width: 100%; height: 100%;
  background: #080810;
  border-radius: 5px 5px 2px 2px;
  overflow: hidden; position: relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.9);
}

/* Service panels inside the screen — only .active is shown */
.screen-panel {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 7% 6%;
  opacity: 0; pointer-events: none;
  transition: opacity .7s var(--ease-out);
}
.screen-panel.active { opacity: 1; }

/* Default panel (panel 0) — the website mockup */
#panelDefault { background: #07070e; align-items: stretch; justify-content: flex-start; padding: 0; }
.mock-topbar  { background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.06); padding: 9px 18px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.mock-traffic { display: flex; gap: 5px; }
.mock-dot     { width: 7px; height: 7px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #febc2e; }
.mock-dot:nth-child(3) { background: #28c840; }
.mock-wordmark { font-family: var(--font-heading); font-size: 10px; letter-spacing: .2em; font-weight: 700; }
.mock-url      { font-size: 9px; color: rgba(255,255,255,.3); }
.mock-body     { flex: 1; padding: 22px 18px; overflow: hidden; }
.mock-h        { font-family: var(--font-heading); font-size: 26px; font-weight: 800; line-height: 1.1; margin-bottom: 8px; }
.mock-h span   { color: var(--purple); }
.mock-sub      { font-size: 9px; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.mock-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.mock-card     { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 7px; padding: 12px; position: relative; overflow: hidden; }
.mock-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.mock-card:nth-child(1)::before { background: var(--purple); }
.mock-card:nth-child(2)::before { background: var(--cyan); }
.mock-card:nth-child(3)::before { background: var(--green); }
.mock-card:nth-child(4)::before { background: var(--amber); }
.mock-card-t   { font-family: var(--font-heading); font-size: 10px; font-weight: 700; margin-bottom: 4px; }
.mock-card-d   { font-size: 8.5px; color: rgba(255,255,255,.38); line-height: 1.5; }

/* Panels 1–4: service showcase panels */
.panel-icon  { font-size: 38px; margin-bottom: 16px; display: block; }
.panel-title { font-family: var(--font-heading); font-size: clamp(16px, 2.4vw, 28px); font-weight: 800; margin-bottom: 10px; color: #fff; text-align: center; }
.panel-desc  { font-size: clamp(9px, 1vw, 13px); color: rgba(255,255,255,.48); line-height: 1.7; max-width: 260px; text-align: center; }
.panel-tag   { display: inline-block; margin-top: 18px; padding: 5px 14px; border-radius: var(--radius-pill); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }

/* Panel color themes */
#panel1 { background: linear-gradient(145deg,#080520,#10072a); }
#panel1 .panel-tag { background: rgba(139,92,246,.2); color: var(--purple-lt); }
#panel2 { background: linear-gradient(145deg,#031318,#041f28); }
#panel2 .panel-tag { background: rgba(6,182,212,.18); color: var(--cyan); }
#panel3 { background: linear-gradient(145deg,#030d06,#05190a); }
#panel3 .panel-tag { background: rgba(16,185,129,.18); color: var(--green); }
#panel4 { background: linear-gradient(145deg,#110900,#1c0e02); }
#panel4 .panel-tag { background: rgba(245,158,11,.18); color: var(--amber); }

/* Physical laptop parts */
.laptop-hinge { width: 100%; height: 7px; background: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(140,142,145,.4) 40%, rgba(180,182,185,.3)); position: relative; z-index: 2; margin-top: -1px; }
.laptop-deck  { width: 100%; height: 26px; background: linear-gradient(to bottom, #caccce, #abadb0); border-radius: 0 0 10px 10px; border: 1px solid rgba(255,255,255,.55); border-top: 1px solid rgba(0,0,0,.2); box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 24px 72px rgba(0,0,0,.88), 0 8px 24px rgba(0,0,0,.6); position: relative; }
.laptop-deck::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 56px; height: 4px; background: rgba(0,0,0,.2); border-radius: 2px; }

/* Shadow effects below laptop */
.laptop-cast      { position: absolute; bottom: -30px; left: 4%; width: 92%; height: 30px; background: radial-gradient(ellipse, rgba(0,0,0,.6) 0%, transparent 72%); filter: blur(14px); pointer-events: none; }
.laptop-floor-glow{ position: absolute; bottom: -52px; left: 14%; width: 72%; height: 52px; background: radial-gradient(ellipse, rgba(139,92,246,.2) 0%, transparent 70%); filter: blur(16px); pointer-events: none; opacity: 0; }

/* Navigation dots below laptop */
.laptop-caption { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; opacity: 0; }
.cap-dots       { display: flex; gap: 10px; }
.cap-dot        { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.2); cursor: pointer; transition: all .35s ease; }
.cap-dot.active { background: var(--purple); box-shadow: 0 0 10px rgba(139,92,246,.8); transform: scale(1.4); }
.cap-label      { font-size: 10px; color: rgba(255,255,255,.3); letter-spacing: .15em; text-transform: uppercase; }


/* ╔══════════════════════════════════════════════════════════╗
   ║  PORTFOLIO                                               ║
   ║  To add a project: copy a .proj-card block in HTML      ║
   ╚══════════════════════════════════════════════════════════╝ */

#portfolio {
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative;
  overflow: hidden;
}

/* 2-column grid — each card is equal size */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 80px;
}

.proj-card {
  position: relative; overflow: hidden;
  cursor: pointer; opacity: 0; transform: translateY(50px);
}

.proj-thumb {
  width: 100%; aspect-ratio: 4/3;
  position: relative; overflow: hidden;
  background: var(--dark2);
  transition: transform .7s var(--ease-smooth);
}
.proj-card:hover .proj-thumb { transform: scale(1.04); }

.proj-mock { position: absolute; inset: 0; display: flex; flex-direction: column; }

/* Per-card mock backgrounds */
.proj-card:nth-child(1) .proj-mock { background: linear-gradient(135deg,#0a0520,#160a36 40%,#0f0528); }
.proj-card:nth-child(2) .proj-mock { background: linear-gradient(135deg,#031a14,#04261e 40%,#021510); }

/* UI mockup inside each card */
.proj-ui        { padding: 6% 7%; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.proj-ui-label  { font-size: clamp(7px,1vw,10px); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 10px; opacity: .6; }
.proj-ui-title  { font-family: var(--font-heading); font-size: clamp(14px,2.5vw,36px); font-weight: 800; line-height: 1.05; margin-bottom: 16px; }
.proj-ui-bars   { display: flex; flex-direction: column; gap: 6px; max-width: 280px; }
.proj-ui-bar    { height: 3px; border-radius: 2px; opacity: .35; }
.proj-ui-btn    { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: var(--radius-pill); font-size: clamp(8px,1vw,11px); font-weight: 600; margin-top: 16px; width: fit-content; }

/* Hover overlay with project info */
.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,7,.95) 0%, rgba(5,5,7,.3) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 36px;
  transform: translateY(8px); opacity: 0;
  transition: all .5s var(--ease-smooth);
}
.proj-card:hover .proj-overlay { opacity: 1; transform: translateY(0); }

.proj-category { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.proj-name     { font-family: var(--font-heading); font-size: clamp(18px,2.5vw,28px); font-weight: 800; margin-bottom: 6px; }
.proj-result   { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 300; }

/* Arrow button top-right of each card */
.proj-arrow {
  position: absolute; top: 28px; right: 28px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all .4s var(--ease-smooth);
}
.proj-card:hover .proj-arrow { background: var(--purple); transform: translate(4px,-4px); }

/* Category badge top-left */
.proj-tag {
  position: absolute; top: 20px; left: 20px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  background: rgba(0,0,0,.5); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  SERVICES                                                ║
   ║  To add a service: copy a .svc-card block in HTML       ║
   ╚══════════════════════════════════════════════════════════╝ */

#services {
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative;
  overflow: hidden;
}

/* 3-column grid (first card spans 2 columns) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.svc-card {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  padding: 40px 30px;
  position: relative; overflow: hidden;
  transition: all .55s var(--ease-smooth);
  cursor: pointer; opacity: 0; transform: translateY(44px);
}
/* Inner glow on hover */
.svc-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(139,92,246,.07) 0%, transparent 55%);
  opacity: 0; transition: opacity .5s ease;
}
.svc-card:hover::after { opacity: 1; }
.svc-card:hover {
  background: rgba(255,255,255,.045);
  border-color: var(--border-hover);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 32px 64px rgba(0,0,0,.6), 0 0 0 1px rgba(139,92,246,.12);
}

/* Coloured top line slides in on hover */
.svc-accent-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease-smooth);
}
.svc-card:hover .svc-accent-line { transform: scaleX(1); }

.svc-num   { font-family: var(--font-heading); font-size: 11px; color: rgba(255,255,255,.18); letter-spacing: .1em; display: block; margin-bottom: 26px; }
.svc-icon  { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 20px; }
.svc-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 12px; letter-spacing: -.01em; }
.svc-desc  { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.78; font-weight: 300; }
.svc-arrow {
  position: absolute; bottom: 28px; right: 28px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,.28);
  transition: all .4s var(--ease-smooth);
}
.svc-card:hover .svc-arrow { border-color: var(--purple); color: var(--purple); transform: translate(4px,-4px); }


/* ╔══════════════════════════════════════════════════════════╗
   ║  QUOTE STRIP                                             ║
   ║  Replaces pricing — prompts visitors to request a quote ║
   ╚══════════════════════════════════════════════════════════╝ */

#quote-strip { padding: 0 var(--section-pad-x); }

.quote-strip-inner {
  background: linear-gradient(135deg, rgba(139,92,246,.1) 0%, rgba(6,182,212,.06) 100%);
  border: 1px solid rgba(139,92,246,.2);
  border-radius: var(--radius-lg);
  padding: 64px 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(40px);
}
.quote-strip-inner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(139,92,246,.08) 0%, transparent 65%);
  pointer-events: none;
}

.quote-strip-eyebrow { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--cyan); display: block; margin-bottom: 16px; }
.quote-strip-title   { font-family: var(--font-heading); font-size: clamp(24px,3vw,42px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; max-width: 500px; }
.quote-strip-title span { color: var(--purple); }
.quote-strip-body    { font-size: 14px; color: var(--text-muted); line-height: 1.75; font-weight: 300; margin-top: 14px; max-width: 420px; }

.quote-strip-right { flex-shrink: 0; }
.quote-strip-cta   { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.quote-strip-btn {
  background: var(--purple); color: #fff;
  padding: 16px 40px; border-radius: var(--radius-pill);
  font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  cursor: pointer; border: none; white-space: nowrap;
  transition: all .4s var(--ease-smooth);
}
.quote-strip-btn:hover { background: var(--purple-lt); box-shadow: 0 0 44px rgba(139,92,246,.55); transform: scale(1.05); }
.quote-strip-note { font-size: 11px; color: var(--text-dim); letter-spacing: .04em; }


/* ╔══════════════════════════════════════════════════════════╗
   ║  PROCESS                                                 ║
   ╚══════════════════════════════════════════════════════════╝ */

#process {
  padding: var(--section-pad-y) var(--section-pad-x);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
  margin-top: 72px;
}

.proc-step {
  padding: 32px 0 32px 28px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative; opacity: 0; transform: translateX(-36px);
}

/* Animated left bar */
.proc-bar { position: absolute; left: 0; top: 32px; bottom: 32px; width: 2px; background: rgba(255,255,255,.06); border-radius: 2px; overflow: hidden; }
.proc-bar::after { content: ''; position: absolute; inset: 0; background: var(--purple); transform: scaleY(0); transform-origin: top; transition: transform .5s var(--ease-smooth); }
.proc-step:hover .proc-bar::after { transform: scaleY(1); }

.proc-num   { font-family: var(--font-heading); font-size: 11px; color: rgba(255,255,255,.2); letter-spacing: .1em; margin-bottom: 8px; }
.proc-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 8px; transition: color .3s ease; }
.proc-desc  { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.72; font-weight: 300; }
.proc-step:hover .proc-title { color: var(--purple-lt); }

/* Decorative stacked project cards */
.proc-visual      { opacity: 0; transform: translateX(36px); }
.proc-card-stack  { position: relative; height: 400px; }
.pcard            { position: absolute; width: 100%; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius-md); padding: 28px; }
.pcard:nth-child(1) { top: 0; z-index: 3; }
.pcard:nth-child(2) { top: 24px; left: 18px; z-index: 2; width: 93%; opacity: .55; filter: blur(.5px); }
.pcard:nth-child(3) { top: 44px; left: 32px; z-index: 1; width: 87%; opacity: .3;  filter: blur(1px); }
.pcard-tag    { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.pcard-name   { font-family: var(--font-heading); font-size: 21px; font-weight: 800; margin-bottom: 16px; }
.pcard-bars   { display: flex; flex-direction: column; gap: 9px; }
.pcard-row    { display: flex; align-items: center; gap: 10px; }
.pcard-rowlbl { font-size: 10px; color: rgba(255,255,255,.3); width: 60px; flex-shrink: 0; }
.pcard-track  { flex: 1; height: 3px; background: rgba(255,255,255,.06); border-radius: 2px; overflow: hidden; }
.pcard-fill   { height: 100%; border-radius: 2px; }
.pcard-pct    { font-size: 10px; color: rgba(255,255,255,.3); width: 30px; text-align: right; }
.pcard-footer { margin-top: 18px; font-size: 10px; color: rgba(255,255,255,.2); }


/* ╔══════════════════════════════════════════════════════════╗
   ║  TESTIMONIALS                                            ║
   ║  To add a review: copy a .testi-card block in HTML      ║
   ╚══════════════════════════════════════════════════════════╝ */

#testimonials { padding: var(--section-pad-y) var(--section-pad-x); }

.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 72px;
}

.testi-card {
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg); padding: 36px 28px;
  opacity: 0; transform: translateY(38px);
  transition: all .5s var(--ease-smooth);
}
.testi-card:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(139,92,246,.22);
  transform: translateY(-5px) scale(1.02);
}

.testi-q      { font-size: 40px; color: var(--purple); opacity: .3; font-family: Georgia,serif; line-height: 1; margin-bottom: 16px; }
.testi-text   { font-size: 14px; color: rgba(255,255,255,.52); line-height: 1.78; font-weight: 300; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; font-family: var(--font-heading); }
.testi-name   { font-size: 13px; font-weight: 600; font-family: var(--font-heading); }
.testi-role   { font-size: 11px; color: rgba(255,255,255,.28); margin-top: 2px; }


/* ╔══════════════════════════════════════════════════════════╗
   ║  FAQ                                                     ║
   ║  To add a question: copy a .faq-item block in HTML      ║
   ╚══════════════════════════════════════════════════════════╝ */

#faq {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: linear-gradient(180deg, var(--black) 0%, var(--dark2) 50%, var(--black) 100%);
}

.faq-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 100px; align-items: start; margin-top: 72px;
}

.faq-cta-wrap   { opacity: 0; transform: translateX(-30px); }
.faq-left-title { font-family: var(--font-heading); font-size: clamp(32px,3.5vw,52px); font-weight: 800; letter-spacing: -.03em; line-height: 1; margin-bottom: 20px; }
.faq-left-body  { font-size: 14px; color: rgba(255,255,255,.38); line-height: 1.75; font-weight: 300; margin-bottom: 36px; }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
  opacity: 0; transform: translateX(30px);
}

/* Question button */
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; background: none; border: none;
  color: var(--white); cursor: pointer;
  font-family: var(--font-heading); font-size: clamp(14px,1.4vw,17px); font-weight: 600;
  text-align: left; gap: 20px; transition: color .3s ease;
}
.faq-q:hover { color: var(--purple-lt); }

/* +/× icon */
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all .4s var(--ease-smooth);
  color: rgba(255,255,255,.4);
}
.faq-item.open .faq-icon { background: var(--purple); border-color: var(--purple); color: #fff; transform: rotate(45deg); }

/* Collapsible answer */
.faq-a       { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-smooth); }
.faq-a-inner { padding: 0 0 24px; font-size: 14px; color: rgba(255,255,255,.42); line-height: 1.78; font-weight: 300; }
.faq-item.open .faq-a { max-height: 300px; }


/* ╔══════════════════════════════════════════════════════════╗
   ║  CONTACT                                                 ║
   ║  Form handled by js/form.js                             ║
   ║  Formspree ID set in js/config.js                       ║
   ╚══════════════════════════════════════════════════════════╝ */

#contact {
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--black) 0%, rgba(10,5,28,.7) 50%, var(--black) 100%);
}

/* Ambient purple glow behind section */
.contact-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(139,92,246,.07) 0%, transparent 65%);
  pointer-events: none;
}

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; margin-top: 72px; }

.contact-left       { opacity: 0; transform: translateX(-40px); }
.contact-left-title { font-family: var(--font-heading); font-size: clamp(30px,3.5vw,52px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; margin-bottom: 18px; }
.contact-left-body  { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.8; font-weight: 300; margin-bottom: 40px; max-width: 400px; }

.contact-channels { display: flex; flex-direction: column; gap: 14px; }

.channel-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius-md);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  text-decoration: none; color: inherit;
  transition: all .4s var(--ease-smooth);
}
.channel-item:hover { background: rgba(255,255,255,.06); border-color: var(--border-hover); transform: translateX(6px); }
.channel-icon  { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.channel-title { font-family: var(--font-heading); font-size: 13px; font-weight: 700; }
.channel-sub   { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 2px; }
.channel-arrow { margin-left: auto; font-size: 14px; color: rgba(255,255,255,.25); transition: all .3s ease; }
.channel-item:hover .channel-arrow { color: var(--purple-lt); transform: translate(4px,-2px); }

/* Contact Form Card */
.contact-form-wrap { opacity: 0; transform: translateX(40px); }

.form-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg); padding: 40px;
  position: relative; overflow: hidden;
}
/* Purple-to-cyan gradient top line */
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(to right, var(--purple), var(--cyan));
}

.form-title { font-family: var(--font-heading); font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.form-sub   { font-size: 12px; color: rgba(255,255,255,.35); margin-bottom: 28px; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-group label { font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: .04em; }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-sm); padding: 12px 15px;
  color: #fff; font-family: var(--font-body); font-size: 13px;
  font-weight: 300; outline: none;
  transition: all .35s ease; width: 100%; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(139,92,246,.55);
  background: rgba(139,92,246,.05);
  box-shadow: 0 0 0 3px rgba(139,92,246,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.22); }
.form-group select option { background: #15151f; color: #fff; }
.form-group textarea { min-height: 100px; }

.form-submit {
  width: 100%; background: var(--purple); color: #fff;
  border: none; border-radius: 12px; padding: 15px;
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all .4s var(--ease-smooth); margin-top: 4px;
}
.form-submit:hover { background: var(--purple-lt); box-shadow: 0 0 40px rgba(139,92,246,.5); transform: translateY(-2px); }

/* Success state shown after form submits */
.form-success       { display: none; text-align: center; padding: 28px 16px; }
.form-success-icon  { font-size: 48px; margin-bottom: 14px; }
.form-success-title { font-family: var(--font-heading); font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.form-success-text  { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.6; }


/* ╔══════════════════════════════════════════════════════════╗
   ║  FOOTER                                                  ║
   ╚══════════════════════════════════════════════════════════╝ */

footer {
  padding: 56px var(--section-pad-x);
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 36px; gap: 40px; flex-wrap: wrap; }

.footer-brand      { display: flex; align-items: center; gap: 12px; }
.footer-brand-icon { width: 34px; height: 34px; }
.footer-brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; }
.footer-brand-tag  { font-size: 11px; color: rgba(255,255,255,.25); margin-top: 4px; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }

.social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55); text-decoration: none;
  font-size: 12px; transition: all .35s var(--ease-smooth); white-space: nowrap;
}
.social-btn:hover { border-color: rgba(139,92,246,.45); color: var(--purple-lt); background: rgba(139,92,246,.08); }
.social-btn svg   { width: 14px; height: 14px; flex-shrink: 0; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.04); flex-wrap: wrap; gap: 16px; }
.footer-copy   { font-size: 11px; color: rgba(255,255,255,.2); }
.footer-links  { display: flex; gap: 24px; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,.28); text-decoration: none; transition: color .3s ease; }
.footer-links a:hover { color: rgba(255,255,255,.7); }


/* ╔══════════════════════════════════════════════════════════╗
   ║  WHATSAPP FLOATING BUTTON                                ║
   ║  Number set in js/config.js → WHATSAPP_NUMBER           ║
   ╚══════════════════════════════════════════════════════════╝ */

.wa-btn {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg,#25d366,#128c7e);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.35), 0 2px 8px rgba(0,0,0,.3);
  cursor: pointer; text-decoration: none;
  transition: all .35s var(--ease-smooth);
  opacity: 0; transform: scale(.7) translateY(20px); /* animated in by GSAP */
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,.5), 0 4px 12px rgba(0,0,0,.3); }
.wa-btn svg   { width: 28px; height: 28px; }

/* Hover tooltip (desktop only) */
.wa-btn::before {
  content: 'Chat on WhatsApp';
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: rgba(10,10,15,.92); color: #fff;
  font-family: var(--font-body); font-size: 12px;
  padding: 7px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
  border: 1px solid rgba(255,255,255,.08);
}
.wa-btn:hover::before { opacity: 1; }
