/* ========================================
   Modern Taxi Service - Fresh CSS Styles
   ======================================== */

/* Import Bootstrap Icons */
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css');

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ========================================
   CSS Variables & Root Styles
   ======================================== */
:root {
  /* Primary Colors */
  --primary-gradient-start: #667eea;
  --primary-gradient-end: #764ba2;
  --primary-color: #667eea;
  --secondary-color: #e74c3c;
  --accent-color: #ffd700;

  /* Neutral Colors */
  --dark-color: #2c3e50;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text-muted: #6c757d;

  /* Spacing */
  --section-padding: 80px 0;
  --card-padding: 30px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 50px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================================
   Global Reset & Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
}

.text-muted {
  color: var(--text-muted) !important;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: var(--section-padding);
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.text-center {
  text-align: center;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  line-height: 1.5;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-warning {
  background-color: var(--accent-color);
  color: var(--dark-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-success {
  background-color: #25d366;
  color: var(--white);
}

.btn-success:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
}

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

.btn-danger:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.btn-light {
  background-color: var(--white);
  color: var(--dark-color);
}

.btn-light:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/* ========================================
   Cards
   ======================================== */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.rounded-4 {
  border-radius: var(--radius-lg) !important;
}

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

/* ========================================
   Grid System (Bootstrap-like)
   ======================================== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.col {
  flex: 1;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.g-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}

.g-4>* {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 2rem;
}

.g-5 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.g-5>* {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-bottom: 3rem;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

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

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-3 {
  gap: 1rem;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.text-white {
  color: var(--white) !important;
}

/* ========================================
   Responsive Grid (Medium Devices)
   ======================================== */
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .text-md-end {
    text-align: right !important;
  }
}

/* ========================================
   Responsive Grid (Large Devices)
   ======================================== */
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
}

/* ========================================
   Spinner / Loading
   ======================================== */
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.spinner-border.text-primary {
  color: var(--primary-color);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   Display Utilities
   ======================================== */
.display-3 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.display-5 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

/* ========================================
   Animations
   ======================================== */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out;
}

/* ========================================
   Custom Component Styles
   ======================================== */

/* Tariff Cards */
.tariff-card {
  transition: all var(--transition-normal);
  cursor: pointer;
}

.tariff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Route Cards */
.route-card {
  transition: all var(--transition-normal);
  cursor: pointer;
}

.route-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Feature Cards */
.feature-card {
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Testimonial Cards */
.testimonial-card {
  transition: all var(--transition-normal);
}

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

/* Icon Boxes */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   Responsive Typography
   ======================================== */
@media (max-width: 768px) {

  h1,
  .display-3 {
    font-size: 2.5rem;
  }

  h2,
  .display-5 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  .lead {
    font-size: 1.125rem;
  }

  .btn-lg {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {

  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  h1,
  .display-3 {
    font-size: 2rem;
  }

  h2,
  .display-5 {
    font-size: 1.75rem;
  }

  .container {
    padding: 0 20px;
  }

  /* Hero Banner Mobile Background */
  .hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat !important;
    min-height: 600px !important;
  }
}

/* ========================================
   Misc Utilities
   ======================================== */
.small {
  font-size: 0.875rem;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

/* ========================================
   Bootstrap Icons Support
   ======================================== */
.bi {
  display: inline-block;
  vertical-align: middle;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
  .no-print {
    display: none !important;
  }
}

/* ========================================
   Accessibility
   ======================================== */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

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

/* Top Header */
.top-header {
  background-color: var(--dark-color);
  padding: 10px 0;
  font-size: 0.875rem;
}

.top-header .list-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-header .list-nav li {
  display: inline-block;
}

.top-header .list-nav a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.top-header .list-nav a:hover {
  color: var(--accent-color);
}

.top-header .list-nav i {
  margin-right: 5px;
}

.list-divider li:not(:last-child)::after {
  content: "|";
  margin-left: 15px;
  color: rgba(255, 255, 255, 0.3);
}

/* Main Navbar */
.main-navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  max-height: 60px;
  width: auto;
}

.navbar-vr {
  width: 1px;
  height: 40px;
  background-color: #e0e0e0;
  margin: 0 20px;
}

/* Navigation List */
.navigation-list {
  flex-grow: 1;
}

.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5px;
  align-items: center;
}

.navbar-nav li {
  position: relative;
}

.navbar-nav a {
  display: block;
  padding: 10px 18px;
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
}

.navbar-nav a:hover {
  color: var(--primary-color);
  background-color: rgba(102, 126, 234, 0.1);
}

/* Dropdown Submenu */
.dropdown-nav {
  position: relative;
}

.submenu-nav {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  min-width: 200px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 1001;
}

.dropdown-nav:hover .submenu-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-nav li {
  display: block;
}

.submenu-nav a {
  padding: 10px 20px;
  display: block;
  color: var(--dark-color);
  border-radius: 0;
}

.submenu-nav a:hover {
  background-color: rgba(102, 126, 234, 0.1);
  color: var(--primary-color);
  padding-left: 25px;
}

.nav-back {
  display: none;
  background: none;
  border: none;
  padding: 10px 20px;
  color: var(--dark-color);
  cursor: pointer;
  width: 100%;
  text-align: left;
}

/* Action Nav */
.action-nav {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-standard {
  padding: 12px 25px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* Mobile Toggler */
.mobile-toggler {
  display: none;
}

.navbar-toggler {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toggler-line {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.navbar-toggler:not(.collapsed) .toggler-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler:not(.collapsed) .toggler-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .toggler-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   Footer Styles
   ======================================== */
.footer-style2 {
  background-color: var(--dark-color);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-style2 .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  z-index: 0;
}

.footer-top {
  padding: 60px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 50px;
  width: auto;
}

.widget {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

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

.widget ul li {
  margin-bottom: 12px;
}

.widget ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
}

.widget ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 5px;
}

.contact-info a {
  color: var(--white);
  font-weight: 500;
}

/* Language Selector */
.language-selector {
  margin-top: 20px;
}

.language-selector .label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.custom-dropdown .btn {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

.custom-dropdown .btn img {
  width: 20px;
  height: auto;
}

.custom-dropdown .dropdown-menu {
  background-color: var(--white);
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  min-width: 100%;
}

.custom-dropdown .dropdown-item {
  padding: 10px 15px;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-dropdown .dropdown-item:hover {
  background-color: rgba(102, 126, 234, 0.1);
  color: var(--primary-color);
}

/* App Store Links */
.app-store {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.app-store li a img {
  max-width: 150px;
  height: auto;
  transition: transform var(--transition-fast);
}

.app-store li a:hover img {
  transform: scale(1.05);
}

/* Social Links */
.social-link {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-link li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition-normal);
}

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

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* ========================================
   Responsive Styles for Header & Footer
   ======================================== */
@media (max-width: 991px) {

  /* Mobile Navigation */
  .mobile-toggler {
    display: block;
  }

  .action-nav {
    display: none !important;
  }

  .navbar-vr {
    display: none;
  }

  .navigation-list {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    overflow-y: auto;
    transition: left var(--transition-normal);
    z-index: 9999;
  }

  .navigation-list.show {
    left: 0;
  }

  .navigation-list .navbar-brand {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .navbar-nav li {
    width: 100%;
  }

  .navbar-nav a {
    padding: 12px 15px;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .submenu-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: #f8f9fa;
    margin-top: 5px;
    display: none;
  }

  .dropdown-nav.active .submenu-nav {
    display: block;
  }

  .nav-back {
    display: block;
  }

  /* Footer adjustments */
  .footer-top {
    padding: 40px 0 20px;
  }

  .widget {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .top-header {
    display: none;
  }

  .brand-logo {
    max-height: 50px;
  }

  .footer-title {
    font-size: 1.125rem;
  }
}

/* ========================================
   Collapse Utility (Bootstrap-like)
   ======================================== */
.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

/* ========================================
   End of Styles
   ======================================== */