/*
 * ══════════════════════════════════════════════════════
 *  AZIZI MANAGED SERVICES — Main Stylesheet v2.0
 *  Multi-page professional IT services website
 * ══════════════════════════════════════════════════════
 */

/* ─────────────────────────────────────────────────────
   1. DESIGN TOKENS
───────────────────────────────────────────────────── */
:root {
  --navy:        #070A1B;
  --navy-2:      #0D1525;
  --navy-3:      #111D35;
  --navy-4:      #1B2B4B;
  --navy-5:      #19104C;
  --slate:       #263750;
  --teal:        #04D9AB;
  --teal-d:      #03B891;
  --blue:        #2EA3F2;
  --gold:        #F5A623;
  --lavender:    #938FAC;
  --bg:          #FAF9FF;
  --white:       #FFFFFF;
  --text:        #1B2B4B;
  --text-2:      #445058;
  --text-3:      #6B7A8D;
  --text-4:      #9EAAB8;
  --border:      #E4EBF5;
  --border-2:    #CDD6E8;

  --sh-sm:    0 2px  8px rgba(27,43,75,0.06);
  --sh-md:    0 4px 24px rgba(27,43,75,0.10);
  --sh-lg:    0 10px 48px rgba(27,43,75,0.18);
  --sh-teal:  0 8px 32px rgba(4,217,171,0.28);

  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 50px;

  --ease:   cubic-bezier(0.4,0,0.2,1);
  --t:      0.28s cubic-bezier(0.4,0,0.2,1);
  --t-sl:   0.48s cubic-bezier(0.4,0,0.2,1);

  --fh: 'Libre Franklin', 'Helvetica Neue', Arial, sans-serif;
  --fb: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ─────────────────────────────────────────────────────
   2. RESET
───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fb);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: var(--fb); cursor: pointer; border: none; background: none; }

/* ─────────────────────────────────────────────────────
   3. TYPOGRAPHY
───────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fh);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
p { line-height: 1.7; }

/* ─────────────────────────────────────────────────────
   4. LAYOUT
───────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex    { display: flex; }
.flex-c  { display: flex; align-items: center; }
.flex-cc { display: flex; align-items: center; justify-content: center; }
.gap-sm  { gap: 12px; }
.gap-md  { gap: 20px; }
.gap-lg  { gap: 32px; }
.text-center { text-align: center; }

/* Section spacing */
.section         { padding: 96px 0; }
.section-sm      { padding: 72px 0; }
.section-lg      { padding: 120px 0; }
.bg-light        { background: var(--bg); }
.bg-dark         { background: linear-gradient(160deg, var(--navy-2) 0%, var(--navy-4) 100%); }
.bg-navy         { background: var(--navy); }

/* ─────────────────────────────────────────────────────
   5. BUTTONS
───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--t);
  cursor: pointer;
}
.btn i { font-size: 0.85em; transition: transform var(--t); }
.btn:hover i { transform: translateX(3px); }

.btn-primary {
  background: var(--navy-4);
  color: var(--white);
  border-color: var(--navy-4);
}
.btn-primary:hover {
  background: var(--navy-3);
  border-color: var(--navy-3);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,43,75,0.30);
}
.btn-teal {
  background: var(--teal);
  color: var(--navy-2);
  border-color: var(--teal);
  font-weight: 700;
}
.btn-teal:hover {
  background: var(--teal-d);
  border-color: var(--teal-d);
  transform: translateY(-2px);
  box-shadow: var(--sh-teal);
}
.btn-outline {
  background: transparent;
  color: var(--navy-4);
  border-color: var(--navy-4);
}
.btn-outline:hover {
  background: var(--navy-4);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-sm  { padding: 9px 22px; font-size: 0.83rem; }
.btn-lg  { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────────────
   6. SECTION LABELS & HEADINGS
───────────────────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal-d);
  margin-bottom: 12px;
}
.label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}
.label-center { justify-content: center; }

.heading {
  font-family: var(--fh);
  font-size: clamp(1.75rem, 3.5vw, 2.55rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.heading-lg {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
.heading-sm {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
}
.heading-white { color: var(--white); }

.sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 580px;
}
.sub-white { color: rgba(255,255,255,0.7); }
.sub-center { margin-left: auto; margin-right: auto; text-align: center; }

.divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  border-radius: 2px;
  margin: 14px 0 22px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--teal) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────────────
   7. NAVBAR
───────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--t-sl);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height var(--t);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(27,43,75,0.09);
}
#navbar.scrolled .nav-inner { height: 64px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  transition: color var(--t);
  flex-shrink: 0;
}
#navbar.scrolled .nav-logo { color: var(--navy-4); }
.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900;
  color: var(--navy-2);
  flex-shrink: 0;
  transition: transform var(--t);
}
.nav-logo:hover .nav-logo-mark { transform: rotate(-6deg) scale(1.06); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-menu a {
  padding: 7px 15px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: var(--r-pill);
  transition: all var(--t);
  position: relative;
}
.nav-menu a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-menu a.active { color: var(--white); font-weight: 700; }
#navbar.scrolled .nav-menu a { color: var(--text-2); }
#navbar.scrolled .nav-menu a:hover { color: var(--navy-4); background: var(--bg); }
#navbar.scrolled .nav-menu a.active { color: var(--navy-4); font-weight: 700; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r-xs);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
#navbar.scrolled .hamburger span { background: var(--navy-4); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 88vw);
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 84px 28px 40px;
  box-shadow: -8px 0 48px rgba(27,43,75,0.18);
  transition: right var(--t-sl);
  overflow-y: auto;
}
.nav-drawer.open { right: 0; }
.nav-drawer-links { display: flex; flex-direction: column; gap: 2px; }
.nav-drawer-links a {
  display: block;
  padding: 13px 18px;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: all var(--t);
}
.nav-drawer-links a:hover, .nav-drawer-links a.active {
  background: var(--bg);
  color: var(--navy-4);
  padding-left: 24px;
  font-weight: 600;
}
.nav-drawer-cta { margin-top: 24px; width: 100%; justify-content: center; }

.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(7,10,27,0.5);
  z-index: 998;
  backdrop-filter: blur(3px);
}
.nav-overlay.open { display: block; }

/* ─────────────────────────────────────────────────────
   8. FOOTER
───────────────────────────────────────────────────── */
#footer {
  background: var(--navy-2);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.1fr;
  gap: 52px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo-mark {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 900;
  color: var(--navy-2); flex-shrink: 0;
}
.footer-tagline {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex; gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--t);
}
.footer-social a:hover { background: var(--teal); color: var(--navy-2); transform: translateY(-3px); }

.footer-col-title {
  font-family: var(--fh);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.48);
  transition: all var(--t);
}
.footer-links a:hover { color: var(--teal); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.87rem; color: rgba(255,255,255,0.48);
}
.footer-contact-row i { color: var(--teal); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.28); transition: color var(--t); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ─────────────────────────────────────────────────────
   9. HOME HERO
───────────────────────────────────────────────────── */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,10,27,0.92) 0%,
    rgba(17,29,53,0.82) 50%,
    rgba(7,10,27,0.88) 100%
  );
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(4,217,171,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,217,171,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero-content-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 130px 0 100px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: rgba(4,217,171,0.1);
  border: 1px solid rgba(4,217,171,0.28);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.75); }
}
.hero-title {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 4.8vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.78;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-avatars {
  display: flex;
}
.hero-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--navy-2);
  margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: var(--white);
}
.hero-avatar:first-child { margin-left: 0; }
.hero-trust-text { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.hero-trust-text strong { color: rgba(255,255,255,0.9); }

/* Hero visual card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  max-width: 440px;
  width: 100%;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hero-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: var(--navy-2);
  margin-bottom: 16px;
  box-shadow: var(--sh-teal);
}
.hero-card-title {
  font-family: var(--fh);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.hero-card-sub { font-size: 0.83rem; color: rgba(255,255,255,0.5); margin-bottom: 22px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
.hero-stat {
  text-align: center;
  padding: 12px 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
}
.hero-stat-n {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--teal);
  display: block;
}
.hero-stat-l {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero-float-1, .hero-float-2 {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 9px;
  box-shadow: var(--sh-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-4);
}
.hero-float-1 { top: -18px; right: -20px; animation: floatBadge 5s ease-in-out infinite; }
.hero-float-2 { bottom: -14px; left: -22px; animation: floatBadge 5s ease-in-out infinite 1.8s; }
@keyframes floatBadge {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(1deg); }
}
.float-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.float-label { font-size: 0.76rem; line-height: 1.3; }
.float-label small { display: block; font-weight: 400; color: var(--text-3); font-size: 0.68rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-bar {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(4,217,171,0.6), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform:scaleY(0); transform-origin:top; }
  50%  { transform:scaleY(1); transform-origin:top; }
  51%  { transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}

/* ─────────────────────────────────────────────────────
   10. PAGE HERO (about, services, contact)
───────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    130deg,
    rgba(7,10,27,0.9) 0%,
    rgba(27,43,75,0.82) 60%,
    rgba(7,10,27,0.88) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 0 80px;
  max-width: 680px;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--t); }
.page-hero-breadcrumb a:hover { color: var(--teal); }
.page-hero-breadcrumb i { font-size: 0.6rem; }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero .sub { color: rgba(255,255,255,0.68); max-width: 540px; }

/* ─────────────────────────────────────────────────────
   11. TRUST BAR
───────────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 18px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-logo {
  font-family: var(--fh);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--border-2);
  letter-spacing: 0.06em;
  transition: color var(--t);
  user-select: none;
}
.trust-logo:hover { color: var(--navy-4); }

/* ─────────────────────────────────────────────────────
   12. ABOUT PREVIEW SECTION (home page)
───────────────────────────────────────────────────── */
.about-preview-img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.img-wrap img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: var(--navy-4);
  border-radius: 0px;
  padding: 22px 26px;
  box-shadow: var(--sh-lg);
  min-width: 170px;
  z-index: 2;
}
.about-badge-num {
  font-family: var(--fh);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.about-badge-text { font-size: 0.8rem; color: rgba(255,255,255,0.62); margin-top: 4px; }

.about-corner {
  position: absolute;
  top: 0px; left: 0px;
  background: var(--teal);
  border-radius: 0px;
  padding: 11px 17px;
  font-family: var(--fh);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-2);
  box-shadow: var(--sh-teal);
  z-index: 2;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.about-stat-n {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy-4);
  line-height: 1;
}
.about-stat-n span { color: var(--teal); }
.about-stat-l { font-size: 0.8rem; color: var(--text-3); margin-top: 4px; }

/* ─────────────────────────────────────────────────────
   13. SERVICE CARDS
───────────────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--t);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0);
  transition: transform var(--t);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--sh-lg);
  transform: translateY(-6px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured {
  background: var(--navy-4);
  border-color: var(--navy-4);
}
.service-card.featured .service-title { color: var(--white); }
.service-card.featured .service-body { color: rgba(255,255,255,0.62); }
.service-card.featured .service-link { color: var(--teal); }

.service-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
  transition: transform var(--t);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.si-navy   { background: rgba(27,43,75,0.08); color: var(--navy-4); }
.si-teal   { background: rgba(4,217,171,0.1); color: var(--teal-d); }
.si-blue   { background: rgba(46,163,242,0.1); color: var(--blue); }
.si-gold   { background: rgba(245,166,35,0.1); color: #C98A18; }
.si-purple { background: rgba(147,143,172,0.12); color: var(--lavender); }
.si-white  { background: rgba(255,255,255,0.1); color: var(--teal); }

.service-title {
  font-family: var(--fh);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-body {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.72;
  margin-bottom: 20px;
}
.service-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy-4);
  display: inline-flex; align-items: center; gap: 6px;
  transition: all var(--t);
}
.service-link i { font-size: 0.75em; transition: transform var(--t); }
.service-card:hover .service-link i { transform: translateX(4px); }
.service-card:hover .service-link { color: var(--teal-d); }
.service-card.featured:hover .service-link { color: var(--white); }

/* ─────────────────────────────────────────────────────
   14. WHY CHOOSE US
───────────────────────────────────────────────────── */
.why-feature {
  display: flex;
  gap: 18px;
  padding: 20px 22px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: all var(--t);
  cursor: default;
}
.why-feature:hover {
  background: var(--bg);
  border-color: var(--border);
  transform: translateX(6px);
}
.why-feat-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.why-feat-title {
  font-family: var(--fh);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.why-feat-text { font-size: 0.87rem; color: var(--text-2); line-height: 1.65; }

.why-visual-box {
  background: linear-gradient(145deg, var(--navy-4), var(--slate));
  border-radius: var(--r-xl);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}
.why-visual-box::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(4,217,171,0.18), transparent 70%);
  pointer-events: none;
}
.why-box-title {
  font-family: var(--fh);
  font-size: 1.3rem; font-weight: 800;
  color: var(--white); margin-bottom: 28px;
}
.metric-row { display: flex; flex-direction: column; gap: 18px; }
.metric-item { display: flex; justify-content: space-between; align-items: center; }
.metric-label { font-size: 0.84rem; color: rgba(255,255,255,0.65); min-width: 120px; }
.metric-bar-bg {
  flex: 1; height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 14px;
  overflow: hidden;
}
.metric-bar-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transition: width 1.3s cubic-bezier(0.4,0,0.2,1) 0.4s;
}
.metric-val {
  font-family: var(--fh);
  font-size: 0.88rem; font-weight: 700;
  color: var(--teal); min-width: 38px; text-align: right;
}
.cert-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.cert-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 13px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--r-pill);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.75);
}
.cert-badge i { color: var(--gold); }

/* ─────────────────────────────────────────────────────
   15. PROCESS STEPS
───────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.process-connector {
  position: absolute;
  top: 27px;
  left: calc(12.5% + 27px);
  right: calc(12.5% + 27px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue) 50%, var(--gold));
  z-index: 0;
}
.process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 20px; position: relative; z-index: 1;
}
.process-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh);
  font-size: 1.05rem; font-weight: 800;
  color: var(--text-3);
  margin-bottom: 22px;
  transition: all var(--t);
  box-shadow: 0 0 0 7px var(--bg);
}
.process-step:hover .process-num {
  background: var(--navy-4);
  border-color: var(--navy-4);
  color: var(--teal);
  box-shadow: 0 0 0 7px var(--bg), var(--sh-md);
}
.process-step-title {
  font-family: var(--fh);
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.process-step-text { font-size: 0.84rem; color: var(--text-2); line-height: 1.65; }

/* ─────────────────────────────────────────────────────
   16. TESTIMONIALS
───────────────────────────────────────────────────── */
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--t);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(4,217,171,0.22);
  transform: translateY(-4px);
}
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.stars i { color: var(--gold); font-size: 0.88rem; }
.quote-text {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 22px;
  position: relative;
}
.quote-text::before {
  content: '\201C';
  font-size: 2.2rem;
  color: var(--teal);
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 3px;
}
.testimonial-author { display: flex; align-items: center; gap: 13px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh);
  font-weight: 800; font-size: 0.88rem;
  color: var(--navy-2); flex-shrink: 0;
}
.t-name { font-family: var(--fh); font-size: 0.9rem; font-weight: 700; color: var(--white); }
.t-role { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ─────────────────────────────────────────────────────
   17. CTA STRIP
───────────────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(130deg, var(--navy-4) 0%, var(--slate) 60%, #1A3A5C 100%);
  border-radius: var(--r-xl);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(4,217,171,0.18), transparent 70%);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -50px; left: 30%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(46,163,242,0.12), transparent 70%);
  pointer-events: none;
}
.cta-label {
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.cta-title {
  font-family: var(--fh);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-sub { font-size: 0.98rem; color: rgba(255,255,255,0.6); line-height: 1.72; max-width: 480px; }
.cta-actions {
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-end; flex-shrink: 0;
  position: relative; z-index: 1;
}
.cta-actions .btn { min-width: 210px; justify-content: center; }
.cta-note { font-size: 0.77rem; color: rgba(255,255,255,0.38); text-align: center; }
.cta-content { position: relative; z-index: 1; }

/* ─────────────────────────────────────────────────────
   18. ABOUT PAGE SECTIONS
───────────────────────────────────────────────────── */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: all var(--t);
  text-align: center;
}
.value-card:hover {
  border-color: var(--teal);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.value-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
}
.value-title {
  font-family: var(--fh);
  font-size: 1.05rem; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.value-text { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; }

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t);
}
.stat-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.stat-num {
  font-family: var(--fh);
  font-size: 2.8rem; font-weight: 900;
  color: var(--navy-4); line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--teal); }
.stat-label { font-size: 0.87rem; color: var(--text-3); line-height: 1.5; }

/* ─────────────────────────────────────────────────────
   19. SERVICES PAGE DETAILED CARDS
───────────────────────────────────────────────────── */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail-card:last-child { border-bottom: none; }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.service-detail-icon {
  width: 72px; height: 72px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
  transition: transform var(--t);
}
.service-detail-icon:hover { transform: scale(1.08) rotate(-5deg); }
.service-detail-title {
  font-family: var(--fh);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800; color: var(--text);
  margin-bottom: 14px; line-height: 1.2;
}
.service-detail-text {
  font-size: 0.96rem; color: var(--text-2);
  line-height: 1.75; margin-bottom: 24px;
}
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-2);
}
.feature-list li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(4,217,171,0.12);
  border: 1.5px solid rgba(4,217,171,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2304D9AB' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.service-visual-box {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.service-visual-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-sl);
}
.service-detail-card:hover .service-visual-box img { transform: scale(1.04); }
.service-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,10,27,0.5) 0%, transparent 50%);
}

/* Services overview grid */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}

/* ─────────────────────────────────────────────────────
   20. CONTACT PAGE
───────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-group label span { color: var(--teal-d); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-sm);
  font-family: var(--fb);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--teal-d);
  box-shadow: 0 0 0 3px rgba(4,217,171,0.12);
}
.form-control::placeholder { color: var(--text-4); }
textarea.form-control { resize: vertical; min-height: 130px; line-height: 1.6; }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7A8D' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}
.form-success i { font-size: 3rem; color: var(--teal); margin-bottom: 16px; display: block; }
.form-success h3 { font-size: 1.4rem; color: var(--text); margin-bottom: 10px; }
.form-success p { color: var(--text-2); }

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t);
}
.contact-info-card:hover { border-color: var(--teal); box-shadow: var(--sh-sm); }
.ci-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-title { font-family: var(--fh); font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ci-text  { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }

/* ─────────────────────────────────────────────────────
   21. FAQ
───────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item.open { border-color: var(--teal); box-shadow: var(--sh-sm); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--fh);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color var(--t);
}
.faq-btn:hover { color: var(--navy-4); }
.faq-item.open .faq-btn { color: var(--teal-d); }
.faq-btn-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--text-3);
  flex-shrink: 0;
  transition: all var(--t);
}
.faq-item.open .faq-btn-icon {
  background: var(--teal);
  color: var(--navy-2);
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}
.faq-item.open .faq-body { max-height: 300px; }
.faq-body-inner {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────────────
   22. SCROLL REVEAL ANIMATIONS
───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.up    { transform: translateY(30px); }
.reveal.left  { transform: translateX(-30px); }
.reveal.right { transform: translateX(30px); }
.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* ─────────────────────────────────────────────────────
   23. RESPONSIVE
───────────────────────────────────────────────────── */

/* Tablet landscape (≤ 1100px) */
@media (max-width: 1100px) {
  .grid-2 { gap: 44px; }
  .services-overview-grid { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-box { padding: 60px 48px; }
  .service-detail-card { grid-template-columns: 1fr 1fr; gap: 44px; }
}

/* Tablet portrait (≤ 900px) */
@media (max-width: 900px) {
  .section     { padding: 72px 0; }
  .section-lg  { padding: 96px 0; }

  .grid-2 { grid-template-columns: 1fr; gap: 52px; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }

  .hero-content-wrap { grid-template-columns: 1fr; text-align: center; padding: 130px 0 80px; }
  .hero-sub   { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust  { justify-content: center; }
  .hero-visual { display: none; }

  .about-badge  { bottom: -20px; right: -12px; }
  .about-corner { top: -14px; left: -14px; }

  .services-overview-grid { grid-template-columns: 1fr; }

  .service-detail-card { grid-template-columns: 1fr; gap: 36px; padding: 44px 0; }
  .service-detail-card.reverse { direction: ltr; }
  .service-visual-box { aspect-ratio: 16/7; }

  .process-grid { grid-template-columns: repeat(1,1fr); gap: 44px; }
  .process-connector { display: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .cta-box { grid-template-columns: 1fr; padding: 56px 40px; }
  .cta-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile landscape (≤ 700px) */
@media (max-width: 700px) {
  .nav-menu, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-drawer { display: block; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .about-stats-row { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .cta-box { padding: 48px 28px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
}

/* Mobile portrait (≤ 500px) */
@media (max-width: 500px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .heading { font-size: 1.6rem; }
  .heading-lg { font-size: 1.85rem; }
  .hero-title { font-size: 2rem; }
  .page-hero h1 { font-size: 2rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-logos { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}
