/* =============================================
   AKASH STORAGE & DISTRIBUTION SERVICES
   Premium Redesign — Plus Jakarta Sans
   ============================================= */

/* Font loaded via <link> in each HTML page */

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

:root {
  --ink:          #07122e;
  --ink-mid:      #0f2050;
  --ink-light:    #1a3373;
  --orange:       #f97316;
  --orange-dark:  #c2590a;
  --orange-glow:  rgba(249,115,22,.18);
  --white:        #ffffff;
  --surface:      #f8fafc;
  --surface-2:    #f1f5f9;
  --border:       #e2e8f0;
  --border-dark:  #cbd5e1;
  --muted:        #64748b;
  --muted-light:  #94a3b8;
  --text:         #0f172a;
  --text-soft:    #334155;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08),0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12),0 4px 8px rgba(0,0,0,.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --t:    .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section   { padding: 100px 0; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.heading {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.heading span { color: var(--orange); }

.subheading {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 580px;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(249,115,22,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(249,115,22,.45);
  transform: translateY(-1px);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-dark);
}
.btn-outline-dark:hover {
  background: var(--surface-2);
  border-color: var(--text-soft);
  color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--orange-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: var(--r); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 28px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

    .nav-logo img {
        /*height: 38px;*/
        width: auto;
        object-fit: contain;
    }

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }

    .nav-logo-text .brand {
        font-size: 20px;
        font-weight: 800;
        /* color: var(--ink);*/
        color: #e21f2f;
        letter-spacing: -0.2px;
        line-height: 24px;
    }

    .nav-logo-text .sub {
        font-size: 10px;
        font-weight: 800;
        color: var(--ink);
        letter-spacing: 2px;
        text-transform: uppercase;
        line-height:20px;
    }

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

.nav-links a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 7px;
  transition: color var(--t), background var(--t);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--surface-2);
}

/* ---- Services dropdown ---- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  user-select: none;
  transition: color var(--t), background var(--t);
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--ink);
  background: var(--surface-2);
}

.nav-dropdown-toggle .dd-arrow {
  font-size: 10px;
  transition: transform var(--t);
  color: var(--muted);
}

.nav-dropdown:hover .dd-arrow,
.nav-dropdown.open .dd-arrow {
  transform: rotate(180deg);
  color: var(--orange);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  z-index: 1100;
  /* animate in */
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  transition: background var(--t), color var(--t);
  background: transparent !important;
}

.nav-dropdown-menu a:hover {
  background: var(--surface-2) !important;
  color: var(--ink);
}

.nav-dropdown-menu a i {
  width: 18px;
  text-align: center;
  color: var(--orange);
  font-size: 13px;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

.nav-dropdown-menu .dd-all {
  font-weight: 700;
  color: var(--orange) !important;
  margin-top: 2px;
}
.nav-dropdown-menu .dd-all:hover {
  background: rgba(249,115,22,.06) !important;
}

/* ---- Services CTA ---- */
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  margin-left: 6px;
  box-shadow: 0 2px 8px rgba(249,115,22,.4);
  transition: background var(--t), transform var(--t), box-shadow var(--t) !important;
}
.nav-cta:hover {
  background: var(--orange-dark) !important;
  box-shadow: 0 6px 20px rgba(249,115,22,.5) !important;
  transform: translateY(-1px);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 7px;
  transition: background var(--t);
}
.hamburger:hover { background: var(--surface-2); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: 16px 28px 28px;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mob-cta {
  background: var(--orange);
  color: var(--white) !important;
  text-align: center;
  padding: 13px !important;
  border-radius: 8px;
  margin-top: 14px;
  font-weight: 700;
  border: none;
}

/* ============================================================
   HERO — Split Screen Corporate
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-panel-left {
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 110px 0 80px;
  position: relative;
}

/* Subtle accent rule on right edge */
.hero-panel-left::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(249,115,22,.3) 50%, transparent);
}

.hero-content {
    /*max-width: 520px;*/
    max-width:60%;
    margin-left: auto;
    padding: 0 56px 0 28px;
    width: 100%;
}

.hero-panel-right {
  position: relative;
  background-image: url('../images/DJI_0492.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.hero-panel-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,.05) 0%, transparent 18%),
    linear-gradient(to top, rgba(7,18,46,.6) 0%, rgba(7,18,46,.15) 40%, transparent 65%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.07);
  border: 1px solid rgba(249,115,22,.22);
  color: var(--orange-dark);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.hero h1 .accent { color: var(--orange); }

.hero h1 .underline-text {
  position: relative;
  display: inline-block;
}
.hero h1 .underline-text::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.hero p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
}
.hero-trust-item i { color: var(--orange); font-size: 13px; }

/* Stats overlay on photo */
.hero-stats-stack {
  position: absolute;
  z-index: 2;
  bottom: 52px;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-float {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r);
  padding: 16px 22px;
  width: 196px;
  transition: transform var(--t);
}
.stat-float:hover { transform: translateX(5px); }
.stat-float:nth-child(2) { margin-left: 24px; }

.stat-float-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-float-label {
  font-size: 11.5px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 36px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: floatDown 2.2s ease-in-out infinite;
}
@keyframes floatDown {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ============================================================
   TICKER / CAPABILITIES MARQUEE
   ============================================================ */
.ticker {
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ticker-item i { font-size: 12px; opacity: .7; }
.ticker-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.06); }

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,.07);
}

.stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.stat-cell:last-child { border-right: none; }

.stat-icon {
  width: 44px; height: 44px;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.stat-icon i { color: var(--orange); font-size: 18px; }

.stat-n {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
}
.stat-n sup {
  font-size: 1.2rem;
  font-weight: 700;
  vertical-align: super;
  color: var(--orange);
  letter-spacing: 0;
}

.stat-l {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.svc-card {
  background: var(--white);
  padding: 36px 30px;
  transition: background var(--t);
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-glow), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}

.svc-card:hover { background: #fefaf7; }
.svc-card:hover::after { opacity: 1; }

.svc-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted-light);
  margin-bottom: 20px;
}

.svc-icon {
  width: 52px; height: 52px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--t), border-color var(--t), transform var(--t);
  position: relative;
  z-index: 1;
}
.svc-icon i { font-size: 22px; color: var(--orange); transition: transform var(--t); }
.svc-card:hover .svc-icon { background: var(--orange); border-color: var(--orange); }
.svc-card:hover .svc-icon i { color: var(--white); transform: scale(1.1); }

.svc-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.svc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  position: relative;
  z-index: 1;
  transition: gap var(--t);
}
.svc-card:hover .svc-link { gap: 10px; }

/* ============================================================
   SERVICES OVERVIEW CARDS  (services.html overview page)
   ============================================================ */
.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-overview-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.svc-overview-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.svc-overview-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.svc-overview-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-overview-card:hover .svc-overview-img img { transform: scale(1.04); }

.svc-overview-img-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(7,18,46,.85);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.svc-overview-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-overview-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.svc-overview-icon {
  width: 40px; height: 40px;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-overview-icon i { color: var(--orange); font-size: 16px; }

.svc-overview-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-overview-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.svc-overview-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  transition: gap var(--t);
}
.svc-overview-card:hover .svc-overview-cta { gap: 10px; }

/* ============================================================
   SERVICE LINK GRID  (individual service pages — "Other Services")
   ============================================================ */
.svc-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.svc-link-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  text-decoration: none;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.svc-link-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.svc-link-card .svc-icon { margin-bottom: 0; flex-shrink: 0; }
.svc-link-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.svc-link-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.svc-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 4px;
  transition: gap var(--t);
}
.svc-link-card:hover .svc-link-arrow { gap: 8px; }

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process-section { background: var(--surface); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 6px, transparent 6px, transparent 14px);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 0 0 6px var(--surface), 0 0 0 7px var(--border);
}

.process-step:first-child .process-num { background: var(--orange); color: var(--white); }

.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

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

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img-wrap { position: relative; }

.why-img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-lg);
}

.why-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  border-radius: var(--r);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.why-img-accent img { width: 100%; height: 148px; object-fit: cover; }

.why-badge {
  position: absolute;
  top: 28px;
  left: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 120px;
}
.why-badge .big { font-size: 2rem; font-weight: 800; line-height: 1; }
.why-badge .small { font-size: 11px; font-weight: 600; opacity: .85; margin-top: 3px; letter-spacing: .5px; }

.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }

.why-pt {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color var(--t), box-shadow var(--t);
}
.why-pt:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(249,115,22,.08); }

.why-pt-icon {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-pt-icon i { font-size: 18px; color: var(--white); }

.why-pt-text h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.why-pt-text p  { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section { background: var(--ink); }
.industries-section .heading { color: var(--white); }
.industries-section .subheading { color: rgba(255,255,255,.55); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.ind-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 24px 16px;
  text-align: center;
  transition: background var(--t), border-color var(--t), transform var(--t);
  cursor: default;
}
.ind-card:hover {
  background: rgba(249,115,22,.1);
  border-color: rgba(249,115,22,.3);
  transform: translateY(-4px);
}

.ind-card i { font-size: 28px; color: var(--orange); display: block; margin-bottom: 12px; }
.ind-card span { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.7); display: block; }

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-section { background: var(--surface); padding: 80px 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 10px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item:first-child { grid-row: 1 / 3; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,18,46,.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 12px; font-weight: 600; }

/* ============================================================
   FACILITY PANORAMA BANNER
   ============================================================ */
.facility-panorama {
    position: relative;
    overflow: hidden;
}

.facility-panorama-img {
    position: relative;
    height: 520px;
}

    .facility-panorama-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 40%;
        display: block;
    }

.facility-panorama-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(7,18,46,.88) 0%, rgba(7,18,46,.7) 40%, rgba(7,18,46,.25) 70%, transparent 100% );
    display: flex;
    align-items: center;
}

.facility-panorama-content {
    padding: 0 60px;
    max-width: 680px;
}

    .facility-panorama-content .label {
        color: var(--orange);
        margin-bottom: 16px;
    }

    .facility-panorama-content h2 {
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 800;
        color: var(--white);
        line-height: 1.1;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .facility-panorama-content p {
        font-size: 16px;
        color: rgba(255,255,255,.65);
        line-height: 1.75;
        margin-bottom: 36px;
        max-width: 500px;
    }

.facility-panorama-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.fp-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fp-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -1px;
    line-height: 1;
}

.fp-lbl {
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    letter-spacing: 0.3px;
}

.fp-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.15);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .facility-panorama-img {
        height: 400px;
    }

    .facility-panorama-content {
        padding: 0 28px;
    }

        .facility-panorama-content h2 {
            font-size: 1.6rem;
        }

    .facility-panorama-stats {
        gap: 20px;
    }

    .fp-num {
        font-size: 1.4rem;
    }
}

@media (max-width: 520px) {
    .facility-panorama-img {
        height: 320px;
    }

    .facility-panorama-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .fp-divider {
        display: none;
    }
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations-section { background: var(--white); }

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.loc-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t);
}
.loc-card:hover { box-shadow: var(--shadow-lg); border-color: var(--border-dark); }

.loc-img { height: 200px; overflow: hidden; }
.loc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.loc-card:hover .loc-img img { transform: scale(1.04); }

.loc-body { padding: 28px; }

.loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,.2);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.loc-body h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.loc-body p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }

.loc-meta { display: flex; flex-direction: column; gap: 8px; }

.loc-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-soft);
}
.loc-meta-item i { color: var(--orange); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-section { background: var(--surface); padding: 64px 0; }

.clients-label {
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 36px;
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.clients-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.5);
  transition: filter var(--t), opacity var(--t);
}
.clients-logos img:hover { filter: grayscale(0) opacity(1); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: box-shadow var(--t), border-color var(--t);
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-dark); }

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testi-stars i { color: #f59e0b; font-size: 14px; }

.testi-card blockquote {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 400;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 40px; height: 40px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
}

.testi-author-info .name { font-size: 14px; font-weight: 700; color: var(--ink); }
.testi-author-info .co   { font-size: 12.5px; color: var(--muted); margin-top: 1px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #e55a00 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.cta-text p { color: rgba(255,255,255,.8); font-size: 16px; }

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #060e22; padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand img { height: 40px; object-fit: contain; margin-bottom: 16px; }

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,.4);
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: background var(--t), color var(--t);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  transition: color var(--t);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-col ul li a i { font-size: 9px; color: var(--orange); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.footer-ci {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-ci i { color: var(--orange); font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.footer-ci a, .footer-ci span {
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  transition: color var(--t);
  line-height: 1.55;
}
.footer-ci a:hover { color: var(--orange); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,.25);
}
.footer-bottom a { color: rgba(255,255,255,.25); transition: color var(--t); }
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--ink);
  padding: 130px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/DJI_0503.jpg');
  background-size: cover;
  background-position: center 35%;
  opacity: .12;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,18,46,.95) 0%, rgba(7,18,46,.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--orange); transition: opacity var(--t); }
.breadcrumb a:hover { opacity: .8; }
.breadcrumb i { font-size: 9px; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.1;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  line-height: 1.75;
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.svc-detail-block { margin-bottom: 88px; }
.svc-detail-block:last-child { margin-bottom: 0; }

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.svc-detail-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}
.svc-detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-dark);
  transform: translateY(-3px);
}

.svc-detail-img { height: 210px; overflow: hidden; }
.svc-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-detail-card:hover .svc-detail-img img { transform: scale(1.04); }

.svc-detail-body { padding: 30px; }

.svc-detail-body h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-detail-body h3 i { color: var(--orange); font-size: 18px; }

.svc-detail-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }

.svc-bullets { display: flex; flex-direction: column; gap: 8px; }
.svc-bullets li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-soft);
}
.svc-bullets li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack { position: relative; }
.about-img-main img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--r-lg); }

.about-img-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 210px;
  border-radius: var(--r);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-accent img { width: 100%; height: 152px; object-fit: cover; }

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 48px;
  margin-top: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 12px;
  bottom: 12px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--orange), rgba(249,115,22,.1));
}

.tl-item {
  position: relative;
  padding: 0 0 32px 24px;
}
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -37px;
  top: 4px;
  width: 14px; height: 14px;
  background: var(--white);
  border: 2.5px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 5px rgba(249,115,22,.2);
}
.tl-item:first-child .tl-dot { background: var(--orange); }

.tl-year {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tl-item h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.tl-item p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.val-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}
.val-card:hover { box-shadow: var(--shadow-md); border-color: rgba(249,115,22,.3); transform: translateY(-3px); }

.val-icon {
  width: 56px; height: 56px;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.val-icon i { font-size: 24px; color: var(--orange); }
.val-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.val-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.founder-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow var(--t);
}
.founder-card:hover { box-shadow: var(--shadow-lg); }

.founder-av {
  width: 72px; height: 72px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
}
.founder-card h3   { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.founder-card .role { font-size: 12.5px; color: var(--orange); font-weight: 700; letter-spacing: .5px; margin-bottom: 12px; }
.founder-card p    { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info-panel {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  color: var(--white);
  position: sticky;
  top: 90px;
}

.contact-info-panel h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-info-panel > p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
}

.ci-list { display: flex; flex-direction: column; gap: 18px; }

.ci-item { display: flex; gap: 14px; align-items: flex-start; }

.ci-icon {
  width: 40px; height: 40px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { color: var(--orange); font-size: 16px; }

.ci-text label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 3px;
}
.ci-text a, .ci-text span {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  transition: color var(--t);
  line-height: 1.55;
}
.ci-text a:hover { color: var(--orange); }

.hours-block {
  margin-top: 28px;
  padding: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
}

.hours-block h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hour-row:last-child { border-bottom: none; }
.hour-row .day  { color: rgba(255,255,255,.65); font-weight: 500; }
.hour-row .time { color: var(--orange); font-weight: 600; }

/* Form */
.contact-form-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.contact-form-panel h3 { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.contact-form-panel > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-light); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 2px 8px rgba(249,115,22,.35);
}
.form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,.45);
}

.map-container {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-container iframe { width: 100%; height: 400px; border: none; display: block; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  /* Hero: stack panels vertically */
  .hero                 { grid-template-columns: 1fr; grid-template-rows: auto 52vh; }
  .hero-panel-left      { padding: 110px 0 60px; }
  .hero-panel-left::after { display: none; }
  .hero-content         { max-width: 100%; margin-left: 0; padding: 0 28px; }
  .hero-panel-right     { min-height: 52vh; }
  .hero-stats-stack     { bottom: 24px; left: 20px; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .stat-float           { width: 170px; padding: 13px 16px; }
  .stat-float:nth-child(2) { margin-left: 0; }
  .hero-scroll          { bottom: 16px; right: 20px; }
  .why-grid      { grid-template-columns: 1fr; gap: 48px; }
  .why-img-main img { height: 380px; }
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { display: none; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-link-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .locations-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-panel { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section   { padding: 72px 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-right: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; gap: 1.5px; }
  .svc-overview-grid { grid-template-columns: 1fr; }
  .svc-link-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid  { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .founders-grid { grid-template-columns: 1fr; max-width: 360px; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 520px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid     { grid-template-columns: 1fr; }
  .hero h1         { font-size: 2rem; }
  .hero-stats-stack { display: none; }
  .process-grid    { grid-template-columns: 1fr; }
  .stat-n          { font-size: 2rem; }
  .hero-actions    { flex-direction: column; }
}

/* ============================================================
   WAREHOUSING PAGE — EXTENDED COMPONENTS
   ============================================================ */

/* Key Metrics Strip */
.wh-metrics {
  background: var(--ink);
  border-bottom: 3px solid var(--orange);
}
.wh-metrics-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.wh-metric-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.wh-metric-cell:last-child { border-right: none; }
.wh-metric-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 10px;
}
.wh-metric-num span { color: var(--orange); }
.wh-metric-label {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Infrastructure Grid */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.infra-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.infra-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.infra-icon {
  width: 50px; height: 50px;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.infra-icon i { color: var(--orange); font-size: 20px; }
.infra-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.infra-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
}

/* Connectivity Grid */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.connect-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.connect-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.connect-icon {
  width: 44px; height: 44px;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.connect-icon i { color: var(--orange); font-size: 17px; }
.connect-dist {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1;
}
.connect-place {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-top: 5px;
  line-height: 1.35;
}
.connect-detail {
  font-size: 12px;
  color: var(--muted-light);
  margin-top: 5px;
  line-height: 1.5;
}

/* Octroi Zone Callout Band */
.octroi-band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.octroi-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
  pointer-events: none;
}
.octroi-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(249,115,22,.07) 0%, transparent 70%);
  pointer-events: none;
}
.octroi-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}
.octroi-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.octroi-text p {
  font-size: 15.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  max-width: 620px;
}
.octroi-checks {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.octroi-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.octroi-check i { color: var(--orange); font-size: 14px; }
.octroi-badge {
  background: rgba(249,115,22,.1);
  border: 2px solid rgba(249,115,22,.3);
  border-radius: var(--r-lg);
  padding: 36px 44px;
  text-align: center;
  flex-shrink: 0;
}
.octroi-badge-num {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -2px;
  line-height: 1;
}
.octroi-badge-label {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 10px;
  line-height: 1.6;
}

/* Industries — Tag Cloud */
.industries-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: default;
  transition: border-color var(--t), color var(--t), background var(--t), transform var(--t), box-shadow var(--t);
}
.industry-tag:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
  background: rgba(249,115,22,.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249,115,22,.12);
}
.industry-tag i { color: var(--orange); font-size: 13px; }

/* Value / Why Choose Grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--t), box-shadow var(--t);
}
.value-card:hover {
  border-color: rgba(249,115,22,.4);
  box-shadow: 0 4px 24px rgba(249,115,22,.08);
}
.value-num {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}
.value-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.value-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Warehousing page responsive overrides */
@media (max-width: 1024px) {
  .wh-metrics-inner { grid-template-columns: repeat(3, 1fr); }
  .wh-metric-cell:nth-child(4),
  .wh-metric-cell:nth-child(5) { border-top: 1px solid rgba(255,255,255,.08); }
  .infra-grid     { grid-template-columns: repeat(2, 1fr); }
  .connect-grid   { grid-template-columns: repeat(2, 1fr); }
  .octroi-inner   { grid-template-columns: 1fr; text-align: center; }
  .octroi-badge   { margin: 0 auto; }
  .octroi-text p  { margin: 0 auto; }
  .octroi-checks  { justify-content: center; }
  .value-grid     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .wh-metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .wh-metric-cell:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.08); }
  .wh-metric-cell:nth-child(even) { border-right: none; }
  .wh-metric-cell { padding: 32px 16px; border-top: 1px solid rgba(255,255,255,.08); }
  .wh-metric-cell:nth-child(1),
  .wh-metric-cell:nth-child(2) { border-top: none; }
  .infra-grid   { grid-template-columns: 1fr; }
  .connect-grid { grid-template-columns: 1fr 1fr; }
  .value-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .wh-metrics-inner { grid-template-columns: 1fr 1fr; }
  .connect-grid     { grid-template-columns: 1fr; }
  .industries-wrap  { gap: 8px; }
  .industry-tag     { font-size: 13px; padding: 9px 16px; }
}
