/* ========== Base Styles ========== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f3f3f3;
}

/* ========== Header ========== */

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f5;
  /* softer whitesmoke tone */
  padding: 12px 24px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.left-side {
  display: flex;
  align-items: center;
  gap: 15px;

}

.image-container {
  border: 2px solid #9d8eff;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.title-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-title {
  font-size: 22px;
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.caption {
  font-size: 14px;
  color: #444;
  font-style: italic;
}

.right-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  white-space: nowrap;
  gap: 6px;
}

.right-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.right-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #9d8eff, #a978ff);
  box-shadow: 0 3px 10px rgba(157, 142, 255, 0.3);
  transition: all 0.3s ease;
}

.right-links li a:hover {
  background: linear-gradient(135deg, #a978ff, #9d8eff);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(157, 142, 255, 0.4);
}

/* Active button effect */
.right-links li a:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(157, 142, 255, 0.2);
}

/* ===== PROFILE DROPDOWN ===== */
.profile-dropdown-wrap {
  position: relative;
}

.profile-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  background: linear-gradient(135deg, #7c5fe6, #a88df0);
  border: none;
  border-radius: 999px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(124, 95, 230, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.profile-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(124, 95, 230, 0.45);
}

.profile-pill-avatar {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.profile-pill-caret {
  font-size: 10px;
  opacity: 0.8;
  transition: transform 0.25s ease;
  margin-left: 2px;
}

.profile-pill[aria-expanded="true"] .profile-pill-caret {
  transform: rotate(180deg);
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 240px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(80, 60, 180, 0.16), 0 4px 16px rgba(0,0,0,0.07);
  border: 1px solid #ebe5ff;
  overflow: hidden;
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.profile-dropdown.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Header band */
.profile-dropdown-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 14px;
  background: linear-gradient(135deg, #7c5fe6 0%, #a88df0 100%);
}

.pd-avatar {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.pd-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.pd-email {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 155px;
}

/* Menu body */
.profile-dropdown-body {
  padding: 8px;
}

.profile-dropdown-divider {
  height: 1px;
  background: #f0ecff;
  margin: 6px 8px;
}

/* Override global .right-links li a for dropdown items */
.profile-dropdown .pd-item,
.profile-dropdown a.pd-item {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  color: #2d2558;
  text-decoration: none;
  background: none !important;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: none !important;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  text-align: left;
}

.profile-dropdown .pd-item .pd-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f0ecff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c5fe6;
  font-size: 13px;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.profile-dropdown .pd-item:hover {
  background: #f5f1ff !important;
  color: #7c5fe6;
  transform: translateX(3px);
}

.profile-dropdown .pd-item:hover .pd-icon {
  background: #e0d6ff;
}

/* Logout row */
.profile-dropdown-footer {
  padding: 6px 8px 8px;
  border-top: 1px solid #f0ecff;
}

.profile-dropdown .pd-logout,
.profile-dropdown button.pd-logout {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: #c0392b;
  background: none !important;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: none !important;
  transition: background 0.15s ease, transform 0.15s ease;
  text-align: left;
}

.profile-dropdown .pd-logout .pd-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff0ee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0392b;
  font-size: 13px;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.profile-dropdown .pd-logout:hover {
  background: #fff4f3 !important;
  transform: translateX(3px);
}

.profile-dropdown .pd-logout:hover .pd-icon {
  background: #ffd9d5;
}

/* ===== LOGIN MODAL ===== */
.modal {
  display: none;
  /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(67, 44, 133, 0.5);
  /* violet overlay */
  backdrop-filter: blur(3px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #f3ecff;
  border-radius: 16px;
  padding: 2.5rem 3rem;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(67, 44, 133, 0.25);
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.modal-content h2 {
  color: #432c85;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-content p {
  color: #5a35ff;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* ===== INPUT FIELDS ===== */
.modal-content input {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border: 2px solid #9d8eff;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  background: #fff;
  color: #2b2170;
  font-weight: 500;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-content input:focus {
  border-color: #5a35ff;
  box-shadow: 0 0 6px rgba(90, 53, 255, 0.3);
}

/* ===== PASSWORD FIELD ===== */
.password-field {
  position: relative;
  width: 100%;
}

.password-field input {
  padding-right: 2.8rem;
  /* room for the eye icon */
}

.password-field i {
  position: absolute;
  right: 24px;
  top: 35%;
  transform: translateY(-50%);
  color: #6a4cff;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
}

.password-field i:hover {
  color: #432c85;
  transform: translateY(-50%) scale(1.1);
}

/* ===== BUTTONS ===== */
.info-btn , .login-btn {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, #9d8eff, #a978ff);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.info-btn:hover, .login-btn:hover {
  background: linear-gradient(135deg, #a978ff, #9d8eff);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(157, 142, 255, 0.25);
}
/* ===== ROLE SELECTION BUTTONS ===== */
.role-btn {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, #9d8eff, #a978ff);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.8rem;
  transition: all 0.3s ease;
  display: block;
}

.role-btn:hover {
  background: linear-gradient(135deg, #a978ff, #9d8eff);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(157, 142, 255, 0.25);
}

/* Hidden state for dynamic buttons */
.hidden {
  display: none !important;
}

/* Wrap container for role buttons */
#login-role-options,
#signup-role-options {
  margin-top: 1.2rem;
  text-align: center;
  animation: fadeIn 0.4s ease;
}




/* ===== CLOSE BUTTON ===== */
.close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.6rem;
  color: #432c85;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.2);
  color: #5a35ff;
}

/* ===== ANIMATION ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content textarea {
  border: 2px solid #9d8eff;
  border-radius: 10px;
  font-size: 1rem;
  color: #2b2170;
  margin-bottom: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-content textarea:focus {
  border-color: #5a35ff;
  box-shadow: 0 0 6px rgba(90, 53, 255, 0.3);
}

/* ========== Navbar ========== */

.navbar {
  background-color: #9d8eff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}


.nav-links li {
  text-align: center;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: #fff;
  color: #9d8eff;
  box-shadow: 0 4px 10px rgba(157, 142, 255, 0.3);
  transform: translateY(-2px);
}

.nav-links a:hover .small-icon {
  color: #9d8eff;
}

.nav-links a.active {
  background: #fff;
  color: #9d8eff;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(157, 142, 255, 0.25);
}

.nav-links a.active i {
  color: #9d8eff;

}

.small-icon {
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: 4px;
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* ===== NAVBAR AUTH (Login / Sign Up in navbar) ===== */
.navbar-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.navbar-auth > a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar-auth > a:hover {
  background: #fff;
  color: #9d8eff;
  border-color: #fff;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-input {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  min-width: 0;
}

.search-button {
  padding: 8px 12px;
  background-color: rgb(174, 104, 255);
  color: white;
  border: 2px solid rgb(225, 198, 255);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

/* ========== Hero Section ========== */

.hero-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 80px 80px;
  background-color: #e0d4ff;
}

.hero-overlay {
  display: flex;
  padding-left: 80px;
  flex-direction: column;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
  color: black;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 25px;
  color: #333;
}

.hero-stats ul li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
  list-style: none;
}

.explore-btn {
  display: flex;
  align-items: flex-start;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  width: auto;
  padding: 0.8rem 2rem;
  background: #00bfff;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.btn:hover {
  background: #009fd9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

.hero-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


.hero-wrapper {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #f7f5ff, #ece8ff);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 18px rgba(157, 142, 255, 0.15);
  padding: 3rem 5% 0rem 5%;
  gap: 40px;
}

.hero-statistics {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  background: rgba(157, 142, 255, 0.1);
  border-radius: 10px;
  padding: 20px 0;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(88, 63, 255, 0.2);
}

.stat h3 {
  color: #6a4cff;
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  text-align: center;
}

.stat p {
  color: #333;
  font-size: 0.9rem;
  text-align: center;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 2rem 2rem 4rem 2rem;
}

/* LEFT SECTION */
.left-sec {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.left-sec h2 {
  font-size: 2rem;
  color: #2b2b2b;
}

.left-sec p {
  color: #555;
  font-size: 1.1rem;
}

.tracking-form {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 500px;
}

.tracking-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #9d8eff;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.tracking-form button {
  background: #00bfff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tracking-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(157, 142, 255, 0.4);
}

/* RIGHT SECTION */
.right-sec {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-img-new img {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===== FAQ SHARED UTILITIES ===== */
.faq-header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #7c5fe6;
  background: rgba(255,255,255,0.7);
  border: 1px solid #d4c9f7;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.faq-subtitle {
  color: #7b6fa8;
  font-size: 0.95rem;
  margin: 0;
}

.faq-subtitle a {
  color: #6c47e8;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #d4c9f7;
}

/* ===== FAQ CONTAINER (Home) ===== */
.faq {
  max-width: 860px;
  margin: 5rem auto;
  padding: 3.5rem 3rem;
  background: linear-gradient(145deg, #ede8ff, #e4dbff);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(108, 71, 232, 0.12);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,142,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.faq h2 {
  color: #16103a;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

/* ===== FAQ ITEM ===== */
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(108, 71, 232, 0.06);
  transition: box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(108, 71, 232, 0.14);
}

.faq-item input { display: none; }

/* ===== QUESTION ROW ===== */
.faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-item:hover .faq-question { background: #faf8ff; }

.fq-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ede8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c5fe6;
  font-size: 0.82rem;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.fq-text {
  flex: 1;
  font-size: 0.97rem;
  font-weight: 700;
  color: #16103a;
}

.fq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ede8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c5fe6;
  font-size: 0.72rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}

/* ===== ANSWER ===== */
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease;
}

.faq-answer p {
  padding: 0.2rem 1.2rem 1.2rem 4rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #5a5380;
}

.faq-answer strong { color: #6c47e8; }

/* ===== OPEN STATE ===== */
.faq-item input:checked ~ .faq-answer {
  max-height: 400px;
  opacity: 1;
}

.faq-item input:checked + .faq-question {
  background: #f5f1ff;
  border-bottom: 1px solid #e4dcff;
}

.faq-item input:checked + .faq-question .fq-icon-wrap {
  background: #6c47e8;
  color: #fff;
}

.faq-item input:checked + .faq-question .fq-toggle {
  transform: rotate(180deg);
  background: #6c47e8;
  color: #fff;
}



.info-sections {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

/* SECTION 1 */

.info-showcase {
  width: 100%;
  background: linear-gradient(135deg, #e0d4ff, #f3ecff);
  box-shadow: 0 6px 20px rgba(157, 142, 255, 0.15);
  padding: 5rem 0;
  display: flex;
  justify-content: center;
}

.info-container h2 {
  font-size: 2rem;
  /* matches hero-wrapper heading */
  color: #432c85;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.info-container h3 {
  font-size: 1.5rem;
  color: #432c85;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.info-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c225c;
  font-weight: 500;
  max-width: 950px;
  margin-bottom: 1rem;
}

.cta-line {
  margin-top: 2rem;
}

.learn-more-btn {
  background: #00bfff;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.learn-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(157, 142, 255, 0.4);
}

/* ========== SECTION 2 – KEY STRENGTHS ========== */
.info-features {
  width: 100%;
  background: #ffffff;
  padding: 4rem 0;
}

.info-features h2 {
  text-align: center;
  font-size: 2.3rem;
  color: #432c85;
  margin-bottom: 3rem;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.6rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(157, 142, 255, 0.25);
  border-color: #b7a2ff;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #5a35ff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #2c225c;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

/* ========== SECTION 3 – CUSTOMER REVIEWS ========== */
.info-reviews {
  width: 100%;
  background: linear-gradient(180deg, #e0d4ff 0%, #f2ebff 100%);
  padding: 4rem;
  box-shadow: 0 6px 18px rgba(157, 142, 255, 0.12);
}

.review-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.info-reviews h2 {
  text-align: center;
  font-size: 2.3rem;
  color: #432c85;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 4px 12px rgba(157, 142, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 16px rgba(157, 142, 255, 0.25);
  border-color: #b7a2ff;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.review-top i {
  font-size: 1.8rem;
  color: #5a35ff;
}

.stars {
  color: #f5b301;
  font-size: 1rem;
}

.review-card p {
  font-size: 1.05rem;
  color: #2f2f2f;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 1rem;
}

.review-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #432c85;
  text-align: right;
  border-top: 1px solid rgba(157, 142, 255, 0.2);
  padding-top: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 950px) {
  .info-container {
    padding: 0 1.5rem;
  }

  .info-container h2 {
    font-size: 2rem;
  }

  .feature-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .review-card {
    max-width: 100%;
  }
}





/* ========== Footer ========== */
.site-footer {
  background-color: #9d8eff;
  /* Deep violet - stable base tone */
  color: #f3ecff;
  padding: 40px 20px;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  /* border-top: 2px solid #5a35ff; */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  border: 2px solid #b9a7ff;
  /* Soft contrast border */
  border-radius: 12px;
  padding: 30px;
  background-color: rgb(255, 245, 227);
  /* Mid-violet blend that pops but stays elegant */
}


.footer-col {
  flex: 1 1 220px;
  text-align: center;
}

.footer-col h3,
.footer-col h4 {
  color: #4B0082;
  margin-bottom: 15px;
  padding: 6px;
  border: 1px solid #4B0082;
  display: inline-block;
  border-radius: 6px;
  font-size: 20px;
}

.footer-col p,
.footer-col ul li {
  font-size: 14px;
  color: black;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #9d8eff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 25px auto 10px;
  max-width: 90%;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: white;
}


/* ====================================================== */
/* ========== COMPREHENSIVE RESPONSIVE DESIGN ========== */
/* ====================================================== */

/* ========== EXTRA SMALL MOBILE (250px - 399px) ========== */
@media (max-width: 399px) {
  /* BASE */
  * {
    font-family: Arial, Helvetica, sans-serif;
  }

  body {
    background-color: #f3f3f3;
    padding: 0;
  }

  /* HEADER */
  .header-container {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .left-side {
    gap: 8px;
    justify-content: center;
  }

  .image-container {
    width: 35px;
    height: 35px;
  }

  .site-title {
    font-size: 16px;
  }

  .caption {
    font-size: 11px;
  }

  .search-bar {
    width: 100%;
    margin: 8px 0;
  }

  .search-input {
    width: 100% !important;
    padding: 6px 8px;
    font-size: 12px;
  }

  .search-button {
    padding: 6px 8px;
    font-size: 12px;
  }

  .right-side {
    align-items: center;
    white-space: normal;
    gap: 4px;
  }

  .right-links {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }

  .right-links li a {
    font-size: 11px;
    padding: 6px 10px;
  }

  /* NAVBAR */
  .navbar {
    padding: 0.3rem 5px;
  }

  .nav-links {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 12px;
  }

  .small-icon {
    font-size: 0.7rem;
  }

  /* HERO SECTION */
  .hero-container {
    flex-direction: column;
    padding: 20px 10px;
    gap: 20px;
  }

  .hero-overlay {
    padding-left: 0;
    text-align: center;
  }

  .hero-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .hero-stats ul li {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .hero-img {
    width: 100%;
    height: auto;
    max-width: 300px;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  /* HERO WRAPPER */
  .hero-wrapper {
    padding: 1.5rem 2%;
    gap: 20px;
  }

  .hero-statistics {
    flex-direction: column;
    gap: 15px;
    padding: 15px 10px;
  }

  .stat h3 {
    font-size: 1.4rem;
  }

  .stat p {
    font-size: 0.8rem;
  }

  .hero-content {
    flex-direction: column;
    gap: 20px;
    padding: 1.5rem 1rem;
  }

  .left-sec h2 {
    font-size: 1.4rem;
  }

  .left-sec p {
    font-size: 0.95rem;
  }

  .tracking-form {
    flex-direction: column;
  }

  .tracking-form input,
  .tracking-form button {
    width: 100%;
  }

  .right-sec {
    justify-content: center;
  }

  .hero-img-new img {
    width: 100%;
    max-width: 280px;
  }

  /* MODAL */
  .modal-content {
    width: 95%;
    padding: 1.5rem;
    max-width: 100%;
  }

  .modal-content h2 {
    font-size: 1.3rem;
  }

  .modal-content input,
  .modal-content textarea {
    font-size: 14px;
    padding: 0.6rem 0.8rem;
  }

  .role-btn,
  .login-btn,
  .info-btn {
    padding: 0.7rem;
    font-size: 0.9rem;
  }

  /* FAQ */
  .faq {
    margin: 2rem 0.5rem;
    padding: 1.5rem 1rem;
    max-width: 100%;
  }

  .faq h2 {
    font-size: 1.4rem;
  }

  .faq-question {
    padding: 0.75rem;
    gap: 8px;
  }

  .fq-text {
    font-size: 0.85rem;
  }

  .faq-answer p {
    padding: 0.2rem 0.8rem 0.8rem 2rem;
    font-size: 0.85rem;
  }

  /* INFO SECTIONS */
  .info-showcase {
    padding: 2rem 1rem;
  }

  .info-container h2 {
    font-size: 1.4rem;
  }

  .info-container h3 {
    font-size: 1.2rem;
  }

  .info-container p {
    font-size: 0.95rem;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 16px;
  }

  .footer-col p,
  .footer-col ul li {
    font-size: 12px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icons img {
    width: 24px;
    height: 24px;
  }
}

/* ========== SMALL MOBILE (400px - 599px) ========== */
@media (min-width: 400px) and (max-width: 599px) {
  /* HEADER */
  .header-container {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .left-side {
    gap: 10px;
    justify-content: center;
  }

  .image-container {
    width: 40px;
    height: 40px;
  }

  .site-title {
    font-size: 18px;
  }

  .caption {
    font-size: 12px;
  }

  .search-bar {
    width: 100%;
    margin: 8px 0;
  }

  .search-input {
    width: 100% !important;
    padding: 8px 10px;
    font-size: 13px;
  }

  .right-links {
    gap: 8px;
    justify-content: center;
  }

  .right-links li a {
    font-size: 12px;
    padding: 7px 12px;
  }

  /* NAVBAR */
  .navbar {
    padding: 0.4rem 8px;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    padding: 10px 12px;
    font-size: 13px;
  }

  /* HERO */
  .hero-container {
    flex-direction: column;
    padding: 30px 15px;
    gap: 25px;
  }

  .hero-title {
    font-size: 28px;
  }

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

  .hero-stats ul li {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .hero-img {
    width: 100%;
    max-width: 350px;
  }

  .hero-wrapper {
    padding: 2rem 3%;
    gap: 25px;
  }

  .hero-statistics {
    flex-direction: row;
    gap: 15px;
    padding: 15px;
  }

  .stat h3 {
    font-size: 1.5rem;
  }

  .stat p {
    font-size: 0.85rem;
  }

  .hero-content {
    flex-direction: column;
    gap: 20px;
    padding: 2rem 1rem;
  }

  .left-sec h2 {
    font-size: 1.6rem;
  }

  .left-sec p {
    font-size: 1rem;
  }

  .tracking-form {
    flex-direction: column;
    gap: 0.5rem;
    max-width: 100%;
  }

  .tracking-form input,
  .tracking-form button {
    width: 100%;
  }

  .hero-img-new img {
    width: 100%;
    max-width: 320px;
  }

  /* MODAL */
  .modal-content {
    width: 90%;
    padding: 2rem 1.5rem;
  }

  .modal-content h2 {
    font-size: 1.5rem;
  }

  /* FAQ */
  .faq {
    margin: 2.5rem 1rem;
    padding: 2rem 1.5rem;
  }

  .faq h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    padding: 0.85rem;
  }

  .fq-text {
    font-size: 0.9rem;
  }

  /* INFO */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .info-container h2 {
    font-size: 1.6rem;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 18px;
  }
}

/* ========== MEDIUM MOBILE (600px - 799px) ========== */
@media (min-width: 600px) and (max-width: 799px) {
  /* HEADER */
  .header-container {
    flex-direction: row;
    gap: 15px;
    padding: 12px 20px;
    flex-wrap: wrap;
  }

  .left-side {
    gap: 12px;
  }

  .image-container {
    width: 45px;
    height: 45px;
  }

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

  .caption {
    font-size: 12px;
  }

  .search-bar {
    flex: 1;
    min-width: 200px;
  }

  .search-input {
    width: 100% !important;
    padding: 8px 12px;
    font-size: 14px;
  }

  .right-links {
    gap: 10px;
  }

  .right-links li a {
    font-size: 13px;
    padding: 8px 14px;
  }

  /* NAVBAR */
  .nav-links {
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .nav-links a {
    padding: 10px 14px;
    font-size: 14px;
  }

  /* HERO */
  .hero-container {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .hero-overlay {
    padding-left: 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-img {
    width: 100%;
    max-width: 500px;
  }

  .hero-wrapper {
    padding: 2rem 4%;
  }

  .hero-statistics {
    flex-direction: row;
    gap: 20px;
    padding: 20px;
  }

  .stats h3 {
    font-size: 1.6rem;
  }

  .hero-content {
    flex-direction: column;
    gap: 25px;
    padding: 2rem;
  }

  .left-sec h2 {
    font-size: 1.8rem;
  }

  .left-sec p {
    font-size: 1.05rem;
  }

  .tracking-form {
    flex-direction: row;
    gap: 0.5rem;
    max-width: 100%;
  }

  .hero-img-new img {
    width: 100%;
    max-width: 450px;
  }

  /* MODAL */
  .modal-content {
    width: 85%;
    max-width: 450px;
    padding: 2.2rem 2rem;
  }

  /* FAQ */
  .faq {
    margin: 3rem 2rem;
    padding: 2.5rem 2rem;
  }

  .faq h2 {
    font-size: 1.8rem;
  }

  /* INFO & FEATURES */
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .info-container h2 {
    font-size: 1.8rem;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FOOTER */
  .footer-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px;
  }

  .footer-col {
    flex: 1 1 auto;
    min-width: 200px;
  }
}

/* ========== TABLET (800px - 1023px) ========== */
@media (min-width: 800px) and (max-width: 1023px) {
  /* HEADER */
  .header-container {
    gap: 15px;
    padding: 14px 30px;
  }

  .left-side {
    gap: 12px;
  }

  .image-container {
    width: 48px;
    height: 48px;
  }

  .site-title {
    font-size: 22px;
  }

  .search-bar {
    flex: 1;
    max-width: 400px;
  }

  .search-input {
    width: 100% !important;
    padding: 8px 14px;
    font-size: 14px;
  }

  .right-links li a {
    font-size: 13px;
  }

  /* NAVBAR */
  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 15px;
  }

  /* HERO */
  .hero-container {
    padding: 50px 40px;
    gap: 40px;
  }

  .hero-overlay {
    padding-left: 20px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-img {
    width: 600px;
    height: auto;
  }

  .hero-wrapper {
    padding: 3rem 5%;
  }

  .hero-content {
    gap: 5rem;
  }

  .left-sec h2 {
    font-size: 2rem;
  }

  .left-sec p {
    font-size: 1.1rem;
  }

  .tracking-form {
    max-width: 450px;
  }

  .hero-img-new img {
    width: 500px;
  }

  /* MODAL */
  .modal-content {
    width: 80%;
    max-width: 450px;
  }

  /* FAQ */
  .faq {
    margin: 4rem 2rem;
    padding: 3rem;
  }

  .faq h2 {
    font-size: 2rem;
  }

  /* SECTIONS */
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* FOOTER */
  .footer-container {
    gap: 30px;
    padding: 35px;
  }

  .footer-col {
    flex: 1 1 200px;
  }
}

/* ========== DESKTOP (1024px and above) ========== */
@media (min-width: 1024px) {
  /* Original Desktop Styles - No major changes needed */
  .header-container {
    padding: 12px 40px;
  }

  .search-input {
    width: 600px;
  }

  .hero-container {
    padding: 80px;
  }

  .hero-img {
    width: 800px;
  }

  .hero-img-new img {
    width: 650px;
  }

  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  }

  .review-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .faq {
    max-width: 860px;
    margin: 5rem auto;
  }

  .info-container {
    padding: 0 3rem;
  }
}


/* ============================================================ */
/* ======= HAMBURGER NAV + MOBILE FIXES (FINAL OVERRIDE) ====== */
/* ============================================================ */

/* --- Hamburger shows, nav collapses on all mobile/tablet --- */
@media (max-width: 899px) {
  .hamburger {
    display: flex;
    order: 1;
  }

  /* Navbar stays sticky; becomes a flex-wrap row: hamburger | Login Sign Up */
  .navbar {
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between !important;
    padding: 8px 16px;
  }

  /* Login/Sign Up stays visible next to hamburger in the same row */
  .navbar-auth {
    order: 2;
    display: flex !important;
    gap: 8px;
    margin-left: 0;
  }

  .navbar-auth > a {
    font-size: 13px !important;
    padding: 6px 12px !important;
  }

  /* Mobile profile pill in navbar (replaces Login/Sign Up when logged in) */
  .navbar-auth-profile {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 999px;
    padding: 5px 12px;
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
  }
  .navbar-auth-profile i { font-size: 12px; }

  .mobile-profile-wrap { position: relative; }

  .mobile-profile-avatar {
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
  }

  .mobile-profile-caret {
    font-size: 9px;
    opacity: 0.8;
    transition: transform 0.22s ease;
    margin-left: 2px;
  }

  .navbar-auth-profile[aria-expanded="true"] .mobile-profile-caret {
    transform: rotate(180deg);
  }

  .mobile-profile-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(80, 60, 180, 0.18), 0 4px 16px rgba(0,0,0,0.09);
    border: 1px solid #ebe5ff;
    overflow: hidden;
    z-index: 9999;
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .mobile-profile-dropdown.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
  }

  /* Nav links drop below as a full-width column when open */
  .nav-links {
    display: none !important;
    flex-direction: column;
    width: 100%;
    order: 3;
    margin: 0;
    gap: 0;
    padding: 0 0 4px 0;
    flex-wrap: nowrap !important;
  }

  .nav-links.is-open {
    display: flex !important;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav-links li { width: 100%; text-align: left; }

  .nav-links a {
    display: flex;
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: none !important;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links a:hover {
    transform: none !important;
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    box-shadow: none !important;
  }

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

  /* Header stacks cleanly */
  .header-container {
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
  }

  .left-side { justify-content: center; }

  .search-bar {
    width: 100%;
    order: 3;
  }

  /* Header Login/Sign Up hidden on mobile — navbar-auth takes over */
  .right-side {
    display: none !important;
  }

  /* Hero stacks vertically */
  .hero-container {
    flex-direction: column;
    padding: 28px 16px;
    gap: 24px;
    text-align: center;
  }

  .hero-overlay {
    padding-left: 0;
    align-items: center;
    order: 1;
  }

  .hero-img {
    order: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
  }

  .explore-btn { justify-content: center; }

  /* Hero wrapper */
  .hero-wrapper { padding: 2rem 5%; gap: 20px; }

  .hero-content {
    flex-direction: column;
    gap: 24px;
    padding: 1.5rem 1rem 3rem;
  }

  .right-sec { justify-content: center; }

  .hero-img-new img { width: 100%; max-width: 100%; }

  .tracking-form {
    flex-direction: column;
    max-width: 100%;
  }

  .tracking-form input,
  .tracking-form button { width: 100%; }

  /* Info/features */
  .feature-grid { grid-template-columns: 1fr !important; padding: 0 1.2rem; }
  .review-grid { grid-template-columns: 1fr !important; }
  .info-container { padding: 0 1.2rem; }
}

/* --- Desktop: hide hamburger, nav displays normally --- */
@media (min-width: 900px) {
  .hamburger { display: none !important; }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    margin: 0 auto;
  }

  /* Login/Sign Up lives in the header on desktop, not the navbar */
  .navbar-auth { display: none !important; }
}

/* --- Extra small (≤ 399px) --- */
@media (max-width: 399px) {
  .site-title { font-size: 17px; }
  .caption { font-size: 11px; }
  .image-container { width: 36px; height: 36px; }
  .right-links li a { font-size: 12px; padding: 6px 11px; }

  .hero-title { font-size: 24px; line-height: 1.3; }
  .hero-subtitle { font-size: 14px; }
  .hero-stats ul li { font-size: 13px; text-align: left; }
  .btn { padding: 0.7rem 1.6rem; font-size: 0.9rem; }

  .hero-statistics {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 14px;
  }

  .stat { flex: 1 1 40%; min-width: 80px; }
  .stat h3 { font-size: 1.4rem; }
  .stat p { font-size: 0.8rem; }

  .left-sec h2 { font-size: 1.4rem; }
  .left-sec p { font-size: 0.95rem; }

  .faq { margin: 2rem 0.6rem; padding: 1.6rem 1rem; }
  .faq h2 { font-size: 1.4rem; }
  .fq-text { font-size: 0.84rem; }
  .faq-answer p { font-size: 0.84rem; padding: 0.2rem 0.8rem 1rem 2.8rem; }

  .info-showcase { padding: 2.5rem 0; }
  .info-features { padding: 2.5rem 0; }
  .info-features h2 { font-size: 1.5rem !important; margin-bottom: 1.5rem !important; }
  .info-reviews { padding: 2.5rem 1rem; }
  .info-reviews h2 { font-size: 1.5rem !important; margin-bottom: 1.5rem !important; }
  .info-container h2 { font-size: 1.4rem !important; }
  .info-container h3 { font-size: 1.1rem !important; }
  .info-container p { font-size: 0.95rem; }
  .learn-more-btn { padding: 0.7rem 1.4rem; font-size: 0.9rem; }

  .feature-card { padding: 1.4rem 1.2rem; }
  .feature-card h3 { font-size: 1.05rem; }
  .feature-card p { font-size: 0.95rem; }
  .review-card { padding: 1.2rem; }
  .review-card p { font-size: 0.95rem; }

  .modal-content { width: 95%; padding: 1.5rem 1.2rem; }
  .modal-content h2 { font-size: 1.3rem; }

  .footer-container { flex-direction: column; gap: 20px; padding: 16px; }
  .footer-col { flex: 1 1 100%; }
}

/* --- Small mobile (400px - 599px) --- */
@media (min-width: 400px) and (max-width: 599px) {
  .site-title { font-size: 18px; }
  .hero-title { font-size: 27px; line-height: 1.3; }
  .hero-subtitle { font-size: 15px; }
  .hero-stats ul li { font-size: 13px; text-align: left; }
  .btn { padding: 0.75rem 1.8rem; }

  .hero-statistics { flex-wrap: wrap; justify-content: center; gap: 12px; padding: 14px; }
  .stat { flex: 1 1 40%; min-width: 90px; }
  .stat h3 { font-size: 1.5rem; }

  .left-sec h2 { font-size: 1.6rem; }
  .left-sec p { font-size: 1rem; }
  .faq h2 { font-size: 1.5rem; }

  .info-features h2 { font-size: 1.7rem !important; }
  .info-reviews h2 { font-size: 1.7rem !important; }
  .info-container h2 { font-size: 1.5rem !important; }

  .footer-container { flex-direction: column; gap: 20px; padding: 20px; }
  .footer-col { flex: 1 1 100%; }
}

/* --- Medium mobile / small tablet (600px - 899px) --- */
@media (min-width: 600px) and (max-width: 899px) {
  .hero-title { font-size: 32px; line-height: 1.3; }
  .hero-subtitle { font-size: 16px; }
  .left-sec h2 { font-size: 1.8rem; }
  .faq h2 { font-size: 1.8rem; }
  .info-features h2 { font-size: 1.9rem !important; }
  .info-reviews h2 { font-size: 1.9rem !important; }

  /* Tracking form goes back to row layout */
  .tracking-form { flex-direction: row; max-width: 100%; }
  .tracking-form input, .tracking-form button { width: auto; }
  .tracking-form input { flex: 1; }

  /* 2-column grids at this range */
  .feature-grid { grid-template-columns: repeat(2, 1fr) !important; padding: 0 1.5rem; }
  .review-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .footer-container { flex-wrap: wrap; gap: 20px; padding: 25px; }
  .footer-col { flex: 1 1 45%; }
}
