/* Architectural Studio - Slate & Copper Theme */
/* Primary Color: #2C3E50, Secondary Color: #E67E22 */

:root {
  --primary-color: #2C3E50;
  --secondary-color: #E67E22;
  --light-gray: #ECF0F1;
  --dark-gray: #34495E;
  --copper-light: #F39C12;
  --slate-dark: #1A252F;
  --transition-speed: 0.3s;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--primary-color);
}

.display-3, .display-4, .display-5 {
  font-weight: 800;
  letter-spacing: -1px;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%) !important;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-speed) ease;
  z-index: 1030;
}

.navbar.position-fixed {
  top: 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition-speed) ease;
}

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

.navbar-toggler {
  border: 2px solid var(--secondary-color) !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='%23E67E22' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-nav {
  gap: 1rem;
}

.nav-link {
  color: #ffffff !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: all var(--transition-speed) ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

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

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

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

/* Buttons */
.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

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

.btn-lg {
  background: var(--secondary-color) !important;
  border: 2px solid var(--secondary-color) !important;
  color: #ffffff !important;
  padding: 1rem 2.5rem;
}

.btn-lg:hover {
  background: var(--copper-light) !important;
  border-color: var(--copper-light) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
}

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

.btn-outline-dark:hover {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
}

.btn-outline-light {
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  background: transparent !important;
}

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

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

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

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.filter-btn {
  border-radius: 50px;
  margin: 0.25rem;
}

.filter-btn.active {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #ffffff !important;
}

/* Carousel Styles */
.carousel {
  height: 100vh;
  min-height: 600px;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.7) 100%);
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  text-align: left;
  left: 10%;
  right: 10%;
}

.carousel-caption h1,
.carousel-caption h2,
.carousel-caption h3 {
  color: #ffffff !important;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: slideInLeft 1s ease-out;
}

.carousel-caption p {
  color: #ffffff !important;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  animation: slideInLeft 1.2s ease-out;
}

.carousel-caption .btn {
  animation: slideInLeft 1.4s ease-out;
}

/* Cards */
.card {
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  background: #ffffff;
}

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

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

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

.card-body {
  padding: 2rem;
}

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

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

/* Project Cards */
.project-item {
  overflow: hidden;
  position: relative;
  border-radius: 0;
  height: 400px;
  cursor: pointer;
}

.project-card {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.5s ease;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.95) 0%, transparent 70%);
  opacity: 0.8;
  transition: opacity var(--transition-speed) ease;
}

.project-item:hover .project-card::before {
  opacity: 1;
}

.project-item:hover .project-card {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: #ffffff !important;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.project-item:hover .project-overlay {
  transform: translateY(0);
  opacity: 1;
}

.project-overlay h4,
.project-overlay h5 {
  color: #ffffff !important;
}

.project-overlay p {
  color: rgba(255, 255, 255, 0.9) !important;
}

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

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

.bi-lightbulb,
.bi-heart,
.bi-globe,
.bi-rulers,
.bi-palette,
.bi-sun,
.bi-droplet,
.bi-recycle,
.bi-award {
  font-size: 3rem;
  color: var(--secondary-color) !important;
  margin-bottom: 1rem;
  transition: all var(--transition-speed) ease;
}

.card:hover .bi {
  transform: scale(1.2) rotate(10deg);
}

/* Forms */
.form-control,
.form-select {
  border: 2px solid var(--light-gray);
  border-radius: 0;
  padding: 0.75rem 1rem;
  transition: all var(--transition-speed) ease;
  background: #ffffff;
  color: var(--primary-color) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.25) !important;
  background: #ffffff !important;
  color: var(--primary-color) !important;
}

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

.form-check-input {
  border-color: var(--primary-color);
}

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

.form-check-label {
  color: var(--primary-color) !important;
}

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

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

/* Text Colors */
.text-white {
  color: #ffffff !important;
}

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

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

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

/* Sections */
section {
  padding: 5rem 0;
  position: relative;
}

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

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

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

/* Images */
.img-fluid {
  max-width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

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

.rounded-circle {
  border-radius: 50% !important;
  border: 4px solid var(--secondary-color);
}

.object-fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

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

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

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

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

/* Ratio */
.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

/* Social Media Links */
.bi-instagram,
.bi-linkedin,
.bi-facebook,
.bi-pinterest {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  transition: all var(--transition-speed) ease;
}

.bi-instagram:hover {
  color: #E1306C !important;
  transform: scale(1.2);
}

.bi-linkedin:hover {
  color: #0077B5 !important;
  transform: scale(1.2);
}

.bi-facebook:hover {
  color: #1877F2 !important;
  transform: scale(1.2);
}

.bi-pinterest:hover {
  color: #E60023 !important;
  transform: scale(1.2);
}

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

.list-unstyled li {
  padding: 0.5rem 0;
}

.list-unstyled a {
  color: var(--primary-color) !important;
  text-decoration: none !important;
  transition: all var(--transition-speed) ease;
}

.list-unstyled a:hover {
  color: var(--secondary-color) !important;
  padding-left: 10px;
}

/* Testimonials */
.flex-shrink-0 img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

/* Privacy Content */
.privacy-content {
  max-width: 100%;
}

.privacy-content h2,
.privacy-content h3,
.privacy-content h4 {
  color: var(--primary-color) !important;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content p {
  color: var(--dark-gray) !important;
  line-height: 1.8;
}

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

.sticky-lg-top {
  position: sticky;
  top: 100px;
}

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

/* Animations */
@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 fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

/* Loading Spinner */
.spinner {
  border: 4px solid var(--light-gray);
  border-top: 4px solid var(--secondary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

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

/* Contact Info Icons */
.bi-geo-alt,
.bi-geo-alt-fill,
.bi-telephone,
.bi-telephone-fill,
.bi-envelope,
.bi-envelope-fill {
  color: var(--secondary-color) !important;
  margin-right: 0.5rem;
}

/* Process Icons */
.bi-chat-dots-fill,
.bi-pencil-square,
.bi-clipboard-check-fill,
.bi-hammer {
  font-size: 2.5rem;
  color: var(--secondary-color) !important;
}

/* Arrow Icons */
.bi-arrow-right,
.bi-chevron-down {
  transition: transform var(--transition-speed) ease;
}

.btn:hover .bi-arrow-right {
  transform: translateX(5px);
}

.bi-chevron-down {
  animation: bounce 2s infinite;
}

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

/* Check Circle Icons */
.bi-check-circle-fill {
  color: #27AE60 !important;
  margin-right: 0.5rem;
}

/* Calendar and Business Icons */
.bi-calendar-check,
.bi-cash-stack,
.bi-people,
.bi-file-earmark-check {
  font-size: 2rem;
  color: var(--secondary-color) !important;
}

/* Responsive Spacing */
.g-0 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

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

.g-5 {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}

/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--dark-gray);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0;
  }
  
  .navbar-nav {
    gap: 0.5rem;
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .carousel {
    height: 70vh;
    min-height: 500px;
  }
  
  .carousel-caption {
    left: 5%;
    right: 5%;
  }
  
  .carousel-caption h1,
  .display-3 {
    font-size: 2rem !important;
  }
  
  .carousel-caption h2,
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .project-item {
    height: 300px;
  }
  
  .sticky-lg-top,
  .position-sticky {
    position: relative !important;
    top: auto !important;
  }
  
  .card-img-top {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .carousel {
    height: 60vh;
    min-height: 450px;
  }
  
  .carousel-caption {
    text-align: center;
  }
  
  .carousel-caption .d-flex {
    align-items: center !important;
  }
  
  .display-3 {
    font-size: 1.75rem !important;
  }
  
  .display-4 {
    font-size: 1.5rem !important;
  }
  
  .display-5 {
    font-size: 1.25rem !important;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .fs-4 {
    font-size: 1rem !important;
  }
  
  .fs-5 {
    font-size: 0.95rem !important;
  }
  
  section {
    padding: 2rem 0;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .project-item {
    height: 250px;
    margin-bottom: 1rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .bi-lightbulb,
  .bi-heart,
  .bi-globe,
  .bi-rulers,
  .bi-palette,
  .bi-sun,
  .bi-droplet,
  .bi-recycle,
  .bi-award {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .btn-lg {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  
  .py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  
  .carousel {
    height: 50vh;
    min-height: 400px;
  }
  
  .project-item {
    height: 200px;
  }
  
  .flex-shrink-0 img {
    width: 60px;
    height: 60px;
  }
  
  .card-img-top {
    height: 180px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .carousel,
  .filter-btn {
    display: none !important;
  }
  
  body {
    color: #000;
  }
  
  a {
    text-decoration: underline;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

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

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

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

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

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--copper-light);
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

/* Lead Text */
.lead {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--dark-gray) !important;
}

/* Text Decoration */
.text-decoration-none {
  text-decoration: none !important;
}

/* Utility Classes */
.w-100 {
  width: 100% !important;
}

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

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

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

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

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

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

.ms-4 {
  margin-left: 1.5rem !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: 3rem !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: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

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

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

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

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

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

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

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

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

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

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

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 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: 3rem !important;
  padding-right: 3rem !important;
}

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

.ps-4 {
  padding-left: 1.5rem !important;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden !important;
}

/* Border Utilities */
.border-0 {
  border: 0 !important;
}

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

/* Gap Utilities */
.gap-2 {
  gap: 0.5rem !important;
}

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

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

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

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

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

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

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

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

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

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

.justify-content-end {
  justify-content: flex-end !important;
}

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

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

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

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

/* Position Utilities */
.position-relative {
  position: relative !important;
}

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

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

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

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

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

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

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

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

/* Text Utilities */
.text-center {
  text-align: center !important;
}

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

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

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

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

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

/* Responsive Display */
@media (min-width: 992px) {
  .px-lg-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  
  .text-lg-end {
    text-align: right !important;
  }
  
  .text-lg-start {
    text-align: left !important;
  }
  
  .order-lg-1 {
    order: 1 !important;
  }
  
  .order-lg-2 {
    order: 2 !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  
  .order-md-1 {
    order: 1 !important;
  }
  
  .order-md-2 {
    order: 2 !important;
  }
  
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  
  .mt-md-0 {
    margin-top: 0 !important;
  }
}

/* Container Fluid */
.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

/* Small utility adjustments */
.m-3 {
  margin: 1rem !important;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}