/* ============================================================
   TRUST-ONE INVESTMENT LIMITED — style.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --red:        #CC0000;
  --red-light:  #ff3333;
  --navy:       #1A1A4E;
  --white:      #FFFFFF;
  --light:      #F5F5F5;
  --gray:       #666666;
  --dark:       #111111;
  --border:     #E0E0E0;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --radius:     8px;
  --transition: 0.3s ease;
  --gradient:     linear-gradient(135deg, #CC0000, #1A1A4E);
  --gradient-red: linear-gradient(135deg, #CC0000, #990000);
  --glass:      rgba(26, 26, 78, 0.75);
  --glass-light: rgba(255,255,255,0.08);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Section helpers ────────────────────────────────────────── */
.section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.65);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--navy) 0%, #2d2d7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.light {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-red {
  background: linear-gradient(135deg, #CC0000, #990000);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(204,0,0,0.35);
}

.btn-red:hover {
  background: linear-gradient(135deg, #e60000, #CC0000);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,0,0,0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}

/* ── Fade-in animation ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 15, 40, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}

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

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  padding: 3px 6px;
}

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

.logo-trust {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

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

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links .nav-link {
  padding: 0.4rem 0.85rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-links .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links .nav-link:hover {
  color: var(--white);
}

.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
  width: 60%;
}

/* Active nav link */
.nav-links .nav-link.active {
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  transition: color var(--transition);
  z-index: 1100;
}

.hamburger:hover {
  color: var(--red);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 40, 0.92) 0%,
    rgba(26, 26, 78, 0.75) 50%,
    rgba(204, 0, 0, 0.50) 100%
  );
  animation: heroGradientShift 8s ease-in-out infinite alternate;
}

@keyframes heroGradientShift {
  0%   { opacity: 0.95; }
  100% { opacity: 0.80; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 70px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-accent {
  position: relative;
  color: var(--red-light);
}

.hero-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
}

/* Stat Bar */
.stat-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0f0f2a 100%);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  box-shadow: 0 20px 60px rgba(26,26,78,0.3);
  position: relative;
  overflow: hidden;
}

.stat-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff6666, var(--red));
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.stat-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-plus,
.stat-pct {
  font-size: 0.6em;
  color: var(--red);
  -webkit-text-fill-color: var(--red);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
  margin: 0 1.5rem;
}

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  background: var(--navy);
}

.mission .section-title {
  margin-bottom: 2.5rem;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mission-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--red);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.mission-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.mission-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #990000);
  box-shadow: 0 8px 20px rgba(204,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.mission-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.mission-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
}

/* Blockquote */
.mission-quote {
  position: relative;
  background: rgba(204, 0, 0, 0.12);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem 1.5rem 2rem;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.80);
  line-height: 1.8;
}

.mission-quote .fa-quote-left {
  color: var(--red);
  margin-right: 0.4rem;
  font-size: 0.9em;
  opacity: 0.7;
}

.mission-quote .fa-quote-right {
  color: var(--red);
  margin-left: 0.4rem;
  font-size: 0.9em;
  opacity: 0.7;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff6666);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transform: translateY(-6px);
  border-color: transparent;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(204,0,0,0.1), rgba(204,0,0,0.05));
  border: 1px solid rgba(204,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red);
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--red), #990000);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(204,0,0,0.3);
  color: var(--white);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   SPECIALIZED SERVICES
   ============================================================ */
.specialized {
  background: var(--light);
}

.specialized-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.specialized-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
}

.specialized-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.specialized-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.specialized-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.specialized-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.specialized-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--dark);
}

.specialized-list li .fa-check {
  color: var(--red);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ============================================================
   OPERATIONS
   ============================================================ */
.operations {
  background: var(--white);
}

.operations-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Route Table */
.route-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.route-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.route-table thead {
  background: var(--navy);
  color: var(--white);
}

.route-table th {
  padding: 0.9rem 1.1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.route-table tbody tr:nth-child(even) {
  background: rgba(26,26,78,0.03);
}

.route-table tbody tr:hover {
  background: rgba(204, 0, 0, 0.04);
}

.route-table tbody tr:last-child {
  border-bottom: none;
}

.route-table td {
  padding: 0.9rem 1.1rem;
  color: var(--dark);
}

.route-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.route-table td:last-child {
  color: var(--navy);
  font-weight: 700;
  background: rgba(204,0,0,0.06);
}

.route-table td .fa-map-marker-alt {
  color: var(--red);
  margin-right: 0.5rem;
  font-size: 0.85rem;
}

/* Service Flow */
.service-flow {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
}

.service-flow h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.flow-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.flow-step span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

.flow-arrow {
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}

.flow-note {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================================
   WHY TRUST-ONE
   ============================================================ */
.why-us {
  background: var(--navy);
  padding-bottom: 0;
}

.why-us .section-title {
  margin-bottom: 2.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.why-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #990000);
  box-shadow: 0 8px 20px rgba(204,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  transition: transform var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* Expedite Banner */
.expedite-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 0;
}

.expedite-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 26, 78, 0.92) 0%,
    rgba(204, 0, 0, 0.72) 100%
  );
}

.expedite-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.expedite-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.expedite-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

/* ============================================================
   MANAGEMENT
   ============================================================ */
.management {
  background: var(--light);
}

.commitment-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.commitment-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-top: 3px solid var(--red);
  transition: box-shadow var(--transition), transform var(--transition);
}

.commitment-item:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}

.commitment-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #990000);
  box-shadow: 0 6px 16px rgba(204,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.commitment-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.commitment-text p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--white);
}

/* Unified contact info panel */
.contact-info-panel {
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ── Company header (navy band) ─── */
.cip-company-header {
  background: linear-gradient(135deg, var(--navy) 0%, #2d2d7a 100%);
  padding: 1.75rem 2rem 1.5rem;
}

.cip-company-name {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.cip-company-name i {
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
}

.cip-company-name h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.cip-rows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cip-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.cip-row-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ff9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.cip-row a,
.cip-row span {
  color: rgba(255,255,255,0.8);
  line-height: 2.1;
  word-break: break-word;
}

.cip-row a:hover {
  color: var(--white);
}

/* ── Sales contact block (white) ─── */
.cip-sales-block {
  background: var(--white);
  padding: 1.5rem 2rem 1.75rem;
  flex: 1;
}

.cip-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cip-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #990000);
  box-shadow: 0 4px 12px rgba(204,0,0,0.30);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.cip-person-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.cip-person-info p {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cip-sales-block .cip-rows {
  gap: 0.7rem;
}

.cip-sales-block .cip-row-icon {
  background: rgba(204,0,0,0.07);
  border: none;
  color: var(--red);
}

.cip-sales-block .cip-row a {
  color: var(--gray);
  line-height: 2.1;
}

.cip-sales-block .cip-row a:hover {
  color: var(--red);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(135deg, #0a0a1a 0%, var(--navy) 100%);
  color: rgba(255,255,255,0.65);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo .logo-trust {
  font-size: 1.1rem;
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--red);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #990000);
  border: none;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(204,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(204,0,0,0.5);
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    gap: 2.5rem;
  }

  .commitment-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .commitment-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — 768px (Mobile)
   ============================================================ */
@media (max-width: 768px) {
  /* Hamburger */
  .hamburger {
    display: block;
  }

  /* Nav links — mobile drawer */
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  .nav-links.open {
    max-height: 400px;
    padding: 1rem 1.5rem 1.5rem;
  }

  .nav-links .nav-link {
    width: 100%;
    padding: 0.7rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links .nav-link:last-child {
    border-bottom: none;
  }

  .nav-links .nav-link::after {
    display: none;
  }

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

  .about-image {
    order: -1;
  }

  /* Stat bar */
  .stat-bar {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
    margin: 0;
  }

  /* Mission */
  .mission-cards {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Specialized */
  .specialized-grid {
    grid-template-columns: 1fr;
  }

  /* Operations */
  .operations-layout {
    grid-template-columns: 1fr;
  }

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

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

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-nav {
    justify-content: center;
  }

  /* Hero parallax off on mobile */
  .hero {
    background-attachment: scroll;
  }

  .expedite-banner {
    background-attachment: scroll;
  }

  /* Scroll indicator hidden on mobile */
  .scroll-indicator {
    display: none;
  }

  /* Back to top smaller on mobile */
  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }
}

/* ============================================================
   RESPONSIVE — 480px (Small mobile)
   ============================================================ */
@media (max-width: 480px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .flow-steps {
    flex-direction: column;
    align-items: center;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .nav-logo .logo-sub {
    display: none;
  }

  .stat-bar {
    padding: 1.75rem 1.25rem;
  }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--red), #990000);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(204,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,0,0,0.4);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  color: var(--navy);
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b894, #00cec9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 1.25rem;
}

.form-success h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--gray);
}

.form-error {
  display: none;
  background: rgba(204,0,0,0.07);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  color: var(--red);
  margin-top: 1rem;
  text-align: center;
}

.form-error.visible { display: block; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
