/* Racing Red & Carbon Black Architecture Studio Theme */

:root {
  --primary-color: #D32F2F;
  --secondary-color: #212121;
  --light-gray: #f5f5f5;
  --medium-gray: #757575;
  --dark-gray: #424242;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.15);
  --shadow-hover: rgba(211, 47, 47, 0.3);
}

* {
  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;
  color: var(--secondary-color);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--white);
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  padding: 1rem 0;
  transition: all 0.3s ease;
  z-index: 1030;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 30px rgba(211, 47, 47, 0.3);
}

.navbar-brand {
  font-size: 1.8rem !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

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

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 47, 47, 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='%23D32F2F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  transition: all 0.3s ease !important;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.nav-link::before {
  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;
}

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

.nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(33, 33, 33, 0.95) 0%, rgba(211, 47, 47, 0.85) 100%),
    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');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding-top: 80px;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--white));
}

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

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

.lead {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 400 !important;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.6 !important;
}

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

.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-danger {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-danger:hover {
  background-color: #b71c1c !important;
  border-color: #b71c1c !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(211, 47, 47, 0.5) !important;
  color: var(--white) !important;
}

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

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

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

.btn-outline-dark:hover {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(33, 33, 33, 0.3);
}

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

.btn-light:hover {
  background-color: var(--light-gray) !important;
  border-color: var(--light-gray) !important;
  color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.animate-bounce {
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: color 0.3s ease;
  color: rgba(255, 255, 255, 0.8) !important;
}

.animate-bounce:hover {
  color: var(--primary-color) !important;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  height: 100%;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #b71c1c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(211, 47, 47, 0.5);
}

.bi-wrench-adjustable-circle,
.bi-clipboard-check,
.bi-shield-check,
.bi-cpu,
.bi-disc,
.bi-gear-wide-connected,
.bi-droplet,
.bi-lightning-charge,
.bi-clipboard2-check,
.bi-award-fill,
.bi-tools,
.bi-wrench-adjustable,
.bi-people-fill,
.bi-chat-left-heart {
  color: var(--white) !important;
  font-size: 2.5rem !important;
}

.h5 {
  color: var(--secondary-color) !important;
  font-weight: 700 !important;
  margin-bottom: 0.75rem !important;
}

.text-muted {
  color: var(--medium-gray) !important;
  font-size: 0.95rem !important;
}

/* Images */
.img-fluid {
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

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

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

img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
}

/* Cards */
.card {
  border-radius: 12px !important;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none !important;
  background: var(--white);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
  transition: all 0.3s ease;
  height: 250px;
  object-fit: cover;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

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

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

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

/* Badges */
.badge {
  padding: 0.5rem 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  border-radius: 6px !important;
}

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

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

/* Forms */
.form-label {
  color: var(--secondary-color) !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
  font-size: 0.95rem !important;
}

.form-control,
.form-select {
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  transition: all 0.3s ease !important;
  font-size: 1rem !important;
  color: var(--secondary-color) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.15) !important;
  outline: none !important;
}

.form-control::placeholder {
  color: var(--medium-gray) !important;
}

.form-check-input {
  width: 1.25rem !important;
  height: 1.25rem !important;
  border: 2px solid #e0e0e0 !important;
  cursor: pointer;
}

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

.form-check-input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.15) !important;
}

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

.service-checkbox {
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-checkbox:hover {
  background-color: rgba(211, 47, 47, 0.05);
}

.service-checkbox .form-check-input:checked ~ .form-check-label {
  color: var(--primary-color) !important;
  font-weight: 600;
}

/* Alerts */
.alert {
  border-radius: 8px !important;
  border: none !important;
  padding: 1rem 1.5rem !important;
  font-weight: 500 !important;
}

.alert-success {
  background-color: #4caf50 !important;
  color: var(--white) !important;
}

.alert-light {
  background-color: #fff3e0 !important;
  color: #e65100 !important;
  border-left: 4px solid #ff9800 !important;
}

/* Contact Box */
.contact-box {
  background: linear-gradient(135deg, var(--primary-color), #b71c1c);
  border-radius: 12px;
  padding: 2rem;
  color: var(--white) !important;
  box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

.contact-box a {
  color: var(--white) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.contact-box a:hover {
  transform: translateX(5px);
  opacity: 0.9;
}

/* Calendar Grid */
.calendar-grid {
  display: grid;
  gap: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  background: var(--white);
}

.calendar-day:hover:not(.disabled) {
  border-color: var(--primary-color);
  background-color: rgba(211, 47, 47, 0.1);
  color: var(--primary-color) !important;
}

.calendar-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background-color: #fafafa;
}

.calendar-day.selected {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color);
}

/* Time Slots */
.time-slot {
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 600;
  background: var(--white);
}

.time-slot:hover {
  border-color: var(--primary-color);
  background-color: rgba(211, 47, 47, 0.1);
  color: var(--primary-color) !important;
}

.time-slot.selected {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color);
}

/* Sticky Sidebar */
.sticky-sidebar {
  position: sticky;
  top: 100px;
}

/* Privacy Content */
.privacy-content {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Learn More Link */
.learn-more-link {
  color: var(--primary-color) !important;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.learn-more-link:hover {
  transform: translateX(5px);
  color: #b71c1c !important;
}

.learn-more-link .bi {
  transition: transform 0.3s ease;
}

.learn-more-link:hover .bi {
  transform: translateX(3px);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--secondary-color), #1a1a1a);
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

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

footer a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-block;
}

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

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

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

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

.bi-star-fill,
.bi-check-circle-fill,
.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-send-fill,
.bi-calendar-check,
.bi-info-circle,
.bi-telephone,
.bi-envelope,
.bi-clock-history,
.bi-chat-dots,
.bi-geo-alt,
.bi-calendar3,
.bi-clock,
.bi-chevron-right,
.bi-chevron-left,
.bi-chevron-down,
.bi-check-circle,
.bi-1-circle-fill,
.bi-2-circle-fill,
.bi-3-circle-fill,
.bi-4-circle-fill {
  color: inherit;
}

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

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

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

/* Spacing Utilities */
.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-md-start {
  text-align: left !important;
}

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

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

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

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

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

.small {
  font-size: 0.875rem !important;
}

/* Display Utilities */
.d-flex {
  display: flex !important;
}

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

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

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

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(33, 33, 33, 0.98);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link::before {
    display: none;
  }

  .hero-section {
    min-height: 100vh;
    padding-top: 100px;
  }

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

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

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

  .display-6 {
    font-size: 1.5rem !important;
  }

  .lead {
    font-size: 1.1rem !important;
  }

  .btn-lg {
    padding: 0.75rem 2rem !important;
  }

  .sticky-sidebar {
    position: static;
  }

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

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

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

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

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

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

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

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

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

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

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

  .contact-box {
    padding: 1.5rem;
  }

  .privacy-content {
    padding: 1.5rem;
  }

  footer {
    text-align: center;
  }

  footer .text-md-end {
    text-align: center !important;
    margin-top: 1rem;
  }

  .flex-md-row {
    flex-direction: column !important;
  }

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

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

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

  .hero-section {
    padding-top: 80px;
  }

  .btn-lg {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem !important;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .bi-wrench-adjustable-circle,
  .bi-clipboard-check,
  .bi-shield-check,
  .bi-cpu,
  .bi-disc,
  .bi-gear-wide-connected,
  .bi-droplet,
  .bi-lightning-charge,
  .bi-clipboard2-check {
    font-size: 2rem !important;
  }

  .card-img-top {
    height: 200px;
  }

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

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Focus Styles */
*:focus {
  outline: none;
}

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

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

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

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

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--medium-gray);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  footer {
    display: none;
  }

  body {
    color: #000;
  }

  .hero-section {
    background: none;
    color: #000;
  }
}