/* =========================================
   1. VARIABLES & BASE SETTINGS
   ========================================= */
:root {
  --brand-yellow: #FFB300;
  --brand-yellow-dark: #FF8F00;
  --text-yellow: #E6A200;
  --dark-bg: #1d1d22;
  --light-bg: #F8FAFC;
  --accent-light: #FFFBEB;
  --border-color: #E2E8F0;
  --success: #22c55e;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --radius-md: 12px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Added html here and width/overflow to prevent side-scrolling on mobile */
html, body {
  background: var(--light-bg);
  color: var(--dark-bg);
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden; 
  width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================================
   2. NAVBAR & DROPDOWN (PC ALIGNMENT)
   ========================================= */
.navbar {
  background: white;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.img-logo { height: 40px; width: auto; object-fit: contain; }

.nav-links { 
  display: flex; 
  gap: 30px; 
  align-items: center; 
}

.nav-links a { 
  text-decoration: none; 
  font-size: 0.95rem; 
  font-weight: 600; 
  color: #64748B; 
  transition: 0.3s; 
}

.nav-links a:hover, .nav-links a.active { color: var(--brand-yellow); }

/* Dropdown Menu - PC Version */
.dropdown { 
  position: relative; 
  display: flex; 
  align-items: center;
}

.dropdown > a { 
  cursor: pointer; 
  padding: 15px 0; 
}

.dropdown-content { 
  display: none; 
  position: absolute; 
  background-color: white; 
  min-width: 220px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
  border-radius: 12px; 
  z-index: 200; 
  top: 100%; 
  left: 50%; 
  transform: translateX(-50%); 
  overflow: hidden; 
  border: 1px solid var(--border-color); 
}

.dropdown-content a { 
  color: var(--dark-bg); 
  padding: 15px 20px; 
  text-decoration: none; 
  display: block; 
  font-size: 0.95rem; 
  font-weight: 500; 
  transition: 0.2s; 
  text-align: center; 
}

.dropdown-content a:hover { 
  background-color: var(--accent-light); 
  color: var(--brand-yellow-dark); 
}

.dropdown:hover .dropdown-content { 
  display: block; 
}

/* =========================================
   3. BUTTONS & UI
   ========================================= */
.btn { padding: 14px 28px; border-radius: 30px; border: none; font-weight: 600; cursor: pointer; margin: 5px; transition: 0.3s; font-size: 1rem; }
.btn-primary { background: var(--brand-yellow); color: var(--dark-bg); }
.btn-primary:hover { background: var(--brand-yellow-dark); transform: translateY(-3px); }
.btn-secondary { background: transparent; border: 2px solid var(--brand-yellow); color: var(--brand-yellow); }
.btn-secondary:hover { background: var(--brand-yellow); color: var(--dark-bg); transform: translateY(-3px); }

/* UPDATED: Hero Buttons Flexbox Container */
.hero-buttons {
  display: flex;
  gap: 15px;
  width: 100%;
}

.hero-buttons a {
  flex: 1;
  display: flex;
  text-decoration: none;
}

.hero-buttons .btn {
  width: 100%;
  margin: 0;
  white-space: nowrap;
}

/* =========================================
   4. HERO SECTIONS, VIDEOS & BLOBS
   ========================================= */
.hero { 
  min-height: calc(100vh - 70px); 
  height: auto;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  position: relative; 
  color: white; 
  background-color: var(--dark-bg); 
  overflow: hidden; 
}

/* Floating Sound Button */
.sound-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  background: rgba(29, 29, 34, 0.6);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(5px);
}

.sound-btn:hover {
  background: var(--brand-yellow);
  color: var(--dark-bg);
  border-color: var(--brand-yellow);
}

.sound-btn i {
  width: 18px;
  height: 18px;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Mobile video adjustments */
@media (max-width: 768px) {
  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 29, 34, 0.65); 
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 140px;
  left: 5%; 
  max-width: 600px;
  text-align: left;
  z-index: 2;
}

.hero h1 { 
  font-size: 3.5rem; 
  margin-bottom: 20px; 
  line-height: 1.2; 
}

.hero p { 
  font-size: 1.2rem; 
  max-width: 650px; 
  margin-left: 0;
  margin-right: auto; 
  margin-bottom: 30px; 
  color: #E2E8F0; 
}

/* Mobile Responsiveness: Keeps it centered on phones */
@media (max-width: 768px) {
  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    text-align: center;
    padding: 0 20px;
    margin: 0 auto;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
}

.page-header { background: linear-gradient(135deg, var(--dark-bg), #2c2c35); color: white; padding: 80px 20px; text-align: center; position: relative; overflow: hidden; }
.page-header h1 { font-size: 3rem; margin-bottom: 15px; position: relative; z-index: 2; }
.page-header p { font-size: 1.1rem; color: #E2E8F0; max-width: 600px; margin: auto; position: relative; z-index: 2; }

.blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: 0.5; animation: float 8s infinite ease-in-out alternate; }
.blob1 { width: 350px; height: 350px; background: var(--brand-yellow); top: -80px; left: -80px; }
.blob2 { width: 300px; height: 300px; background: var(--brand-yellow-dark); bottom: -80px; right: -60px; }
@keyframes float { from{transform: translateY(0px);} to{transform: translateY(30px);} }

/* =========================================
   5. LANDING PAGE (Services, Why Us, Partners)
   ========================================= */
section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.2rem; margin-bottom: 15px; color: var(--dark-bg); }
.section-title p { color: #64748B; max-width: 700px; margin: auto; }

.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; border-radius: 20px; padding: 40px 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: 0.3s; border-bottom: 4px solid transparent; cursor: pointer; text-align: center; }
.card:hover { transform: translateY(-8px); border-bottom: 4px solid var(--brand-yellow); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.feature-icon-wrapper { width: 80px; height: 80px; background: var(--accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 2px solid var(--brand-yellow); }
.feature-icon-wrapper img { width: 60%; height: auto; object-fit: contain; }
.card h3 { margin-bottom: 15px; color: var(--dark-bg); font-size: 1.3rem; }
.card p { color: #64748B; font-size: 0.95rem; }

.why { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.why div { background: var(--accent-light); padding: 20px; border-radius: 15px; font-weight: 500; border-left: 4px solid var(--brand-yellow); color: var(--dark-bg); }
.why div span { display: block; font-size: 0.85rem; color: #64748B; font-weight: 400; margin-top: 5px; }

.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.partner-card { background: white; padding: 30px 20px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: 0.3s; display: flex; flex-direction: column; align-items: center; justify-content: center; border-bottom: 4px solid transparent; }
.partner-card:hover { transform: translateY(-5px); border-bottom: 4px solid var(--brand-yellow); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.partner-card img { width: 120px; height: 80px; object-fit: contain; margin-bottom: 15px; filter: grayscale(100%); transition: 0.3s; opacity: 0.7; }
.partner-card:hover img { filter: grayscale(0%); opacity: 1; }
.partner-card p { font-size: 0.95rem; color: var(--dark-bg); font-weight: 600; text-align: center; }

/* Modal / Popup */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(29, 29, 34, 0.8); backdrop-filter: blur(4px); overflow-y: auto; }
.modal-content { background-color: white; margin: 5% auto; padding: 40px; border-radius: 20px; width: 90%; max-width: 650px; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.3); text-align: center; animation: fadeIn 0.3s ease-in-out; }
@keyframes fadeIn { from {opacity: 0; transform: translateY(-20px);} to {opacity: 1; transform: translateY(0);} }
.close-btn { position: absolute; top: 15px; right: 25px; color: #64748B; font-size: 35px; font-weight: bold; cursor: pointer; transition: 0.2s; z-index: 10; }
.close-btn:hover { color: var(--brand-yellow-dark); }
.modal-detailed-img { width: 100%; height: auto; max-height: 300px; object-fit: cover; border-radius: 12px; margin-bottom: 25px; }
.modal-text-content h2 { color: var(--dark-bg); margin-bottom: 15px; font-size: 1.8rem; }
.modal-text-content p { color: #64748B; line-height: 1.6; text-align: left; margin-bottom: 15px; }
.modal-text-content ul { color: #64748B; text-align: left; line-height: 1.8; padding-left: 20px; }

/* Bottom Call To Action */
.cta { background: linear-gradient(135deg, var(--brand-yellow), var(--brand-yellow-dark)); text-align: center; color: var(--dark-bg); padding: 80px 20px; border-radius: 30px; margin: 80px auto; width: 90%; max-width: 1100px; box-shadow: 0 15px 40px rgba(255, 179, 0, 0.2); }
.cta h2 { font-size: 2rem; margin-bottom: 30px; }
.cta .btn-primary { background: var(--dark-bg); color: white; }
.cta .btn-primary:hover { background: #33333c; }
.cta .btn-secondary { background: transparent; border: 2px solid var(--dark-bg); color: var(--dark-bg); }
.cta .btn-secondary:hover { background: var(--dark-bg); color: white; }

/* =========================================
   6. ABOUT PAGE
   ========================================= */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2 { font-size: 2.2rem; color: var(--dark-bg); margin-bottom: 20px; }
.about-text p { color: #64748B; margin-bottom: 20px; font-size: 1.05rem; }
.info-card { background: var(--accent-light); padding: 40px; border-radius: 20px; border: 2px solid var(--brand-yellow); text-align: center; }
.info-card h3 { font-size: 1.8rem; color: var(--dark-bg); margin-bottom: 20px; }
.hours-list { list-style: none; margin-bottom: 30px; }
.hours-list li { font-size: 1.1rem; color: var(--dark-bg); padding: 15px 0; border-bottom: 1px dashed #D1D5DB; display: flex; flex-direction: column; align-items: center; gap: 5px; max-width: 300px; margin: auto; }
.hours-list li:last-child { border-bottom: none; }
.hours-list li span.closed { color: #EF4444; font-weight: 600; }
.summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 50px; }
.summary-card { background: white; padding: 30px; border-radius: 15px; border-left: 4px solid var(--brand-yellow); box-shadow: 0 10px 30px rgba(0,0,0,0.03); }

/* =========================================
   7. QUOTE PAGE
   ========================================= */
.quote-wrapper { flex: 1; display: flex; align-items: center; justify-content: center; padding: 60px 20px; background: linear-gradient(to bottom, var(--dark-bg) 0%, var(--dark-bg) 25%, var(--light-bg) 25%, var(--light-bg) 100%); }
.quote-card { background: white; width: 100%; max-width: 900px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); padding: 50px; }
.quote-header { text-align: center; margin-bottom: 40px; }
.quote-header h1 { font-size: 2.2rem; color: var(--dark-bg); margin-bottom: 10px; }
.form-section { background: var(--light-bg); padding: 30px; border-radius: 15px; margin-bottom: 30px; border: 1px solid var(--border-color); }
.form-section h3 { color: var(--dark-bg); margin-bottom: 20px; font-size: 1.3rem; display: flex; align-items: center; gap: 10px; }
.form-section h3::before { content: ''; display: inline-block; width: 12px; height: 12px; background: var(--brand-yellow); border-radius: 50%; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: span 2; }
.form-group label { font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; color: var(--dark-bg); }
.form-input { padding: 14px 15px; font-size: 1rem; border: 2px solid var(--border-color); border-radius: 10px; outline: none; transition: 0.3s; width: 100%; }
.form-input:focus { border-color: var(--brand-yellow); box-shadow: 0 0 0 4px rgba(255, 179, 0, 0.1); }
textarea.form-input { resize: vertical; min-height: 120px; }
.phone-group { display: flex; gap: 10px; }
.phone-code { width: 140px; flex-shrink: 0; }
.address-details { display: none; margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--border-color); }
.btn-submit { background: var(--brand-yellow); color: var(--dark-bg); border: none; padding: 18px 40px; font-size: 1.1rem; font-weight: 700; border-radius: 12px; cursor: pointer; transition: 0.3s; width: 100%; margin-top: 10px; }

/* =========================================
   8. TRACKING PAGES (Local & International)
   ========================================= */
.tracking-wrapper-page { background: linear-gradient(to bottom, var(--dark-bg) 0%, var(--dark-bg) 70%, var(--light-bg) 70%, var(--light-bg) 100%); padding: 80px 20px 40px; text-align: center; }
.tracking-wrapper-page h1 { font-size: 2.5rem; color: white; margin-bottom: 10px; }
.tracking-wrapper-page p { color: #E2E8F0; margin-bottom: 40px; font-size: 1.1rem; }
.local-badge, .ups-badge { display: inline-block; background: var(--brand-yellow); color: var(--dark-bg); padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; margin-bottom: 15px; }
.ups-badge { background: var(--accent-light); border: 1px solid var(--brand-yellow); }

.tracking-widget { max-width: 700px; margin: 0 auto; background: white; padding: 12px; border-radius: 100px; box-shadow: 0 15px 40px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 10px; }
.tracking-icon { color: var(--text-muted); margin-left: 15px; }
.tracking-input { flex: 1; border: none; outline: none; font-size: 1.1rem; padding: 15px 10px; background: transparent; font-family: 'Inter', sans-serif; }
.track-btn { background: var(--brand-yellow); color: var(--dark-bg); border: none; padding: 15px 35px; font-size: 1.1rem; font-weight: 600; border-radius: 50px; cursor: pointer; transition: 0.3s; display: flex; align-items: center; gap: 8px;}
.track-btn:hover { background: var(--brand-yellow-dark); transform: translateY(-2px); }

.switch-tracking { display: block; margin-top: 30px; color: #E2E8F0; font-size: 0.95rem; }
.switch-tracking a { color: var(--brand-yellow); font-weight: 600; text-decoration: none; }
.switch-tracking a:hover { text-decoration: underline; }

/* Detrack API Container UI */
#loadingIndicator { display: none; text-align: center; margin-top: 40px; color: var(--text-muted); font-weight: 500; }
#trackingResultContainer { display: none; max-width: 900px; width: 90%; margin: 40px auto 80px; background: white; border-radius: var(--radius-md); box-shadow: 0 10px 40px rgba(0,0,0,0.08); overflow: hidden; font-family: 'Inter', sans-serif; }
.progress-section { padding: 40px; text-align: center; border-bottom: 1px solid var(--border-color); }

/* Progress bar - supports a variable number of dynamic steps */
.progress-bar { display: flex; justify-content: space-between; position: relative; margin-bottom: 25px; padding-bottom: 10px; overflow-x: auto; scrollbar-width: none; }
.progress-bar::-webkit-scrollbar { display: none; }
.progress-bar::before { content: ''; position: absolute; top: 22px; left: 0; right: 0; height: 4px; background: #e9ecef; z-index: 1; }
.progress-fill { position: absolute; top: 22px; left: 0; width: 0%; height: 4px; background: var(--success); z-index: 2; transition: width 0.5s ease, background-color 0.5s ease; }

.step { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; font-size: 12px; color: #666; flex: 1; min-width: 85px; font-weight: 500; }

/* Base icon styling - grey until completed/active, then colored per-status via --step-color */
.step-icon { width: 45px; height: 45px; background: white; border: 3px solid #e9ecef; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 6px; color: #94a3b8; transition: all 0.4s ease; }

.step.completed .step-icon { border-color: var(--step-color); color: var(--step-color); }
.step.active .step-icon { border-color: var(--step-color); color: var(--step-color); }

.status-title { font-size: 20px; font-weight: 600; color: #111; margin-top: 20px; text-transform: capitalize; transition: color 0.3s ease; }
.deliver-to-box { display: inline-flex; align-items: center; gap: 12px; background: #f8fafc; padding: 10px 20px; border-radius: 50px; margin-top: 20px; border: 1px solid var(--border-color); color: var(--text-main); }
.deliver-details { display: flex; flex-direction: column; text-align: left; }
.deliver-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); font-weight: 600; }
.deliver-name { font-size: 14px; font-weight: 500; }
.timeline-container { padding: 40px; text-align: left; }
.date-header { font-weight: 600; color: #888; margin-bottom: 20px; text-transform: uppercase; font-size: 0.9rem;}
.timeline { border-left: 2px solid #e6e6e6; margin-left: 20px; padding-left: 25px; }
.timeline-item { position: relative; margin-bottom: 30px; }
.timeline-item::before { content: ''; position: absolute; left: -33px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: #d1d5db; }
.timeline-item.latest::before { background: var(--step-color, var(--brand-yellow)); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--step-color, var(--brand-yellow)); }
.timeline-time { font-size: 12px; color: #999; margin-bottom: 4px; }
.timeline-event { font-weight: 600; font-size: 14px; text-transform: capitalize; color: #111; }
.timeline-reason { font-size: 13px; color: #ef4444; margin-top: 4px; font-weight: 500; }

/* FEATURES GRID (Tracking page bottom) */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1000px; margin: 0 auto 80px; padding: 0 20px; }
.feature-card { background: white; padding: 30px; border-radius: var(--radius-lg); text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: transform 0.2s, box-shadow 0.2s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.feature-icon-wrapper { width: 60px; height: 60px; background: var(--accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--brand-yellow-dark); }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--dark-bg); font-family: 'Poppins', sans-serif;}
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* =========================================
   9. FOOTER
   ========================================= */
footer { background: var(--dark-bg); color: white; text-align: center; padding: 50px 20px; margin-top: auto; }
footer h3 { color: var(--brand-yellow); margin-bottom: 15px; font-size: 1.5rem; }
footer p { opacity: 0.8; margin-bottom: 5px; }
.footer-contact { margin: 20px 0; }

/* =========================================
   HAMBURGER MENU (Default hidden on PC)
   ========================================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-bg);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* =========================================
   10. MOBILE RESPONSIVE
   ========================================= */
@media(max-width: 768px) {
  /* Show Hamburger Icon */
  .hamburger {
    display: flex;
  }

  /* Transform Nav Links into a Side Menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0; 
    transform: translateX(100%); /* Hides it securely off-screen */
    width: 250px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out; /* Animates the transform */
    z-index: 150;
  }

  /* Slide in active class */
  .nav-links.nav-active { 
    transform: translateX(0); /* Brings it back to its normal position */
  }
  
  /* Link padding for touch targets */
  .nav-links a { font-size: 1.1rem; padding: 10px 0; width: 100%; }

  /* Fix the Dropdown for Mobile (Stacks Links Downward) */
  .dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
    transform: none;
    width: 100%;
    padding-left: 15px;
    margin-top: 0;
  }

  .dropdown-content a {
    text-align: left;
    padding: 10px 0;
  }
  
  .dropdown.mobile-active .dropdown-content { display: block; }

  /* Hamburger to 'X' Animation */
  .hamburger.toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.toggle span:nth-child(2) { opacity: 0; }
  .hamburger.toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Element Adjustments for Mobile */
  .hero h1 { font-size: 2.5rem; }
  .page-header h1 { font-size: 2.2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .quote-card { padding: 30px 20px; }
  .phone-code { width: 120px; }
  .modal-content { margin: 15% auto; padding: 30px 20px; } 
  .tracking-wrapper-page h1 { font-size: 2rem; }
  .tracking-widget { margin: 0 10px; flex-direction: column; border-radius: var(--radius-md); padding: 15px; }
  .tracking-icon { display: none; }
  .tracking-input { width: 100%; text-align: center; margin-bottom: 10px; }
  .track-btn { width: 100%; justify-content: center; border-radius: 12px;}
  .progress-bar { gap: 5px; }
  .step-icon { width: 35px; height: 35px; font-size: 14px; }
  .timeline-container { padding: 25px; }

  /* UPDATED: Mobile adjustment for hero buttons */
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

/* Force the features cards to stack vertically on mobile (Bulletproof Flexbox method) */
  .features { 
    display: flex !important;
    flex-direction: column !important;
    gap: 20px; 
    padding: 0 20px; 
  }

  .feature-card {
    width: 100% !important;

    
  }

  
}

body {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/* Allow highlighting inside form inputs so people can still type and edit their details */
input, textarea {
  -webkit-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}