/* Forest Copper Architecture Studio - CSS */

/* Root Variables */
:root {
  --primary-color: #2C5F41;
  --secondary-color: #E8A87C;
  --primary-dark: #1a3a28;
  --primary-light: #3d7a58;
  --secondary-dark: #d4956a;
  --secondary-light: #f4c9a4;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark-text: #212529;
  --border-radius: 12px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --box-shadow: 0 10px 30px rgba(44, 95, 65, 0.15);
}

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

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

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--primary-dark) !important;
}

.h2, .h5, .h6 {
  color: var(--primary-dark) !important;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, rgba(44, 95, 65, 0.98) 0%, rgba(44, 95, 65, 0.95) 100%) !important;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  z-index: 1030;
  padding: 1.2rem 0;
  box-shadow: 0 4px 20px rgba(44, 95, 65, 0.2);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  background: linear-gradient(135deg, rgba(44, 95, 65, 1) 0%, rgba(26, 58, 40, 1) 100%) !important;
  box-shadow: 0 6px 30px rgba(44, 95, 65, 0.3);
}

.navbar-brand {
  font-size: 1.8rem !important;
  color: var(--white) !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600 !important;
  margin: 0 0.8rem;
  padding: 0.6rem 1.2rem !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  font-size: 1.05rem;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(232, 168, 124, 0.15) !important;
}

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

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(232, 168, 124, 0.4) !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;
}

/* Hero Parallax Section */
.hero-parallax {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(44, 95, 65, 0.85) 0%, rgba(26, 58, 40, 0.9) 100%), 
              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="%23E8A87C" 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');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero-parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232, 168, 124, 0.15) 0%, transparent 60%);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.hero-parallax .container {
  position: relative;
  z-index: 2;
}

.hero-parallax .display-3 {
  color: var(--white) !important;
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-parallax .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: clamp(1.1rem, 2vw, 1.5rem) !important;
  font-weight: 400;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

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

/* Button Styles */
.btn {
  font-weight: 600 !important;
  border-radius: var(--border-radius) !important;
  transition: var(--transition) !important;
  border: none !important;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem !important;
}

.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(--secondary-color) 0%, var(--secondary-dark) 100%) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 20px rgba(232, 168, 124, 0.4) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(232, 168, 124, 0.5) !important;
  color: var(--white) !important;
}

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

.btn-outline-primary:hover {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(232, 168, 124, 0.4) !important;
}

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

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

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

.btn-sm {
  padding: 0.5rem 1.2rem !important;
  font-size: 0.9rem !important;
}

/* Card Styles */
.card {
  border: none !important;
  border-radius: var(--border-radius) !important;
  transition: var(--transition) !important;
  overflow: hidden;
  background: var(--white) !important;
}

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

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

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

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

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

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

/* Text Colors */
.text-white {
  color: var(--white) !important;
}

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

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

/* Background Colors */
.bg-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

.bg-secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%) !important;
}

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

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

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  border-radius: 2px;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--primary-color);
}

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

.portfolio-item:hover img {
  transform: scale(1.1);
  opacity: 0.7;
}

.portfolio-item .badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
  border-radius: 20px;
}

/* Filter Buttons */
.filter-btn {
  background: transparent !important;
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  padding: 0.6rem 1.5rem !important;
  margin: 0.5rem !important;
  border-radius: 25px !important;
  transition: var(--transition) !important;
  font-weight: 600 !important;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 65, 0.3) !important;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 2rem;
  border-left: 3px solid var(--secondary-color);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--secondary-color);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px var(--secondary-light);
}

.timeline-item:hover::before {
  transform: scale(1.3);
  transition: var(--transition);
}

/* Forms */
.form-control,
.form-select {
  border: 2px solid #e0e0e0 !important;
  border-radius: 10px !important;
  padding: 0.8rem 1.2rem !important;
  transition: var(--transition) !important;
  font-size: 1rem !important;
  background: var(--white) !important;
  color: var(--dark-text) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(232, 168, 124, 0.25) !important;
  background: var(--white) !important;
}

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

.form-check-input {
  border: 2px solid var(--primary-color) !important;
  width: 1.3em !important;
  height: 1.3em !important;
}

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

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

/* Table */
.table {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.table-bordered {
  border: 2px solid #e0e0e0 !important;
}

.table thead {
  background: var(--primary-color) !important;
  color: var(--white) !important;
}

.table tbody tr {
  transition: var(--transition);
}

.table tbody tr:hover {
  background: rgba(232, 168, 124, 0.1) !important;
  transform: scale(1.01);
}

/* Accordion */
.accordion-item {
  border: 2px solid #e0e0e0 !important;
  border-radius: var(--border-radius) !important;
  margin-bottom: 1rem !important;
  overflow: hidden;
}

.accordion-button {
  background: var(--light-bg) !important;
  color: var(--primary-dark) !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  padding: 1.2rem 1.5rem !important;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(232, 168, 124, 0.25) !important;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  padding: 1.5rem !important;
  background: var(--white) !important;
  color: var(--dark-text) !important;
  line-height: 1.8;
}

/* Modal */
.modal-content {
  border: none !important;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
}

.modal-header {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 1.5rem 2rem !important;
  border: none !important;
}

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

.btn-close,
.btn-close-white {
  filter: brightness(0) invert(1) !important;
  opacity: 1 !important;
}

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

/* Nav Pills */
.nav-pills .nav-link {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  padding: 0.8rem 1.5rem !important;
  transition: var(--transition) !important;
}

.nav-pills .nav-link.active {
  background: var(--primary-color) !important;
  color: var(--white) !important;
}

.nav-pills .nav-link:hover {
  background: rgba(44, 95, 65, 0.1) !important;
}

/* Tab Content */
.tab-content {
  padding: 2rem 0;
}

.tab-pane {
  animation: fadeIn 0.5s ease-in;
}

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

/* Icons */
.bi {
  font-size: 1.2em;
  vertical-align: middle;
}

.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-calendar-check,
.bi-calendar3,
.bi-clock,
.bi-info-circle,
.bi-geo-alt,
.bi-telephone,
.bi-envelope,
.bi-instagram,
.bi-linkedin,
.bi-facebook,
.bi-arrow-right,
.bi-arrow-right-circle-fill,
.bi-check-circle-fill,
.bi-building,
.bi-lightning-charge,
.bi-tree,
.bi-people,
.bi-award,
.bi-graph-up-arrow,
.bi-lightbulb {
  color: var(--secondary-color) !important;
}

/* Badge */
.badge {
  padding: 0.5rem 1rem !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}

/* Shadows */
.shadow {
  box-shadow: var(--box-shadow) !important;
}

.shadow-sm {
  box-shadow: 0 4px 15px rgba(44, 95, 65, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 15px 40px rgba(44, 95, 65, 0.2) !important;
}

/* Borders */
.border {
  border-color: #e0e0e0 !important;
}

.border-end {
  border-right: 2px solid rgba(232, 168, 124, 0.3) !important;
}

.border-bottom {
  border-bottom: 2px solid rgba(232, 168, 124, 0.3) !important;
}

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

/* Rounded */
.rounded {
  border-radius: var(--border-radius) !important;
}

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

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

/* Positioning */
.position-fixed {
  position: fixed !important;
}

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

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

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

/* Spacing Utilities */
.p-0 { padding: 0 !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.pt-5 { padding-top: 3rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 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; }

.m-4 { margin: 1.5rem !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; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }

/* Display Utilities */
.d-flex { display: flex !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; }
.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; }
.justify-content-start { justify-content: flex-start !important; }

.gap-3 { gap: 1rem !important; }
.g-0 { gap: 0 !important; }
.g-3 { gap: 1rem !important; }
.g-4 { gap: 1.5rem !important; }
.g-5 { gap: 3rem !important; }

/* Text Utilities */
.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.text-decoration-none { text-decoration: none !important; }

.fw-bold { font-weight: 700 !important; }
.fs-1 { font-size: 2.5rem !important; }
.fs-4 { font-size: 1.5rem !important; }
.fs-5 { font-size: 1.25rem !important; }

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

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

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

/* Object Fit */
.object-fit-cover { object-fit: cover !important; }

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

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

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

/* 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.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

.animate-scale {
  animation: scaleIn 0.6s ease-out;
}

/* Scroll Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Spinner */
.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(232, 168, 124, 0.3);
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(44, 95, 65, 0.98);
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .navbar-nav .nav-link {
    margin: 0.5rem 0;
    padding: 0.8rem 1rem !important;
  }
  
  .hero-parallax {
    background-attachment: scroll;
    min-height: 80vh;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .display-3 {
    font-size: 2.5rem !important;
  }
  
  .display-4 {
    font-size: 2rem !important;
  }
  
  .display-5 {
    font-size: 1.8rem !important;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .border-end {
    border-right: none !important;
    border-bottom: 2px solid rgba(232, 168, 124, 0.3) !important;
  }
  
  .text-lg-end {
    text-align: left !important;
  }
  
  .justify-content-lg-end {
    justify-content: flex-start !important;
  }
  
  .ps-lg-5 {
    padding-left: 0 !important;
  }
  
  .pe-lg-5 {
    padding-right: 0 !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 1.5rem !important;
  }
  
  .mt-lg-0 {
    margin-top: 1.5rem !important;
  }
  
  .order-2 {
    order: 2 !important;
  }
  
  .order-1 {
    order: 1 !important;
  }
}

@media (max-width: 767.98px) {
  .hero-parallax .display-3 {
    font-size: 2rem !important;
  }
  
  .btn-lg {
    padding: 0.8rem 1.8rem !important;
    font-size: 1rem !important;
  }
  
  .card-body {
    padding: 1.2rem !important;
  }
  
  .text-md-start,
  .text-md-end {
    text-align: center !important;
  }
  
  .p-md-5 {
    padding: 2rem !important;
  }
  
  .col-md-4,
  .col-md-6 {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .display-3 {
    font-size: 1.8rem !important;
  }
  
  .fs-1 {
    font-size: 2rem !important;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem !important;
    margin: 0.3rem !important;
    font-size: 0.9rem !important;
  }
  
  .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .col-sm-6 {
    margin-bottom: 1rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .filter-btn {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero-parallax {
    background: white !important;
    color: black !important;
  }
}

/* Accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

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

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

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

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

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

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

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

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  transition: var(--transition);
}

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

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

/* Social Icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
  transition: var(--transition);
  margin: 0 0.3rem;
}

.social-icon:hover {
  background: var(--secondary-color);
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 8px 20px rgba(232, 168, 124, 0.4);
}

/* Custom Utilities */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(232, 168, 124, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(232, 168, 124, 0.5);
}

/* Feature Icon Box */
.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(232, 168, 124, 0.2) 0%, rgba(232, 168, 124, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-icon:hover {
  transform: translateY(-10px) rotate(5deg);
  box-shadow: 0 15px 40px rgba(232, 168, 124, 0.3);
}

.feature-icon .bi {
  font-size: 2.5rem;
  color: var(--secondary-color) !important;
}