/* Forest Gold Architecture Studio - Complete CSS */

/* ============================================
   ROOT VARIABLES & BASE STYLES
   ============================================ */
:root {
  --primary-color: #2C5530;
  --secondary-color: #D4AF37;
  --primary-dark: #1a3320;
  --primary-light: #3d7243;
  --secondary-dark: #b8941f;
  --secondary-light: #e6c960;
  --text-dark: #1a1a1a;
  --text-light: #f8f9fa;
  --forest-gradient: linear-gradient(135deg, #2C5530 0%, #1a3320 100%);
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(44, 85, 48, 0.1);
  --shadow-md: 0 4px 6px rgba(44, 85, 48, 0.15);
  --shadow-lg: 0 10px 25px rgba(44, 85, 48, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 700;
  color: var(--primary-color) !important;
  letter-spacing: -0.5px;
}

.display-1 { font-size: clamp(2.5rem, 8vw, 6rem) !important; }
.display-2 { font-size: clamp(2.2rem, 7vw, 5.5rem) !important; }
.display-3 { font-size: clamp(2rem, 6vw, 4.5rem) !important; }
.display-4 { font-size: clamp(1.8rem, 5vw, 3.5rem) !important; }
.display-5 { font-size: clamp(1.5rem, 4vw, 3rem) !important; }
.display-6 { font-size: clamp(1.3rem, 3vw, 2.5rem) !important; }

.lead {
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
  font-weight: 400;
  color: var(--text-light) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  background: var(--forest-gradient);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  animation: heroShimmer 8s ease-in-out infinite;
}

@keyframes heroShimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  padding: 1.5rem 0;
  background-color: transparent !important;
  transition: var(--transition-smooth);
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(44, 85, 48, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.8rem !important;
  color: var(--secondary-color) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
}

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

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
}

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

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(212, 175, 55, 0.1);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 60%;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  padding: 0.75rem 2rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  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.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

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

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

.btn-primary:hover,
.btn.bg-primary:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4) !important;
}

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

.btn-secondary:hover,
.btn.bg-secondary:hover {
  background: var(--secondary-dark) !important;
  border-color: var(--secondary-dark) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
}

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

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

.btn-outline-secondary {
  color: var(--secondary-color) !important;
  border-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);
}

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

/* ============================================
   CARDS
   ============================================ */
.card {
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden;
  transition: var(--transition-smooth);
  background: #ffffff;
}

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

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

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

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

.card-body {
  padding: 1.5rem !important;
  background: #ffffff;
}

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

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

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

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

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

/* ============================================
   FORMS
   ============================================ */
.form-control,
.form-select {
  padding: 0.75rem 1rem !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px !important;
  transition: var(--transition-smooth);
  background: #ffffff !important;
  color: var(--text-dark) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25) !important;
  outline: none !important;
}

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

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

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

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

/* ============================================
   BOOTSTRAP ICONS
   ============================================ */
.bi {
  display: inline-block;
  vertical-align: middle;
}

.bi-moon-stars-fill,
.bi-egg-fried,
.bi-flower1,
.bi-calendar-event,
.bi-person-check-fill,
.bi-compass,
.bi-star-fill,
.bi-facebook,
.bi-instagram,
.bi-twitter,
.bi-linkedin,
.bi-whatsapp,
.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-chat-dots-fill,
.bi-calendar-check-fill,
.bi-gem,
.bi-info-circle,
.bi-check-circle-fill,
.bi-shield-check,
.bi-lock,
.bi-cookie,
.bi-hand-thumbs-up,
.bi-eye,
.bi-pencil,
.bi-trash,
.bi-x-circle,
.bi-shield-lock,
.bi-clock-history,
.bi-people,
.bi-exclamation-triangle,
.bi-rulers,
.bi-door-open,
.bi-house-door,
.bi-brightness-high,
.bi-tree,
.bi-award,
.bi-heart,
.bi-cup-straw,
.bi-sunrise,
.bi-sun,
.bi-moon-stars,
.bi-telephone,
.bi-envelope,
.bi-droplet-fill,
.bi-fire,
.bi-moisture,
.bi-info-circle-fill,
.bi-check2 {
  color: var(--secondary-color) !important;
  transition: var(--transition-smooth);
}

.card:hover .bi,
a:hover .bi {
  transform: scale(1.2);
}

/* ============================================
   BACKGROUNDS
   ============================================ */
.bg-primary {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
}

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

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

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

/* ============================================
   TEXT COLORS
   ============================================ */
.text-white {
  color: var(--text-light) !important;
}

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

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

/* ============================================
   SECTIONS
   ============================================ */
section {
  position: relative;
}

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

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

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

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

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

/* ============================================
   SEARCH FORM (Hero Bottom)
   ============================================ */
.hero-section .bg-white.rounded.shadow-lg {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  max-width: 1200px;
  margin: 0 auto;
  animation: slideUp 0.8s ease-out;
}

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

/* ============================================
   IMAGES
   ============================================ */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

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

img:hover {
  transform: scale(1.02);
}

/* ============================================
   CAROUSEL
   ============================================ */
.carousel {
  border-radius: 12px;
  overflow: hidden;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-item img {
  height: 500px;
  object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--secondary-color);
  border-radius: 50%;
  padding: 1.5rem;
}

.carousel-indicators button {
  background-color: var(--secondary-color) !important;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
  padding: 0.5rem 1rem !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  background: var(--secondary-color) !important;
  color: var(--text-dark) !important;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
  border-radius: 8px !important;
  border: none !important;
  padding: 1rem 1.5rem !important;
}

.alert-info {
  background: rgba(212, 175, 55, 0.1) !important;
  color: var(--primary-color) !important;
  border-left: 4px solid var(--secondary-color) !important;
}

/* ============================================
   LISTS
   ============================================ */
.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-unstyled li {
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.list-unstyled li:hover {
  padding-left: 0.5rem;
  color: var(--secondary-color) !important;
}

/* ============================================
   LINKS
   ============================================ */
a {
  color: var(--secondary-color) !important;
  text-decoration: none !important;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--secondary-dark) !important;
  text-decoration: none !important;
}

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

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--forest-gradient);
  color: var(--text-light) !important;
  padding: 3rem 0 1rem;
}

footer h6,
footer .h6,
footer h5,
footer .h5 {
  color: var(--secondary-color) !important;
  margin-bottom: 1.5rem;
}

footer a {
  color: var(--text-light) !important;
}

footer a:hover {
  color: var(--secondary-color) !important;
}

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

/* ============================================
   STICKY ELEMENTS
   ============================================ */
.sticky-top {
  position: sticky !important;
  top: 0 !important;
  z-index: 1020;
}

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

/* ============================================
   UTILITIES
   ============================================ */
.position-relative {
  position: relative !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rounded-start {
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}

/* ============================================
   SPACING
   ============================================ */
.gap-3 {
  gap: 1rem !important;
}

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

.g-0 {
  --bs-gutter-x: 0 !important;
  --bs-gutter-y: 0 !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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pe-lg-4 {
  padding-right: 1.5rem !important;
}

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

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

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

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

/* ============================================
   FONT SIZES
   ============================================ */
.fs-1 {
  font-size: 2.5rem !important;
}

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

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

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

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

/* ============================================
   FONT WEIGHTS
   ============================================ */
.fw-bold {
  font-weight: 700 !important;
}

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

/* ============================================
   ORDERS (FLEXBOX)
   ============================================ */
.order-lg-1 {
  order: 1 !important;
}

.order-lg-2 {
  order: 2 !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 fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary-color) !important;
  color: var(--text-dark) !important;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
}

#scrollToTop:hover {
  background: var(--secondary-dark) !important;
  transform: translateY(-5px);
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner {
  border: 4px solid rgba(212, 175, 55, 0.2);
  border-top: 4px solid var(--secondary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

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

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(44, 85, 48, 0.98);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
  }
  
  .navbar-nav {
    gap: 0.5rem !important;
  }
  
  .display-1 { font-size: 3rem !important; }
  .display-3 { font-size: 2.5rem !important; }
  .display-4 { font-size: 2rem !important; }
  
  .hero-section .bg-white.rounded.shadow-lg {
    padding: 1.5rem !important;
  }
  
  .btn {
    padding: 0.6rem 1.5rem !important;
  }
  
  .btn-lg {
    padding: 0.8rem 2rem !important;
  }
  
  .card-img-top {
    height: 200px;
  }
  
  .carousel-item img {
    height: 350px;
  }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
  
  .hero-section {
    min-height: 100vh;
    padding-bottom: 320px;
  }
  
  .display-1 { font-size: 2.5rem !important; }
  .display-2 { font-size: 2.2rem !important; }
  .display-3 { font-size: 2rem !important; }
  .display-4 { font-size: 1.75rem !important; }
  .display-5 { font-size: 1.5rem !important; }
  .display-6 { font-size: 1.25rem !important; }
  
  .lead {
    font-size: 1rem !important;
  }
  
  .hero-section .bg-white.rounded.shadow-lg {
    padding: 1rem !important;
    margin: 0 1rem;
  }
  
  .btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
  }
  
  .btn-lg {
    padding: 0.7rem 1.5rem !important;
    font-size: 1rem !important;
  }
  
  .card-img-top {
    height: 180px;
  }
  
  .carousel-item img {
    height: 250px;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .mt-md-0 {
    margin-top: 1rem !important;
  }
  
  .mb-md-0 {
    margin-bottom: 1rem !important;
  }
  
  .text-md-end,
  .text-md-start {
    text-align: center !important;
  }
  
  .flex-lg-row-reverse {
    flex-direction: column-reverse !important;
  }
  
  #scrollToTop {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .col-md-3,
  .col-md-4,
  .col-md-2 {
    margin-bottom: 1rem;
  }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
  .navbar-brand {
    font-size: 1.3rem !important;
  }
  
  .display-1 { font-size: 2rem !important; }
  .display-3 { font-size: 1.75rem !important; }
  .display-4 { font-size: 1.5rem !important; }
  
  .fs-1 { font-size: 2rem !important; }
  .fs-4 { font-size: 1.25rem !important; }
  
  .hero-section .bg-white.rounded.shadow-lg {
    padding: 0.75rem !important;
  }
  
  .card-img-top {
    height: 150px;
  }
  
  .carousel-item img {
    height: 200px;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar,
  .btn,
  #scrollToTop,
  .carousel-control-prev,
  .carousel-control-next,
  .carousel-indicators {
    display: none !important;
  }
  
  body {
    color: #000 !important;
    background: #fff !important;
  }
  
  .card {
    break-inside: avoid;
  }
}