/* ============================================
   ABRAO SHIPPING - Modern Design System
   ============================================ */

:root {
  --navy: #0B1D3A;
  --navy-dark: #071226;
  --navy-mid: #112347;
  --orange: #F47B20;
  --orange-dark: #D96810;
  --orange-light: #FFA04E;
  --white: #FFFFFF;
  --light: #F4F7FB;
  --gray: #6B7280;
  --gray-light: #E5E9F0;
  --text: #1F2937;
  --text-light: #4B5563;
  --border: #E1E8F0;
  --shadow: 0 4px 24px rgba(11,29,58,0.10);
  --shadow-lg: 0 12px 48px rgba(11,29,58,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
.text-orange { color: var(--orange) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-orange { background: var(--orange) !important; }
.bg-light-custom { background: var(--light) !important; }

/* ---- NAVBAR ---- */
.abrao-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.abrao-navbar.scrolled {
  background: var(--navy-dark) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.abrao-navbar .navbar-brand img {
  height: 46px;
  width: auto;
}
.abrao-navbar .navbar-brand span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}
.abrao-navbar .navbar-brand span em {
  color: var(--orange);
  font-style: normal;
}
.abrao-navbar .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 1.1rem !important;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
}
.abrao-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}
.abrao-navbar .nav-link:hover::after,
.abrao-navbar .nav-link.active::after {
  left: 10%; right: 10%;
}
.abrao-navbar .nav-link:hover,
.abrao-navbar .nav-link.active {
  color: #fff !important;
}
.btn-track-nav {
  background: var(--orange);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.45rem 1.4rem !important;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  border: none;
  transition: var(--transition);
}
.btn-track-nav:hover {
  background: var(--orange-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244,123,32,0.4);
}
.btn-track-nav::after { display: none !important; }

/* ---- HERO SECTION ---- */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3a6e 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/sliders/1.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,123,32,0.15);
  border: 1px solid rgba(244,123,32,0.4);
  color: var(--orange-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title span {
  color: var(--orange);
  position: relative;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary-custom {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary-custom:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,123,32,0.45);
}
.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 0.8rem 2.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero stats */
.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-item {}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Hero visual right */
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-card-float {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: #fff;
}

/* ---- TRACKING WIDGET ---- */
.track-section {
  background: var(--white);
  position: relative;
  z-index: 5;
  margin-top: -60px;
  padding-bottom: 0;
}
.track-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  border-top: 4px solid var(--orange);
}
.track-widget h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.track-widget p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.track-input-group {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid var(--gray-light);
  transition: var(--transition);
}
.track-input-group:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244,123,32,0.12);
}
.track-input-group input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  background: transparent;
  color: var(--text);
}
.track-input-group input::placeholder { color: #aab; }
.track-input-group button {
  background: var(--orange);
  border: none;
  color: #fff;
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0 50px 50px 0;
  white-space: nowrap;
}
.track-input-group button:hover { background: var(--orange-dark); }

/* ---- SECTION HEADERS ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.8;
}

/* ---- SECTIONS ---- */
section { padding: 90px 0; }
section.py-sm { padding: 60px 0; }

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,123,32,0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(244,123,32,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange);
}
.service-icon i {
  font-size: 1.5rem;
  color: var(--orange);
  transition: var(--transition);
}
.service-card:hover .service-icon i { color: #fff; }
.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}
.service-card-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  margin-bottom: 1.5rem;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

/* ---- ABOUT SECTION ---- */
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-float .num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-float .lbl {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-features { list-style: none; padding: 0; margin: 1.5rem 0; }
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-light);
}
.about-features li:last-child { border-bottom: none; }
.about-features li i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 60px 0;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-item .plus { color: var(--orange); }
.stat-item .lbl {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

/* ---- WHY CHOOSE US ---- */
.feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(244,123,32,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon i { color: var(--orange); font-size: 1.2rem; }
.feature-item h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.feature-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-stars { color: #F5C518; font-size: 0.85rem; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author .name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testimonial-author .role { font-size: 0.78rem; color: var(--orange); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(244,123,32,0.06);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(244,123,32,0.04);
}
.cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ---- CLIENTS ---- */
.clients-strip {
  background: var(--light);
  padding: 50px 0;
}
.client-logo {
  filter: grayscale(100%) opacity(0.5);
  transition: var(--transition);
  max-height: 44px;
  width: auto;
}
.client-logo:hover { filter: none; transform: scale(1.05); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy-dark);
  padding: 70px 0 0;
}
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
}
.footer-contact li {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
}
.footer-contact i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  margin-top: 50px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  margin: 0;
}

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/page-titles/1.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.page-header h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); position: relative; }
.page-header .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.page-header .breadcrumb-item { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.page-header .breadcrumb-item a { color: var(--orange); text-decoration: none; }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.55); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ---- TRACKING PAGE ---- */
.tracking-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 120px 0 60px;
  text-align: center;
}
.tracking-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.tracking-hero p { color: rgba(255,255,255,0.65); }

.track-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.shipment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}
.shipment-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 2rem;
  color: #fff;
}
.shipment-header .tracking-num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.shipment-header .route {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* Status badges */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.status-pill.pending { background: rgba(59,130,246,0.15); color: #3B82F6; }
.status-pill.picked-up { background: rgba(107,114,128,0.15); color: #6B7280; }
.status-pill.in-transit { background: rgba(139,92,246,0.15); color: #8B5CF6; }
.status-pill.enroute { background: rgba(20,184,166,0.15); color: #14B8A6; }
.status-pill.out-delivery { background: rgba(249,115,22,0.15); color: #F97316; }
.status-pill.delivered { background: rgba(34,197,94,0.15); color: #22C55E; }
.status-pill.cancelled { background: rgba(239,68,68,0.15); color: #EF4444; }
.status-pill.returned { background: rgba(239,68,68,0.15); color: #EF4444; }

/* Progress tracker */
.ship-progress {
  padding: 2rem;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.progress-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: var(--gray-light);
  z-index: 0;
}
.progress-line {
  position: absolute;
  top: 20px;
  left: 30px;
  height: 3px;
  background: var(--orange);
  z-index: 1;
  transition: width 0.8s ease;
}
.step-dot {
  position: relative;
  z-index: 2;
  text-align: center;
}
.step-dot .dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 0.8rem;
  color: var(--gray);
  transition: var(--transition);
}
.step-dot.done .dot {
  background: var(--orange);
  color: #fff;
}
.step-dot.active .dot {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(244,123,32,0.2);
}
.step-dot .label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.step-dot.done .label,
.step-dot.active .label { color: var(--orange); }

/* Shipment details table */
.shipment-body { padding: 2rem; }
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.detail-item {}
.detail-item .key {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.detail-item .val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

/* Timeline */
.tracking-timeline { padding: 0 2rem 2rem; }
.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.t-timeline { list-style: none; padding: 0; margin: 0; }
.t-timeline li {
  display: flex;
  gap: 1.2rem;
  position: relative;
  padding-bottom: 1.8rem;
}
.t-timeline li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 38px;
  bottom: 0;
  width: 2px;
  background: var(--gray-light);
}
.t-timeline li:last-child::before { display: none; }
.t-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.t-icon.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(244,123,32,0.35);
}
.t-icon.done { background: rgba(34,197,94,0.1); color: #22C55E; }
.t-icon.pending { background: var(--gray-light); color: var(--gray); }
.t-content {}
.t-content .t-message { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.t-content .t-time { font-size: 0.78rem; color: var(--gray); margin-top: 3px; }

/* ---- CONTACT PAGE ---- */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
  height: 100%;
}
.contact-info-card h3 { color: #fff; margin-bottom: 1rem; }
.contact-info-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(244,123,32,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon i { color: var(--orange); }
.contact-item-text .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.contact-item-text .val { font-size: 0.92rem; color: #fff; font-weight: 500; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-label-custom {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-control-custom {
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  padding: 0.75rem 1.1rem;
  font-size: 0.92rem;
  color: var(--text);
  transition: var(--transition);
  width: 100%;
  background: var(--white);
  outline: none;
}
.form-control-custom:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,123,32,0.12);
}
.form-control-custom::placeholder { color: #bbc; }

/* ---- ABOUT PAGE ---- */
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card .icon-wrap {
  width: 64px; height: 64px;
  background: rgba(244,123,32,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.value-card .icon-wrap i { color: var(--orange); font-size: 1.4rem; }
.value-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  text-decoration: none;
  border: none;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--orange-dark); color: #fff; transform: translateY(-3px); }

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- UTILS ---- */
.divider { height: 1px; background: var(--gray-light); margin: 0; }
.badge-orange {
  background: rgba(244,123,32,0.1);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .abrao-navbar.scrolled { padding: 8px 0; }
  .hero-section { min-height: auto; padding: 100px 0 80px; }
  .about-badge-float { right: 0; }
  .details-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  section { padding: 60px 0; }
  .hero-title { font-size: 2rem; }
  .track-widget { padding: 1.5rem; }
  .about-img-main { height: 300px; }
  .hero-stats { gap: 1.5rem; }
  .progress-steps { overflow-x: auto; gap: 1rem; }
}
