/* ==========================================================================
   SSE - S SARAVANAN ENTERPRISES
   Logistics Service & Facility Management
   Custom Stylesheet based on Reference Architecture
   ========================================================================== */

:root {
  /* Brand Colors from SSE Brochure */
  --primary: #0D47A1;
  --primary-deep: #08285D;
  --primary-light: #1565C0;
  --primary-tint: #EBF3FC;
  --primary-gradient: linear-gradient(100deg, #08285D 0%, #0D47A1 48%, #1565C0 100%);
  
  --orange: #F26522;
  --orange-deep: #D84B0A;
  --orange-light: #FA8231;
  --orange-tint: #FDF1EA;
  --orange-gradient: linear-gradient(135deg, #F26522 0%, #FA8231 100%);

  /* Neutrals & Text */
  --ink: #0F172A;
  --ink2: #334155;
  --ink3: #64748B;
  --ink4: #94A3B8;

  /* Backgrounds */
  --bg: #F8FAFC;
  --bg2: #FFFFFF;
  --bg3: #F1F5F9;

  /* Borders & Shadows */
  --line: #E2E8F0;
  --line2: #CBD5E1;
  --shadow: 0 4px 24px rgba(13, 71, 161, 0.07);
  --shadow2: 0 16px 48px rgba(13, 71, 161, 0.14);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: var(--bg3);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

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

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary-gradient);
  box-shadow: 0 4px 28px rgba(8, 40, 93, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s, padding 0.3s;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #FFFFFF;
  padding: 6px 14px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
}

.nav-brand:hover {
  transform: scale(1.02);
}

.nav-brand img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #FFFFFF;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s, transform 0.15s;
}

.nav-phone:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.nav-phone svg {
  width: 15px;
  height: 15px;
  stroke: var(--orange-light);
  fill: none;
}

.nav-cta {
  background: var(--orange-gradient);
  color: #FFFFFF !important;
  padding: 10px 22px;
  border-radius: 980px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(242, 101, 34, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242, 101, 34, 0.5);
  opacity: 0.95;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  border-radius: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 30px 20px;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.mobile-nav-close:hover {
  background: var(--line2);
  transform: scale(1.08);
}

.mobile-nav-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--ink);
  stroke-width: 2.5;
}

.mobile-nav a {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 0;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-nav .nav-cta-mobile {
  margin-top: 22px;
  background: var(--orange-gradient);
  color: #FFFFFF !important;
  padding: 14px 44px;
  border-radius: 980px;
  font-size: 15px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 20px rgba(242, 101, 34, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 70px;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(13, 71, 161, 0.12) 0%, transparent 65%),
              linear-gradient(180deg, #F8FAFC 0%, #EBF2FA 100%);
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-tint);
  padding: 6px 16px;
  border-radius: 980px;
  border: 1px solid rgba(13, 71, 161, 0.12);
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 6.8vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 980px;
}

.hero-title em {
  font-style: italic;
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.hero-tagline {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 500;
  font-style: italic;
  color: var(--primary);
  margin-top: 14px;
}

.hero-desc {
  margin: 20px auto 0;
  max-width: 640px;
  font-size: 17.5px;
  color: var(--ink2);
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn-solid {
  background: var(--orange-gradient);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(242, 101, 34, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-solid:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 24px rgba(242, 101, 34, 0.45);
}

.btn-outline {
  background: #FFFFFF;
  color: var(--ink);
  padding: 14px 32px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--line2);
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-tint);
  transform: translateY(-1px);
}

/* Ledger Bar */
.ledger {
  display: flex;
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: var(--shadow2);
  max-width: 960px;
  width: 100%;
}

.ledger-row {
  padding: 24px 32px;
  text-align: center;
  border-right: 1px solid var(--line);
  flex: 1;
  transition: background 0.2s;
}

.ledger-row:hover {
  background: var(--bg);
}

.ledger-row:last-child {
  border-right: none;
}

.ledger-fig {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
}

.ledger-lbl {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Hero Visual Banner */
.hero-visual-card {
  margin-top: 48px;
  max-width: 1100px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow2);
  border: 2px solid #FFFFFF;
  position: relative;
}

.hero-visual-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ===== TICKER ===== */
.ticker-wrap {
  width: 100%;
  background: var(--primary-gradient);
  overflow: hidden;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticker-sep {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(242, 101, 34, 0.6);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION SHELL ===== */
.section {
  padding: 96px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.section-tint {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-tint .section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 24px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sec-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

.sec-title em {
  font-style: italic;
  color: var(--orange);
  padding-bottom: 2px;
}

.sec-lead {
  font-size: 16.5px;
  color: var(--ink3);
  line-height: 1.75;
  font-weight: 400;
  margin-top: 14px;
  max-width: 620px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

.about-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink2);
}

.about-body p + p {
  margin-top: 16px;
}

.detail-table {
  margin-top: 32px;
}

.detail-row {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}

.detail-row:first-child {
  border-top: 1px solid var(--line);
}

.detail-key {
  color: var(--ink3);
  min-width: 130px;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.detail-val {
  color: var(--ink);
  font-weight: 500;
}

.detail-val a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.detail-val a:hover {
  color: var(--orange);
}

.badge-list {
  display: grid;
  gap: 14px;
}

.badge-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.badge-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: rgba(13, 71, 161, 0.25);
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--orange-tint);
}

.badge-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.badge-desc {
  font-size: 13.5px;
  color: var(--ink3);
  margin-top: 4px;
  line-height: 1.55;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.svc-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
}

.svc-card:hover {
  box-shadow: var(--shadow2);
  transform: translateY(-5px);
  border-color: rgba(13, 71, 161, 0.2);
}

.svc-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 20px;
  transition: background 0.2s;
}

.svc-card:hover .svc-icon {
  background: var(--orange-tint);
}

.svc-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.2s;
}

.svc-card:hover .svc-icon svg {
  stroke: var(--orange);
}

.svc-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.svc-desc {
  font-size: 14.5px;
  color: var(--ink3);
  margin-top: 10px;
  line-height: 1.65;
  flex-grow: 1;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.svc-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.svc-link:hover {
  color: var(--orange);
}

.svc-link:hover svg {
  transform: translateX(4px);
}

/* ===== WHY US SECTION ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.why-card {
  padding: 32px 24px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.why-card:hover {
  box-shadow: var(--shadow2);
  transform: translateY(-4px);
  border-color: rgba(13, 71, 161, 0.25);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.why-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 14px;
  color: var(--ink3);
  margin-top: 10px;
  line-height: 1.6;
}

/* ===== SELECTION & TRAINING PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative;
}

.process-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.process-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.process-step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-tint);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.process-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.process-card p {
  font-size: 13.5px;
  color: var(--ink3);
  line-height: 1.6;
}

/* ===== CLIENTS SHOWCASE ===== */
.clients-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.client-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 14px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}

.client-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(13, 71, 161, 0.25);
}

.client-card img {
  max-height: 48px;
  max-width: 86%;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter 0.2s, transform 0.2s;
}

.client-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--primary-gradient);
  border-radius: 26px;
  padding: 68px 48px;
  text-align: center;
  margin: 0 24px 96px;
  max-width: 1192px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-band h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  max-width: 740px;
  margin: 0 auto;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16.5px;
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-band .btn-white {
  margin-top: 32px;
  background: var(--orange-gradient);
  color: #FFFFFF;
  padding: 15px 36px;
  border-radius: 980px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-band .btn-white:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info-item:first-child {
  border-top: 1px solid var(--line);
}

.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.ci-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 4px;
}

.ci-val {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}

.ci-val a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.ci-val a:hover {
  color: var(--orange);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.map-wrap {
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Contact Form Card */
.contact-form-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px 34px;
  box-shadow: var(--shadow);
}

.cf-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.cf-sub {
  font-size: 14px;
  color: var(--ink3);
  margin-bottom: 24px;
}

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

.fg {
  margin-bottom: 16px;
}

.fg label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.fg input, .fg textarea, .fg select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.12);
  background: #FFFFFF;
}

.fg textarea {
  height: 105px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: var(--orange-gradient);
  color: #FFFFFF;
  border: none;
  padding: 14px;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 980px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(242, 101, 34, 0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: 'Inter', sans-serif;
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Form Alert Box */
#form-alert {
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.5;
}

/* ===== FLOATING ACTION BUTTONS ===== */
.float-stack {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.float-tooltip {
  background: var(--ink);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 980px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.float-item:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
}

.fab-call {
  background: var(--orange-gradient);
}

.fab-call svg {
  stroke: #FFFFFF;
  fill: none;
  width: 22px;
  height: 22px;
}

.fab-enq {
  background: #FFFFFF;
  border: 1.5px solid var(--line2) !important;
}

.fab-enq svg {
  stroke: var(--primary);
  fill: none;
  width: 20px;
  height: 20px;
}

.fab-top {
  background: var(--primary);
}

.fab-top svg {
  stroke: #FFFFFF;
  stroke-width: 2.5;
  fill: none;
  width: 18px;
  height: 18px;
}

.float-item-top {
  display: none;
}

.float-item-top.show {
  display: flex;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-gradient);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 50px 24px 36px;
  text-align: center;
  color: #FFFFFF;
}

.footer-logo-wrap {
  display: inline-flex;
  background: #FFFFFF;
  padding: 8px 20px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  margin-bottom: 22px;
}

.footer-logo {
  height: 38px;
  width: auto;
  display: block;
}

.footer-links {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange-light);
}

.footer-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

.footer-sub a {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
}

.footer-sub a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== ANIMATIONS ===== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ledgerPop {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

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

nav {
  animation: navSlideDown 0.6s ease both;
  animation-delay: 0.05s;
}

.hero-eyebrow {
  animation: heroFadeUp 0.65s ease both;
  animation-delay: 0.1s;
}

.hero-title {
  animation: heroFadeUp 0.75s ease both;
  animation-delay: 0.2s;
}

.hero-tagline {
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.3s;
}

.hero-desc {
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.4s;
}

.hero-actions {
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.55s;
}

.ledger {
  animation: ledgerPop 0.75s ease both;
  animation-delay: 0.7s;
}

/* IntersectionObserver Fade System */
.fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade.d1 { transition-delay: 0.1s; }
.fade.d2 { transition-delay: 0.2s; }
.fade.d3 { transition-delay: 0.3s; }
.fade.in {
  opacity: 1;
  transform: translateY(0);
}

.sec-title em {
  background: linear-gradient(var(--orange), var(--orange)) no-repeat left bottom;
  background-size: 0% 2.5px;
  transition: background-size 0.6s ease 0.3s;
}

.fade.in .sec-title em,
.sec-title.fade.in em {
  background-size: 100% 2.5px;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding: 110px 20px 60px;
  }

  .ledger {
    flex-wrap: wrap;
    border-radius: 16px;
  }

  .ledger-row {
    min-width: 50%;
    padding: 20px 16px;
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }

  .ledger-row:nth-child(odd) {
    border-right: 1px solid var(--line) !important;
  }

  .ledger-row:last-child,
  .ledger-row:nth-last-child(2) {
    border-bottom: none;
  }

  .ledger-fig {
    font-size: 22px;
  }

  .section {
    padding: 76px 20px;
  }

  .section-tint .section-inner {
    padding: 76px 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 52px 32px;
    margin: 0 20px 76px;
  }

  .float-stack {
    right: 16px;
    bottom: 20px;
  }
}

@media (max-width: 600px) {
  .nav-inner {
    height: 60px;
    padding: 0 16px;
  }

  .nav-brand img {
    height: 32px;
  }

  .hero {
    padding: 95px 16px 50px;
  }

  .hero-eyebrow {
    font-size: 11px;
    padding: 5px 12px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-actions .btn-solid,
  .hero-actions .btn-outline {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }

  .ledger {
    margin-top: 40px;
  }

  .ledger-row {
    padding: 16px 10px;
  }

  .ledger-fig {
    font-size: 18px;
  }

  .ledger-lbl {
    font-size: 10px;
  }

  .section {
    padding: 60px 16px;
  }

  .section-tint .section-inner {
    padding: 60px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .detail-row {
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
  }

  .detail-key {
    min-width: unset;
    font-size: 11px;
    color: var(--primary);
  }

  .detail-val {
    font-size: 14px;
  }

  .contact-form-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .cf-title {
    font-size: 20px;
  }

  .fg input, .fg textarea, .fg select {
    font-size: 15px;
  }

  .form-submit {
    font-size: 15px;
    padding: 14px;
  }

  .contact-actions {
    flex-direction: column;
    gap: 10px;
  }

  .contact-actions .btn-solid,
  .contact-actions .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .cta-band {
    padding: 44px 20px;
    border-radius: 20px;
  }

  footer {
    padding: 40px 16px 110px;
  }

  .footer-sub {
    font-size: 12.5px;
  }

  .float-stack {
    right: 14px;
    bottom: 18px;
    gap: 10px;
  }

  .fab {
    width: 46px;
    height: 46px;
  }
}
