/* ===================================
   Forge Red & Carbon Black Architecture Studio
   Modern CSS with Bootstrap 5 Overrides
   =================================== */

:root {
  --primary-color: #D32F2F;
  --secondary-color: #212121;
  --light-gray: #F5F5F5;
  --medium-gray: #757575;
  --dark-gray: #424242;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.15);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary-color) !important;
}

.display-2, .display-3, .display-4, .display-5 {
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--medium-gray) !important;
}

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

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

/* ===================================
   Buttons
   =================================== */

.btn {
  border-radius: 0 !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition) !important;
  border: 2px solid transparent !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

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

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

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #B71C1C !important;
  border-color: #B71C1C !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4) !important;
}

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

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

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

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

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

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
  background-color: var(--light-gray) !important;
  color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

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

/* ===================================
   Navigation
   =================================== */

.navbar {
  padding: 1.5rem 0 !important;
  transition: var(--transition) !important;
  background-color: var(--secondary-color) !important;
  box-shadow: var(--shadow-md);
}

.navbar.scrolled {
  padding: 0.75rem 0 !important;
  background-color: rgba(33, 33, 33, 0.98) !important;
}

.navbar-dark {
  background-color: var(--secondary-color) !important;
}

.navbar-brand {
  font-size: 1.75rem !important;
  color: var(--white) !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
  transition: var(--transition) !important;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--primary-color) !important;
  transform: scale(1.05);
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  transition: var(--transition) !important;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem !important;
  letter-spacing: 0.5px;
}

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

.nav-link:hover,
.nav-link:focus {
  color: var(--white) !important;
}

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

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

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.5) !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;
}

.sticky-top {
  top: 0;
  z-index: 1020;
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-gray) 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(211, 47, 47, 0.03) 2px, rgba(211, 47, 47, 0.03) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(211, 47, 47, 0.03) 2px, rgba(211, 47, 47, 0.03) 4px);
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-section .text-white {
  color: var(--white) !important;
  position: relative;
  z-index: 2;
}

.hero-section .display-2 {
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.9) !important;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-section .btn {
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

.hero-section .img-fluid {
  border: 4px solid var(--primary-color);
  transition: var(--transition);
  animation: fadeInRight 1s ease-out 0.6s both;
}

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

.hero-section .img-fluid:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 20px 40px rgba(211, 47, 47, 0.3) !important;
}

/* ===================================
   Cards
   =================================== */

.card {
  border-radius: 0 !important;
  border: none !important;
  transition: var(--transition) !important;
  overflow: hidden;
  background-color: var(--white) !important;
}

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

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

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

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

.service-card {
  border-left: 4px solid var(--primary-color) !important;
  transition: var(--transition) !important;
}

.service-card:hover {
  border-left-width: 8px !important;
  background-color: var(--light-gray) !important;
}

.gallery-card {
  position: relative;
  cursor: pointer;
}

.gallery-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.9), rgba(33, 33, 33, 0.9));
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  transform: translateY(100%);
  transition: var(--transition);
  background: transparent !important;
  color: var(--white) !important;
}

.gallery-card:hover .card-body {
  transform: translateY(0);
}

.gallery-card .card-title,
.gallery-card .card-text {
  color: var(--white) !important;
}

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

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

/* ===================================
   Sections
   =================================== */

section {
  padding: 5rem 0;
}

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

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

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

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

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

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

.text-dark {
  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(--medium-gray) !important;
}

/* ===================================
   Borders
   =================================== */

.border-start {
  border-left: 4px solid var(--primary-color) !important;
}

.border-5 {
  border-width: 5px !important;
}

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

/* ===================================
   Shadows
   =================================== */

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

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

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

/* ===================================
   Forms
   =================================== */

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0;
  box-shadow: var(--shadow-md);
}

.form-label {
  font-weight: 600 !important;
  color: var(--secondary-color) !important;
  margin-bottom: 0.5rem !important;
  text-transform: uppercase;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
}

.form-control,
.form-select {
  border-radius: 0 !important;
  border: 2px solid var(--light-gray) !important;
  padding: 0.75rem 1rem !important;
  transition: var(--transition) !important;
  background-color: var(--white) !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.25) !important;
  background-color: var(--white) !important;
}

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

.form-select-lg {
  padding: 1rem 1.25rem !important;
  font-size: 1rem !important;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

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

/* ===================================
   Alert
   =================================== */

.alert {
  border-radius: 0 !important;
  border: none !important;
  border-left: 4px solid var(--primary-color) !important;
  padding: 1.25rem !important;
  background-color: rgba(211, 47, 47, 0.1) !important;
  color: var(--secondary-color) !important;
}

.alert .bi {
  color: var(--primary-color) !important;
}

/* ===================================
   Badge
   =================================== */

.badge {
  border-radius: 0 !important;
  padding: 0.5rem 1rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

/* ===================================
   Table
   =================================== */

.table {
  color: var(--secondary-color) !important;
  border-collapse: separate;
  border-spacing: 0;
}

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

.table thead th {
  border: none !important;
  padding: 1rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.table tbody td {
  padding: 1rem !important;
  border-bottom: 1px solid var(--light-gray) !important;
  vertical-align: middle;
}

.table tbody tr:hover {
  background-color: rgba(211, 47, 47, 0.05) !important;
}

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

.table-sm td,
.table-sm th {
  padding: 0.5rem !important;
}

/* ===================================
   Icons
   =================================== */

.bi {
  vertical-align: middle;
  transition: var(--transition);
}

.bi-fire,
.bi-exclamation-triangle-fill,
.bi-telephone-fill,
.bi-envelope,
.bi-envelope-fill,
.bi-geo-alt-fill,
.bi-clock-history,
.bi-info-circle,
.bi-send-fill,
.bi-shield-check,
.bi-car-front,
.bi-list-ul,
.bi-images,
.bi-chevron-right,
.bi-wrench,
.bi-speedometer2,
.bi-check-circle-fill,
.bi-tools,
.bi-gear-wide-connected,
.bi-disc,
.bi-lightning-charge,
.bi-wrench-adjustable,
.bi-check-lg,
.bi-zoom-in,
.bi-chat-dots {
  color: var(--primary-color) !important;
}

.text-white .bi,
.text-light .bi,
.navbar .bi,
body > footer .bi {
  color: var(--white) !important;
}

.d-inline-flex .bi {
  font-size: 3rem !important;
}

/* ===================================
   Filter Buttons
   =================================== */

.filter-btn {
  background-color: transparent !important;
  border: 2px solid var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  padding: 0.5rem 1.5rem !important;
  margin: 0.25rem;
  border-radius: 0 !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: var(--transition) !important;
  cursor: pointer;
}

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

/* ===================================
   Gallery
   =================================== */

.gallery-item {
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-item.show {
  opacity: 1;
  transform: scale(1);
}

.gallery-item.hide {
  display: none;
}

.view-full {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover .view-full {
  opacity: 1;
}

/* ===================================
   Modal
   =================================== */

.modal-content {
  border-radius: 0 !important;
  border: none !important;
}

.modal-header {
  border-bottom: 2px solid var(--primary-color) !important;
  padding: 1.5rem !important;
}

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

.modal-xl {
  max-width: 90vw !important;
}

.btn-close,
.btn-close-white {
  opacity: 1 !important;
}

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

/* ===================================
   Service Details
   =================================== */

.service-details {
  background-color: var(--light-gray);
  padding: 2rem;
  margin-top: 2rem;
}

.service-details h4 {
  color: var(--secondary-color) !important;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary-color);
}

/* ===================================
   Footer
   =================================== */

body > footer {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  padding: 4rem 0 2rem;
}

body > footer h5,
body > footer h6 {
  color: var(--white) !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

body > footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  transition: var(--transition) !important;
  display: inline-block;
}

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

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

body > footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
  margin-top: 3rem;
  padding-top: 2rem;
}

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

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

/* ===================================
   Utilities
   =================================== */

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

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

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

.end-0 {
  right: 0 !important;
}

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

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

.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }

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

.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !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; }

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

.p-0 { padding: 0 !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.ps-3 { padding-left: 1rem !important; }
.pe-lg-4 { padding-right: 1.5rem !important; }

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

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

.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-shrink-0 { flex-shrink: 0 !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; }

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

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

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

.fst-italic { font-style: italic !important; }

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

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

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

.g-0 { gap: 0 !important; }
.g-4 > * { padding: 1.5rem !important; }
.g-5 > * { padding: 3rem !important; }

/* ===================================
   Animations
   =================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

.animate-slideInLeft {
  animation: slideInLeft 1s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 1s ease-out;
}

/* ===================================
   Scroll Animations
   =================================== */

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(33, 33, 33, 0.98);
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: var(--shadow-md);
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .hero-section {
    padding: 6rem 0 3rem;
    min-height: auto;
  }
  
  .display-2 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2.25rem !important;
  }
  
  .display-4 {
    font-size: 2rem !important;
  }
  
  .display-5 {
    font-size: 1.75rem !important;
  }
  
  .col-lg-6,
  .col-lg-8 {
    margin-bottom: 2rem;
  }
  
  .ps-lg-5 {
    padding-left: 1rem !important;
  }
  
  .pe-lg-4 {
    padding-right: 1rem !important;
  }
  
  .text-lg-end {
    text-align: center !important;
  }
  
  .text-lg-start {
    text-align: center !important;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 2rem !important;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 5rem 0 2rem;
  }
  
  .display-2 {
    font-size: 2rem !important;
  }
  
  .fs-3 {
    font-size: 1.5rem !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 0.9rem !important;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .text-md-start,
  .text-md-end {
    text-align: center !important;
  }
  
  .mb-md-0 {
    margin-bottom: 2rem !important;
  }
  
  .col-md-4,
  .col-md-6,
  .col-md-3 {
    margin-bottom: 1.5rem;
  }
  
  .filter-btn {
    width: 100%;
    margin: 0.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .hero-section {
    padding: 4rem 0 2rem;
  }
  
  .display-2 {
    font-size: 1.75rem !important;
  }
  
  .navbar-brand {
    font-size: 1.5rem !important;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .modal-xl {
    max-width: 95vw !important;
  }
  
  body > footer {
    padding: 3rem 0 1.5rem;
  }
}

/* ===================================
   Print Styles
   =================================== */

@media print {
  .navbar,
  .btn,
  footer {
    display: none !important;
  }
  
  body {
    color: #000 !important;
    background: #fff !important;
  }
  
  .container {
    max-width: 100% !important;
  }
}