/* =============================================
   SKILLCREW GROUP — PREMIUM WEBSITE STYLES
   ============================================= */

:root {
  --navy-950: #04101E;
  --navy-900: #060D1A;
  --navy-800: #0A1628;
  --navy-700: #0F2040;
  --navy-600: #1B3A5C;
  --navy-500: #2D5A8E;
  --gold-dark: #9A7B20;
  --gold: #C9A84C;
  --gold-light: #E8C56A;
  --gold-xlight: #F5E0A0;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --sh-sm: 0 2px 8px rgba(0,0,0,.08);
  --sh-md: 0 4px 16px rgba(0,0,0,.12);
  --sh-lg: 0 8px 32px rgba(0,0,0,.16);
  --sh-xl: 0 16px 56px rgba(0,0,0,.22);
  --sh-gold: 0 4px 24px rgba(201,168,76,.35);
  --r-sm: 4px; --r-md: 8px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;
  --tr: all .3s ease;
  --tr-fast: all .15s ease;
  --tr-slow: all .5s ease;
  --nav-h: 80px;
  --max-w: 1280px;
  --pad: clamp(16px, 3vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--tr); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); font-size: 1rem; }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--navy-800); }
p { line-height: 1.8; color: var(--gray-600); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.tag {
  display: inline-block; font-size: .8125rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; font-family: var(--font-head);
}
.section-title { margin-bottom: 16px; }
.section-title span { color: var(--gold); }
.section-sub { max-width: 600px; margin: 0 auto; color: var(--gray-600); font-size: 1.1rem; }

.bg-dark { background: var(--navy-800); }
.bg-navy { background: var(--navy-700); }
.bg-light { background: var(--gray-50); }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-size: .9375rem; font-weight: 600;
  font-family: var(--font-head); border-radius: var(--r-full);
  transition: var(--tr); cursor: pointer; border: 2px solid transparent;
  letter-spacing: .02em; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-800); box-shadow: var(--sh-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(201,168,76,.55); }
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-3px); }
.btn-dark { background: var(--navy-800); color: var(--white); }
.btn-dark:hover { background: var(--navy-600); transform: translateY(-3px); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-800); transform: translateY(-3px); }
.btn-lg { padding: 18px 42px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: .875rem; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); transition: var(--tr); background: transparent;
}
.navbar.scrolled {
  background: rgba(10,22,40,.97); backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.navbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--r-md); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-head); font-weight: 900;
  font-size: 1.2rem; color: var(--navy-800); flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--white); letter-spacing: -.02em; }
.nav-logo-sub { font-size: .6rem; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px; padding: 8px 14px;
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.82);
  border-radius: var(--r-sm); transition: var(--tr); font-family: var(--font-head);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link .chev { font-size: .6rem; transition: transform .3s; }
.nav-item:hover .nav-link .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--navy-800); border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--r-md); padding: 8px; min-width: 230px;
  opacity: 0; visibility: hidden; transition: var(--tr); box-shadow: var(--sh-xl);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  color: rgba(255,255,255,.75); font-size: .875rem; font-weight: 500;
  border-radius: var(--r-sm); transition: var(--tr);
}
.dropdown a:hover { background: rgba(201,168,76,.1); color: var(--gold); padding-left: 20px; }
.dropdown a i { width: 18px; text-align: center; color: var(--gold); font-size: .875rem; }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 16px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--tr); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 7px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }

.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--navy-800); padding: 12px 16px 20px;
  transform: translateY(-4px); opacity: 0; visibility: hidden;
  transition: var(--tr); border-bottom: 2px solid rgba(201,168,76,.2);
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu .nav-link { display: flex; padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.05); border-radius: 0; font-size: .9375rem; color: rgba(255,255,255,.85); }
.mobile-menu .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; margin: 4px 0 8px 16px; min-width: auto; border-color: rgba(255,255,255,.06); background: rgba(255,255,255,.03); }
.mobile-menu .nav-actions { display: flex; padding: 16px 8px 0; gap: 10px; flex-wrap: wrap; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; position: relative; display: flex;
  align-items: center; overflow: hidden;
  background: var(--navy-900);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(27,58,92,.85) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(201,168,76,.08) 0%, transparent 50%),
    linear-gradient(160deg, #060D1A 0%, #0A1628 50%, #0A2040 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; opacity: .025;
  background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 65%);
  top: -150px; right: -150px; pointer-events: none;
}
.hero-glow2 {
  position: absolute; width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,58,92,.7) 0%, transparent 70%);
  bottom: -50px; left: -50px; pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.28);
  border-radius: var(--r-full); padding: 8px 20px; margin-bottom: 28px;
  animation: fadeDown .6s ease forwards;
}
.hero-badge span { font-size: .8rem; font-weight: 700; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-head); }
.hero-badge i { color: var(--gold); font-size: .7rem; }

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5.2rem); font-weight: 900;
  color: var(--white); line-height: 1.05; letter-spacing: -.035em;
  margin-bottom: 24px;
  animation: fadeUp .6s ease .1s forwards; opacity: 0;
}
.hero-title .accent { color: var(--gold); position: relative; }
.hero-title .accent::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(255,255,255,.68);
  margin-bottom: 40px; max-width: 560px; line-height: 1.85;
  animation: fadeUp .6s ease .2s forwards; opacity: 0;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; animation: fadeUp .6s ease .3s forwards; opacity: 0; }
.hero-stats { display: flex; gap: 0; animation: fadeUp .6s ease .4s forwards; opacity: 0; }
.hero-stat { padding: 0 32px 0 0; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,.12); padding-left: 32px; }
.stat-num { font-family: var(--font-head); font-weight: 900; font-size: 2.4rem; color: var(--white); line-height: 1; display: block; }
.stat-num em { color: var(--gold); font-style: normal; }
.stat-lbl { font-size: .75rem; color: rgba(255,255,255,.45); font-weight: 600; letter-spacing: .07em; text-transform: uppercase; margin-top: 3px; display: block; }

.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  animation: fadeRight .8s ease .3s forwards; opacity: 0;
}
.hero-card-stack { position: relative; width: 100%; max-width: 460px; }
.hero-main-card {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  border-radius: var(--r-xl); padding: 40px; border: 1px solid rgba(201,168,76,.12);
  box-shadow: var(--sh-xl);
}
.hero-main-card .card-icon {
  width: 64px; height: 64px; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.hero-main-card .card-icon i { font-size: 1.75rem; color: var(--navy-800); }
.hero-main-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.hero-main-card p { color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 24px; }
.hero-main-card .card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-main-card .card-tag {
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2);
  color: var(--gold-light); padding: 5px 14px; border-radius: var(--r-full);
  font-size: .78rem; font-weight: 600; font-family: var(--font-head);
}
.hero-float-card {
  position: absolute; background: var(--white); border-radius: var(--r-lg);
  padding: 16px 20px; box-shadow: var(--sh-xl); display: flex; align-items: center; gap: 12px;
}
.hero-float-card-1 { top: -20px; right: -30px; }
.hero-float-card-2 { bottom: 20px; left: -30px; }
.float-icon { width: 40px; height: 40px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-icon.gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.float-icon.navy { background: linear-gradient(135deg, var(--navy-700), var(--navy-600)); }
.float-icon i { font-size: 1rem; }
.float-icon.gold i { color: var(--navy-800); }
.float-icon.navy i { color: var(--gold); }
.float-info .num { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--navy-800); line-height: 1; }
.float-info .lbl { font-size: .7rem; color: var(--gray-500); font-weight: 500; margin-top: 1px; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.35); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; animation: bounce 2.5s infinite;
}
.hero-scroll i { font-size: 1.1rem; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 0; overflow: hidden;
}
.stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-bar-item { padding: 28px 20px; text-align: center; position: relative; }
.stat-bar-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: rgba(10,22,40,.15);
}
.stat-bar-num { font-family: var(--font-head); font-weight: 900; font-size: 2.2rem; color: var(--navy-800); display: block; line-height: 1; }
.stat-bar-lbl { font-size: .78rem; font-weight: 700; color: rgba(10,22,40,.65); text-transform: uppercase; letter-spacing: .09em; margin-top: 4px; }

/* ---- ABOUT ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--r-xl);
  background: linear-gradient(145deg, var(--navy-600), var(--navy-800));
  overflow: hidden; box-shadow: var(--sh-xl); position: relative;
  display: flex; align-items: center; justify-content: center;
}
.about-img-main .img-inner {
  text-align: center; padding: 40px;
}
.about-img-main .img-inner i { font-size: 5rem; color: rgba(201,168,76,.25); display: block; margin-bottom: 20px; }
.about-img-main .img-inner p { color: rgba(255,255,255,.35); font-size: .875rem; }

.about-accent { position: absolute; width: 180px; height: 180px; border-radius: var(--r-xl); background: linear-gradient(135deg, var(--gold), var(--gold-light)); bottom: -24px; right: -24px; z-index: -1; }
.about-badge {
  position: absolute; top: 30px; right: -20px;
  background: var(--navy-800); border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--r-lg); padding: 20px 24px; text-align: center;
  box-shadow: var(--sh-lg); z-index: 2;
}
.about-badge .num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.about-badge .lbl { font-size: .7rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin-top: 4px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.about-feat { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 600; color: var(--navy-700); }
.about-feat i { width: 30px; height: 30px; background: rgba(201,168,76,.12); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; flex-shrink: 0; }

/* ---- SERVICES ---- */
.services-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 48px; flex-wrap: wrap; }
.s-tab {
  padding: 11px 26px; border-radius: var(--r-full); font-size: .875rem; font-weight: 700;
  font-family: var(--font-head); border: 2px solid var(--gray-200);
  color: var(--gray-600); transition: var(--tr); cursor: pointer; background: var(--white);
}
.s-tab:hover, .s-tab.active { border-color: var(--navy-600); background: var(--navy-600); color: var(--white); }

.s-panel { display: none; }
.s-panel.active { display: block; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.service-card {
  background: var(--white); border-radius: var(--r-lg); padding: 30px;
  border: 1px solid var(--gray-200); transition: var(--tr-slow);
  position: relative; overflow: hidden; cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform .45s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); border-color: rgba(201,168,76,.25); }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon {
  width: 58px; height: 58px; background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: var(--tr);
}
.sc-icon i { font-size: 1.4rem; color: var(--gold); transition: var(--tr); }
.service-card:hover .sc-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.service-card:hover .sc-icon i { color: var(--navy-800); }
.service-card h4 { margin-bottom: 10px; font-size: 1.05rem; }
.service-card p { font-size: .875rem; line-height: 1.7; }

/* ---- INDUSTRIES ---- */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-card {
  background: var(--navy-700); border-radius: var(--r-lg); padding: 32px 20px;
  text-align: center; border: 1px solid rgba(255,255,255,.05);
  transition: var(--tr-slow); cursor: default; position: relative; overflow: hidden;
}
.industry-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.07), rgba(201,168,76,.02));
  opacity: 0; transition: var(--tr);
}
.industry-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,.3); box-shadow: 0 20px 48px rgba(0,0,0,.35); }
.industry-card:hover::before { opacity: 1; }
.ind-icon {
  width: 62px; height: 62px; background: rgba(201,168,76,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: var(--tr);
}
.ind-icon i { font-size: 1.45rem; color: var(--gold); }
.industry-card:hover .ind-icon { background: var(--gold); }
.industry-card:hover .ind-icon i { color: var(--navy-800); }
.industry-card h4 { color: var(--white); font-size: .95rem; font-weight: 600; }

/* ---- WHY CHOOSE US ---- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg); padding: 30px 22px; text-align: center; transition: var(--tr-slow);
}
.why-card:hover { background: rgba(201,168,76,.07); border-color: rgba(201,168,76,.28); transform: translateY(-6px); }
.why-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  box-shadow: var(--sh-gold);
}
.why-icon i { font-size: 1.45rem; color: var(--navy-800); }
.why-card h4 { color: var(--white); font-size: .95rem; margin-bottom: 8px; }
.why-card p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ---- TESTIMONIALS ---- */
.testi-wrap { overflow: hidden; }
.testi-track { display: flex; gap: 22px; transition: transform .55s ease; }
.testi-card {
  background: var(--white); border-radius: var(--r-lg); padding: 34px;
  border: 1px solid var(--gray-200); min-width: calc(33.333% - 15px); flex-shrink: 0;
  box-shadow: var(--sh-sm); transition: var(--tr); position: relative;
}
.testi-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.testi-card::after {
  content: '\201C'; position: absolute; top: 20px; right: 28px;
  font-size: 5rem; color: var(--gold); opacity: .12; font-family: Georgia,serif; line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars i { color: var(--gold); font-size: .875rem; }
.testi-text { font-size: .9375rem; color: var(--gray-700); line-height: 1.85; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--gold);
}
.testi-name { font-size: .9rem; font-weight: 700; color: var(--navy-800); }
.testi-role { font-size: .78rem; color: var(--gray-500); }

.slider-ctrl { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 38px; }
.s-btn {
  width: 42px; height: 42px; border-radius: 50%; background: var(--white);
  border: 2px solid var(--gray-200); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--tr); color: var(--navy-800);
}
.s-btn:hover { background: var(--navy-800); border-color: var(--navy-800); color: var(--white); }
.s-dots { display: flex; gap: 7px; }
.s-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-300); cursor: pointer; transition: var(--tr); }
.s-dot.active { width: 24px; border-radius: 4px; background: var(--gold); }

/* ---- QUICK QUOTE ---- */
.quick-quote { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); padding: 56px 0; }
.qq-inner { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.qq-text { flex: 1; min-width: 240px; }
.qq-text h3 { color: var(--navy-800); font-size: 1.75rem; margin-bottom: 6px; }
.qq-text p { color: rgba(10,22,40,.6); }
.qq-form { flex: 2; display: flex; gap: 10px; flex-wrap: wrap; }
.qq-form input, .qq-form select {
  flex: 1; min-width: 140px; padding: 14px 18px;
  border: none; border-radius: var(--r-full); font-size: .9375rem;
  background: rgba(255,255,255,.88); color: var(--navy-800); outline: none; transition: var(--tr);
}
.qq-form input:focus, .qq-form select:focus { background: var(--white); box-shadow: 0 0 0 3px rgba(10,22,40,.12); }

/* ---- CTA SECTION ---- */
.cta-sec {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; top: -40%; right: -8%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,168,76,.09) 0%, transparent 70%);
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { color: var(--white); font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.6); font-size: 1.1rem; margin-bottom: 38px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.ci-icon {
  width: 48px; height: 48px; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: var(--sh-gold);
}
.ci-icon i { color: var(--navy-800); font-size: 1rem; }
.ci-body h4 { font-size: .95rem; margin-bottom: 3px; }
.ci-body p, .ci-body a { color: var(--gray-600); font-size: .9375rem; line-height: 1.55; }
.ci-body a:hover { color: var(--gold); }

.contact-form-box {
  background: var(--white); border-radius: var(--r-xl); padding: 44px;
  box-shadow: var(--sh-lg); border: 1px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .84rem; font-weight: 700; color: var(--navy-700); margin-bottom: 7px; font-family: var(--font-head); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200);
  border-radius: var(--r-md); font-size: .9375rem; color: var(--gray-800);
  transition: var(--tr); outline: none; background: var(--gray-50);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy-500); background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,90,142,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg { display: none; padding: 14px 18px; border-radius: var(--r-md); font-size: .9rem; font-weight: 600; margin-top: 10px; }
.form-msg.success { background: rgba(46,204,113,.1); color: #1a7a44; border: 1px solid rgba(46,204,113,.3); display: block; }
.form-msg.error { background: rgba(231,76,60,.1); color: #c0392b; border: 1px solid rgba(231,76,60,.3); display: block; }

/* ---- MAP ---- */
.map-wrap { width: 100%; height: 400px; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 3px solid var(--gray-100); margin-top: 60px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ---- FOOTER ---- */
.footer { background: var(--navy-900); color: var(--white); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand p { color: rgba(255,255,255,.48); font-size: .9rem; line-height: 1.85; margin: 18px 0 26px; }
.footer-social { display: flex; gap: 10px; }
.soc-link {
  width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: .875rem; transition: var(--tr);
}
.soc-link:hover { background: var(--gold); color: var(--navy-800); transform: translateY(-3px); }
.footer-head { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  color: rgba(255,255,255,.48); font-size: .875rem; transition: var(--tr);
  display: flex; align-items: center; gap: 5px;
}
.footer-links a::before { content: '›'; color: var(--gold); opacity: 0; transition: var(--tr); margin-right: -5px; }
.footer-links a:hover { color: var(--white); padding-left: 8px; }
.footer-links a:hover::before { opacity: 1; }
.footer-ci { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; color: rgba(255,255,255,.48); font-size: .85rem; }
.footer-ci i { color: var(--gold); font-size: .8rem; margin-top: 3px; flex-shrink: 0; }
.footer-ci a { color: rgba(255,255,255,.48); }
.footer-ci a:hover { color: var(--gold); }
.footer-bottom {
  padding: 22px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .8rem; }
.footer-bl { display: flex; gap: 20px; }
.footer-bl a { color: rgba(255,255,255,.3); font-size: .8rem; transition: var(--tr); }
.footer-bl a:hover { color: var(--gold); }

/* ---- FLOATING ELEMENTS ---- */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-btn {
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.5); cursor: pointer; transition: var(--tr);
  text-decoration: none; animation: waPulse 2.2s infinite;
}
.wa-btn i { color: var(--white); font-size: 1.55rem; }
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.65); }
.wa-tip {
  background: var(--navy-800); color: var(--white); padding: 7px 14px;
  border-radius: var(--r-full); font-size: .78rem; font-weight: 600;
  white-space: nowrap; opacity: 0; transform: translateX(10px); transition: var(--tr);
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }

.back-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 999;
  width: 42px; height: 42px; background: var(--navy-600); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer; transition: var(--tr);
  opacity: 0; visibility: hidden; box-shadow: var(--sh-md);
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--gold); color: var(--navy-800); transform: translateY(-3px); }

/* ---- LIVE CHAT ---- */
.live-chat {
  position: fixed; bottom: 96px; left: 28px; z-index: 999;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  color: var(--white); padding: 11px 18px; border-radius: var(--r-full);
  display: flex; align-items: center; gap: 8px; font-size: .84rem;
  font-weight: 700; font-family: var(--font-head); box-shadow: var(--sh-lg);
  cursor: pointer; transition: var(--tr); text-decoration: none;
}
.live-chat:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy-800); transform: translateY(-3px); }
.live-chat .pulse { width: 8px; height: 8px; background: #2ecc71; border-radius: 50%; animation: waPulse 2s infinite; }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.72); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: var(--tr); backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white); border-radius: var(--r-xl); width: 100%;
  max-width: 560px; max-height: 90vh; overflow-y: auto;
  transform: scale(.9) translateY(20px); transition: var(--tr);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-header { background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); padding: 30px 36px; border-radius: var(--r-xl) var(--r-xl) 0 0; position: relative; }
.modal-header h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.modal-header p { color: rgba(255,255,255,.55); font-size: .875rem; }
.modal-close {
  position: absolute; top: 18px; right: 18px; width: 34px; height: 34px;
  background: rgba(255,255,255,.1); border-radius: 50%; display: flex;
  align-items: center; justify-content: center; cursor: pointer; color: var(--white);
  font-size: .9rem; transition: var(--tr); border: none;
}
.modal-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }
.modal-body { padding: 30px 36px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  padding: 160px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; font-size: .8rem; color: rgba(255,255,255,.45); }
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep, .breadcrumb .cur { color: var(--gold); }
.breadcrumb .cur { font-weight: 600; }
.page-hero h1 { color: var(--white); font-size: clamp(2.4rem, 4vw, 3.4rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.62); font-size: 1.05rem; max-width: 580px; }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gray-200); transition: var(--tr-slow); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.blog-img { width: 100%; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--navy-600), var(--navy-800)); position: relative; display: flex; align-items: center; justify-content: center; }
.blog-img i { font-size: 3rem; color: rgba(255,255,255,.18); }
.blog-cat { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy-800); padding: 4px 12px; border-radius: var(--r-full); font-size: .72rem; font-weight: 800; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em; }
.blog-body { padding: 26px; }
.blog-meta { display: flex; gap: 14px; margin-bottom: 10px; font-size: .78rem; color: var(--gray-500); }
.blog-meta i { color: var(--gold); font-size: .72rem; }
.blog-card h4 { font-size: 1rem; line-height: 1.45; margin-bottom: 8px; color: var(--navy-800); transition: var(--tr); }
.blog-card:hover h4 { color: var(--gold); }
.blog-card p { font-size: .85rem; color: var(--gray-500); margin-bottom: 18px; line-height: 1.7; }
.blog-link { display: inline-flex; align-items: center; gap: 6px; color: var(--navy-600); font-size: .85rem; font-weight: 700; font-family: var(--font-head); transition: var(--tr); }
.blog-link:hover { color: var(--gold); gap: 10px; }

/* ---- SERVICES PAGE DETAIL ---- */
.svc-cat { margin-bottom: 58px; }
.svc-cat-header { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 2px solid var(--gray-100); }
.svc-cat-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-cat-icon i { font-size: 1.2rem; color: var(--gold); }
.svc-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.svc-li { display: flex; align-items: center; gap: 10px; padding: 15px 18px; background: var(--gray-50); border-radius: var(--r-md); border: 1px solid var(--gray-100); transition: var(--tr); }
.svc-li:hover { background: var(--white); border-color: var(--gold); box-shadow: var(--sh-md); transform: translateY(-3px); }
.svc-li i { color: var(--gold); font-size: .95rem; flex-shrink: 0; }
.svc-li span { font-size: .875rem; font-weight: 600; color: var(--navy-700); }

/* ---- SCROLL ANIMATIONS ---- */
[data-anim] { opacity: 0; transition: opacity .65s ease, transform .65s ease; }
[data-anim].visible { opacity: 1; transform: none !important; }
[data-anim="up"] { transform: translateY(36px); }
[data-anim="right"] { transform: translateX(-36px); }
[data-anim="left"] { transform: translateX(36px); }
[data-anim="zoom"] { transform: scale(.92); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(36px); } to { opacity: 1; transform: translateX(0); } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); } 70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-content { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section { padding: 68px 0; }
  .nav-menu, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-bar-item:nth-child(2)::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 26px 20px; }
  .blog-grid { grid-template-columns: 1fr; }
  .qq-inner { flex-direction: column; gap: 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr; }
  .stat-bar-item::after { display: none !important; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-stats { gap: 0; flex-direction: column; }
  .hero-stat + .hero-stat { border-left: none; border-top: 1px solid rgba(255,255,255,.12); padding-left: 0; padding-top: 14px; margin-top: 14px; }
}

/* ---- CLIENTS MARQUEE ---- */
.clients-section {
  padding: 48px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  width: 100%;
}
.clients-section .section-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 28px;
  font-family: var(--font-head);
}
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track {
  display: block;
  white-space: nowrap;
  font-size: 0;
  line-height: 0;
  -webkit-animation: marqueeScroll 30s linear infinite;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}
.marquee-track:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.marquee-logo {
  display: inline-block;
  vertical-align: middle;
  width: 160px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  padding: 0 24px;
  -webkit-filter: grayscale(100%) opacity(0.5);
  filter: grayscale(100%) opacity(0.5);
  -webkit-transition: filter .3s ease, -webkit-transform .3s ease;
  transition: filter .3s ease, transform .3s ease;
  cursor: default;
}
.marquee-logo:hover {
  -webkit-filter: grayscale(0%) opacity(1);
  filter: grayscale(0%) opacity(1);
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.marquee-logo img {
  display: inline-block;
  vertical-align: middle;
  max-height: 54px;
  max-width: 112px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@-webkit-keyframes marqueeScroll {
  from { -webkit-transform: translateX(0); }
  to   { -webkit-transform: translateX(-50%); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
