/* Industrial Blue & Amber - Architectural Studio Theme */

:root {
  --primary-color: #1565C0;
  --secondary-color: #FF6F00;
  --primary-dark: #0D47A1;
  --secondary-dark: #E65100;
  --primary-light: #42A5F5;
  --secondary-light: #FFB74D;
  --text-dark: #212529;
  --text-light: #6c757d;
  --bg-light: #F5F7FA;
  --white: #FFFFFF;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  background: rgba(21, 101, 192, 0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(21, 101, 192, 1) !important;
  padding: 0.5rem 0;
}

.navbar-brand {
  color: var(--white) !important;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition);
}

.navbar-brand:hover {
  color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

.navbar-brand .bi {
  color: var(--secondary-color) !important;
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.navbar-toggler {
  border: 2px solid var(--white) !important;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1.5rem !important;
  margin: 0 0.25rem;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
  background: rgba(255, 111, 0, 0.1);
  border-radius: 5px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 80%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.diagonal-split {
  background: linear-gradient(to right, var(--primary-color) 50%, transparent 50%);
  z-index: 1;
  opacity: 0.3;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .badge {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem !important;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

.hero-content .display-3,
.display-4,
.display-5 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content .lead {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 400;
  line-height: 1.8;
}

.cargo-animation {
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Buttons */
.btn {
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: var(--secondary-dark) !important;
  border-color: var(--secondary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 111, 0, 0.5);
}

.btn-outline-light {
  border: 2px solid var(--white) !important;
  color: var(--white) !important;
  background: transparent !important;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--white) !important;
  color: var(--primary-color) !important;
  border-color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  background: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.active {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.btn-outline-secondary {
  border: 2px solid var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  background: transparent !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  border-color: var(--secondary-color) !important;
}

.btn-light {
  background: var(--white) !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--white) !important;
}

.btn-light:hover {
  background: var(--bg-light) !important;
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1.5rem !important;
  font-size: 0.875rem;
}

/* Tracking Card */
.tracking-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  margin-top: -100px;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(21, 101, 192, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.tracking-card .d-inline-flex {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 20px;
  color: var(--white) !important;
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(21, 101, 192, 0.3);
}

.form-label {
  color: var(--text-dark) !important;
  font-weight: 600 !important;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.input-group-text {
  background: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  color: var(--white) !important;
  font-weight: 600;
}

.form-control,
.form-select {
  border: 2px solid #dee2e6 !important;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 10px;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(21, 101, 192, 0.15) !important;
  outline: none;
}

.form-control-lg {
  padding: 1rem 1.5rem !important;
  font-size: 1.1rem !important;
}

.input-group-lg .input-group-text {
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
}

/* Status Indicator */
.status-indicator {
  background: var(--bg-light);
  border-radius: 15px;
  border-left: 5px solid var(--primary-color);
  transition: var(--transition);
}

.status-indicator.success {
  border-left-color: #28a745;
  background: rgba(40, 167, 69, 0.1);
}

.status-indicator.warning {
  border-left-color: var(--secondary-color);
  background: rgba(255, 111, 0, 0.1);
}

.spinner-grow {
  color: var(--primary-color) !important;
}

.status-content h4 {
  color: var(--primary-color) !important;
  font-weight: 700;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition);
  border: 2px solid transparent;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(21, 101, 192, 0.15) !important;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  transform: rotate(5deg) scale(1.1);
}

.service-card h4 {
  color: var(--text-dark) !important;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light) !important;
  line-height: 1.8;
}

/* Team Cards */
.team-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 400px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-overlay {
  background: linear-gradient(to top, rgba(21, 101, 192, 0.95), transparent);
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-card:hover img {
  transform: scale(1.1);
}

/* Counter Section */
.counter {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color) !important;
  line-height: 1;
  display: block;
}

/* Cards */
.card {
  border-radius: 15px;
  border: 2px solid rgba(21, 101, 192, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
  transition: var(--transition);
}

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

.card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
  color: var(--white) !important;
  border-bottom: none;
  padding: 1.5rem;
  font-weight: 700;
}

.card-body {
  padding: 2rem;
}

.card-footer {
  background: var(--bg-light);
  border-top: 2px solid rgba(21, 101, 192, 0.1);
  padding: 1.5rem;
}

.card-title {
  color: var(--primary-color) !important;
  font-weight: 700;
}

/* Badges */
.badge {
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 50px;
}

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

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

.bg-success {
  background-color: #28a745 !important;
  color: var(--white) !important;
}

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

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

/* Text Colors */
.text-primary {
  color: var(--primary-color) !important;
}

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

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

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

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

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

/* Progress Bar */
.progress {
  height: 12px;
  border-radius: 10px;
  background-color: rgba(21, 101, 192, 0.1);
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light)) !important;
  border-radius: 10px;
  transition: width 1s ease;
}

/* Timeline */
.timeline {
  position: relative;
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-color);
}

.milestone-icon {
  position: absolute;
  left: -12px;
  top: 0;
  width: 30px;
  height: 30px;
  background: var(--white);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color) !important;
  font-size: 1rem;
}

.milestone-icon.completed {
  background: var(--primary-color);
  color: var(--white) !important;
}

.milestone-icon.pending {
  background: var(--white);
  border-color: #dee2e6;
  color: #dee2e6 !important;
}

/* Accordion */
.accordion-item {
  border: 2px solid rgba(21, 101, 192, 0.1) !important;
  border-radius: 15px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: var(--white) !important;
  color: var(--text-dark) !important;
  font-weight: 600;
  padding: 1.5rem;
  font-size: 1.1rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
  color: var(--white) !important;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-button.collapsed::after {
  filter: none;
}

.accordion-body {
  padding: 2rem;
  background: var(--white);
  color: var(--text-light) !important;
  line-height: 1.8;
}

/* List Group */
.list-group-item {
  border: none !important;
  border-bottom: 1px solid rgba(21, 101, 192, 0.1) !important;
  padding: 1.25rem;
  transition: var(--transition);
}

.list-group-item:hover {
  background: var(--bg-light) !important;
  padding-left: 2rem;
}

.list-group-flush .list-group-item:last-child {
  border-bottom: none !important;
}

/* Alerts */
.alert {
  border-radius: 15px;
  border: 2px solid;
  padding: 1.5rem;
  font-weight: 500;
}

.alert-info {
  background: rgba(21, 101, 192, 0.1) !important;
  border-color: var(--primary-color) !important;
  color: var(--primary-dark) !important;
}

.alert-success {
  background: rgba(40, 167, 69, 0.1) !important;
  border-color: #28a745 !important;
  color: #155724 !important;
}

.alert-heading {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

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

.btn-check:checked + .btn-outline-primary {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
}

/* Form Check */
.form-check-input {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #dee2e6;
  cursor: pointer;
}

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

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(21, 101, 192, 0.15) !important;
}

.form-check-label {
  cursor: pointer;
  margin-left: 0.5rem;
  color: var(--text-dark) !important;
}

/* Fleet Items */
.fleet-item {
  border-radius: 15px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.fleet-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vehicle-preview {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Filter Buttons */
.filter-btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color) !important;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Rounded Elements */
.rounded {
  border-radius: 15px !important;
}

.rounded-pill {
  border-radius: 50px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

.shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Sticky Elements */
.sticky-top {
  position: sticky;
  top: 80px;
  z-index: 100;
}

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

.position-sticky {
  position: sticky !important;
  top: 100px;
}

/* Fixed Chat Button */
.position-fixed.end-0 {
  right: 2rem !important;
  bottom: 2rem !important;
  z-index: 1000;
}

.position-fixed .btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 25px rgba(21, 101, 192, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 5px 25px rgba(21, 101, 192, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(21, 101, 192, 0.6);
  }
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--white) !important;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

footer h5,
footer h4,
footer h3 {
  color: var(--white) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

footer p,
footer li,
footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 2;
}

footer a {
  text-decoration: none !important;
  transition: var(--transition);
  display: inline-block;
}

footer a:hover {
  color: var(--secondary-color) !important;
  transform: translateX(5px);
}

.list-unstyled li {
  margin-bottom: 0.75rem;
}

/* Social Icons */
footer .bi-facebook,
footer .bi-linkedin,
footer .bi-twitter {
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

footer .bi-facebook:hover,
footer .bi-linkedin:hover,
footer .bi-twitter:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
  color: var(--white) !important;
}

/* Spacing Utilities */
.py-5 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

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

.my-5 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.my-4 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(21, 101, 192, 0.98);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-nav .nav-link {
    padding: 1rem !important;
    border-radius: 10px;
    margin: 0.25rem 0;
  }

  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }

  .display-3 {
    font-size: 2.5rem !important;
  }

  .display-4 {
    font-size: 2rem !important;
  }

  .display-5 {
    font-size: 1.75rem !important;
  }

  .tracking-card {
    margin-top: 2rem;
    padding: 2rem;
  }

  .counter {
    font-size: 2rem;
  }

  .position-fixed.end-0 {
    right: 1rem !important;
    bottom: 1rem !important;
  }

  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 1rem;
  }

  .service-card,
  .card-body {
    padding: 1.5rem;
  }

  .team-card {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .display-3 {
    font-size: 2rem !important;
  }

  .display-4 {
    font-size: 1.75rem !important;
  }

  .lead {
    font-size: 1.1rem;
  }

  .btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-content {
    padding: 2rem 1rem !important;
  }

  .tracking-card {
    padding: 1.5rem;
  }

  .service-icon,
  .tracking-card .d-inline-flex {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  footer {
    padding: 3rem 0 1.5rem;
    text-align: center !important;
  }

  .text-md-start,
  .text-md-end,
  .text-lg-end {
    text-align: center !important;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.25rem;
  }

  .display-3 {
    font-size: 1.75rem !important;
  }

  h1, .h1 {
    font-size: 1.75rem;
  }

  h2, .h2 {
    font-size: 1.5rem;
  }

  h3, .h3 {
    font-size: 1.25rem;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .fleet-item {
    margin: 1rem 0;
  }

  .vehicle-preview {
    height: 200px;
  }
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Loading States */
.loading {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 3px solid var(--white);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Utility Classes */
.cursor-pointer {
  cursor: pointer;
}

.z-index-1 {
  z-index: 1 !important;
}

.object-fit-cover {
  object-fit: cover !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.g-2 {
  gap: 0.5rem !important;
}

.g-3 {
  gap: 1rem !important;
}

.g-4 {
  gap: 1.5rem !important;
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  footer,
  .position-fixed {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .card,
  .service-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}