/* =========================================================
   String IT Solution — Main Stylesheet
   Theme colors extracted from the company profile (Canva deck)
   ========================================================= */

:root {
  --navy-deep: #0c0f27;
  --navy: #161a3f;
  --purple-deep: #2a1454;
  --purple: #331a52;
  --purple-mid: #3a1f6b;
  --bg-gradient: linear-gradient(135deg, #1b1042 0%, #1a2660 45%, #34195a 100%);
  --bg-gradient-alt: linear-gradient(160deg, #140f2e 0%, #241454 60%, #1a2660 100%);
  --accent-purple: #7b5cf0;
  --accent-purple-dark: #5a46bd;
  --accent-teal: #2fd9c4;
  --accent-gradient: linear-gradient(90deg, #7b5cf0 0%, #2fd9c4 100%);
  --text-light: #f6f6fb;
  --text-muted: #b9b8d6;
  --text-dim: #8d8cb0;
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.09);
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-lg: 0 20px 60px rgba(10, 8, 30, 0.45);
  --shadow-md: 0 10px 30px rgba(10, 8, 30, 0.35);
  --container-w: 1200px;
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h2 span, h1 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

p { color: var(--text-muted); }

/* ---------- Page Loader ---------- */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 42px; height: 42px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--accent-teal);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-gradient);
  color: #0c0f27;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(123, 92, 240, 0.4); }
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--accent-teal); color: var(--accent-teal); transform: translateY(-3px); }
.btn-lg { padding: 16px 38px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(12, 15, 39, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.brand-logo { height: 38px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  font-size: 15px; font-weight: 500; color: var(--text-light);
  position: relative; padding: 6px 20px; opacity: .85;
  transition: opacity .2s ease, color .2s ease;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--accent-gradient);
  transition: width .25s ease;
}
.main-nav a:hover, .main-nav a.active { opacity: 1; color: var(--accent-teal); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.nav-cta { padding: 11px 24px; font-size: 14px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  z-index: 1100;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 999; opacity: 0; visibility: hidden; transition: opacity .3s ease;
}
.nav-overlay.show { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,8,28,0.92) 0%, rgba(15,12,40,0.75) 45%, rgba(26,18,60,0.55) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 90px; max-width: 720px; }
.eyebrow {
  color: var(--accent-teal); font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; font-size: 13px; margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 14px;
}
.hero-sub {
  font-size: clamp(18px, 2.4vw, 24px); font-weight: 600;
  color: var(--white); margin-bottom: 18px;
}
.hero-desc { font-size: 16px; max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-cue span {
  display: block; width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px; position: relative;
}
.scroll-cue span::before {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--accent-teal); border-radius: 2px;
  animation: scrollDot 1.6s ease infinite;
}
@keyframes scrollDot { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 18px; } }

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--purple-deep);
  padding: 44px 0;
  position: relative;
  z-index: 3;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stat strong {
  display: block; font-family: var(--font-head); font-size: 34px; font-weight: 800;
  background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat span { font-size: 14px; color: var(--text-muted); }

/* ---------- Sections ---------- */
.section { padding: 100px 0; position: relative; }
.section-heading { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.tag {
  color: var(--accent-teal); text-transform: uppercase; letter-spacing: 1.5px;
  font-size: 13px; font-weight: 700; margin-bottom: 12px;
}
.section-heading h2, .about-preview-text h2, .why-text h2, .mv-card h3 { font-size: clamp(26px, 3.6vw, 40px); }

.about-preview { background: var(--bg-gradient); }
.about-preview-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center;
}
.about-preview-img { position: relative; }
.about-preview-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.img-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--accent-gradient); color: #0c0f27; font-weight: 700;
  padding: 12px 22px; border-radius: 50px; font-size: 14px; box-shadow: var(--shadow-md);
}
.about-preview-text p { margin-bottom: 16px; font-size: 15.5px; }
.about-preview-text h2 { margin-bottom: 18px; }
.about-preview-text .btn { margin-top: 10px; }

/* ---------- Services ---------- */
.services-preview { background: var(--navy-deep); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(123,92,240,0.5); }
.service-card-img { height: 190px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 20px; margin-bottom: 10px; }
.service-card-body p { font-size: 14.5px; flex: 1; }
.card-link { color: var(--accent-teal); font-weight: 600; font-size: 14px; margin-top: 14px; }
.services-note { text-align: center; margin-top: 50px; font-size: 16px; color: var(--text-light); opacity: .85; }

/* ---------- Why Us ---------- */
.why-us { background: var(--bg-gradient-alt); }
.why-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
.why-text h2 { margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 26px; }
.why-list li { display: flex; gap: 20px; }
.why-num {
  font-family: var(--font-head); font-weight: 800; font-size: 22px;
  color: var(--accent-purple); opacity: .7; min-width: 40px;
}
.why-list h4 { font-size: 17px; margin-bottom: 6px; color: var(--white); }
.why-list p { font-size: 14.5px; }

.why-visual { display: flex; flex-direction: column; gap: 20px; }
.why-card {
  padding: 30px; border-radius: var(--radius);
  border: 1px solid var(--card-border);
}
.why-card h3 { font-size: 19px; margin-bottom: 8px; }
.why-card p { font-size: 14px; }
.card-1 { background: linear-gradient(120deg, rgba(123,92,240,0.25), rgba(123,92,240,0.05)); margin-left: 40px; }
.card-2 { background: linear-gradient(120deg, rgba(47,217,196,0.2), rgba(47,217,196,0.05)); }
.card-3 { background: linear-gradient(120deg, rgba(123,92,240,0.2), rgba(47,217,196,0.08)); margin-left: 40px; }

/* ---------- Mission / Vision ---------- */
.mission-vision { background: var(--navy-deep); }
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mv-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 40px 32px; text-align: center;
  transition: transform .3s ease;
}
.mv-card:hover { transform: translateY(-6px); }
.mv-icon { font-size: 34px; margin-bottom: 18px; }
.mv-card h3 { font-size: 21px; margin-bottom: 12px; }
.mv-card p { font-size: 14.5px; }

/* ---------- Customers ---------- */
.customers { background: var(--bg-gradient); text-align: center; }
.customers-strip img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg);
}

/* ---------- Global Presence / Offices ---------- */
.section-sub { font-size: 15.5px; margin-top: 6px; }
.global-presence { background: var(--navy-deep); }
.offices-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.office-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.office-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(47,217,196,0.5); }
.office-flag { font-size: 32px; line-height: 1; margin-bottom: 6px; }
.office-card h3 { font-size: 18px; }
.office-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); }
.office-phone { font-size: 15.5px; font-weight: 600; color: var(--accent-teal); margin-top: 6px; }

/* ---------- Contact page regional numbers ---------- */
.regional-tag { margin-top: 34px; margin-bottom: 14px; }
.regional-numbers {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px;
}
.regional-numbers li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04); border: 1px solid var(--card-border);
}
.rn-flag { font-size: 20px; }
.rn-country { flex: 1; font-size: 14.5px; color: var(--text-light); font-weight: 500; }
.rn-phone { font-size: 14.5px; font-weight: 600; color: var(--accent-teal); }
.rn-phone:hover { text-decoration: underline; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--accent-purple-dark), #241454 60%, #14213f);
  padding: 80px 0;
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 14px; }
.cta-inner p { margin-bottom: 30px; font-size: 16px; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 160px 0 70px;
  background: var(--bg-gradient);
  text-align: center;
  position: relative;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 12px; }
.page-hero-sub { font-size: 16px; max-width: 560px; margin: 0 auto; }
.error-page { min-height: 60vh; display: flex; align-items: center; }
.error-page .btn { margin-top: 24px; }

/* ---------- Services detail page ---------- */
.services-detail { background: var(--navy-deep); }
.service-quick-nav {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-bottom: 70px;
}
.service-quick-nav a {
  padding: 10px 20px; border-radius: 50px; font-size: 14px; font-weight: 600;
  border: 1px solid var(--card-border); color: var(--text-muted);
  transition: all .25s ease;
}
.service-quick-nav a:hover { border-color: var(--accent-teal); color: var(--accent-teal); }

.service-block {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center;
  margin-bottom: 90px; scroll-margin-top: 100px;
}
.service-block:last-child { margin-bottom: 0; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.service-index {
  display: block; font-family: var(--font-head); font-weight: 800; font-size: 15px;
  color: var(--accent-teal); letter-spacing: 2px; margin-bottom: 10px;
}
.service-block-text h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.service-block-text p { margin-bottom: 24px; font-size: 15px; }

/* ---------- Team ---------- */
.team-section { background: var(--bg-gradient-alt); }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.team-card {
  background: linear-gradient(160deg, rgba(123,92,240,0.18), rgba(255,255,255,0.03));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-photo {
  height: 260px;
  background: linear-gradient(160deg, var(--accent-purple-dark), var(--purple-deep));
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.team-photo img { max-height: 100%; width: auto; object-fit: contain; }
.team-info { padding: 24px 20px 28px; }
.team-info h3 { font-size: 18px; margin-bottom: 4px; }
.team-role { color: var(--accent-teal); font-size: 13.5px; font-weight: 600; margin-bottom: 10px; }
.team-email { font-size: 13px; color: var(--text-dim); word-break: break-all; }
.team-email:hover { color: var(--accent-teal); }

/* ---------- Contact ---------- */
.contact-section { background: var(--navy-deep); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.contact-info h2 { margin-bottom: 30px; }
.contact-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 18px; align-items: flex-start; }
.cico {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(123,92,240,0.15); border: 1px solid rgba(123,92,240,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-list h4 { font-size: 15px; margin-bottom: 4px; color: var(--white); }
.contact-list p, .contact-list a { font-size: 14.5px; }
.contact-list a:hover { color: var(--accent-teal); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-border); }

.contact-form-wrap {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; margin-bottom: 8px; color: var(--text-muted); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04);
  color: var(--text-light); font-family: var(--font-body); font-size: 14.5px;
  transition: border-color .2s ease, background .2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent-teal); background: rgba(255,255,255,0.07);
}
.form-group select option { background: var(--navy); color: var(--text-light); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.contact-form .btn { width: 100%; margin-top: 6px; }

.form-alert {
  padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14.5px; margin-bottom: 22px;
}
.form-alert-success { background: rgba(47,217,196,0.15); border: 1px solid rgba(47,217,196,0.4); color: #7ff0e0; }
.form-alert-error { background: rgba(240,92,92,0.15); border: 1px solid rgba(240,92,92,0.4); color: #ff9a9a; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding-top: 80px;
}
.footer-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,92,240,0.25), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.footer-top {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.3fr 0.85fr 0.95fr 1fr 0.95fr; gap: 32px;
  padding-bottom: 60px;
}
.footer-regional li { display: flex; align-items: center; gap: 8px; }
.footer-logo { height: 34px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; margin-bottom: 18px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; transition: all .2s ease;
}
.social-links a:hover { background: var(--accent-gradient); color: #0c0f27; }
.footer-col h4 { font-size: 15px; margin-bottom: 20px; color: var(--white); }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a { font-size: 14px; color: var(--text-muted); transition: color .2s ease; }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent-teal); }
.footer-contact li { font-size: 14px; color: var(--text-muted); }
.fico { margin-right: 4px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; position: relative; z-index: 1; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom-inner p { font-size: 13px; color: var(--text-dim); }

.back-to-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 500;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent-gradient); color: #0c0f27;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-preview-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw);
    background: var(--navy); flex-direction: column; align-items: flex-start;
    padding: 100px 32px 40px; gap: 40px;
    transform: translateX(100%); transition: transform .35s ease;
    z-index: 1050;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 22px; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .contact-form-wrap { padding: 26px; }
}
