/* Architecture Studio - Storm Green & Steel Theme */
/* ================================================ */

:root {
  --primary-color: #2C5F2D;
  --secondary-color: #607D8B;
  --dark-green: #1a3a1b;
  --light-green: #4a7f4b;
  --steel-light: #90A4AE;
  --steel-dark: #455A64;
  --white: #ffffff;
  --black: #000000;
  --text-light: #f8f9fa;
  --text-dark: #212529;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ================================================ */
/* NAVBAR STYLES */
/* ================================================ */

.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%) !important;
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.navbar-dark .navbar-brand {
  color: var(--white) !important;
  font-size: 1.5rem;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.navbar-dark .navbar-brand:hover {
  transform: scale(1.05);
  color: var(--steel-light) !important;
}

.navbar-dark .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-dark .nav-link:hover {
  color: var(--white) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px);
}

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

.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

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

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

/* ================================================ */
/* HERO SECTION STYLES */
/* ================================================ */

.position-relative.overflow-hidden {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.position-absolute.w-100.h-100 {
  z-index: 1;
}

.object-fit-cover {
  object-fit: cover;
  opacity: 0.3;
}

.d-flex.align-items-center {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.display-1 {
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

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

.lead.fs-3 {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.2s ease;
  line-height: 1.7;
}

/* ================================================ */
/* BUTTON STYLES */
/* ================================================ */

.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.3s ease;
  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.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

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

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

.btn-lg:hover {
  background-color: var(--dark-green) !important;
  border-color: var(--dark-green) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: var(--white) !important;
}

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

.btn-light:hover {
  background-color: var(--steel-light) !important;
  color: var(--white) !important;
  border-color: var(--steel-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

.btn-sm:hover {
  background-color: var(--steel-dark) !important;
  border-color: var(--steel-dark) !important;
  color: var(--white) !important;
}

.filter-btn {
  margin: 0.5rem;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

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

/* ================================================ */
/* CARD STYLES */
/* ================================================ */

.card {
  transition: all 0.4s ease;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--white);
}

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

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

.card.shadow {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.card.shadow-lg {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
}

.card.shadow-sm {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.card-body {
  padding: 1.5rem;
}

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

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

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

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

/* ================================================ */
/* CONTACT CARD STYLES */
/* ================================================ */

.contact-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
  color: var(--white) !important;
  padding: 2.5rem;
  border-radius: 12px;
  height: 100%;
}

.contact-card .bi {
  color: var(--white) !important;
}

.contact-card h3,
.contact-card h4,
.contact-card h5 {
  color: var(--white) !important;
}

.contact-card a {
  color: rgba(255, 255, 255, 0.9) !important;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: var(--white) !important;
  transform: translateX(5px);
}

/* ================================================ */
/* FORM STYLES */
/* ================================================ */

.contact-form-wrapper {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.text-danger {
  color: #dc3545 !important;
}

.form-control,
.form-select {
  border: 2px solid var(--steel-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  color: var(--text-dark) !important;
  background-color: var(--white) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(44, 95, 45, 0.25) !important;
  outline: none;
}

.form-check-input {
  border: 2px solid var(--steel-light);
  cursor: pointer;
}

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

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

/* ================================================ */
/* IMAGE STYLES */
/* ================================================ */

.img-fluid {
  max-width: 100%;
  height: auto;
}

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

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

/* ================================================ */
/* TYPOGRAPHY */
/* ================================================ */

.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.display-3 {
  color: var(--primary-color) !important;
}

.h4,
.h5 {
  color: var(--primary-color) !important;
  font-weight: 600;
}

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

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

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

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

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

.text-muted {
  color: #6c757d !important;
}

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

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

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

.opacity-25 {
  opacity: 0.25 !important;
}

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

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

.lh-lg {
  line-height: 1.8 !important;
}

/* ================================================ */
/* BACKGROUND STYLES */
/* ================================================ */

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

.bg-light {
  background-color: #f8f9fa !important;
}

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

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

/* ================================================ */
/* SPACING UTILITIES */
/* ================================================ */

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

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

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

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

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

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

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

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

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

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

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

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

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

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

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

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

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

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

.ps-lg-5 {
  padding-left: 3rem !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;
}

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

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

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

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

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

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

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

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

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

/* ================================================ */
/* LAYOUT UTILITIES */
/* ================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.g-0 {
  margin-left: 0;
  margin-right: 0;
}

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

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

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

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

.flex-grow-1 {
  flex-grow: 1 !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;
}

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

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

/* ================================================ */
/* LIST STYLES */
/* ================================================ */

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

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

/* ================================================ */
/* LINK STYLES */
/* ================================================ */

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

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

/* ================================================ */
/* BORDER UTILITIES */
/* ================================================ */

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

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-secondary {
  border-color: var(--secondary-color) !important;
}

/* ================================================ */
/* POSITION UTILITIES */
/* ================================================ */

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

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

.position-sticky {
  position: sticky !important;
  top: 80px;
}

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

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

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

/* ================================================ */
/* OVERFLOW UTILITIES */
/* ================================================ */

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

/* ================================================ */
/* SIZE UTILITIES */
/* ================================================ */

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

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

.min-vh-25 {
  min-height: 25vh !important;
}

/* ================================================ */
/* ICON STYLES */
/* ================================================ */

.bi {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.5rem;
}

.bi-water,
.bi-shield-check,
.bi-tree,
.bi-people,
.bi-check-circle-fill,
.bi-geo-alt,
.bi-telephone,
.bi-envelope,
.bi-facebook,
.bi-instagram,
.bi-linkedin,
.bi-twitter-x,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-geo-alt-fill,
.bi-arrow-right,
.bi-map,
.bi-award-fill,
.bi-building-check,
.bi-tree-fill,
.bi-thermometer-half,
.bi-wind,
.bi-droplet-fill,
.bi-cloud-rain-fill,
.bi-tsunami,
.bi-hurricane,
.bi-brightness-high-fill,
.bi-info-circle-fill,
.bi-recycle,
.bi-lightning-charge-fill,
.bi-droplet-half,
.bi-piggy-bank-fill {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.card:hover .bi,
.contact-card .bi {
  transform: scale(1.1);
}

/* ================================================ */
/* BADGE STYLES */
/* ================================================ */

.badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
}

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

/* ================================================ */
/* PROGRESS BAR STYLES */
/* ================================================ */

.progress {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--light-green) 100%);
  transition: width 0.6s ease;
}

/* ================================================ */
/* ALERT STYLES */
/* ================================================ */

.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: none;
}

.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
}

/* ================================================ */
/* STORM CLOUDS ANIMATION */
/* ================================================ */

.storm-clouds {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  opacity: 0.6;
  animation: float 20s infinite ease-in-out;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.cloud-1 {
  width: 200px;
  height: 60px;
  top: 20%;
  left: -200px;
  animation: moveCloud1 30s infinite linear;
}

.cloud-2 {
  width: 150px;
  height: 50px;
  top: 50%;
  left: -150px;
  animation: moveCloud2 40s infinite linear;
  animation-delay: 5s;
}

.cloud-3 {
  width: 180px;
  height: 55px;
  top: 70%;
  left: -180px;
  animation: moveCloud3 35s infinite linear;
  animation-delay: 10s;
}

@keyframes moveCloud1 {
  0% { left: -200px; }
  100% { left: 100%; }
}

@keyframes moveCloud2 {
  0% { left: -150px; }
  100% { left: 100%; }
}

@keyframes moveCloud3 {
  0% { left: -180px; }
  100% { left: 100%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ================================================ */
/* PROJECT MASONRY STYLES */
/* ================================================ */

.projects-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
}

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

.project-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image-wrapper img {
  transform: scale(1.15);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(44, 95, 45, 0.95) 0%, rgba(96, 125, 139, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.overlay-content {
  color: var(--white) !important;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.project-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h3,
.overlay-content p {
  color: var(--white) !important;
}

/* ================================================ */
/* MAP CONTAINER */
/* ================================================ */

.map-container {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================================ */
/* HOVER EFFECTS */
/* ================================================ */

.hover-lift {
  transition: all 0.3s ease;
}

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

/* ================================================ */
/* ANIMATIONS */
/* ================================================ */

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

@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);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* ================================================ */
/* RESPONSIVE DESIGN */
/* ================================================ */

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .display-1 {
    font-size: 3rem;
  }

  .display-3 {
    font-size: 2.5rem;
  }

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

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

  .projects-masonry {
    grid-template-columns: 1fr;
  }

  .position-sticky {
    position: relative !important;
    top: 0;
  }

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

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

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

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

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

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

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

@media (max-width: 767.98px) {
  .display-1 {
    font-size: 2.5rem;
  }

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

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

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

  .contact-form-wrapper,
  .contact-card {
    padding: 1.5rem;
  }

  .map-container {
    height: 300px;
  }

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

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

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

@media (max-width: 575.98px) {
  .container {
    padding: 0 10px;
  }

  .display-1 {
    font-size: 2rem;
  }

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

  .projects-masonry {
    gap: 1rem;
  }

  .project-image-wrapper {
    height: 250px;
  }

  .col-6 {
    width: 100%;
  }
}

/* ================================================ */
/* COLUMN SYSTEM */
/* ================================================ */

.col-12 {
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.333333%;
  }

  .col-md-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    width: 16.666667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.333333%;
  }

  .col-lg-5 {
    width: 41.666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.333333%;
  }

  .col-lg-8 {
    width: 66.666667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.333333%;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }
}

/* ================================================ */
/* PRINT STYLES */
/* ================================================ */

@media print {
  .navbar,
  .btn,
  .navbar-toggler {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ================================================ */
/* ACCESSIBILITY */
/* ================================================ */

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================================================ */
/* SCROLLBAR STYLING */
/* ================================================ */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

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

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

/* ================================================ */
/* UTILITY CLASSES */
/* ================================================ */

.small {
  font-size: 0.875rem;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

@media (min-width: 992px) {
  .order-lg-1 {
    order: 1;
  }

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

/* ================================================ */
/* FINAL TOUCHES */
/* ================================================ */

.collapse:not(.show) {
  display: none;
}

.navbar-expand-lg .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-collapse {
    display: none;
  }

  .navbar-expand-lg .navbar-collapse.show {
    display: block;
  }
}

.collapse.show {
  display: block;
}

/* END OF STYLES */