/* Forest & Amber Architecture Studio - Complete CSS */

/* ========================================
   ROOT VARIABLES & BASE STYLES
======================================== */
:root {
  --primary-color: #2E5B3D;
  --secondary-color: #A67C00;
  --primary-dark: #1a3422;
  --primary-light: #3d7350;
  --secondary-dark: #8a6600;
  --secondary-light: #c99500;
  --text-dark: #1a1a1a;
  --text-light: #f8f9fa;
  --bg-light: #f5f5f0;
  --bg-dark: #2a2a2a;
  --shadow-sm: 0 2px 8px rgba(46, 91, 61, 0.1);
  --shadow-md: 0 4px 16px rgba(46, 91, 61, 0.15);
  --shadow-lg: 0 8px 32px rgba(46, 91, 61, 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;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark) !important;
  background-color: var(--bg-light) !important;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6,
.display-2, .display-3, .display-4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--primary-color) !important;
  line-height: 1.3;
}

.display-2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  letter-spacing: -0.02em;
}

.display-3 {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
}

.display-4 {
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
}

.h3, h3 {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
}

.h4, h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
}

.h5, h5 {
  font-size: clamp(1.1rem, 2vw, 1.5rem) !important;
}

.h6, h6 {
  font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
}

.fs-3 {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
}

.fs-4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
}

.fs-5 {
  font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem) !important;
  color: var(--text-dark) !important;
  opacity: 0.85;
}

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

/* ========================================
   NAVIGATION
======================================== */
.navbar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 1000;
}

.navbar-dark {
  background: rgba(46, 91, 61, 0.95) !important;
}

.navbar.scrolled {
  background: rgba(46, 91, 61, 0.98) !important;
  box-shadow: var(--shadow-lg);
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.navbar-brand {
  color: var(--text-light) !important;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.navbar-toggler:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--secondary-color) !important;
}

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

.navbar-nav {
  gap: 0.5rem;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 600 !important;
  padding: 0.75rem 1.25rem !important;
  position: relative;
  transition: var(--transition);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  font-size: 1rem !important;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
  transform: translateX(-50%);
  transition: var(--transition);
  border-radius: 3px 3px 0 0;
}

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

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

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 91, 61, 0.7) 0%, rgba(166, 124, 0, 0.3) 100%);
  z-index: 2;
}

.hero-section .object-fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.7) contrast(1.1);
  animation: kenburns 30s infinite alternate;
}

@keyframes kenburns {
  0% {
    transform: scale(1) translateX(0);
  }
  100% {
    transform: scale(1.1) translateX(-20px);
  }
}

.hero-section .position-absolute {
  z-index: 3;
}

.hero-section .text-white {
  color: var(--text-light) !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-section .display-2 {
  color: var(--text-light) !important;
  animation: fadeInUp 1s ease-out;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-section .lead {
  color: var(--text-light) !important;
  animation: fadeInUp 1s ease-out 0.3s both;
  font-size: 1.3rem !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  margin: 0 auto;
}

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

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

/* ========================================
   BUTTONS
======================================== */
.btn {
  font-weight: 600 !important;
  padding: 0.75rem 2rem !important;
  border-radius: 50px !important;
  transition: var(--transition) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none !important;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
  color: var(--text-light) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-lg) !important;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light)) !important;
  color: var(--text-light) !important;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color)) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-lg) !important;
}

.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: var(--text-light) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-md) !important;
}

.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: var(--text-light) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-md) !important;
}

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

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

.btn:active {
  transform: translateY(0) !important;
}

.filter-btn {
  margin: 0.25rem;
  padding: 0.5rem 1.5rem !important;
  border-radius: 25px !important;
  font-size: 0.9rem !important;
}

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

/* ========================================
   CARDS
======================================== */
.card {
  border: none !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: var(--transition) !important;
  background: white !important;
  box-shadow: var(--shadow-sm) !important;
  height: 100%;
}

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

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

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

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

.card-title {
  color: var(--primary-color) !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  font-family: 'Playfair Display', serif;
}

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

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

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

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

/* Portfolio Cards */
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px !important;
  cursor: pointer;
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 91, 61, 0.9), rgba(166, 124, 0, 0.8));
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

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

.portfolio-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  transform: translateY(100%);
  transition: var(--transition);
  z-index: 3;
}

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

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

/* ========================================
   BADGE
======================================== */
.badge {
  padding: 0.5rem 1rem !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
}

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

.badge.bg-secondary {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
}

/* ========================================
   FORMS
======================================== */
.form-control,
.form-select {
  border: 2px solid #e0e0e0 !important;
  border-radius: 12px !important;
  padding: 0.875rem 1.25rem !important;
  transition: var(--transition) !important;
  font-size: 1rem !important;
  background: white !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(46, 91, 61, 0.15) !important;
  background: white !important;
}

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

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

.form-check-input {
  border: 2px solid var(--primary-color) !important;
  width: 1.25rem !important;
  height: 1.25rem !important;
  cursor: pointer;
}

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

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(46, 91, 61, 0.15) !important;
}

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

.invalid-feedback {
  display: block;
  color: #dc3545 !important;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

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

/* ========================================
   ALERTS
======================================== */
.alert {
  border-radius: 12px !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  box-shadow: var(--shadow-sm) !important;
}

.alert-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb) !important;
  color: #155724 !important;
}

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

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

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

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

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

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

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

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

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

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

/* ========================================
   ICONS
======================================== */
.bi {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.25rem;
}

.fs-3 .bi {
  font-size: 2rem;
}

.bi-telephone,
.bi-envelope,
.bi-geo-alt,
.bi-arrow-right,
.bi-send,
.bi-check-circle-fill,
.bi-clock-history,
.bi-calendar-check,
.bi-building,
.bi-instagram,
.bi-linkedin,
.bi-facebook {
  color: var(--secondary-color) !important;
}

/* ========================================
   RATIO CONTAINERS
======================================== */
.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: 42.857143%;
}

/* ========================================
   MODAL
======================================== */
.modal-content {
  border: none !important;
  border-radius: 16px !important;
  box-shadow: var(--shadow-lg) !important;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
  color: var(--text-light) !important;
  border-bottom: none !important;
  padding: 1.5rem !important;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

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

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

/* ========================================
   LIST STYLES
======================================== */
.list-unstyled {
  padding-left: 0 !important;
  list-style: none !important;
}

.list-unstyled li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
}

.list-unstyled li::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: bold;
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

/* ========================================
   FOOTER
======================================== */
footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
  color: var(--text-light) !important;
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

footer h5,
footer h6 {
  color: var(--text-light) !important;
}

footer a {
  color: var(--text-light) !important;
  text-decoration: none !important;
  transition: var(--transition);
  opacity: 0.9;
}

footer a:hover {
  color: var(--secondary-color) !important;
  opacity: 1;
  transform: translateX(5px);
}

footer .bi {
  color: var(--text-light) !important;
  font-size: 1.5rem;
  transition: var(--transition);
}

footer .bi:hover {
  color: var(--secondary-color) !important;
  transform: scale(1.2);
}

/* ========================================
   PRIVACY CONTENT
======================================== */
.privacy-content {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.privacy-content h2,
.privacy-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-decoration-none {
  text-decoration: none !important;
}

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

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

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

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

@media (min-width: 768px) {
  .text-md-end {
    text-align: end !important;
  }
}

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

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

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

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

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

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

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

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

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

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

.gap-2 {
  gap: 0.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.me-3 {
  margin-right: 1rem !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-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
  .px-lg-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}

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

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

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

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

/* ========================================
   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 scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(46, 91, 61, 0.98);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: var(--shadow-lg);
  }

  .navbar-nav {
    gap: 0.5rem;
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .hero-section {
    height: 70vh;
    min-height: 500px;
  }

  .hero-section .display-2 {
    font-size: 2.5rem !important;
  }

  section {
    padding: 3rem 0;
  }

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

  .btn-lg {
    padding: 0.875rem 2rem !important;
  }

  .card-img-top {
    height: 200px;
  }

  .privacy-content {
    padding: 2rem 1.5rem;
  }

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

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

@media (max-width: 767px) {
  .hero-section .display-2 {
    font-size: 2rem !important;
  }

  .hero-section .lead {
    font-size: 1.1rem !important;
  }

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

  .display-4 {
    font-size: 1.75rem !important;
  }

  section {
    padding: 2.5rem 0;
  }

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

  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .d-flex.flex-wrap.gap-3 .btn {
    width: 100%;
  }

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

  .privacy-content {
    padding: 1.5rem 1rem;
  }

  .modal-xl {
    max-width: 95% !important;
  }

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

@media (max-width: 575px) {
  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section {
    height: 60vh;
    min-height: 450px;
  }

  .navbar-brand {
    font-size: 1.5rem !important;
  }

  section {
    padding: 2rem 0;
  }

  footer {
    padding: 2rem 0 1rem;
  }
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
  .navbar,
  .btn,
  footer,
  .modal {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .card,
  .privacy-content {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}