/*
Theme Name: Sarwz Technology
Theme URI: https://sarwz.com
Author: Sarwz Technology
Author URI: https://sarwz.com
Description: Official Sarwz Technology WordPress theme — Premier IT Solutions & Staffing
Version: 1.0.0
License: Private
Text Domain: sarwz
*/

/* =============================================
   RESET & ROOT VARIABLES
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:       #032d6d;
  --primary-mid:   #054099;
  --primary-light: #e8eef8;
  --accent:        #4db8d4;
  --accent-pale:   #eaf6f9;
  --text:          #0d0d0d;
  --muted:         #4a5568;
  --muted-light:   #718096;
  --white:         #ffffff;
  --surface:       #f7f9fc;
  --border:        rgba(3, 45, 109, 0.1);
  --radius:        16px;
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* =============================================
   NAV
   ============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

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

.brand img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }

.brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
}

.brand-sub {
  font-size: 9px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover { color: var(--primary); }

.nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s;
}

.nav-cta:hover { background: var(--primary-mid); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5% 60px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  right: -180px; top: -80px;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,184,212,.1) 0%, rgba(3,45,109,.05) 50%, transparent 75%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-pale);
  border: 1px solid rgba(77,184,212,.3);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 28px;
}

.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -1.5px;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s;
  border: 2px solid var(--primary);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--primary-mid);
  border-color: var(--primary-mid);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid rgba(3,45,109,.25);
  transition: all .25s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted-light);
  margin-top: 3px;
}

/* Hero Visual Cards */
.hero-visual { position: relative; z-index: 1; }

.card-cluster { position: relative; height: 460px; }

.vis-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(3,45,109,.08);
}

.vis-main { inset: 0 0 auto 0; padding: 32px; }

.vis-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vis-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.8; }

.vis-main h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.vis-main p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
}

.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }

.vtag {
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(3,45,109,.12);
}

.vis-stat {
  width: 190px;
  background: var(--primary);
  border-radius: 16px;
  padding: 20px 22px;
  bottom: 0; right: 0;
  border: none;
  box-shadow: 0 8px 32px rgba(3,45,109,.2);
}

.vs-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.vs-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.vs-sub { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }

.vis-cert {
  width: 210px;
  background: var(--accent-pale);
  border: 1px solid rgba(77,184,212,.25);
  border-radius: 16px;
  padding: 18px 20px;
  bottom: 44px; left: 0;
}

.vc-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cert-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.ctag {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(3,45,109,.08);
  color: var(--primary);
}

/* =============================================
   TRUSTED BY
   ============================================= */
.trusted {
  padding: 36px 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }

.trusted-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tdiv { width: 1px; height: 24px; background: var(--border); }

.logos { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }

.logo-item {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: rgba(3,45,109,.18);
}

/* =============================================
   SERVICES
   ============================================= */
.services { padding: 100px 5%; background: var(--surface); }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 52px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  transition: all .3s;
}

.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(3,45,109,.1);
  border-color: rgba(3,45,109,.2);
}

.svc-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.svc-icon svg { width: 22px; height: 22px; stroke-width: 1.8; fill: none; }

.svc-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 18px;
  text-decoration: none;
  transition: gap .2s;
}

.svc-link:hover { gap: 9px; }

/* =============================================
   WHY US
   ============================================= */
.why {
  padding: 100px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-points { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }

.why-point { display: flex; gap: 16px; align-items: flex-start; }

.why-check {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-check svg { width: 16px; height: 16px; stroke: var(--accent); stroke-width: 2.5; fill: none; }

.why-point h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.why-point p { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; }

.why-panel { background: var(--primary); border-radius: 24px; padding: 40px; color: #fff; }

.why-panel h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 8px;
}

.why-panel > p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
}

.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.tech-tag {
  padding: 5px 12px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.1);
}

.stripe {
  height: 3px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent), rgba(77,184,212,.2));
  margin-bottom: 28px;
}

.panel-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.panel-stat {
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.06);
}

.panel-stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
}

.panel-stat-label { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 3px; }

/* =============================================
   INDUSTRIES
   ============================================= */
.industries { padding: 80px 5%; background: var(--surface); text-align: center; }

.ind-grid { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 40px; }

.ind-pill {
  padding: 11px 20px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all .2s;
  cursor: default;
}

.ind-pill:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.ind-pill svg { width: 14px; height: 14px; stroke-width: 2; fill: none; }

/* =============================================
   CTA
   ============================================= */
.cta-section {
  padding: 100px 5%;
  background: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(77,184,212,.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,.5);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
}

.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

.btn-white {
  background: #fff;
  color: var(--primary);
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.btn-white:hover { background: var(--accent-pale); }

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .2s;
  display: inline-block;
}

.btn-ghost:hover { background: rgba(255,255,255,.14); }

/* =============================================
   FOOTER
   ============================================= */
footer { padding: 60px 5% 30px; border-top: 1px solid var(--border); }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
  font-weight: 300;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  font-weight: 300;
}

.footer-col ul a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted-light);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible { opacity: 1; transform: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-visual { display: none; }
  .why { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .footer-top { grid-template-columns: 1fr; }
}
