/* ============================================================
   IMPRESTO COURIER - GLOBAL STYLESHEET
   Red (#C8102E) | Black (#1A1A1A) | White | Grey
   ============================================================ */

/* ----- CSS VARIABLES ----- */
:root {
  --impresto-red: #C8102E;
  --impresto-red-dark: #9e0b23;
  --impresto-black: #1A1A1A;
  --impresto-gray: #4A4A4A;
  --impresto-light-gray: #F5F5F7;
  --impresto-mid-gray: #E0E0E0;
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.04);
  --shadow-md: 0 12px 28px rgba(0,0,0,0.08);
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.35);
  --radius: 20px;
  --radius-sm: 12px;
}

/* ----- RESET & BASE ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: #1e1e1e;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ----- UTILITY CLASSES ----- */
.section-padding { padding: 80px 0; }
.bg-soft-light { background: var(--impresto-light-gray); }
.text-impresto { color: var(--impresto-red); }
.bg-impresto { background-color: var(--impresto-red); }
.bg-red-soft { background: #fef0f2; }

/* ----- BUTTONS ----- */
.btn-impresto {
  background-color: var(--impresto-red);
  color: white;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 40px;
  border: none;
  transition: all 0.2s ease;
  box-shadow: 0 8px 18px rgba(200, 16, 46, 0.25);
}

.btn-impresto:hover {
  background-color: var(--impresto-red-dark);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 14px 24px rgba(200, 16, 46, 0.35);
}

.btn-outline-impresto {
  border: 2px solid var(--impresto-red);
  color: var(--impresto-red);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 40px;
  background: transparent;
  transition: 0.2s;
}

.btn-outline-impresto:hover {
  background: var(--impresto-red);
  color: white;
  border-color: var(--impresto-red);
}

.btn-red-outline {
  border: 2px solid var(--impresto-red);
  color: var(--impresto-red);
  font-weight: 600;
  border-radius: 40px;
  padding: 10px 28px;
  transition: 0.2s;
  background: transparent;
}

.btn-red-outline:hover {
  background: var(--impresto-red);
  color: white;
}

/* ----- CARDS ----- */
.card-hover {
  transition: all 0.25s ease;
  border: none;
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

/* ----- BADGES ----- */
.badge-impresto {
  background: var(--impresto-red);
  color: white;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

/* ----- NAVBAR ----- */
.navbar {
  background: var(--impresto-black);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  color: white !important;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-svg { width: 48px; height: 48px; }

.navbar .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  margin: 0 4px;
  transition: 0.2s;
  font-size: 1rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: white !important;
  background: rgba(200, 16, 46, 0.2);
  border-radius: 30px;
}

.navbar-toggler { border-color: rgba(255,255,255,0.2); }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ----- SERVICE ICON ----- */
.service-icon {
  width: 64px;
  height: 64px;
  background: #fef0f2;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--impresto-red);
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-icon-lg {
  width: 90px;
  height: 90px;
  background: #fef0f2;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--impresto-red);
  font-size: 3rem;
  flex-shrink: 0;
}

/* ----- STATS COUNTER ----- */
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--impresto-red);
  line-height: 1.2;
}

/* ----- FOOTER ----- */
.footer {
  background: #111111;
  color: #b0b0b0;
  padding: 60px 0 30px;
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer a {
  color: #b0b0b0;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
  margin-bottom: 8px;
}

.footer a:hover {
  color: var(--impresto-red);
  transform: translateX(4px);
}

.footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer .contact-item i {
  color: var(--impresto-red);
  font-size: 1.1rem;
  margin-top: 2px;
}

/* ----- CTA SECTION ----- */
.cta-section {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  color: white;
  border-radius: var(--radius);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: var(--impresto-red);
  opacity: 0.15;
  border-radius: 50%;
}

.cta-section h2 { position: relative; z-index: 1; }

/* ----- PAGE HERO (Inner Pages) ----- */
.page-hero {
  background: linear-gradient(135deg, rgba(26,26,26,0.92), rgba(26,26,26,0.85)),
              url('../images/hero-2.jpeg') center/cover no-repeat;
  color: white;
  padding: 130px 0 90px;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 70px;
  background: #ffffff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.page-hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-hero .breadcrumb-custom {
  font-size: 0.95rem;
  opacity: 0.85;
}

.page-hero .breadcrumb-custom a {
  color: var(--impresto-red);
  text-decoration: none;
  font-weight: 600;
}

.page-hero .breadcrumb-custom a:hover { text-decoration: underline; }

/* ----- HERO SLIDER (Home) ----- */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 700px;
  height: 100vh;
  max-height: 900px;
  overflow: hidden;
  color: white;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.hero-slide.slide-1 { background-image: url('../images/hero-1.jpeg'); }
.hero-slide.slide-2 { background-image: url('../images/hero-2.jpeg'); }
.hero-slide.slide-3 { background-image: url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=1600&q=80'); }
.hero-slide.slide-4 { background-image: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=80'); }

.hero-content { position: relative; z-index: 5; }

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-title .red { color: var(--impresto-red); }

.hero-sub {
  font-size: 1.2rem;
  opacity: 0.92;
  max-width: 600px;
  margin-bottom: 30px;
  font-weight: 400;
}

.track-input-group {
  background: white;
  border-radius: 60px;
  padding: 6px 6px 6px 24px;
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.5);
  max-width: 600px;
}

.track-input-group input {
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 10px 0;
  width: 100%;
  background: transparent;
}

.track-input-group button {
  background: var(--impresto-red);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 40px;
  white-space: nowrap;
  transition: 0.2s;
}

.track-input-group button:hover { background: var(--impresto-red-dark); }

.slider-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}

.slider-dots span.active {
  background: var(--impresto-red);
  border-color: white;
  transform: scale(1.15);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.2s;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover { background: var(--impresto-red); border-color: var(--impresto-red); }
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* ----- TRACKING PREVIEW ----- */
.tracking-preview-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--impresto-red);
}

.dashboard-preview {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 24px;
  border: 1px solid var(--impresto-mid-gray);
}

.dashboard-preview .list-group-item {
  border: none;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

/* ----- SERVICE DETAIL ROWS ----- */
.service-detail-row {
  padding: 60px 0;
  border-bottom: 1px solid var(--impresto-mid-gray);
}

.service-detail-row:last-child { border-bottom: none; }

.service-detail-img {
  border-radius: var(--radius);
  height: 340px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--impresto-gray);
  font-size: 0.95rem;
}

.service-feature-list li i {
  color: var(--impresto-red);
  font-size: 1.15rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ----- HOW IT WORKS STEPS ----- */
.step-box {
  position: relative;
  padding: 40px 25px;
  text-align: center;
  height: 100%;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--impresto-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 18px rgba(200,16,46,0.3);
}

/* ----- INDUSTRY CARDS ----- */
.industry-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
  height: 100%;
  border-top: 4px solid transparent;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--impresto-red);
}

.industry-card i {
  font-size: 2.6rem;
  color: var(--impresto-red);
  margin-bottom: 15px;
  display: block;
}

/* ----- PRICING CARDS ----- */
.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 2px solid var(--impresto-mid-gray);
  transition: 0.3s;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--impresto-red);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--impresto-red);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.pricing-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--impresto-black);
  line-height: 1;
}

.pricing-price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--impresto-gray);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.pricing-features li {
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.92rem;
  color: var(--impresto-gray);
}

.pricing-features li i {
  color: var(--impresto-red);
  margin-right: 8px;
}

/* ----- VALUE CARDS (About) ----- */
.value-card {
  text-align: center;
  padding: 40px 25px;
}

.value-card .icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  background: #fef0f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--impresto-red);
  transition: 0.3s;
}

.value-card:hover .icon-circle {
  background: var(--impresto-red);
  color: white;
  transform: rotateY(180deg);
}

/* ----- TEAM CARDS ----- */
.team-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.team-card .team-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.team-card .team-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(200,16,46,0.75), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.team-card:hover .team-img::after { opacity: 1; }

.team-card .team-social {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}

.team-card:hover .team-social { opacity: 1; transform: translateY(0); }

.team-card .team-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background: white;
  color: var(--impresto-red);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  text-decoration: none;
  transition: 0.2s;
}

.team-card .team-social a:hover { background: var(--impresto-red); color: white; }

/* ----- TIMELINE ----- */
.timeline {
  position: relative;
  padding-left: 40px;
  border-left: 3px solid var(--impresto-red);
}

.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -51px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--impresto-red);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(200,16,46,0.25);
}

.timeline-item .year {
  display: inline-block;
  background: #fef0f2;
  color: var(--impresto-red);
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

/* ----- TRACKING PAGE ----- */
.tracking-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  margin-top: -80px;
  position: relative;
  z-index: 5;
  border-top: 6px solid var(--impresto-red);
}

.tracking-form-card h3 {
  font-weight: 800;
  margin-bottom: 8px;
}

.tracking-input-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tracking-input-group .form-control {
  flex: 1;
  min-width: 220px;
  border-radius: 50px;
  padding: 16px 25px;
  border: 2px solid var(--impresto-mid-gray);
  font-size: 1rem;
  transition: 0.2s;
}

.tracking-input-group .form-control:focus {
  border-color: var(--impresto-red);
  box-shadow: 0 0 0 4px rgba(200,16,46,0.1);
}

.tracking-input-group .btn {
  border-radius: 50px;
  padding: 16px 40px;
  font-weight: 700;
}

.sample-ids {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--impresto-gray);
}

.sample-ids .chip {
  display: inline-block;
  background: var(--impresto-light-gray);
  color: var(--impresto-black);
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 5px 14px;
  border-radius: 20px;
  margin: 4px 6px 4px 0;
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid var(--impresto-mid-gray);
}

.sample-ids .chip:hover {
  background: var(--impresto-red);
  color: white;
  border-color: var(--impresto-red);
}

/* Result Panel */
.result-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.result-panel.show { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--impresto-mid-gray);
}

.result-header .id-label {
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--impresto-black);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
}

.status-pill.in-transit { background: #fff7ed; color: #c2410c; }
.status-pill.delivered { background: #ecfdf5; color: #047857; }
.status-pill.pending { background: #eff6ff; color: #1d4ed8; }

/* Track Timeline */
.track-timeline {
  position: relative;
  padding-left: 0;
  margin: 20px 0 0;
}

.track-step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 35px;
}

.track-step:last-child { padding-bottom: 0; }

.track-step .step-icon-wrap {
  position: relative;
  flex-shrink: 0;
}

.track-step .step-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 2;
  position: relative;
  transition: 0.3s;
}

.track-step.done .step-icon { background: var(--impresto-red); color: white; }

.track-step.current .step-icon {
  background: white;
  color: var(--impresto-red);
  border: 3px solid var(--impresto-red);
  box-shadow: 0 0 0 6px rgba(200,16,46,0.12);
}

.track-step.pending .step-icon {
  background: var(--impresto-light-gray);
  color: #a0a0a0;
  border: 2px solid var(--impresto-mid-gray);
}

.track-step .step-icon-wrap::after {
  content: '';
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: calc(100% - 20px);
  background: var(--impresto-mid-gray);
  z-index: 1;
}

.track-step:last-child .step-icon-wrap::after { display: none; }
.track-step.done .step-icon-wrap::after { background: var(--impresto-red); }

.track-step .step-content { padding-top: 6px; }

.track-step .step-content h6 {
  font-weight: 700;
  margin-bottom: 3px;
  font-size: 1.02rem;
}

.track-step .step-content .step-time {
  font-size: 0.85rem;
  color: var(--impresto-gray);
}

.track-step .step-content .step-note {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 3px;
}

/* Info Stats */
.info-stat {
  text-align: center;
  padding: 26px 15px;
  border-radius: var(--radius-sm);
  background: var(--impresto-light-gray);
  height: 100%;
  transition: 0.3s;
}

.info-stat:hover { background: #fef0f2; transform: translateY(-4px); }

.info-stat i {
  font-size: 2rem;
  color: var(--impresto-red);
  margin-bottom: 12px;
  display: block;
}

.info-stat h5 { font-size: 1rem; margin-bottom: 4px; }
.info-stat p { font-size: 0.83rem; color: var(--impresto-gray); margin: 0; }

/* FAQ Accordion */
.accordion-button {
  font-weight: 600;
  color: var(--impresto-black);
  border-radius: 12px !important;
  padding: 20px 24px;
  font-size: 1rem;
}

.accordion-button:not(.collapsed) {
  background: #fef0f2;
  color: var(--impresto-red);
  box-shadow: none;
}

.accordion-button:focus { box-shadow: none; border-color: transparent; }

.accordion-item {
  border: 1px solid var(--impresto-mid-gray);
  border-radius: 12px !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C8102E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Spinner */
.track-spinner {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.track-spinner.show { display: block; }

/* ----- RESPONSIVE ----- */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .hero-slider { min-height: 600px; }
  .slider-arrow { width: 44px; height: 44px; font-size: 1.2rem; }
  .slider-arrow.prev { left: 15px; }
  .slider-arrow.next { right: 15px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .section-padding { padding: 50px 0; }
  .track-input-group {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .track-input-group input {
    background: white;
    border-radius: 60px;
    padding: 14px 20px;
    margin-bottom: 12px;
  }
  .track-input-group button {
    border-radius: 60px;
    width: 100%;
    padding: 14px;
  }
  .navbar-brand { font-size: 1.5rem; }
  .logo-svg { width: 38px; height: 38px; }
  .hero-slider { min-height: 560px; }
  .slider-dots { bottom: 60px; }
  .slider-arrow { display: none; }
  .page-hero h1 { font-size: 2.3rem; }
  .page-hero { padding: 100px 0 70px; }
  .cta-section { padding: 40px 25px; }
  .service-detail-img { height: 240px; }
  .pricing-card.featured { transform: scale(1); }
  .tracking-form-card { padding: 28px 22px; margin-top: -60px; }
  .tracking-input-group .btn { width: 100%; }
  .result-header .id-label { font-size: 1.2rem; }
}


/* ============================================================
   CONTACT PAGE — OFFICE SHOWCASE (replaces map)
   ============================================================ */

.office-showcase {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.office-showcase .office-image {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1200&q=80');
}

.office-showcase .office-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,0.15), rgba(26,26,26,0.35));
}

.office-showcase .office-image .office-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: white;
  color: var(--impresto-black);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.office-showcase .office-image .office-badge i { color: var(--impresto-red); }

.office-showcase .office-details {
  padding: 55px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.office-showcase .office-details h3 {
  font-weight: 800;
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.office-showcase .office-details > p {
  color: var(--impresto-gray);
  margin-bottom: 30px;
  font-size: 0.98rem;
}

.office-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--impresto-mid-gray);
}

.office-detail-item:last-of-type { border-bottom: none; }

.office-detail-item .detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #fef0f2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--impresto-red);
  font-size: 1.3rem;
}

.office-detail-item .detail-content { flex: 1; }

.office-detail-item .detail-content .detail-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--impresto-gray);
  font-weight: 700;
  margin-bottom: 4px;
}

.office-detail-item .detail-content .detail-value {
  font-weight: 600;
  color: var(--impresto-black);
  font-size: 1rem;
  text-decoration: none;
  transition: 0.2s;
}

a.detail-value:hover { color: var(--impresto-red); }

.office-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* ----- TRUST BAR (bottom of contact) ----- */
.trust-bar {
  background: var(--impresto-black);
  border-radius: var(--radius);
  padding: 40px 35px;
  color: white;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: var(--impresto-red);
  opacity: 0.18;
  border-radius: 50%;
}

.trust-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.trust-item i {
  font-size: 2rem;
  color: var(--impresto-red);
  margin-bottom: 12px;
  display: block;
}

.trust-item h6 {
  font-weight: 700;
  color: white;
  font-size: 1rem;
  margin-bottom: 4px;
}

.trust-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin: 0;
}

/* ----- CONTACT PAGE RESPONSIVE ----- */
@media (max-width: 992px) {
  .office-showcase {
    grid-template-columns: 1fr;
  }
  .office-showcase .office-image {
    min-height: 280px;
  }
  .office-showcase .office-details {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .office-showcase .office-details {
    padding: 32px 24px;
  }
  .office-showcase .office-details h3 { font-size: 1.55rem; }
  .trust-bar { padding: 32px 22px; }
}