/* Midnight Steel & Crimson Architecture Studio Theme */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary-color: #1a1a1a;
  --secondary-color: #c41e3a;
  --accent-light: #ff4d6d;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --dark-overlay: rgba(26, 26, 26, 0.9);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-lg: 0 20px 60px rgba(196, 30, 58, 0.3);
  --shadow-xl: 0 30px 80px rgba(196, 30, 58, 0.4);
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  color: var(--text-light) !important;
}

a {
  text-decoration: none !important;
  transition: var(--transition-smooth);
}

/* ===== NAVIGATION ===== */
.navbar {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(196, 30, 58, 0.1) 100%) !important;
  backdrop-filter: blur(20px);
  padding: 1.2rem 0 !important;
  box-shadow: 0 4px 30px rgba(196, 30, 58, 0.2);
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(196, 30, 58, 0.2);
}

.navbar.scrolled {
  padding: 0.8rem 0 !important;
  box-shadow: 0 8px 40px rgba(196, 30, 58, 0.4);
}

.navbar-brand {
  font-size: 1.8rem !important;
  color: var(--text-light) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  position: relative;
  padding-left: 0.5rem;
  transition: var(--transition-smooth);
}

.navbar-brand::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--accent-light) 100%);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

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

.navbar-brand:hover::before {
  height: 100%;
  box-shadow: 0 0 20px var(--secondary-color);
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  margin: 0 0.8rem !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 8px;
  position: relative;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light) !important;
  background: rgba(196, 30, 58, 0.15) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar-toggler {
  border: 2px solid var(--secondary-color) !important;
  padding: 0.5rem 0.8rem !important;
  transition: var(--transition-smooth);
}

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

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a1a1f 50%, #1a1a1a 100%);
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 150%;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.15) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, var(--primary-color) 100%);
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.1) rotate(5deg); opacity: 0.5; }
}

.hero-section .display-2 {
  font-size: clamp(2.5rem, 6vw, 5rem) !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 1s ease-out;
}

.hero-section .display-6 {
  color: var(--text-muted) !important;
  font-weight: 300 !important;
  font-size: clamp(1.2rem, 2vw, 1.8rem) !important;
  animation: slideInUp 1s ease-out 0.2s both;
}

.hero-section .lead {
  color: var(--text-muted) !important;
  font-size: clamp(1rem, 1.5vw, 1.3rem) !important;
  line-height: 1.8;
  max-width: 700px;
  animation: slideInUp 1s ease-out 0.4s both;
}

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

/* ===== BUTTONS ===== */
.btn {
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px !important;
  transition: var(--transition-smooth);
  border: 2px solid transparent !important;
  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: 400px;
  height: 400px;
}

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

.btn-primary,
.btn.btn-lg:not(.btn-outline-light):not(.btn-light):not(.btn-filter) {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-light) 100%) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover,
.btn.btn-lg:not(.btn-outline-light):not(.btn-light):not(.btn-filter):hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5) !important;
  border-color: var(--accent-light) !important;
  color: var(--text-light) !important;
}

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

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

.btn-light {
  background: var(--text-light) !important;
  border-color: var(--text-light) !important;
  color: var(--primary-color) !important;
  font-weight: 700 !important;
}

.btn-light:hover {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5) !important;
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
  position: relative;
}

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

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

/* ===== SERVICE CARDS ===== */
.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(196, 30, 58, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(196, 30, 58, 0.1) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-15px);
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .bi {
  font-size: 3.5rem;
  color: var(--secondary-color) !important;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: var(--transition-smooth);
}

.service-card:hover .bi {
  transform: scale(1.2) rotate(10deg);
  text-shadow: 0 0 30px var(--secondary-color);
}

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

.service-card p {
  color: var(--text-muted) !important;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ===== IMAGES ===== */
.img-fluid {
  border-radius: 20px;
  transition: var(--transition-smooth);
}

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

.shadow-sm {
  box-shadow: 0 5px 20px rgba(196, 30, 58, 0.15) !important;
}

.shadow {
  box-shadow: 0 10px 40px rgba(196, 30, 58, 0.2) !important;
}

img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl) !important;
}

/* ===== GALLERY ===== */
.filter-bar {
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-filter {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--text-muted) !important;
  padding: 0.7rem 2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.btn-filter:hover,
.btn-filter.active {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4) !important;
}

.gallery-item,
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: var(--transition-smooth);
  height: 100%;
}

.gallery-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(196, 30, 58, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--secondary-color) !important;
}

.card-img-top {
  transition: var(--transition-smooth);
  height: 300px;
  object-fit: cover;
}

.gallery-card:hover .card-img-top {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.card-body {
  background: rgba(26, 26, 26, 0.8) !important;
  backdrop-filter: blur(10px);
}

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

.card-text {
  color: var(--text-muted) !important;
  font-size: 1rem;
  line-height: 1.6;
}

.badge-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-light) 100%) !important;
  color: var(--text-light) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

/* ===== CARD STYLES ===== */
.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(196, 30, 58, 0.05) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color) !important;
  box-shadow: var(--shadow-lg) !important;
}

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

/* ===== PROGRESS BARS ===== */
.progress {
  height: 12px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-light) 100%) !important;
  transition: width 1.5s ease-in-out !important;
  box-shadow: 0 0 20px var(--secondary-color);
}

/* ===== FORMS ===== */
.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--text-light) !important;
  border-radius: 12px !important;
  padding: 1rem 1.2rem !important;
  font-size: 1rem !important;
  transition: var(--transition-smooth);
}

.form-control::placeholder {
  color: var(--text-muted) !important;
  opacity: 0.7;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(196, 30, 58, 0.25) !important;
  color: var(--text-light) !important;
}

.form-floating > label {
  color: var(--text-muted) !important;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--secondary-color) !important;
}

.form-select option {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
}

.form-check-input {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  width: 1.5em;
  height: 1.5em;
}

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

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(196, 30, 58, 0.25) !important;
}

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

.invalid-feedback {
  color: var(--accent-light) !important;
  font-weight: 600;
}

/* ===== TEXT UTILITIES ===== */
.text-white {
  color: var(--text-light) !important;
}

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

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

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

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

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

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(196, 30, 58, 0.2);
  padding: 4rem 0 2rem;
}

footer h6,
footer .h6 {
  color: var(--text-light) !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem;
  font-size: 1.1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 0.8rem;
}

footer h6::after,
footer .h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  border-radius: 2px;
}

footer a {
  color: var(--text-muted) !important;
  transition: var(--transition-smooth);
  display: inline-block;
  padding: 0.3rem 0;
  font-size: 1rem;
}

footer a:hover {
  color: var(--text-light) !important;
  transform: translateX(8px);
  text-shadow: 0 0 10px var(--secondary-color);
}

footer .bi {
  font-size: 1.8rem;
  color: var(--text-muted) !important;
  transition: var(--transition-smooth);
  margin: 0 0.5rem;
}

footer .bi:hover {
  color: var(--secondary-color) !important;
  transform: translateY(-5px) scale(1.2);
  text-shadow: 0 0 20px var(--secondary-color);
}

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

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

/* ===== MODAL ===== */
.modal-content {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a1a1f 100%) !important;
  border: 1px solid rgba(196, 30, 58, 0.3) !important;
  border-radius: 20px !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8) !important;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 2rem;
}

.modal-body {
  padding: 2rem;
}

.modal-title {
  color: var(--text-light) !important;
  font-weight: 700 !important;
}

.btn-close,
.btn-close-white {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.btn-close:hover,
.btn-close-white:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* ===== SCROLL INDICATOR ===== */
.bi-chevron-down {
  animation: bounce 2s infinite;
  font-size: 2rem !important;
  color: var(--secondary-color) !important;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* ===== UTILITY CLASSES ===== */
.position-relative {
  position: relative !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g-0 {
  --bs-gutter-x: 0 !important;
  --bs-gutter-y: 0 !important;
}

.g-4 {
  --bs-gutter-x: 1.5rem !important;
  --bs-gutter-y: 1.5rem !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(196, 30, 58, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1rem;
    border: 1px solid rgba(196, 30, 58, 0.2);
  }
  
  .nav-link {
    margin: 0.5rem 0 !important;
  }
  
  .hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  section {
    padding: 60px 0;
  }
  
  .display-2 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2.2rem !important;
  }
  
  .display-4 {
    font-size: 2rem !important;
  }
  
  .display-5 {
    font-size: 1.8rem !important;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .btn-lg {
    padding: 0.9rem 2rem !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 80px 0 40px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .py-4 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  
  .navbar-brand {
    font-size: 1.5rem !important;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .card-img-top {
    height: 220px;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
    text-align: center !important;
  }
  
  footer h6::after,
  footer .h6::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .text-md-start,
  .text-md-end,
  .text-lg-end {
    text-align: center !important;
  }
}

@media (max-width: 575.98px) {
  .container,
  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .btn-lg {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  
  .display-2 {
    font-size: 2rem !important;
  }
  
  .service-card .bi {
    font-size: 2.5rem;
  }
  
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-filter {
    width: 100%;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

/* ===== SCROLL BEHAVIOR ===== */
html {
  scroll-behavior: smooth;
}

/* ===== SELECTION ===== */
::selection {
  background: var(--secondary-color);
  color: var(--text-light);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--text-light);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--accent-light) 100%);
  border-radius: 10px;
  border: 2px solid var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--secondary-color) 100%);
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* ===== ACCESSIBILITY ===== */
.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;
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .btn,
  footer {
    display: none;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
}