/* Volcanic Slate Architecture Studio - Custom Styles */

:root {
  --primary-color: #D84315;
  --secondary-color: #37474F;
  --volcanic-dark: #1a1a1a;
  --volcanic-gray: #2c2c2c;
  --slate-light: #546e7a;
  --ash-white: #eceff1;
  --lava-glow: #ff6e40;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--volcanic-dark) !important;
  color: var(--ash-white) !important;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--volcanic-dark) 0%, var(--secondary-color) 100%) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(216, 67, 21, 0.15);
  transition: all 0.3s ease;
  padding: 1rem 0;
  border-bottom: 2px solid var(--primary-color);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.98) !important;
  box-shadow: 0 8px 32px rgba(216, 67, 21, 0.3);
}

.navbar-brand {
  color: var(--ash-white) !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  position: relative;
  padding-left: 2.5rem;
}

.navbar-brand::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--lava-glow) 100%);
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(216, 67, 21, 0.5);
}

.navbar-brand:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.navbar-toggler {
  border: 2px solid var(--primary-color) !important;
  padding: 0.5rem 0.75rem;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(216, 67, 21, 0.25) !important;
}

.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='%23D84315' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
  color: var(--ash-white) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background-color: rgba(216, 67, 21, 0.1) !important;
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 70%;
}

.nav-link.active {
  color: var(--primary-color) !important;
  background-color: rgba(216, 67, 21, 0.15) !important;
  font-weight: 600 !important;
}

.nav-link.active::after {
  width: 70%;
}

/* Buttons */
.btn {
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  border: none !important;
}

.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;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--lava-glow) 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(216, 67, 21, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--lava-glow) 0%, var(--primary-color) 100%) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(216, 67, 21, 0.6);
}

.btn-secondary {
  background: var(--secondary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(55, 71, 79, 0.4);
}

.btn-secondary:hover {
  background: var(--slate-light) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(55, 71, 79, 0.6);
}

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

.btn-outline-light:hover {
  background: var(--ash-white) !important;
  color: var(--volcanic-dark) !important;
  border-color: var(--ash-white) !important;
  transform: translateY(-3px);
}

.btn-light {
  background: var(--ash-white) !important;
  color: var(--volcanic-dark) !important;
  font-weight: 600 !important;
}

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

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

.btn-sm {
  padding: 0.4rem 1rem !important;
  font-size: 0.875rem !important;
}

/* Hero Section */
.position-relative.vh-100 {
  background: linear-gradient(135deg, var(--volcanic-dark) 0%, var(--volcanic-gray) 50%, var(--secondary-color) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.position-relative.vh-100::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="none"/%3E%3Cpath d="M50 10L60 40L90 40L65 60L75 90L50 70L25 90L35 60L10 40L40 40Z" fill="%23D84315" opacity="0.03"/%3E%3C/svg%3E');
  opacity: 0.5;
  z-index: 1;
}

.position-relative.vh-100 .container {
  position: relative;
  z-index: 2;
}

.position-absolute.top-0.start-0.w-100.h-100 {
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.object-fit-cover {
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

.display-2 {
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.8);
  color: #ffffff !important;
  letter-spacing: -1px;
}

.display-3 {
  font-weight: 700 !important;
  color: #ffffff !important;
  text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
}

.display-4 {
  font-weight: 700 !important;
  color: var(--ash-white) !important;
}

.display-5 {
  font-weight: 600 !important;
  color: var(--ash-white) !important;
}

.display-6 {
  font-weight: 600 !important;
  color: var(--ash-white) !important;
}

.fs-4, .fs-5 {
  color: var(--ash-white) !important;
  line-height: 1.6;
}

.lead {
  color: var(--ash-white) !important;
  line-height: 1.8;
  font-size: 1.15rem;
}

.text-white {
  color: #ffffff !important;
}

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

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

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

/* Cards */
.card {
  background: linear-gradient(135deg, var(--volcanic-gray) 0%, var(--secondary-color) 100%) !important;
  border: 1px solid rgba(216, 67, 21, 0.2) !important;
  border-radius: 12px !important;
  transition: all 0.4s ease;
  overflow: hidden;
  color: var(--ash-white) !important;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(216, 67, 21, 0.3) !important;
  border-color: var(--primary-color) !important;
}

.card-body {
  background: transparent !important;
  color: var(--ash-white) !important;
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--lava-glow) 100%) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border-bottom: none !important;
  padding: 1rem 1.5rem !important;
}

.card-footer {
  background: rgba(0, 0, 0, 0.2) !important;
  border-top: 1px solid rgba(216, 67, 21, 0.3) !important;
  color: var(--ash-white) !important;
}

.card-title {
  color: var(--primary-color) !important;
  font-weight: 700 !important;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.card-text {
  color: var(--ash-white) !important;
  line-height: 1.7;
}

.card-img-top {
  border-radius: 12px 12px 0 0 !important;
  transition: all 0.4s ease;
  filter: brightness(0.9) contrast(1.1);
}

.card:hover .card-img-top {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.2);
}

.shadow {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
}

.shadow-sm {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.shadow-lg {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5) !important;
}

/* Sections */
section {
  background: var(--volcanic-dark) !important;
  position: relative;
}

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

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

.pt-5 {
  padding-top: 4rem !important;
}

.pt-3 {
  padding-top: 2rem !important;
}

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

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

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

/* Images */
.img-fluid {
  border-radius: 12px;
  transition: all 0.4s ease;
  max-width: 100%;
  height: auto;
}

.img-fluid:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(216, 67, 21, 0.4);
}

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

.rounded-circle {
  border-radius: 50% !important;
  border: 4px solid var(--primary-color);
  padding: 4px;
  background: var(--volcanic-gray);
}

/* Forms */
.form-control {
  background: rgba(55, 71, 79, 0.3) !important;
  border: 2px solid rgba(216, 67, 21, 0.3) !important;
  color: var(--ash-white) !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(55, 71, 79, 0.5) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(216, 67, 21, 0.25) !important;
  color: #ffffff !important;
}

.form-control::placeholder {
  color: var(--slate-light) !important;
}

.form-select {
  background: rgba(55, 71, 79, 0.3) !important;
  border: 2px solid rgba(216, 67, 21, 0.3) !important;
  color: var(--ash-white) !important;
  border-radius: 8px !important;
  transition: all 0.3s ease;
}

.form-select:focus {
  background: rgba(55, 71, 79, 0.5) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(216, 67, 21, 0.25) !important;
  color: #ffffff !important;
}

.form-label {
  color: var(--ash-white) !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem;
}

.form-check-input {
  background-color: rgba(55, 71, 79, 0.3) !important;
  border: 2px solid rgba(216, 67, 21, 0.3) !important;
  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(216, 67, 21, 0.25) !important;
}

.form-check-label {
  color: var(--ash-white) !important;
  cursor: pointer;
}

.invalid-feedback {
  color: var(--lava-glow) !important;
  font-weight: 600 !important;
  display: none;
  margin-top: 0.25rem;
}

.form-control.is-invalid {
  border-color: var(--lava-glow) !important;
}

.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

.input-group {
  border-radius: 8px !important;
}

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

/* Alerts */
.alert {
  background: rgba(216, 67, 21, 0.15) !important;
  border: 2px solid var(--primary-color) !important;
  border-radius: 8px !important;
  color: var(--ash-white) !important;
  padding: 1rem 1.5rem;
}

/* Badges */
.badge {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
}

/* Accordion */
.accordion {
  border-radius: 12px !important;
  overflow: hidden;
}

.accordion-item {
  background: var(--volcanic-gray) !important;
  border: 1px solid rgba(216, 67, 21, 0.2) !important;
  margin-bottom: 0.5rem;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-button {
  background: var(--secondary-color) !important;
  color: var(--ash-white) !important;
  font-weight: 600 !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--lava-glow) 100%) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: var(--primary-color) !important;
}

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

.accordion-body {
  background: rgba(0, 0, 0, 0.2) !important;
  color: var(--ash-white) !important;
  padding: 1.5rem !important;
  line-height: 1.7;
}

.accordion-collapse {
  border: none !important;
}

/* Tabs */
.nav-tabs {
  border-bottom: 2px solid rgba(216, 67, 21, 0.3) !important;
}

.nav-tabs .nav-link {
  border: none !important;
  color: var(--ash-white) !important;
  background: transparent !important;
  margin-bottom: -2px;
  border-bottom: 3px solid transparent !important;
}

.nav-tabs .nav-link:hover {
  border-color: var(--primary-color) !important;
  background: rgba(216, 67, 21, 0.1) !important;
}

.nav-tabs .nav-link.active {
  background: transparent !important;
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  font-weight: 700 !important;
}

.tab-content {
  padding: 2rem 0;
}

.tab-pane {
  color: var(--ash-white) !important;
}

/* Icons */
.bi {
  vertical-align: middle;
}

.fs-1 {
  font-size: 2.5rem !important;
}

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

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

/* Borders */
.border-bottom {
  border-bottom: 2px solid rgba(216, 67, 21, 0.3) !important;
}

.border-secondary {
  border-color: rgba(216, 67, 21, 0.5) !important;
}

.border-0 {
  border: none !important;
}

/* Background */
.bg-white {
  background: #ffffff !important;
  color: var(--volcanic-dark) !important;
}

/* Lists */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-unstyled li {
  padding: 0.5rem 0;
  color: var(--ash-white) !important;
}

/* Links */
a {
  color: var(--primary-color) !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--lava-glow) !important;
  text-decoration: underline !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-none:hover {
  text-decoration: none !important;
  color: var(--primary-color) !important;
}

/* Opacity */
.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-90 {
  opacity: 0.9 !important;
}

.hover-opacity-100:hover {
  opacity: 1 !important;
}

/* Animations */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.animate-bounce {
  animation: bounce 2s infinite;
}

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

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Filter Buttons */
.filter-btn {
  background: var(--secondary-color) !important;
  color: var(--ash-white) !important;
  border: 2px solid rgba(216, 67, 21, 0.3) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 67, 21, 0.4);
}

/* Route Item */
.route-item {
  background: var(--volcanic-gray) !important;
  border: 1px solid rgba(216, 67, 21, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.route-item:hover {
  background: var(--secondary-color) !important;
  border-color: var(--primary-color);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(216, 67, 21, 0.3);
}

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

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

.text-uppercase {
  text-transform: uppercase !important;
}

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

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

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

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

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

.align-items-start {
  align-items: flex-start !important;
}

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

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

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

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

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

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

.g-0 {
  gap: 0 !important;
}

.g-3 > * {
  padding: 0.5rem;
}

.g-4 > * {
  padding: 0.75rem;
}

.g-5 > * {
  padding: 1rem;
}

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

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

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

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

.fixed-top {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.top-0 {
  top: 0 !important;
}

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

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

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

.m-4 {
  margin: 1rem !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: 2rem !important;
}

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

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

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

.mt-4 {
  margin-top: 1.5rem !important;
}

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

.mt-lg-0 {
  margin-top: 0 !important;
}

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

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

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-2 {
  padding: 0.5rem !important;
}

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

.p-4 {
  padding: 1.5rem !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: 2rem !important;
  padding-right: 2rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

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

.pe-5 {
  padding-right: 2rem !important;
}

.pe-lg-5 {
  padding-right: 2rem !important;
}

.ps-5 {
  padding-left: 2rem !important;
}

.ps-lg-5 {
  padding-left: 2rem !important;
}

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

/* Responsive */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: linear-gradient(135deg, var(--volcanic-dark) 0%, var(--secondary-color) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  }

  .nav-link {
    padding: 0.8rem 1rem !important;
    margin: 0.3rem 0;
  }

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

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

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

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

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

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .mt-lg-0 {
    margin-top: 2rem !important;
  }

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

  .ps-lg-5,
  .pe-lg-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

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

  .justify-content-lg-start {
    justify-content: center !important;
  }
}

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

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

  .navbar-brand {
    font-size: 1.5rem !important;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
  }

  .fs-1 {
    font-size: 2rem !important;
  }

  .fs-2 {
    font-size: 1.75rem !important;
  }

  .fs-3 {
    font-size: 1.5rem !important;
  }

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

  .card-body {
    padding: 1.25rem !important;
  }

  .accordion-button {
    padding: 1rem !important;
    font-size: 0.95rem;
  }

  .accordion-body {
    padding: 1rem !important;
  }
}

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

  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

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

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

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

  .pe-5,
  .ps-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--volcanic-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--lava-glow) 100%);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--lava-glow) 0%, var(--primary-color) 100%);
}

/* Selection */
::selection {
  background: var(--primary-color);
  color: #ffffff;
}

::-moz-selection {
  background: var(--primary-color);
  color: #ffffff;
}

/* Loading Animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spinner {
  animation: spin 1s linear infinite;
}

/* Hover Effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(216, 67, 21, 0.4);
}

/* Focus Visible */
*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

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

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