/* ═══════════════════════════════════════════
   JobX360 — Main Stylesheet  (css/style.css)
   Screenshot-matched: full-bleed images,
   serif headings, dark contact section
═══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --teal:      #1a7f7a;
  --teal-lt:   #e0f7f6;
  --teal-dk:   #135f5b;
  --blue:      #2c4a9e;
  --blue-lt:   #e8f0fe;
  --orange:    #e07b2a;
  --orange-lt: #fff0e6;
  --dark:      #0e1117;
  --dark2:     #181d27;
  --text:      #111827;
  --sub:       #4b5563;
  --muted:     #9ca3af;
  --border:    #e5e7eb;
  --white:     #ffffff;
  --bg:        #f8f9fc;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 50px rgba(0,0,0,.14);
  --font-h:    'Cormorant Garamond', serif;
  --font-b:    'DM Sans', sans-serif;
  --r:         12px;
  --t:         0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--text); font-family: var(--font-b); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── LAYOUT ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── TYPOGRAPHY HELPERS ── */
.tag-label {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); margin-bottom: .7rem;
  position: relative;
}
.tag-label::before {
  content: '—';
  margin-right: 6px;
  opacity: .5;
}
.tag-white { color: rgba(255,255,255,.65); }
.tag-white::before { color: rgba(255,255,255,.4); }

.sec-h {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -.3px; margin-bottom: 1.2rem;
  color: var(--text);
}
.sec-h em { font-style: italic; color: var(--teal); }
.sec-h.white  { color: #fff; }
.sec-p { color: var(--sub); font-size: 17px; line-height: 1.75; margin-bottom: 1rem; max-width: 560px; }
.sec-p.white { color: rgba(255,255,255,.75); }
.sec-p.muted-white { color: rgba(255,255,255,.58); }
.mx-auto { margin: 0 auto; }
.sec-head-center { text-align: center; margin-bottom: 3.5rem; }
.sec-head-center .sec-p { margin: 0 auto; }

/* ── SECTION BACKGROUNDS ── */
.section-white { background: var(--white); padding: 100px 5%; }
.section-light { background: var(--bg); padding: 100px 5%; }
.section-dark  { background: var(--dark); padding: 100px 5%; position: relative; overflow: hidden; }
.section-img-bg { position: relative; overflow: hidden; padding: 100px 5%; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-b); font-weight: 600; font-size: 15px;
  padding: 14px 30px; border-radius: var(--r); border: none;
  cursor: pointer; transition: all var(--t);
}
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 5px 18px rgba(26,127,122,.3); }
.btn-teal:hover { background: var(--teal-dk); transform: translateY(-2px); box-shadow: 0 9px 26px rgba(26,127,122,.38); }
.btn-white { background: #fff; color: var(--text); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,0,0,.2); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }


/* ═══════════════════════════
   HEADER / NAV
═══════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.09); }

.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-b); font-weight: 700; font-size: 15px; color: #fff;
  letter-spacing: -1px; box-shadow: 0 4px 12px rgba(26,127,122,.35);
  position: relative; overflow: hidden;
}
.logo-icon::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 35%, rgba(255,255,255,.2) 50%, transparent 65%);
  animation: sheen 3s infinite;
}
@keyframes sheen { 0%,100%{transform:translateX(-200%)} 50%{transform:translateX(200%)} }
.logo-text {
  font-family: var(--font-b); font-weight: 700;
  font-size: 18px; letter-spacing: 2px; color: var(--text);
}
.logo-text span { color: var(--teal); }
.ft-txt { color: rgba(255,255,255,.85) !important; }
.ft-txt span { color: #4dd9d2 !important; }

/* Nav links */
.nav-links { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--sub); transition: color var(--t); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--teal); border-radius: 2px; transform: scaleX(0); transition: transform var(--t); }
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-btn { background: var(--teal) !important; color: #fff !important; padding: 8px 20px; border-radius: 8px; font-weight: 600 !important; font-size: 13px !important; }
.nav-btn::after { display: none !important; }
.nav-btn:hover { background: var(--teal-dk) !important; opacity: 1; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; display: block; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════
   HERO
═══════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute; inset: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(.62) saturate(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14,17,23,.6) 0%,
    rgba(26,127,122,.25) 50%,
    rgba(14,17,23,.7) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 110px 24px 40px;
  max-width: 900px;
  animation: fadeUp .7s ease both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

.hero-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  margin-bottom: 1.4rem;
  animation: fadeUp .6s .05s ease both;
}
.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 700; line-height: 1.05;
  color: #fff; margin-bottom: 1.5rem;
  letter-spacing: -.5px;
  animation: fadeUp .6s .1s ease both;
}
.hero h1 em { font-style: italic; color: #4dd9d2; }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,.75);
  line-height: 1.7; margin-bottom: 2.4rem;
  animation: fadeUp .6s .2s ease both;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}

/* Stat bar */
.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 20px 40px;
  margin: 40px auto 0;
  gap: 32px;
  animation: fadeUp .7s .4s ease both;
}
.hstat { text-align: center; }
.hstat-num { font-family: var(--font-h); font-size: 28px; font-weight: 700; color: #fff; display: block; }
.hstat-lbl { font-size: 12px; color: rgba(255,255,255,.6); letter-spacing: .5px; }
.hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  animation: fadeUp .7s .6s ease both;
}
.scroll-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.5);
  animation: scrollBounce 1.8s infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }


/* ═══════════════════════════
   ABOUT
═══════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.about-img-col { position: relative; }
.about-img-frame { border-radius: 20px; overflow: visible; position: relative; }
.about-img {
  width: 100%; height: 460px;
  object-fit: cover; border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--teal); color: #fff;
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 28px rgba(26,127,122,.4);
}
.about-img-badge .badge-icon { font-size: 24px; }
.about-img-badge strong { font-size: 14px; font-weight: 700; display: block; }
.about-img-badge span { font-size: 12px; opacity: .8; }
.about-metric-strip {
  display: flex; align-items: center; gap: 0;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; margin-top: 36px; overflow: hidden;
}
.am { flex: 1; text-align: center; padding: 18px; }
.am-n { font-family: var(--font-h); font-size: 24px; font-weight: 700; color: var(--teal); display: block; }
.am-l { font-size: 12px; color: var(--muted); }
.am-sep { width: 1px; height: 40px; background: var(--border); }

/* About text col */
.about-text-col .tag-label { margin-bottom: .8rem; }
.about-text-col .sec-p { max-width: 100%; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 2rem 0; }
.feat {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px;
  transition: border-color var(--t), box-shadow var(--t);
}
.feat:hover { border-color: var(--teal); box-shadow: 0 4px 14px rgba(26,127,122,.12); }
.feat-icon { font-size: 22px; flex-shrink: 0; }
.feat strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 4px; color: var(--text); }
.feat p { font-size: 13px; color: var(--sub); line-height: 1.5; margin: 0; }


/* ═══════════════════════════
   SERVICES (with bg image)
═══════════════════════════ */
.svc-bg-img-wrap { position: absolute; inset: 0; }
.svc-bg-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,17,23,.92) 0%, rgba(26,127,122,.82) 100%);
}
.svc-content { position: relative; z-index: 1; }
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.svc-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px; padding: 30px 24px;
  transition: all var(--t); cursor: default;
  backdrop-filter: blur(4px);
}
.svc-card:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.25); transform: translateY(-5px); }
.svc-icon { font-size: 34px; margin-bottom: 16px; }
.svc-card h3 { font-family: var(--font-h); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.svc-card p  { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.7; }


/* ═══════════════════════════
   HOW IT WORKS
═══════════════════════════ */
.steps-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
  position: relative;
}
.steps-row::before {
  content: ''; position: absolute; top: 34px; left: 8.5%; right: 8.5%;
  height: 2px; background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: .2;
}
.step-item { text-align: center; padding: 0 8px; }
.step-circle {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff; font-family: var(--font-h); font-weight: 700; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 6px 20px rgba(26,127,122,.28);
  transition: transform var(--t), box-shadow var(--t);
}
.step-item:hover .step-circle { transform: scale(1.08); box-shadow: 0 10px 28px rgba(26,127,122,.4); }
.step-item h3 { font-family: var(--font-h); font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-item p  { font-size: 14px; color: var(--sub); line-height: 1.7; }


/* ═══════════════════════════
   JOBS GRID
═══════════════════════════ */
.jobs-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.8rem; flex-wrap: wrap; gap: 1rem; }
.link-arrow { color: var(--teal); font-weight: 600; font-size: 15px; transition: gap var(--t); }
.link-arrow:hover { text-decoration: underline; }

.jobs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.jc {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 24px; cursor: pointer;
  transition: all var(--t);
  position: relative; overflow: hidden;
}
.jc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.jc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(26,127,122,.25); }
.jc:hover::after { transform: scaleX(1); }
.jc-top    { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.jc-logo   { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.save-btn  { background: none; border: 1.5px solid var(--border); border-radius: 8px; width: 34px; height: 34px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--muted); transition: all var(--t); }
.save-btn:hover { border-color: #e07b2a; color: #e07b2a; background: var(--orange-lt); }
.jc-title  { font-family: var(--font-h); font-weight: 700; font-size: 20px; margin-bottom: 4px; color: var(--text); }
.jc-co     { color: var(--sub); font-size: 14px; margin-bottom: 14px; }
.jc-tags   { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 16px; }
.jtag      { font-size: 11px; font-weight: 600; padding: 3px 11px; border-radius: 50px; }
.jtag-blue   { background: var(--blue-lt); color: var(--blue); }
.jtag-teal   { background: var(--teal-lt); color: var(--teal-dk); }
.jtag-orange { background: var(--orange-lt); color: var(--orange); }
.jc-foot   { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.jc-sal    { font-family: var(--font-h); font-weight: 700; font-size: 20px; color: var(--text); }
.apply-btn { background: var(--teal-lt); color: var(--teal); border: none; padding: 8px 18px; border-radius: 8px; font-family: var(--font-b); font-weight: 700; font-size: 13px; cursor: pointer; transition: all var(--t); }
.apply-btn:hover { background: var(--teal); color: #fff; }


/* ═══════════════════════════
   TEAM BAND
═══════════════════════════ */
.team-band { background: var(--dark2); padding: 100px 5%; overflow: hidden; }
.team-band-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
.team-band-text .sec-p { max-width: 100%; }
.team-imgs { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; }
.team-img-card { border-radius: 18px; overflow: hidden; }
.team-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-img-card:hover img { transform: scale(1.04); }
.team-img-card.big { height: 380px; }
.team-img-stack { display: flex; flex-direction: column; gap: 16px; }
.team-img-card.sm { height: 182px; }


/* ═══════════════════════════
   TESTIMONIALS
═══════════════════════════ */
.testi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tc {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  text-align: center; transition: all var(--t);
  position: relative;
}
.tc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(26,127,122,.2); }
.featured-tc { background: var(--teal); border-color: var(--teal); transform: translateY(-10px); box-shadow: 0 20px 50px rgba(26,127,122,.3); }
.featured-tc .tc-quote,
.featured-tc .tc-name,
.featured-tc .tc-role { color: #fff !important; }
.featured-tc .tc-stars { color: #ffd700; }
.tc-img-wrap { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid var(--border); }
.featured-tc .tc-img-wrap { border-color: rgba(255,255,255,.4); }
.tc-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.tc-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.tc-quote { color: var(--sub); font-size: 15px; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.tc-name  { font-family: var(--font-h); font-weight: 700; font-size: 18px; color: var(--text); }
.tc-role  { color: var(--muted); font-size: 13px; margin-top: 4px; }


/* ═══════════════════════════
   CONTACT (dark, bg image)
═══════════════════════════ */
.contact-bg-wrap { position: absolute; inset: 0; }
.contact-bg-wrap img { width: 100%; height: 100%; object-fit: cover; }
.contact-dark-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,12,18,.96) 0%, rgba(14,40,40,.92) 100%);
}
.contact-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 6rem; align-items: start;
}

.contact-left .sec-p { max-width: 100%; margin-bottom: 2rem; }
.c-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 2rem; }
.c-row {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 16px;
  transition: border-color var(--t), background var(--t);
  color: inherit;
}
.c-row:hover { border-color: rgba(26,127,122,.5); background: rgba(26,127,122,.1); }
.c-ico { width: 38px; height: 38px; border-radius: 8px; background: rgba(26,127,122,.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.c-lbl { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 3px; }
.c-val { font-weight: 500; font-size: 15px; color: rgba(255,255,255,.88); }
.c-socials { display: flex; gap: 10px; }
.csoc { width: 38px; height: 38px; border-radius: 8px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.55); transition: all var(--t); }
.csoc:hover { background: var(--teal); border-color: var(--teal); color: #fff; }

/* Contact form */
.contact-form-box {
  background: rgba(255,255,255,.97);
  border-radius: 24px; padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.form-title { font-family: var(--font-h); font-size: 26px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.form-sub   { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.fr2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 12px; font-weight: 600; color: var(--sub); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .5px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 15px; color: var(--text);
  font-family: var(--font-b); font-size: 15px; outline: none;
  transition: border-color var(--t), box-shadow var(--t); resize: vertical;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,127,122,.12); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--muted); }
.fg select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%239ca3af' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-sub-btn { width: 100%; justify-content: center; font-size: 16px; padding: 15px; }


/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
footer { background: #080b10; color: rgba(255,255,255,.65); padding: 70px 5% 28px; }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3.5rem; margin-bottom: 3.5rem; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin: 14px 0 22px; max-width: 270px; color: rgba(255,255,255,.42); }
.ft-socials { display: flex; gap: 10px; }
.ft-soc { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.45); transition: all var(--t); text-decoration: none; }
.ft-soc:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.fcol h4 { font-family: var(--font-b); font-weight: 700; font-size: 14px; letter-spacing: .5px; color: rgba(255,255,255,.85); margin-bottom: 18px; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.fcol ul a { color: rgba(255,255,255,.42); font-size: 14px; transition: color var(--t); }
.fcol ul a:hover { color: rgba(255,255,255,.85); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07); font-size: 13px; }


/* ═══════════════════════════
   SCROLL ANIMATION
═══════════════════════════ */
.aos { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.aos.in { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1100px) {
  .svc-grid  { grid-template-columns: repeat(2,1fr); }
  .jobs-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 3.5rem; }
}
@media (max-width: 900px) {
  .about-grid     { grid-template-columns: 1fr; }
  .about-img-col  { display: none; }
  .contact-inner  { grid-template-columns: 1fr; }
  .testi-row      { grid-template-columns: 1fr; }
  .featured-tc    { transform: none; }
  .team-band-inner{ grid-template-columns: 1fr; }
  .team-imgs      { display: none; }
  .steps-row      { grid-template-columns: repeat(2,1fr); }
  .steps-row::before { display: none; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    padding: 20px 28px; gap: 1.2rem;
    border-bottom: 1px solid var(--border); z-index: 999;
    box-shadow: 0 12px 30px rgba(0,0,0,.1);
  }
  .jobs-grid  { grid-template-columns: 1fr; }
  .svc-grid   { grid-template-columns: 1fr 1fr; }
  .fr2        { grid-template-columns: 1fr; }
  .feat-grid  { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { padding: 16px 20px; gap: 18px; }
}
@media (max-width: 480px) {
  .svc-grid   { grid-template-columns: 1fr; }
  .steps-row  { grid-template-columns: 1fr 1fr; }
}
.contact-form-box { background: #ffffff !important; }
.contact-form-box .form-title { color: #0f1523 !important; }
.contact-form-box .form-sub { color: #8892b0 !important; }
.fg label { color: #4b5563 !important; }
.fg input, .fg select, .fg textarea { background: #ffffff !important; color: #111827 !important; border: 1.5px solid #e2e6f3 !important; }
.form-sub-btn { width: 100% !important; justify-content: center !important; font-size: 16px !important; padding: 15px !important; display: flex !important; }