/* ==========================================================
   DHOFAR INDUSTRIAL DEVELOPMENT CO.
   Primary color: #2DC9A2 (teal/mint — from logo)
   ========================================================== */

/* ----------------------------------------------------------
   CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  /* Brand Colors */
  --primary:        #2DC9A2;
  --primary-dark:   #1FA882;
  --primary-xdark:  #137A5E;
  --primary-light:  #5DDCBB;
  --primary-alpha:  rgba(45, 201, 162, 0.12);
  --primary-glow:   rgba(45, 201, 162, 0.25);

  /* Dark Backgrounds */
  --bg-deepest:     #071520;
  --bg-dark:        #0B1C28;
  --bg-med:         #122130;
  --bg-card:        #172A38;
  --bg-card-hover:  #1E3445;
  --bg-border:      rgba(255, 255, 255, 0.07);
  --bg-border-light: rgba(255, 255, 255, 0.12);

  /* Light Backgrounds */
  --bg-light:       #F4F8FB;
  --bg-white:       #FFFFFF;
  --bg-section:     #F8FBFD;

  /* Text */
  --text-dark:      #0C1E2C;
  --text-body:      #3A5568;
  --text-muted:     #7A99AA;
  --text-light:     #EBF3F8;
  --text-lighter:   #B2CEDD;
  --text-white:     #FFFFFF;

  /* Accent */
  --accent:         #D4870E;
  --accent-light:   #F5A623;

  /* Status */
  --success:        #2DC9A2;
  --warning:        #F5A623;
  --error:          #E05252;

  /* Layout */
  --container-max:  1240px;
  --container-pad:  24px;
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --radius-xl:      24px;

  /* Spacing (8px base) */
  --s1:  8px;
  --s2:  16px;
  --s3:  24px;
  --s4:  32px;
  --s5:  40px;
  --s6:  48px;
  --s8:  64px;
  --s10: 80px;
  --s12: 96px;

  /* Typography */
  --font-body: 'Barlow', system-ui, -apple-system, sans-serif;
  --font-head: 'Barlow Condensed', 'Barlow', sans-serif;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.18);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.24);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.32);
  --shadow-primary: 0 8px 24px rgba(45, 201, 162, 0.2);

  /* Transitions */
  --transition: 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Header */
  --header-h: 72px;
}

/* ----------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

address {
  font-style: normal;
}

/* ----------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section-pad {
  padding-top: var(--s12);
  padding-bottom: var(--s12);
}

.bg-dark {
  background: var(--bg-dark);
}

/* ----------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--s2);
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-eyebrow.light {
  color: var(--primary-light);
}

.section-eyebrow.light::before {
  background: var(--primary-light);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.section-title.light {
  color: var(--text-light);
}

.section-desc {
  font-size: 17px;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.65;
  margin-top: var(--s2);
}

.section-desc.light {
  color: var(--text-lighter);
}

.section-header {
  margin-bottom: var(--s8);
}

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header.center .section-desc {
  text-align: center;
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45, 201, 162, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--primary-alpha);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------
   REVEAL ANIMATIONS
   ---------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(7, 21, 32, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
  transition: opacity var(--transition);
}

.logo-img:hover {
  opacity: 0.88;
}

.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--primary-light);
  background: rgba(45, 201, 162, 0.08);
}

.nav-link.nav-cta {
  background: var(--primary);
  color: var(--bg-dark);
  font-weight: 600;
  padding: 8px 18px;
}

.nav-link.nav-cta:hover {
  background: var(--primary-dark);
  color: var(--bg-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  padding: 0;
  z-index: 1001;
}

.bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav open state */
.hamburger.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deepest);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.45) saturate(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,21,32,0.78) 0%,
    rgba(11,28,40,0.62) 50%,
    rgba(11,28,40,0.45) 100%
  );
}

/* Omani geometric pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 20px,
      rgba(45,201,162,0.025) 20px,
      rgba(45,201,162,0.025) 21px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 20px,
      rgba(45,201,162,0.02) 20px,
      rgba(45,201,162,0.02) 21px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + var(--s8));
  padding-bottom: var(--s10);
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(45, 201, 162, 0.1);
  border: 1px solid rgba(45, 201, 162, 0.25);
  border-radius: 40px;
  padding: 6px 14px;
  margin-bottom: var(--s4);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5.5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--s3);
}

.hero-title-accent {
  color: var(--primary);
}

.br-lg { display: none; }

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: var(--s5);
}

.hero-actions {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  margin-bottom: var(--s8);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-value {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hero-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

.hero-chevron {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-chevron svg {
  width: 100%;
  height: 64px;
}

/* ----------------------------------------------------------
   ABOUT
   ---------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s10);
  align-items: start;
}

.about-content .section-title {
  margin-bottom: var(--s4);
}

.about-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: var(--s3);
}

.about-body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: var(--s2);
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-top: var(--s5);
  padding-top: var(--s4);
  border-top: 1px solid #E4EFF6;
}

.credential {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.cred-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.about-img-overlay {
  position: absolute;
  bottom: var(--s3);
  left: var(--s3);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(7,21,32,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(45,201,162,0.25);
  border-radius: var(--radius-md);
  padding: var(--s2) var(--s3);
  color: var(--primary);
}

.about-badge div {
  display: flex;
  flex-direction: column;
}

.about-badge strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.about-badge span {
  font-size: 11px;
  color: var(--primary);
  font-weight: 500;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}

.about-stat-card {
  background: var(--bg-section);
  border: 1px solid #E0EEF6;
  border-radius: var(--radius-md);
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.about-stat-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(45,201,162,0.1);
  transform: translateY(-2px);
}

.stat-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.stat-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ----------------------------------------------------------
   INDUSTRIES
   ---------------------------------------------------------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: var(--s4) var(--s4) var(--s3);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: default;
  outline: none;
}

.industry-card:hover,
.industry-card:focus-visible {
  border-color: rgba(45,201,162,0.35);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.industry-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--primary-alpha);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s3);
  transition: background var(--transition);
}

.industry-card:hover .industry-icon-wrap {
  background: rgba(45,201,162,0.18);
}

.industry-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.industry-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: var(--s2);
  letter-spacing: -0.01em;
}

.industry-desc {
  font-size: 14px;
  color: var(--text-lighter);
  line-height: 1.6;
  margin-bottom: var(--s3);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.industry-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: rgba(45,201,162,0.1);
  border: 1px solid rgba(45,201,162,0.2);
  border-radius: 40px;
  padding: 3px 10px;
}

/* ----------------------------------------------------------
   PRODUCTS TABS
   ---------------------------------------------------------- */
.tab-wrapper {
  margin-bottom: var(--s6);
}

.products-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  border-bottom: 2px solid #E0EEF6;
  margin-bottom: var(--s6);
  padding-bottom: 0;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: color var(--transition), background var(--transition);
  bottom: -2px;
  border-bottom: 2px solid transparent;
}

.tab-btn:hover {
  color: var(--text-dark);
}

.tab-btn.active,
.tab-btn[aria-selected="true"] {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
  background: var(--primary-alpha);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--s3);
}

.product-card {
  background: var(--bg-section);
  border: 1px solid #E4EFF6;
  border-radius: var(--radius-lg);
  padding: var(--s4);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(45,201,162,0.12);
  transform: translateY(-3px);
}

.product-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--primary-alpha);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s2);
}

.product-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--primary-dark);
}

.product-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--s1);
  line-height: 1.25;
}

.product-card p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
}

.products-cta {
  text-align: center;
  margin-top: var(--s8);
  padding: var(--s6) var(--s4);
  background: linear-gradient(135deg, #F0F8F5, #EAF6F1);
  border: 1px solid rgba(45,201,162,0.18);
  border-radius: var(--radius-xl);
}

.products-cta p {
  font-size: 17px;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: var(--s3);
}

/* ----------------------------------------------------------
   WHY CHOOSE US
   ---------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: var(--s5) var(--s4);
  transition: border-color var(--transition), transform var(--transition);
}

.why-card:hover {
  border-color: rgba(45,201,162,0.3);
  transform: translateY(-4px);
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45,201,162,0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--s3);
}

.why-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.why-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: var(--s2);
}

.why-desc {
  font-size: 14px;
  color: var(--text-lighter);
  line-height: 1.65;
}

/* ----------------------------------------------------------
   QUALITY
   ---------------------------------------------------------- */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s10);
  align-items: center;
}

.quality-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.quality-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.quality-img-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    transparent 60%,
    rgba(45,201,162,0.15)
  );
  pointer-events: none;
}

.quality-standards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin-top: var(--s3);
}

.std-badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary-dark);
  background: #EBF9F4;
  border: 1px solid rgba(45,201,162,0.25);
  border-radius: 4px;
  padding: 5px 12px;
}

.quality-content .section-title {
  margin-bottom: var(--s3);
}

.quality-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: var(--s5);
}

.quality-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.quality-pillar {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
}

.pillar-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-alpha);
  border-radius: var(--radius-sm);
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.pillar-content h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pillar-content p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ----------------------------------------------------------
   SERVICE COVERAGE
   ---------------------------------------------------------- */
.coverage-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--s10);
  align-items: start;
}

.coverage-map-wrap {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.oman-map {
  width: 100%;
  height: auto;
}

.oman-outline {
  /* color inherited */
}

.map-pin text, .map-lbl, .map-lbl-sm, .map-lbl-hq, .map-lbl-hq-sub {
  font-family: var(--font-body);
  fill: rgba(235,243,248,0.9);
}

.map-lbl {
  font-size: 12px;
  font-weight: 600;
}

.map-lbl-sm {
  font-size: 10px;
  font-weight: 500;
  fill: rgba(235,243,248,0.7);
}

.map-lbl-hq {
  font-size: 12px;
  font-weight: 700;
  fill: var(--primary);
}

.map-lbl-hq-sub {
  font-size: 10px;
  font-weight: 500;
  fill: rgba(45,201,162,0.7);
}

.coverage-intro {
  font-size: 16px;
  color: var(--text-lighter);
  line-height: 1.65;
  margin-bottom: var(--s5);
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location-item {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--bg-border);
}

.location-item:last-child {
  border-bottom: none;
}

.loc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(45,201,162,0.5);
  margin-top: 6px;
  flex-shrink: 0;
}

.loc-dot-hq {
  width: 12px;
  height: 12px;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,201,162,0.2);
}

.location-hq .loc-info h4 {
  color: var(--primary);
}

.loc-info h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: var(--s1);
}

.hq-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--primary);
  border-radius: 3px;
  padding: 1px 5px;
  letter-spacing: 0.06em;
}

.loc-info p {
  font-size: 13.5px;
  color: var(--text-lighter);
  line-height: 1.55;
}

/* ----------------------------------------------------------
   CONTACT
   ---------------------------------------------------------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
  margin-bottom: var(--s6);
}

.contact-card {
  background: var(--bg-section);
  border: 1px solid #E0EEF6;
  border-radius: var(--radius-lg);
  padding: var(--s4) var(--s5);
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

a.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(45,201,162,0.1);
  transform: translateY(-3px);
}

.cc-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--primary-alpha);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.cc-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cc-value {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.cc-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
}

.cc-address {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-top: 2px;
}

.cc-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: var(--s3);
  font-size: 13.5px;
  color: var(--text-dark);
}

.hours-row span:first-child {
  font-weight: 500;
}

.hours-row span:last-child {
  font-weight: 600;
  color: var(--text-dark);
}

.cc-tz {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

.map-embed-placeholder {
  background: linear-gradient(135deg, #0E2538, #142F3F);
  border: 1px solid var(--bg-border-light);
  border-radius: var(--radius-lg);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.map-embed-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,201,162,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,201,162,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-embed-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4);
}

.map-embed-icon {
  color: var(--primary);
  opacity: 0.7;
  flex-shrink: 0;
}

.map-embed-inner strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.map-embed-inner span {
  font-size: 13px;
  color: var(--text-lighter);
  line-height: 1.5;
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: var(--bg-deepest);
}

.footer-main {
  padding: var(--s12) 0 var(--s8);
  border-bottom: 1px solid var(--bg-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--s8);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--s3);
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-desc {
  font-size: 13.5px;
  color: var(--text-lighter);
  line-height: 1.65;
  margin-bottom: var(--s3);
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.footer-clink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  transition: color var(--transition);
}

.footer-clink:hover {
  color: var(--primary-light);
}

.footer-col-h {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--s4);
}

.footer-links li a {
  font-size: 13.5px;
  color: var(--text-lighter);
  transition: color var(--transition);
  line-height: 1.4;
}

.footer-links li a:hover {
  color: var(--primary);
}

.footer-address {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 2px;
}

.footer-address svg {
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--primary);
  opacity: 0.6;
}

.footer-bottom {
  padding: var(--s4) 0;
  text-align: center;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--s2);
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   BACK TO TOP
   ---------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------
   RESPONSIVE — TABLET (≤1100px)
   ---------------------------------------------------------- */
@media (max-width: 1100px) {
  .about-grid,
  .quality-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .quality-grid {
    direction: ltr;
  }

  .quality-visual {
    order: -1;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage-grid {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }

  .coverage-map-wrap {
    position: static;
    max-width: 380px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s6);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* ----------------------------------------------------------
   RESPONSIVE — MOBILE (≤768px)
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --container-pad: 20px;
    --header-h: 64px;
  }

  .section-pad {
    padding-top: var(--s8);
    padding-bottom: var(--s8);
  }

  .section-header {
    margin-bottom: var(--s6);
  }

  /* Nav */
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 80vw);
    background: rgba(7,21,32,0.98);
    backdrop-filter: blur(16px);
    padding: calc(var(--header-h) + var(--s5)) var(--s4) var(--s6);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s1);
  }

  .nav-link {
    font-size: 17px;
    padding: 12px var(--s2);
    width: 100%;
  }

  .nav-link.nav-cta {
    margin-top: var(--s2);
    text-align: center;
    border-radius: var(--radius-sm);
  }

  /* Nav overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    backdrop-filter: blur(2px);
  }

  .nav-overlay.show {
    display: block;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: var(--s2);
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .hero-stats {
    gap: var(--s3);
  }

  .hero-stat-value {
    font-size: 14px;
  }

  /* About */
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Industries */
  .industries-grid {
    grid-template-columns: 1fr;
    gap: var(--s2);
  }

  /* Tabs */
  .products-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  .products-tabs::-webkit-scrollbar { display: none; }

  .tab-btn {
    flex-shrink: 0;
    font-size: 13px;
    padding: 8px 14px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  /* Why us */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-cards {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s5);
  }

  .footer-brand {
    grid-column: span 1;
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

/* ----------------------------------------------------------
   RESPONSIVE — SMALL MOBILE (≤480px)
   ---------------------------------------------------------- */
@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s2);
  }

  .hero-stat-div {
    display: none;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .quality-standards {
    gap: 6px;
  }

  .contact-cards .contact-card {
    flex-direction: column;
  }
}

/* ----------------------------------------------------------
   LARGE DESKTOP
   ---------------------------------------------------------- */
@media (min-width: 1200px) {
  .br-lg {
    display: block;
  }
}

/* ----------------------------------------------------------
   FOCUS VISIBLE (accessibility)
   ---------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ----------------------------------------------------------
   PRINT
   ---------------------------------------------------------- */
@media print {
  .site-header,
  .hero-chevron,
  .back-to-top,
  .hamburger,
  .hero-actions { display: none !important; }

  .section-pad { padding: 24pt 0; }
  body { color: #000; background: #fff; }
}
