/* =============================================================
   ManSar Technologies LLP — Main Stylesheet
   Author: ManSar Technologies LLP
   Version: 2.0
   ============================================================= */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --navy:        #0D2B55;
  --navy-deep:   #0a2040;
  --navy-mid:    #133058;
  --blue:        #1A6EA8;
  --orange:      #E8611A;
  --orange-light:#ff7a35;
  --light-bg:    #F4F7FB;
  --mid-gray:    #C8D6E5;
  --text-dark:   #1a1a2e;
  --text-muted:  #5a6a82;
  --white:       #ffffff;

  --ff-head: 'Syne', sans-serif;
  --ff-body: 'DM Sans', sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in:  cubic-bezier(.4, 0, 1, 1);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-sm:  0 4px 16px rgba(13, 43, 85, .08);
  --shadow-md:  0 12px 40px rgba(13, 43, 85, .12);
  --shadow-lg:  0 24px 64px rgba(13, 43, 85, .16);

  --transition: all .3s var(--ease-out);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff-body); }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container     { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-pad   { padding: 96px 0; }
.text-center   { text-align: center; }
.flex-center   { display: flex; align-items: center; justify-content: center; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.tag::before { content: '— '; }

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title span { color: var(--orange); }

.section-body {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn .arrow { font-size: 18px; transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 97, 26, .35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .35);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .7);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ================================================================
   NAVIGATION
================================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: var(--transition);
}
#nav.scrolled {
  background: rgba(10, 32, 64, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, .25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 28px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .3px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
  letter-spacing: .3px;
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

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

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 32px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ================================================================
   HERO SECTION
================================================================ */
#hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(
    -52deg,
    transparent, transparent 60px,
    rgba(255, 255, 255, .025) 60px, rgba(255, 255, 255, .025) 61px
  );
  animation: bgSlide 30s linear infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 110, 168, .22) 0%, transparent 70%);
}
@keyframes bgSlide { to { transform: translateX(61px); } }

.hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-top: 220px solid var(--orange);
  border-left: 220px solid transparent;
  opacity: .1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(42px, 5.5vw, 70px);
  font-weight: 800;
  line-height: .96;
  color: var(--white);
  margin-bottom: 26px;
  letter-spacing: -1.5px;
}
.hero-h1 em { color: var(--orange); font-style: normal; }
.hero-h1 .line { display: block; overflow: hidden; }
.hero-h1 .line span {
  display: block;
  animation: slideUp .8s var(--ease-out) both;
}
.hero-h1 .line:nth-child(2) span { animation-delay: .12s; }
@keyframes slideUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, .62);
  line-height: 1.78;
  margin-bottom: 38px;
  max-width: 460px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 30px;
}
.hero-stat { padding-right: 28px; }
.hero-stat + .hero-stat {
  border-left: 1px solid rgba(255, 255, 255, .1);
  padding-left: 28px;
}
.hero-stat-n {
  font-family: var(--ff-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-l {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin-top: 4px;
}

/* hero right — mockup */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeInRight .9s .3s var(--ease-out) both;
}
@keyframes fadeInRight {
  from { transform: translateX(40px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
.mockup-frame {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.mockup-bar {
  background: rgba(255, 255, 255, .1);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-main img { width: 100%; display: block; }
.mockup-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mockup-pair .mockup-frame { border-radius: var(--radius-sm); }
.mockup-cta-card {
  background: rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 110px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
}
.mockup-cta-price {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  text-align: center;
}
.mockup-cta-label {
  font-size: 10px;
  color: rgba(255, 255, 255, .4);
  margin-top: 6px;
  letter-spacing: 1px;
  text-align: center;
}

/* ================================================================
   TICKER
================================================================ */
.ticker-wrap {
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 32px;
  flex-shrink: 0;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  flex-shrink: 0;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ================================================================
   ABOUT SECTION
================================================================ */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 80%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.about-badge-n {
  font-family: var(--ff-head);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}
.about-badge-l {
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
  opacity: .88;
}
.about-dots {
  position: absolute;
  top: -20px; left: -20px;
  width: 80px; height: 80px;
  background-image: radial-gradient(circle, var(--orange) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: .35;
}

.about-features {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-feat { display: flex; align-items: flex-start; gap: 14px; }
.feat-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(232, 97, 26, .1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.feat-text strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 2px;
}
.feat-text span { font-size: 13.5px; color: var(--text-muted); }

/* ================================================================
   SERVICES SECTION
================================================================ */
#services { background: var(--light-bg); }

.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-body { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  border: 1px solid rgba(13, 43, 85, .08);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-num {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.svc-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(13, 43, 85, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: background .25s;
}
.svc-card:hover .svc-icon-wrap { background: rgba(232, 97, 26, .1); }
.svc-title {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.svc-img {
  margin-top: 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.svc-img img {
  width: 100%;
  transition: transform .4s var(--ease-out);
}
.svc-card:hover .svc-img img { transform: scale(1.04); }

/* ================================================================
   PRODUCTS SECTION
================================================================ */
#products { background: var(--navy); }

.products-header { margin-bottom: 60px; }
.products-header .section-title { color: var(--white); }
.products-header .section-body  { color: rgba(255, 255, 255, .58); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.product-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .35s var(--ease-out);
}
.product-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-4px);
}
.product-card:hover::after { transform: scaleX(1); }

.product-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(232, 97, 26, .4);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.product-name {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.product-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 12px;
}
.product-body {
  font-size: 14px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.75;
}
.product-custom {
  border: 2px dashed rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  text-align: center;
  padding: 24px;
}
.product-custom-icon { font-size: 36px; margin-bottom: 12px; }
.product-custom-title {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.product-custom-body {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-bottom: 18px;
}

.software-img {
  margin-top: 44px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
}
.software-img img { width: 100%; }

/* ================================================================
   WHY CHOOSE US
================================================================ */
#why { background: var(--white); }

.why-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  padding: 34px 28px;
  border: 1px solid rgba(13, 43, 85, .09);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-num {
  font-family: var(--ff-head);
  font-size: 52px;
  font-weight: 800;
  color: rgba(13, 43, 85, .06);
  line-height: 1;
  margin-bottom: 14px;
  transition: color .3s;
}
.why-card:hover .why-num { color: rgba(232, 97, 26, .12); }
.why-icon { font-size: 26px; margin-bottom: 14px; }
.why-title {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-body { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ================================================================
   INDUSTRIES
================================================================ */
#industries { background: var(--light-bg); }

.industries-header { text-align: center; margin-bottom: 52px; }
.industries-header .section-body { margin: 0 auto; }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ind-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(13, 43, 85, .07);
  transition: var(--transition);
}
.ind-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--orange);
}
.ind-emoji { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.ind-name {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.ind-body { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ================================================================
   CLIENTS
================================================================ */
#clients { background: var(--navy); overflow: hidden; }

.clients-header { text-align: center; margin-bottom: 52px; }
.clients-header .section-title { color: var(--white); }
.clients-header .section-body  { color: rgba(255, 255, 255, .55); margin: 0 auto; }

.clients-img-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  padding: 36px;
}
.clients-img-wrap img { width: 100%; border-radius: var(--radius-sm); }

.clients-tagline {
  text-align: center;
  margin-top: 36px;
  font-family: var(--ff-head);
  font-size: 21px;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  font-style: italic;
}
.clients-tagline em { color: var(--orange); font-style: normal; }

/* ================================================================
   PORTFOLIO
================================================================ */
#portfolio { background: var(--white); }

.portfolio-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.port-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(13, 43, 85, .1);
  transition: var(--transition);
}
.port-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.port-img {
  overflow: hidden;
  position: relative;
}
.port-img img {
  width: 100%;
  display: block;
  transition: transform .5s var(--ease-out);
}
.port-card:hover .port-img img { transform: scale(1.06); }
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13, 43, 85, .8));
  opacity: 0;
  transition: opacity .3s;
}
.port-card:hover .port-overlay { opacity: 1; }
.port-info { padding: 22px 26px; }
.port-industry {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 7px;
}
.port-name {
  font-family: var(--ff-head);
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 9px;
}
.port-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.port-url {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
}

/* ================================================================
   CONTACT
================================================================ */
#contact { background: var(--light-bg); }

.contact-header { text-align: center; margin-bottom: 60px; }
.contact-header .section-body { margin: 0 auto; }

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

.form-title {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 15px;
  border: 1.5px solid rgba(13, 43, 85, .15);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
  resize: vertical;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea { min-height: 120px; }

.form-submit { width: 100%; justify-content: center; }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

.contact-info-title {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-info-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }

.info-items { display: flex; flex-direction: column; gap: 22px; }
.info-item  { display: flex; align-items: flex-start; gap: 14px; }
.info-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.info-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 3px;
}
.info-val { font-size: 14.5px; color: var(--text-dark); line-height: 1.6; }

.office-img {
  margin-top: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.office-img img { width: 100%; }

/* ================================================================
   FOOTER
================================================================ */
footer { background: var(--navy-deep); color: rgba(255, 255, 255, .58); }

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 68px 0 44px;
}
.footer-brand img {
  height: 26px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 13.5px; line-height: 1.8; max-width: 280px; }
.footer-tagline { color: var(--orange); font-size: 13px; font-weight: 500; margin-top: 8px; }

.footer-col-title {
  font-family: var(--ff-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .52);
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-address {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, .38);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: rgba(255, 255, 255, .38); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255, 255, 255, .75); }

/* ================================================================
   TOAST NOTIFICATION
================================================================ */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--orange);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px);
  opacity: 0;
  transition: all .4s var(--ease-out);
  z-index: 9999;
  max-width: 320px;
}
.toast.show { transform: none; opacity: 1; }

/* ================================================================
   BACK TO TOP
================================================================ */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), background .2s;
  z-index: 9998;
}
.back-to-top.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .hero-inner            { grid-template-columns: 1fr; padding: 120px 24px 60px; }
  .hero-right            { display: none; }
  .about-grid            { grid-template-columns: 1fr; gap: 56px; }
  .about-img-wrap        { max-width: 500px; }
  .why-intro-grid        { grid-template-columns: 1fr; gap: 0; margin-bottom: 40px; }
  .portfolio-intro       { grid-template-columns: 1fr; }
  .footer-main           { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .container             { padding: 0 20px; }
  .section-pad           { padding: 68px 0; }
  .nav-inner             { padding: 18px 24px; }
  .nav-links, .nav-cta   { display: none; }
  .nav-burger            { display: flex; }
  .services-grid         { grid-template-columns: 1fr; }
  .products-grid         { grid-template-columns: 1fr; }
  .why-grid              { grid-template-columns: 1fr; }
  .ind-grid              { grid-template-columns: 1fr 1fr; }
  .portfolio-grid        { grid-template-columns: 1fr; }
  .contact-grid          { grid-template-columns: 1fr; gap: 48px; }
  .footer-main           { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom         { flex-direction: column; gap: 12px; text-align: center; }
  .form-row              { grid-template-columns: 1fr; gap: 0; }
  .hero-stats            { grid-template-columns: 1fr; gap: 20px; }
  .hero-stat + .hero-stat{ border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding-left: 0; padding-top: 20px; }
}

@media (max-width: 480px) {
  .ind-grid              { grid-template-columns: 1fr; }
  .hero-h1               { font-size: 38px; }
  .hero-buttons          { flex-direction: column; align-items: flex-start; }
  .about-badge           { right: 0; bottom: -56px; }
  .clients-img-wrap      { padding: 20px; }
  .back-to-top           { right: 16px; bottom: 16px; }
}
