/* Forest Jade Architecture Studio Theme */
/* Primary Color: #2D5016, Secondary Color: #8FBC8F */

:root {
  --primary-color: #2D5016;
  --secondary-color: #8FBC8F;
  --accent-color: #4A7C2F;
  --light-jade: #B8D4A8;
  --dark-forest: #1A3009;
  --text-dark: #2D3E1F;
  --bg-light: #F5F9F3;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* Typography */
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-dark);
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(180deg, rgba(29, 48, 13, 0.95) 0%, rgba(45, 80, 22, 0.85) 100%) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: var(--transition);
  z-index: 1050;
  box-shadow: 0 2px 15px rgba(45, 80, 22, 0.1);
}

.navbar.scrolled {
  background: linear-gradient(180deg, rgba(45, 80, 22, 0.98) 0%, rgba(29, 48, 13, 0.98) 100%) !important;
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.3);
  padding: 0.5rem 0;
}

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

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

.navbar-dark .navbar-toggler {
  border-color: var(--secondary-color) !important;
  background-color: rgba(143, 188, 143, 0.2);
}

.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='%238FBC8F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
  color: #FFFFFF !important;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition);
  text-decoration: none !important;
}

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

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

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

/* Button Styles */
.btn {
  font-weight: 600 !important;
  border-radius: 8px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  text-decoration: none !important;
}

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

.btn-primary,
.btn-success {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #FFFFFF !important;
}

.btn-primary:hover,
.btn-success:hover {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

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

.btn-outline-success:hover {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #FFFFFF !important;
  transform: translateY(-3px);
}

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

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

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

.btn-outline-dark:hover {
  background-color: var(--text-dark) !important;
  border-color: var(--text-dark) !important;
  color: #FFFFFF !important;
}

.btn-outline-light {
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
  background-color: transparent !important;
}

.btn-outline-light:hover {
  background-color: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: var(--primary-color) !important;
}

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

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

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

/* Hero Section */
.position-relative.h-100 {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-forest) 100%);
  position: relative;
  overflow: hidden;
}

.position-relative.h-100::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238FBC8F' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.position-relative.h-100 .container {
  position: relative;
  z-index: 2;
}

.text-white {
  color: #FFFFFF !important;
}

.display-2 {
  animation: fadeInUp 1s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.fs-4 {
  animation: fadeInUp 1.2s ease-out;
  opacity: 0.95;
}

/* Card Styles */
.card {
  border: none !important;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  background-color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(45, 80, 22, 0.2);
}

.card-body {
  padding: 2rem;
}

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

.card-text {
  color: var(--text-dark);
  line-height: 1.7;
}

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

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

/* Portfolio Styles */
.portfolio-filters {
  margin-bottom: 3rem;
}

.filter-btn {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem !important;
  border-radius: 25px;
  font-weight: 600 !important;
  transition: var(--transition);
}

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

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

.portfolio-item {
  opacity: 1;
  transition: var(--transition);
  animation: fadeIn 0.6s ease-out;
}

.portfolio-item.hidden {
  display: none;
  opacity: 0;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 400px;
  cursor: pointer;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(45, 80, 22, 0.95) 100%);
  opacity: 0;
  transition: var(--transition);
  padding: 2rem;
  color: #FFFFFF;
}

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

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

.portfolio-overlay h4,
.portfolio-overlay h5 {
  color: #FFFFFF !important;
}

.badge {
  background-color: var(--secondary-color) !important;
  color: #FFFFFF !important;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 20px;
}

/* Form Styles */
.form-control,
.form-select {
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: var(--transition);
  background-color: #FFFFFF;
  color: var(--text-dark) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(45, 80, 22, 0.15) !important;
  background-color: #FFFFFF !important;
  color: var(--text-dark) !important;
}

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

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

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

.invalid-feedback {
  color: #DC3545 !important;
  font-weight: 500;
}

.needs-validation .form-control:invalid {
  border-color: #DC3545;
}

.needs-validation .form-control:valid {
  border-color: var(--primary-color);
}

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

.bi-telephone-fill,
.bi-envelope-fill,
.bi-geo-alt-fill,
.bi-telephone,
.bi-envelope,
.bi-geo-alt,
.bi-clock,
.bi-building,
.bi-send-fill,
.bi-check-circle-fill,
.bi-tree,
.bi-arrow-right-circle,
.bi-columns-gap,
.bi-check2,
.bi-bank,
.bi-flower1,
.bi-arrow-right,
.bi-house-door,
.bi-images,
.bi-tree-fill,
.bi-hammer {
  color: var(--primary-color);
}

.text-white .bi,
.navbar .bi,
.btn-primary .bi,
.btn-success .bi {
  color: #FFFFFF !important;
}

.bi-facebook,
.bi-instagram,
.bi-linkedin,
.bi-pinterest {
  font-size: 1.5rem;
  transition: var(--transition);
  color: var(--primary-color) !important;
}

.bi-facebook:hover,
.bi-instagram:hover,
.bi-linkedin:hover,
.bi-pinterest:hover {
  color: var(--accent-color) !important;
  transform: scale(1.2);
}

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

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

.project-section {
  background-color: var(--bg-light);
}

/* Footer Styles */
footer {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--dark-forest) 100%);
  color: #FFFFFF !important;
  padding: 3rem 0 1rem;
}

footer h5,
footer h6 {
  color: #FFFFFF !important;
  font-weight: 700;
}

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

footer a {
  color: #FFFFFF !important;
  text-decoration: none !important;
  transition: var(--transition);
}

footer a:hover {
  color: var(--secondary-color) !important;
  padding-left: 5px;
}

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

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

/* Image Styles */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

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

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

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

/* Shadow Utilities */
.shadow {
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(45, 80, 22, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 10px 40px rgba(45, 80, 22, 0.2) !important;
}

/* Background Colors */
.bg-white {
  background-color: #FFFFFF !important;
}

/* Text Colors */
.text-muted {
  color: #6C757D !important;
}

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

/* Privacy Content */
.privacy-content {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.1);
}

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

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

/* Carousel Styles */
.carousel {
  border-radius: 12px;
  overflow: hidden;
}

.carousel-item {
  height: 500px;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  background-color: rgba(45, 80, 22, 0.7);
  transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(45, 80, 22, 0.9);
}

.carousel-indicators button {
  background-color: var(--secondary-color) !important;
}

/* Timeline Styles */
.timeline-compact,
.timeline-expanded {
  position: relative;
}

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

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

.border-bottom {
  border-bottom: 1px solid #E0E0E0 !important;
}

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

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

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

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

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

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

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

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

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

.top-50 {
  top: 50% !important;
}

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

/* Width Utilities */
.w-100 {
  width: 100% !important;
}

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

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

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

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

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

/* Flex Utilities */
.flex-column {
  flex-direction: column !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.gap-4 {
  gap: 1.5rem !important;
}

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

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

.g-2 {
  --bs-gutter-x: 0.5rem !important;
  --bs-gutter-y: 0.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-lg-0 {
  margin-top: 0 !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;
}

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

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

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

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

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

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !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;
}

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

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

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

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

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

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

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

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

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

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

.text-nowrap {
  white-space: nowrap !important;
}

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

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

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

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

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

/* Border Utilities */
.border {
  border: 1px solid #DEE2E6 !important;
}

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

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

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

@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-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* Hover Effects */
.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* Responsive Grid */
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

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

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

/* Media Queries */
@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  
  .d-md-block {
    display: block !important;
  }
  
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  
  .text-md-start {
    text-align: left !important;
  }
  
  .text-md-end {
    text-align: right !important;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  
  .d-lg-block {
    display: block !important;
  }
  
  .d-lg-none {
    display: none !important;
  }
  
  .order-lg-1 {
    order: 1 !important;
  }
  
  .order-lg-2 {
    order: 2 !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  
  .text-lg-end {
    text-align: right !important;
  }
  
  .p-lg-5 {
    padding: 3rem !important;
  }
  
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
  }
  
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(45, 80, 22, 0.98);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-2 {
    font-size: 2rem !important;
  }
  
  .display-3 {
    font-size: 1.75rem !important;
  }
  
  .display-4 {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 767.98px) {
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .carousel-item {
    height: 300px;
  }
}

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

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

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

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

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

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

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

/* Loading Animation */
.loading {
  pointer-events: none;
  opacity: 0.6;
}

/* Focus Styles */
*:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

button:focus,
.btn:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* 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;
    color: black;
  }
}