/* --------------------- */
/* GLOBAL RESETS */
/* --------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: linear-gradient(135deg, #f8f9fb 0%, #e8ecf1 100%);
  color: #1a1a1a;
  min-height: 100vh;
}

a { 
  text-decoration: none; 
  color: inherit;
  transition: all 0.3s ease;
}

h3 {
  margin-top: 20px;
  margin-bottom: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --------------------- */
/* NAVIGATION */
/* --------------------- */
.navbar {
  background: linear-gradient(135deg, #0F3A6F 0%, #1A5FA0 50%, #0F3A6F 100%);
  padding: 16px 0;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(15, 58, 111, 0.3);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.logo {
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links li a:hover {
  background-color: rgba(26, 115, 232, 0.2);
  color: #64B5F6;
}

.btn-primary {
  background: linear-gradient(135deg, #1A73E8 0%, #1565C0 100%);
  padding: 8px 16px;
  border-radius: 6px;
  color: white !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* --------------------- */
/* HERO SECTION & SLIDER */
/* --------------------- */
.hero {
  padding: 0;
  text-align: center;
  color: white;
  position: relative;
  min-height: 500px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
}

.slide {
  display: none;
  position: relative;
  height: 500px;
}

.slide.fade {
  animation: fade 1s;
}

@keyframes fade {
  from { opacity: 0.4 }
  to { opacity: 1 }
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  animation: slideInUp 0.6s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -20%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.slide-text h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.slide-text p {
  font-size: 18px;
  font-weight: 500;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  background-color: rgba(0,0,0,0.5);
  font-weight: bold;
  font-size: 20px;
  border-radius: 4px;
  user-select: none;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.next {
  right: 0;
}

.prev {
  left: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 8px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: rgba(255,255,255,0.9);
}

.dot:hover {
  background-color: rgba(255,255,255,0.7);
}

.hero .cta-btn {
  margin-top: 30px;
  display: inline-block;
  background: linear-gradient(135deg, #1A73E8 0%, #1565C0 100%);
  padding: 12px 24px;
  border-radius: 8px;
  color: white;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hero .cta-btn:hover {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* --------------------- */
/* SECTION HEADERS */
/* --------------------- */
.section {
  padding: 60px 20px;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
  color: #0F3A6F;
}

/* --------------------- */
/* SERVICE CARDS */
/* --------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.15);
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
}

.service-card i {
  font-size: 40px;
  color: #1A73E8;
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.2);
  color: #0D47A1;
}

.service-card h3 {
  color: #1A73E8;
  margin-bottom: 10px;
}

/* --------------------- */
/* TRANSPORTATION / GENERIC LAYOUT HELPERS */
/* --------------------- */
.hero-small .container {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
}
.hero-small .hero-text {
  flex: 1 1 55%;
  color: #0F3A6F;
}
.hero-small .hero-text h1 { color: #0F3A6F; margin-bottom:12px; }
.hero-small .hero-media { flex: 1 1 40%; text-align: right; }
.hero-small .hero-media img { max-width: 100%; height: auto; display: inline-block; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.feature-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: white;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(11,55,100,0.06);
}
.feature-card i { color: #0D47A1; font-size: 28px; margin-top:6px; }
.feature-card h4 { margin: 0 0 6px 0; color: #0F3A6F; }
.feature-card p { margin: 0; color: #444; font-size: 15px; }

.workflow { display: grid; gap: 12px; margin-top: 18px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step-icon { flex: 0 0 56px; }
.step-body h4 { margin: 0 0 6px 0; color: #0F3A6F; }
.step-body p { margin: 0; color: #333; }

.case-study { background: #f8fbff; padding: 16px; border-radius: 10px; margin: 12px 0; border-left: 4px solid #1A73E8; }
.case-study p { margin: 8px 0; color: #333; }

.faq { margin-top: 12px; }
.faq-item { margin-bottom: 10px; }
.faq-q {
  width: 100%;
  text-align: left;
  background: white;
  border: 1px solid #e6eefc;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 600;
  color: #0F3A6F;
  cursor: pointer;
}
.faq-a { display: none; padding: 10px 14px; background: #fff; border-left: 3px solid #e6eefc; border-radius: 6px; margin-top:6px; color:#333; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #0F3A6F;
  padding: 8px 14px;
  border-radius: 6px;
  border: 2px solid rgba(11,55,100,0.08);
  font-weight: 600;
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(11,55,100,0.06); }

@media (max-width: 900px) {
  .hero-small .container { flex-direction: column; text-align: left; }
  .hero-small .hero-media { text-align: left; }
  .features-grid { grid-template-columns: 1fr; }
}


/* --------------------- */
/* OFFICES GRID */
/* --------------------- */
.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.office-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-align: center;
}

.office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
}

.office-card i {
  font-size: 32px;
  color: #1A73E8;
  margin-bottom: 12px;
  display: block;
}

.office-card h3 {
  color: #0F3A6F;
  margin: 10px 0;
  font-size: 20px;
}

.office-type {
  color: #1A73E8;
  font-weight: 600;
  margin: 8px 0;
}

.office-details {
  text-align: left;
  background: #f8f9fb;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
}

.office-details p {
  margin: 5px 0;
  color: #333;
}

.office-details a {
  color: #1A73E8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.office-details a:hover {
  color: #1565C0;
  text-decoration: underline;
}

.map-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1A73E8 0%, #1565C0 100%);
  color: white !important;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  margin: 10px 0;
  transition: background 0.3s ease, transform 0.2s ease;
  font-size: 14px;
  font-weight: 600;
}

.map-btn:hover {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  transform: translateY(-2px);
}

.office-card h4 {
  color: #0F3A6F;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 14px;
}

.services-available {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.services-available span {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
  color: #1A73E8;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #1A73E8;
}

/* --------------------- */
/* CONTACT CTA SECTION */
/* --------------------- */
.contact-cta {
  text-align: center;
  background: linear-gradient(135deg, #1A73E8 0%, #1565C0 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  margin-top: 40px;
}

.contact-cta h3 {
  color: white;
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-size: 16px;
}

.cta-link-btn {
  display: inline-block;
  background: white;
  color: #1A73E8;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* --------------------- */
/* CONTACT PAGE */
/* --------------------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-section h3,
.contact-form-section h3 {
  color: #0F3A6F;
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-info-section p,
.contact-form-section p {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-method {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.15);
}

.contact-method i {
  font-size: 32px;
  color: #1A73E8;
  margin-bottom: 12px;
  display: block;
}

.contact-method h4 {
  color: #0F3A6F;
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-method p {
  margin: 8px 0;
  color: #333;
  font-size: 15px;
}

.contact-method a {
  color: #1A73E8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.contact-method a:hover {
  color: #1565C0;
  text-decoration: underline;
}

.small-text {
  font-size: 12px;
  color: #888;
  font-style: italic;
  margin-top: 8px !important;
}

.contact-form-section form {
  max-width: 100%;
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 8px;
  color: #0F3A6F;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1A73E8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #1A73E8;
  flex-shrink: 0;
  margin: 3px 0 0 0;
  transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"]:hover {
  box-shadow: 0 2px 6px rgba(26, 115, 232, 0.15);
}

.checkbox-group input[type="checkbox"]:checked {
  background: #1A73E8;
}

.checkbox-label {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}

.checkbox-label a {
  color: #1A73E8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.checkbox-label a:hover {
  color: #0D47A1;
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #1A73E8 0%, #1565C0 100%);
  padding: 14px;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* --------------------- */
/* MODAL POPUP */
/* --------------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  animation: fadeIn 0.3s ease;
}

/* When modal has the 'open' class, make it visible and center the dialog */
.modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background-color: white;
  margin: 50px auto;
  position: relative;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #666;
  background: transparent;
  border: none;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

.modal-close:hover {
  background: rgba(0,0,0,0.06);
  color: #000;
}

.modal-content h2 {
  color: #0F3A6F;
  margin-bottom: 20px;
}

.modal-body p {
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
}

.modal-footer {
  text-align: center;
  margin-top: 16px;
}

.modal-footer .btn {
  display: inline-block;
  background: linear-gradient(135deg, #1A73E8 0%, #1565C0 100%);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.modal-footer .btn:hover {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
}

/* --------------------- */
/* CONTACT FORM */
/* --------------------- */
form {
  max-width: 500px;
  margin: auto;
}

form input, form textarea, form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  font-family: "Inter", sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus, form textarea:focus, form select:focus {
  outline: none;
  border-color: #1A73E8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

form button {
  width: 100%;
  background: linear-gradient(135deg, #1A73E8 0%, #1565C0 100%);
  padding: 12px;
  border: none;
  color: white;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

form button:hover {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

form button:active {
  transform: translateY(0);
}

/* --------------------- */
/* ABOUT PAGE */
/* --------------------- */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-content h3 {
  color: #0F3A6F;
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 24px;
}

.about-content p {
  color: #333;
  margin-bottom: 15px;
  font-size: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.value-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.15);
}

.value-card i {
  font-size: 40px;
  color: #1A73E8;
  margin-bottom: 15px;
  display: block;
}

.value-card h4 {
  color: #0F3A6F;
  margin-bottom: 10px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-item i {
  font-size: 24px;
  color: #1A73E8;
  margin-top: 3px;
  flex-shrink: 0;
}

.feature-item h4 {
  color: #0F3A6F;
  margin-bottom: 8px;
}

.feature-item p {
  margin: 0;
  color: #666;
  font-size: 15px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.team-member {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.15);
}

.member-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1A73E8 0%, #1565C0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 40px;
  color: white;
}

.team-member h4 {
  color: #0F3A6F;
  margin-bottom: 5px;
}

.team-member p {
  margin: 5px 0;
  font-size: 14px;
}

.member-bio {
  color: #666;
  font-size: 13px;
  font-style: italic;
}

.timeline {
  position: relative;
  padding: 30px 0 30px 40px;
  margin: 30px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #1A73E8 0%, #1565C0 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: white;
  border: 3px solid #1A73E8;
  border-radius: 50%;
}

.timeline-year {
  font-size: 24px;
  font-weight: 700;
  color: #1A73E8;
  margin-bottom: 5px;
}

.timeline-content h4 {
  color: #0F3A6F;
  margin-bottom: 8px;
  font-size: 18px;
}

.timeline-content p {
  color: #666;
  margin: 0;
}

/* --------------------- */
/* STATS SECTION */
/* --------------------- */
.stats-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
  padding: 60px 20px;
}

.stats-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  color: #0F3A6F;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(26, 115, 232, 0.2);
}

.stat-card i {
  font-size: 40px;
  color: #1A73E8;
  margin-bottom: 15px;
  display: block;
}

.stat-card h3 {
  font-size: 36px;
  font-weight: 700;
  color: #0F3A6F;
  margin: 10px 0;
}

.stat-card p {
  color: #666;
  font-size: 16px;
  margin: 0;
}

/* --------------------- */
/* TESTIMONIALS SECTION */
/* --------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #1A73E8;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.15);
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.stars i {
  font-size: 16px;
  color: #FFD700;
}

.testimonial-text {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1A73E8 0%, #1565C0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.testimonial-author h4 {
  margin: 0;
  color: #0F3A6F;
  font-size: 14px;
}

.testimonial-author p {
  margin: 3px 0 0 0;
  color: #888;
  font-size: 12px;
}

/* --------------------- */
/* CERTIFICATIONS SECTION */
/* --------------------- */
.certifications-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
  padding: 60px 20px;
}

.certifications-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  color: #0F3A6F;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cert-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.15);
}

.cert-card i {
  font-size: 36px;
  color: #1A73E8;
  margin-bottom: 12px;
  display: block;
}

.cert-card h4 {
  color: #0F3A6F;
  margin-bottom: 8px;
  font-size: 15px;
}

.cert-card p {
  color: #666;
  font-size: 13px;
  margin: 0;
}

/* --------------------- */
/* FOOTER */
/* --------------------- */
.footer {
  background: linear-gradient(135deg, #0F3A6F 0%, #1A5FA0 50%, #0F3A6F 100%);
  color: white;
  padding: 50px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.footer a {
  color: #cde2ff;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #64B5F6;
  text-decoration: underline;
}

.footer i {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.footer a:hover i {
  transform: scale(1.2);
}

.copyright {
  text-align: center;
  margin-top: 20px;
  opacity: 0.7;
}

/* --------------------- */
/* RESPONSIVE DESIGN */
/* --------------------- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: linear-gradient(135deg, #0F3A6F 0%, #1A5FA0 100%);
    padding: 20px 0;
    gap: 0;
    display: none;
    z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .office-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  form input, form textarea, form select {
    font-size: 16px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline-item {
    padding-left: 0;
    border-left: none;
    padding-bottom: 30px;
  }

  .timeline-item::before {
    left: -35px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Track Section */
.track-section {
  background: #f0f7ff;
  padding: 60px 0;
}
.track-container {
  max-width: 700px;
  margin: 0 auto;
}
.track-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(15,58,111,0.1);
}
.track-form .form-group {
  margin-bottom: 20px;
}
.track-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0F3A6F;
}
.track-form input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e7ff;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.2s;
}
.track-form input:focus {
  outline: none;
  border-color: #1A73E8;
}
.track-form small {
  display: block;
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}

.tracking-result {
  animation: slideIn 0.3s ease;
}
.result-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(15,58,111,0.1);
}
.result-card h3 {
  color: #0F3A6F;
  margin-bottom: 20px;
}

.shipment-status {
  background: #f0f7ff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: center;
}
.status-badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 10px;
}
.status-badge.delivered {
  background: #d4f4e8;
  color: #1ebe57;
}
.status-badge.in-transit {
  background: #fff3cd;
  color: #ff9800;
}
.status-badge i {
  margin-right: 8px;
}

.shipment-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.detail-item {
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
}
.detail-item strong {
  color: #0F3A6F;
  display: block;
  margin-bottom: 6px;
}
.detail-item span {
  color: #333;
}

.tracking-timeline {
  margin: 30px 0;
  padding-top: 20px;
  border-top: 2px solid #e0e7ff;
}
.tracking-timeline h4 {
  color: #0F3A6F;
  margin-bottom: 20px;
}
.timeline-event {
  display: flex;
  margin-bottom: 20px;
  position: relative;
}
.timeline-dot {
  width: 16px;
  height: 16px;
  background: #1A73E8;
  border-radius: 50%;
  margin-top: 4px;
  margin-right: 20px;
  flex-shrink: 0;
}
.timeline-content {
  flex-grow: 1;
}
.timeline-content strong {
  color: #0F3A6F;
}
.timeline-content p {
  color: #666;
  margin: 5px 0;
  font-size: 14px;
}
.timeline-content small {
  color: #999;
  font-size: 12px;
}

.no-result {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(15,58,111,0.1);
}
.no-result i {
  font-size: 48px;
  color: #ff6b6b;
  margin-bottom: 15px;
}
.no-result p {
  color: #666;
  margin-bottom: 15px;
}
.no-result a {
  color: #1A73E8;
  text-decoration: none;
  font-weight: 600;
}

/* Calculator Section */
.calculator-section {
  background: #f0f7ff;
  padding: 60px 0;
}
.calculator-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.calculator-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(15,58,111,0.1);
}
.calculator-form h3 {
  color: #0F3A6F;
  margin-bottom: 20px;
  font-size: 20px;
}
.calculator-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.calculator-form .form-group {
  display: flex;
  flex-direction: column;
}
.calculator-form label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #0F3A6F;
}
.calculator-form input,
.calculator-form select {
  padding: 12px 15px;
  border: 2px solid #e0e7ff;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.2s;
}
.calculator-form input:focus,
.calculator-form select:focus {
  outline: none;
  border-color: #1A73E8;
}

.calculator-result {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(15,58,111,0.1);
  margin-top: 30px;
  animation: slideIn 0.3s ease;
}
.calculator-result h3 {
  color: #0F3A6F;
  margin-bottom: 25px;
  text-align: center;
}
.cost-breakdown {
  background: linear-gradient(135deg, #0F3A6F 0%, #1A5FA0 100%);
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  margin-bottom: 20px;
}
.cost-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: 16px;
}
.cost-item:last-child {
  border-bottom: none;
}
.cost-item.total {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 2px solid rgba(255,255,255,0.4);
  font-size: 18px;
}

.quote-cta {
  background: #f0f7ff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}
.quote-cta p {
  margin: 0 0 15px 0;
  color: #333;
}
.quote-cta a {
  color: #1A73E8;
  text-decoration: none;
  font-weight: 600;
}
.quote-cta .whatsapp-link {
  color: #25D366;
}

.error-message {
  background: #ffe0e0;
  padding: 20px;
  border-radius: 8px;
  color: #c20000;
  text-align: center;
  margin-top: 20px;
  animation: slideIn 0.3s ease;
}
.error-message i {
  margin-right: 10px;
}

/* Quote Section */
.quote-section {
  background: #f0f7ff;
  padding: 60px 0;
}
.quote-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.quote-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(15,58,111,0.1);
}
.quote-form h3 {
  color: #0F3A6F;
  margin-bottom: 25px;
  font-size: 20px;
}
.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.quote-form .form-group {
  display: flex;
  flex-direction: column;
}
.quote-form label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #0F3A6F;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 12px 15px;
  border: 2px solid #e0e7ff;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #1A73E8;
}
.quote-form textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  cursor: pointer;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  margin: 0;
  font-weight: normal;
  cursor: pointer;
}

.form-help {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 15px;
}

.success-message {
  background: #d4f4e8;
  border-left: 4px solid #1ebe57;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  animation: slideIn 0.3s ease;
}
.success-message i {
  font-size: 48px;
  color: #1ebe57;
  display: block;
  margin-bottom: 15px;
}
.success-message h3 {
  color: #1ebe57;
  margin-bottom: 10px;
}
.success-message p {
  color: #333;
  margin-bottom: 10px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .track-form,
  .calculator-form,
  .quote-form,
  .result-card,
  .calculator-result {
    padding: 20px;
  }
  
  .calculator-form .form-row,
  .quote-form .form-row,
  .shipment-details {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .cost-breakdown {
    padding: 20px;
  }
}

/* FAQ Section */
.faq-section {
  background: #f0f7ff;
  padding: 60px 0;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #0F3A6F;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(15,58,111,0.07);
  margin-bottom: 24px;
  padding: 24px 28px;
  transition: box-shadow 0.2s;
}
.faq-item h3 {
  color: #1A5FA0;
  margin-bottom: 10px;
  font-size: 20px;
}
.faq-item p {
  margin: 0;
  color: #333;
}
.faq-item a.whatsapp-link {
  color: #25D366;
  text-decoration: none;
  font-weight: 600;
}
.faq-item a.whatsapp-link i {
  margin-right: 6px;
}

/* --------------------- */
/* AI Smart FAQ Widget */
/* --------------------- */
.ai-faq-widget {
  max-width: 880px;
  margin: 12px auto 26px auto;
  text-align: left;
}
.ai-faq-label {
  display: block;
  font-weight: 700;
  color: #0F3A6F;
  margin-bottom: 8px;
}
.ai-faq-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 2px solid #e0e7ff;
  font-size: 15px;
  margin-bottom: 8px;
}
.ai-faq-results { margin-top: 10px; }
.ai-faq-empty, .ai-faq-no { color: #666; background: #fff; padding: 12px; border-radius: 8px; }
.ai-faq-list { display: grid; gap: 10px; }
.ai-faq-result {
  text-align: left;
  background: white;
  border: 1px solid rgba(11,55,100,0.06);
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
}
.ai-faq-result strong { color: #0F3A6F; display:block; margin-bottom:6px; }
.ai-faq-snippet { color: #444; font-size: 14px; }

.ai-faq-result:focus {
  outline: 3px solid rgba(26,115,232,0.18);
  box-shadow: 0 6px 20px rgba(26,115,232,0.09);
}
.ai-faq-result.active {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
  border-color: #1A73E8;
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 32px;
  right: 32px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 1002;
  transition: background 0.2s;
}
.whatsapp-float:hover {
  background: #1ebe57;
  color: #fff;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 32px 0;
  }
  .faq-item {
    padding: 18px 12px;
  }
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 26px;
    bottom: 18px;
    right: 18px;
  }
}
