/*
Theme Name: Avizbots
Theme URI: https://avizbots.com/
Author: Avizbots
Author URI: https://avizbots.com/
Description: We offer comprehensive logistics solutions tailored to your needs
Requires at least: 5.9
Tested up to: 6.2
Requires PHP: 5.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: avizbots


/* ========================================
   1. CSS VARIABLES & ROOT STYLES
======================================== */
:root {
  /* Color Palette */
  --primary-color: #f39c12;
  --secondary-color: #003366;
  --dark-color: #222;
  --light-color: #f9f9f9;
  --white: #ffffff;
  --gray: #6c757d;
  --success: #28a745;
  
  /* Layout & Design Tokens */
  --border-radius: 5px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* ========================================
   2. BASE & TYPOGRAPHY
======================================== */
body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--dark-color);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

/* Typography Overrides */
h1 {
  color: #fff !important;
}

.modal h5 {
  color: #fff;
}

.about-hero h1 {
  color: var(--secondary-color) !important;
}

/* ========================================
   3. LAYOUT COMPONENTS
======================================== */

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Section Headers */
.section-header {
  margin-bottom: 3rem;
}

.section-header .subtitle {
  color: var(--primary-color);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 1rem;
}

.section-header h2:after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
}

/* Top Bar */
.top-bar {
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 0.9rem;
}

.top-bar i {
  color: var(--primary-color);
}

/* ========================================
   4. NAVIGATION
======================================== */
.navbar {
  background-color: var(--secondary-color);
  padding: 1rem 0;
  transition: var(--transition);
}
#navbarNav {
    justify-content: space-between;
    display: flex
;
}
.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 45px;
  margin-right: 10px;
}

.navbar-brand span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 1.5rem; /* Increased horizontal padding for more spacing */
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  transition: var(--transition);
}

.navbar-nav .btn-primary:hover {
  background-color: #e67e22;
  border-color: #e67e22;
}

/* Dropdown Menu */
.dropdown-menu {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: rgba(243, 156, 18, 0.1);
  color: var(--primary-color);
}

/* ========================================
   5. HERO & CAROUSEL
======================================== */
.hero-slider {
  position: relative;
}

.carousel-item {
  height: 100vh; /* Note: This is also defined in media queries with different values */
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.carousel-caption h1 {
  font-size: 3rem; /* Note: This is also defined in media queries with different values */
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
}

.carousel-caption p {
  font-size: 1.2rem; /* Note: This is also defined in media queries with different values */
  color: var(--white);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
}

.carousel-caption .btn {
  animation: fadeInUp 1.5s ease;
}

/* Carousel Controls */
.carousel-control-prev, .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: -60px;
}

.carousel-control-next {
  right: -60px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ========================================
   6. CONTENT SECTIONS
======================================== */

/* Services Section */
.services-section {
  background-color: var(--white);
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card .icon-container {
  width: 80px;
  height: 80px;
  background-color: rgba(243, 156, 18, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.service-link:hover {
  color: #e67e22;
}

/* Features Section */
.features-section {
  background-color: var(--light-color);
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(243, 156, 18, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--gray);
  margin-bottom: 0;
}

/* Stats Section */
.stats-section {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 4rem 0;
}

.stat-card {
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-title {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--white);
}

#testimonialCarousel .carousel-item {
  height: 280px;
}

.testimonial-item {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 0 auto;
  max-width: 800px;
}

.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.client-details h5 {
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
}

.client-details p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.rating {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-section p {
  margin-bottom: 0;
  opacity: 0.9;
}

.cta-section .btn {
  background-color: var(--white);
  color: var(--primary-color);
  font-weight: 500;
  border: none;
  padding: 0.75rem 1.75rem;
}

.cta-section .btn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* ========================================
   7. INTERACTIVE ELEMENTS
======================================== */

/* Buttons */
.btn {
  border-radius: var(--border-radius);
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #e67e22;
  border-color: #e67e22;
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: #002244;
  border-color: #002244;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: -60px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  opacity: 0;
  transition: var(--transition);
  text-decoration: none;
}

.back-to-top.active {
  bottom: 30px;
  opacity: 1;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* ========================================
   8. FOOTER
======================================== */
.footer {
  background-color: var(--secondary-color);
  color: var(--white);
}

.footer-top {
  padding: 4rem 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 45px;
  margin-right: 10px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer-widget h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-widget h4:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links li a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 0.75rem;
  color: #ddd;
}

.contact-info li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary-color);
}

/* Social Links */
.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  margin-right: 0.5rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.footer-bottom-links li {
  margin-left: 1.5rem;
}

.footer-bottom-links li a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-bottom-links li a:hover {
  color: var(--primary-color);
}

/* ========================================
   9. PAGE-SPECIFIC STYLES
======================================== */

/* Tracking Details Components */
.tracking-details-card {
  border-radius: var(--border-radius);
  border: none;
}

.tracking-details-card h5 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.tracking-details-card ul {
  font-size: 1rem;
}

.tracking-details-card .badge {
  font-size: 1rem;
  padding: 0.5em 1em;
}

/* Timeline Components */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.timeline li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 2rem;
}

.timeline li:last-child {
  margin-bottom: 0;
}

.timeline li .timeline-dot {
  position: absolute;
  left: 10px;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 3px solid var(--white);
  z-index: 1;
}

.timeline li .timeline-content {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.timeline li .timeline-time {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

/* Enhanced Tracking Details */
.enhanced-tracking-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #dee2e6;
}

.status-banner {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--success);
}

.status-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.estimated-delivery {
  text-align: right;
}

/* Progress Tracking */
.progress-tracking {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 1rem;
}

.progress-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: #e9ecef;
  z-index: 1;
}

.progress-steps::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 60px;
  width: 40%;
  height: 3px;
  background: var(--primary-color);
  z-index: 2;
  transition: width 0.3s ease;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 3;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.2rem;
  transition: var(--transition);
}

.step.completed .step-icon {
  background: var(--primary-color);
  color: var(--white);
}

.step.active .step-icon {
  background: var(--success);
  color: var(--white);
  animation: pulse 1.5s infinite;
}

.step-content h6 {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: var(--dark-color);
}

.step-content small {
  color: var(--gray);
  font-size: 0.8rem;
}

/* Info Cards */
.info-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
  overflow: hidden;
}

.info-card .card-header {
  background: linear-gradient(135deg, var(--secondary-color), #004080);
  color: var(--white);
  padding: 1rem 1.5rem;
  border: none;
}

.info-card .card-header h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: inherit !important;
}

.info-card .card-body {
  padding: 1.5rem;
}

.info-item {
  margin-bottom: 1rem;
}

.info-item label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.info-item value {
  display: block;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 1rem;
}

/* Modern Table */
.table-modern {
  margin-bottom: 0;
}

.table-modern thead th {
  background: var(--light-color);
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  padding: 1rem 0.75rem;
}

.table-modern tbody td {
  padding: 0.75rem;
  border-color: #e9ecef;
  vertical-align: middle;
}

/* Modern Timeline */
.timeline-modern {
  position: relative;
  padding-left: 2rem;
}

.timeline-modern::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e9ecef;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -1.9rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  z-index: 2;
}

.timeline-content {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 1rem;
  border-left: 3px solid var(--primary-color);
}

.timeline-content h6 {
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

/* Support Card */
.support-card {
  background: linear-gradient(135deg, var(--primary-color), #e67e22);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
}

.support-content h6 {
  color: var(--white) !important;
  margin-bottom: 0.75rem;
}

.support-info {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.support-card .support-info .fas {
  color: #fff !important;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, var(--light-color) 0%, #e9ecef 100%);
  min-height: 40vh;
  display: flex;
  align-items: center;
}

.mission-vision-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  height: 100%;
}

.mission-vision-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.company-feature {
  text-align: center;
  padding: 1rem;
}

.company-feature i {
  margin-bottom: 1rem;
}

/* Services Page Styles */
.services-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #004080 100%);
  color: var(--white);
  min-height: 40vh;
  display: flex;
  align-items: center;
}

.service-offering-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.service-offering-card:hover {
  transform: translateY(-5px);
}

.service-offering-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.service-feature-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-feature-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.service-pricing {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.service-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.delivery-process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #004080 100%);
  color: var(--white);
  min-height: 40vh;
  display: flex;
  align-items: center;
}

.contact-main-section {
  background: var(--light-color);
}

/* Contact Information Column */
.contact-info-column {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
}

.contact-info-list {
  margin: 2rem 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info-content h5 {
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.contact-info-content p {
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.contact-link {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--primary-color);
}

.quick-support-card {
  background: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.quick-support-card h5 {
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 0.75rem;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.15);
}

.contact-form .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-form .btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: var(--transition);
}

.contact-form .btn-primary:hover {
  background: #e67e22;
  border-color: #e67e22;
  transform: translateY(-2px);
}

.contact-form .invalid-feedback {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.contact-form .was-validated .form-control:valid {
  border-color: var(--success);
}

.contact-form .was-validated .form-control:invalid {
  border-color: #dc3545;
}

/* Map Section */
.contact-map-section {
  background: var(--light-color);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Form Feedback */
#contactFormFeedback {
  font-weight: 500;
}

#contactFormFeedback .alert {
  border-radius: var(--border-radius);
  border: none;
}

/* ========================================
   10. RESPONSIVE DESIGN
======================================== */

/* Large Screens (1200px and down) */
@media (max-width: 1199.98px) {
  .carousel-caption h1 {
    font-size: 2.5rem; /* DUPLICATE: Also defined above as 3rem */
  }
  
  .carousel-item {
    height: 500px; /* DUPLICATE: Also defined above as 100vh */
  }
  
  .carousel-control-prev {
    left: 0;
  }
  
  .carousel-control-next {
    right: 0;
  }
}

/* Medium Screens (992px and down) */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--secondary-color);
    padding: 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem; /* Adjusted for mobile */
  }
  
  .carousel-caption h1 {
    font-size: 2rem; /* DUPLICATE: Also defined in other media queries */
  }
  
  .carousel-item {
    height: 400px; /* DUPLICATE: Also defined in other media queries */
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  /* Progress Steps Responsive */
  .progress-steps {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .progress-steps::before,
  .progress-steps::after {
    display: none;
  }
  
  .step {
    flex: 0 0 auto;
    min-width: 120px;
  }
  
  .estimated-delivery {
    text-align: left;
    margin-top: 1rem;
  }
  
  /* Contact Page Responsive */
  .contact-info-column,
  .contact-form-wrapper {
    margin-bottom: 2rem;
  }
}

/* Small Screens (768px and down) */
@media (max-width: 767.98px) {
  .carousel-caption h1 {
    font-size: 1.75rem; /* DUPLICATE: Also defined in other media queries */
  }
  
  .carousel-caption p {
    font-size: 1rem; /* DUPLICATE: Also defined above as 1.2rem */
  }
  
  .carousel-item {
    height: 350px; /* DUPLICATE: Also defined in other media queries */
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .footer-bottom-links li {
    margin: 0 0.75rem;
  }
  
  /* Enhanced Tracking Responsive */
  .enhanced-tracking-header {
    padding: 2rem 0;
  }
  
  .status-banner {
    padding: 1rem;
  }
  
  .status-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .progress-tracking {
    padding: 1.5rem;
  }
  
  .info-card .card-body {
    padding: 1rem;
  }
  
  .step {
    min-width: 100px;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  /* Contact Page Responsive */
  .contact-hero {
    min-height: 30vh;
    padding: 3rem 0;
  }
  
  .contact-info-column,
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .contact-info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info-icon {
    margin: 0 auto 1rem;
  }
  
  .map-container iframe {
    height: 300px;
  }
}

/* Extra Small Screens (576px and down) */
@media (max-width: 575.98px) {
  .carousel-caption h1 {
    font-size: 1.5rem; /* DUPLICATE: Also defined in other media queries */
  }
  
  .carousel-item {
    height: 300px; /* DUPLICATE: Also defined in other media queries */
  }
  
  .service-card,
  .feature-card,
  .testimonial-item {
    padding: 1.5rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .back-to-top {
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .back-to-top.active {
    bottom: 15px;
  }
  
  /* Contact Form Responsive */
  .contact-form .btn-primary {
    padding: 0.75rem 1rem;
  }
  
  .quick-support-card .d-flex {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .quick-support-card .btn {
    width: 100%;
  }
}

/* ========================================
   11. PRINT STYLES
======================================== */
@media print {
  .navbar, .footer, .btn, .support-card {
    display: none !important;
  }
  
  .enhanced-tracking-header,
  .info-card .card-header {
    background: white !important;
    color: black !important;
  }
  
  .info-card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
  
  .progress-steps::after {
    background: #333 !important;
  }
}


.status-banner-notfound {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #f00;
}
.status-icon-notfound {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,  #f00,  #f00);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}