/* =============================================
   SteelForce Industries – Main Stylesheet
   ============================================= */

/* ===== VARIABLES ===== */
:root {
  --primary:       #1b2b3a;
  --primary-dark:  #0d1b2a;
  --accent:        #1a7fc1;
  --accent-dark:   #1567a8;
  --secondary:     #3a7ca5;
  --light-bg:      #f4f6f8;
  --text:          #1e2a35;
  --text-muted:    #6c7a89;
  --white:         #ffffff;
  --border:        #dde2e8;
  --shadow:        0 4px 24px rgba(0,0,0,0.12);
  --radius:        6px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.2;
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-header h2 { font-size: 2.4rem; color: var(--primary); }
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 14px auto 0;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,127,193,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-secondary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: #263d52;
  border-color: #263d52;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,43,58,0.3);
}
.btn-white {
  background: white;
  color: var(--accent);
  border-color: white;
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  padding: 9px 18px;
  border-radius: var(--radius);
  color: #9ab0bf;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--accent); background: rgba(26,127,193,0.1); }

.nav-cta { padding: 9px 24px; font-size: 0.9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #152231;
  padding: 12px 24px 20px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: #9ab0bf;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--accent); background: rgba(26,127,193,0.08); }

/* ================================================
   HERO (Home Page)
   ================================================ */
.hero {
  min-height: 91vh;
  background: linear-gradient(140deg, #0a141f 0%, #1b2b3a 60%, #1d3a4f 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  opacity: 0.12;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(26,127,193,0.12);
  border: 1px solid rgba(26,127,193,0.35);
  border-radius: 40px;
  padding: 8px 20px;
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
.hero-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p {
  font-size: 1.1rem;
  color: #8baab8;
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.85;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-item .num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-item .lbl {
  font-size: 0.78rem;
  color: #8baab8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

/* ================================================
   FEATURES BAR
   ================================================ */
.features-bar { background: var(--accent); }
.features-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 28px;
  border-right: 1px solid rgba(255,255,255,0.18);
  transition: background 0.2s;
}
.feat-item:last-child { border-right: none; }
.feat-item:hover { background: rgba(0,0,0,0.06); }
.feat-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feat-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: white;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.feat-item p { font-size: 0.78rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ================================================
   ABOUT SECTION
   ================================================ */
.about { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: 8px;
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(to top, rgba(27,43,58,0.3), transparent);
}
.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--accent);
  color: white;
  padding: 24px 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(26,127,193,0.4);
}
.about-badge .big {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge .small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  opacity: 0.9;
  line-height: 1.4;
}
.about-text .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.about-text h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.85; }

.about-checks { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-dot {
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-dot svg {
  width: 11px; height: 11px;
  fill: none;
  stroke: white;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.check-item span { color: var(--text); font-size: 0.95rem; line-height: 1.6; }

/* ================================================
   FEATURED PRODUCTS (Home page preview)
   ================================================ */
.products-preview { padding: 70px 0; background: var(--light-bg); }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}
.card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .card-img img { transform: scale(1.07); }
.card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
}
.card-body { padding: 24px; flex: 1; }
.card-body h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; }
.card-body p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}
.card-spec { font-size: 0.78rem; color: var(--text-muted); }
.card-spec strong {
  display: block;
  color: var(--secondary);
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.card-link {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 9px; }

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-us { padding: 100px 0; background: var(--primary); }
.why-us .section-header h2 { color: var(--white); }
.why-us .section-header p { color: #8baab8; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 36px 28px;
  transition: background 0.3s, border-color 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(26,127,193,0.25);
}
.why-icon {
  width: 54px; height: 54px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.why-icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: 0.87rem; color: #8baab8; line-height: 1.85; }

/* ================================================
   CLIENTS SECTION
   ================================================ */
.clients-section {
  padding: 60px 0;
  background: var(--white);
}

.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.client-logo-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.client-logo-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(26,127,193,0.13);
  transform: translateY(-5px);
}

.client-logo-card img {
  height: 60px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: filter 0.3s, opacity 0.3s;
}

.client-logo-card:hover img {
  filter: grayscale(100%);
  opacity: 0.55;
}

.client-logo-card span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.client-logo-card:hover span {
  color: var(--accent);
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 { font-size: 2rem; color: white; }
.cta-text p { color: rgba(255,255,255,0.8); margin-top: 8px; font-size: 1rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: #0a141f; color: #8baab8; padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  margin: 16px 0 28px;
  font-size: 0.88rem;
  line-height: 1.85;
  max-width: 300px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--accent); }
.footer-social a svg {
  width: 15px; height: 15px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  line-height: 1.6;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--accent); }

/* ================================================
   PAGE HEADER (shared inner pages)
   ================================================ */
.page-header {
  background: linear-gradient(140deg, #0a141f 0%, #1b2b3a 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-header-inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #8baab8;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb svg {
  width: 12px; height: 12px;
  fill: none; stroke: #8baab8;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.page-header h1 { font-size: 3rem; color: white; margin-bottom: 12px; }
.page-header p { color: #8baab8; max-width: 560px; line-height: 1.8; font-size: 1rem; }

/* ================================================
   PRODUCTS PAGE
   ================================================ */
.products-section { padding: 80px 0; padding-bottom: 0px; background: var(--light-bg); }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: white;
  color: var(--text-muted);
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.products-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ===== PRODUCT DETAIL SECTIONS ===== */
.product-detail { padding: 88px 0; }
.product-detail:nth-child(even) { background: var(--light-bg); }
.product-detail:nth-child(odd) { background: var(--white); }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.detail-grid.reverse { }
.detail-grid.reverse .detail-img { order: 2; }
.detail-grid.reverse .detail-text { order: 1; }

.detail-img { border-radius: 8px; overflow: hidden; position: relative; }
.detail-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.detail-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.25), transparent);
}

.detail-text .cat-tag {
  display: inline-block;
  background: rgba(26,127,193,0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.detail-text h2 { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.detail-text > p { color: var(--text-muted); line-height: 1.85; margin-bottom: 24px; }

.spec-table { width: 100%; border-collapse: collapse; margin: 4px 0 28px; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:first-child { border-top: 1px solid var(--border); }
.spec-table td { padding: 11px 4px; font-size: 0.87rem; vertical-align: top; }
.spec-table td:first-child { color: var(--text-muted); width: 44%; }
.spec-table td:last-child { color: var(--text); font-weight: 600; }

.detail-features { margin: 20px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.detail-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.detail-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-section { padding: 88px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
}

.contact-info-text h2 { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.contact-info-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 40px; }

.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  display: flex;
  gap: 18px;
  padding: 22px 20px;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}
.info-card-icon {
  width: 46px; height: 46px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card-icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-card h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.info-card p { font-size: 0.87rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 44px;
}
.contact-form-wrap h3 { font-size: 1.6rem; color: var(--primary); margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; line-height: 1.7; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,127,193,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236c7a89' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #2e7d32;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ===== MAP SECTION ===== */
.map-section {
  height: 380px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.map-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #1b2b3a, #0a141f);
  color: #8baab8;
}
.map-placeholder svg {
  width: 52px; height: 52px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.map-placeholder h3 { font-size: 1.3rem; color: white; }
.map-placeholder p { font-size: 0.9rem; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-badge { right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .products-grid,
  .products-full-grid,
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid,
  .detail-grid.reverse { grid-template-columns: 1fr; gap: 36px; }
  .detail-grid.reverse .detail-img { order: 0; }
  .detail-grid.reverse .detail-text { order: 0; }
  .clients-logo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: 64px 0; }
  .hero-stats { gap: 28px; }

  .features-bar-inner { grid-template-columns: 1fr 1fr; }
  .feat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .feat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .feat-item:last-child, .feat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .section-header h2 { font-size: 2rem; }
  .page-header h1 { font-size: 2.2rem; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
}

@media (max-width: 600px) {
  .products-grid,
  .products-full-grid,
  .why-grid { grid-template-columns: 1fr; }
  .clients-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
  .stat-item .num { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .features-bar-inner { grid-template-columns: 1fr; }
  .feat-item { border-right: none; }
  .feat-item:nth-child(odd) { border-right: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}
