/* Garden Romance Architecture Studio - Custom CSS */

/* ============================================ */
/* ROOT VARIABLES & RESET */
/* ============================================ */
:root {
  --primary-color: #C2185B;
  --secondary-color: #558B2F;
  --primary-light: #F06292;
  --primary-dark: #880E4F;
  --secondary-light: #8BC34A;
  --secondary-dark: #33691E;
  --white: #FFFFFF;
  --light-bg: #FFF8FA;
  --light-gray: #F5F5F5;
  --text-dark: #2C2C2C;
  --text-muted: #6C757D;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(194, 24, 91, 0.1);
  --shadow-md: 0 4px 16px rgba(194, 24, 91, 0.15);
  --shadow-lg: 0 8px 32px rgba(194, 24, 91, 0.2);
}

* {
  box-sizing: border-box;
}

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

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

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

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

.text-light {
  color: #F8F9FA !important;
}

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

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

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

/* ============================================ */
/* NAVBAR STYLING */
/* ============================================ */
.navbar {
  padding: 1rem 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(194, 24, 91, 0.1);
}

.navbar.sticky-top {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

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

.navbar-brand .bi {
  color: var(--primary-color) !important;
  margin-right: 0.5rem;
  font-size: 1.8rem;
  vertical-align: middle;
}

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

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  background-color: rgba(194, 24, 91, 0.05);
}

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

.navbar-toggler {
  border-color: var(--primary-color) !important;
  padding: 0.5rem;
}

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

/* ============================================ */
/* HERO SECTION & CAROUSEL */
/* ============================================ */
.carousel {
  position: relative;
}

.carousel-item {
  height: 90vh;
  min-height: 600px;
  position: relative;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(194, 24, 91, 0.7) 0%, rgba(85, 139, 47, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  color: var(--white) !important;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white) !important;
  opacity: 0.5;
  border: 2px solid var(--white);
  transition: var(--transition);
}

.carousel-indicators button.active {
  opacity: 1;
  background-color: var(--primary-color) !important;
  transform: scale(1.3);
}

/* ============================================ */
/* SEARCH BAR */
/* ============================================ */
.search-bar-container {
  max-width: 700px;
  margin: 2rem auto;
  animation: fadeIn 1.2s ease-out;
}

.input-group-text {
  background-color: var(--white) !important;
  border: 2px solid var(--white) !important;
  color: var(--primary-color) !important;
  font-size: 1.2rem;
}

.form-control {
  border: 2px solid var(--white) !important;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--text-dark) !important;
  background-color: var(--white) !important;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(194, 24, 91, 0.25) !important;
  border-color: var(--primary-light) !important;
}

.form-control::placeholder {
  color: var(--text-muted) !important;
  opacity: 0.7;
}

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

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

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

.petal-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
  color: var(--white) !important;
  border: none !important;
  box-shadow: var(--shadow-md);
}

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

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

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

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

.btn-outline-secondary:hover,
.btn-outline-secondary.active {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  border-color: var(--secondary-color) !important;
}

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

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

.cta-buttons .btn {
  min-width: 200px;
}

.btn .bi {
  margin-right: 0.5rem;
  vertical-align: middle;
}

.d-grid .btn {
  border-radius: 12px;
}

/* ============================================ */
/* BADGES */
/* ============================================ */
.badge {
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark)) !important;
  color: var(--white) !important;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.card-body {
  padding: 2rem;
}

.service-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
  border: 1px solid rgba(194, 24, 91, 0.1);
  transition: var(--transition);
  cursor: pointer;
}

.service-card:hover {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  border-color: var(--primary-color);
}

.service-card .bi {
  color: var(--primary-color) !important;
  transition: var(--transition);
}

.service-card:hover .bi {
  transform: scale(1.1) rotate(5deg);
}

.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  position: relative;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-light);
  opacity: 0.3;
}

/* ============================================ */
/* GALLERY */
/* ============================================ */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 1;
}

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

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(194, 24, 91, 0.9), rgba(85, 139, 47, 0.8));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  padding: 1.5rem;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h5 {
  color: var(--white) !important;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  color: var(--white) !important;
  opacity: 0.9;
}

.gallery-masonry {
  column-count: 3;
  column-gap: 1.5rem;
}

.gallery-card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.gallery-img {
  width: 100%;
  border-radius: 12px;
  transition: var(--transition);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* ============================================ */
/* FILTER BUTTONS */
/* ============================================ */
.filter-btn {
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  margin: 0.25rem;
  transition: var(--transition);
}

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

.color-filter-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  padding: 0;
  margin: 0.25rem;
  transition: var(--transition);
  cursor: pointer;
}

.color-filter-btn:hover,
.color-filter-btn.active {
  border-color: var(--text-dark);
  transform: scale(1.15);
}

/* ============================================ */
/* TIMELINE */
/* ============================================ */
.timeline-container {
  position: relative;
  padding-left: 2rem;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-marker {
  position: absolute;
  left: -2.5rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.timeline-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

.img-fluid:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

/* ============================================ */
/* SHADOWS */
/* ============================================ */
.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

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

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

/* ============================================ */
/* ICONS */
/* ============================================ */
.bi {
  vertical-align: middle;
}

.bi-check-circle-fill,
.bi-check2 {
  color: var(--secondary-color) !important;
}

.bi-heart-fill,
.bi-suit-heart-fill,
.bi-chat-heart-fill {
  color: var(--primary-color) !important;
}

.bi-star-fill {
  color: #FFC107 !important;
}

.bi-leaf-fill,
.bi-flower1,
.bi-flower2,
.bi-flower3 {
  color: var(--secondary-color) !important;
}

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

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

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(194, 24, 91, 0.15) !important;
}

.form-check-input {
  border: 2px solid #E0E0E0;
  cursor: pointer;
  transition: var(--transition);
}

.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.2rem rgba(194, 24, 91, 0.15) !important;
}

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

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* ============================================ */
/* TIME SLOTS */
/* ============================================ */
.time-slot {
  padding: 1rem;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background-color: var(--white);
}

.time-slot:hover {
  border-color: var(--primary-color);
  background-color: rgba(194, 24, 91, 0.05);
  transform: translateY(-2px);
}

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

.time-slot.active * {
  color: var(--white) !important;
}

/* ============================================ */
/* ALERTS */
/* ============================================ */
.alert {
  border-radius: 12px;
  border: none;
  padding: 1.25rem;
  background-color: rgba(194, 24, 91, 0.1) !important;
  color: var(--text-dark) !important;
  border-left: 4px solid var(--primary-color);
}

.alert .bi {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  color: var(--primary-color) !important;
}

/* ============================================ */
/* ACCORDION */
/* ============================================ */
.accordion-item {
  border: 1px solid rgba(194, 24, 91, 0.1) !important;
  margin-bottom: 1rem;
  border-radius: 12px !important;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--white) !important;
  color: var(--text-dark) !important;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(194, 24, 91, 0.05) !important;
  color: var(--primary-color) !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C2185B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:hover {
  background-color: rgba(194, 24, 91, 0.05) !important;
}

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

.accordion-button .bi {
  margin-right: 0.75rem;
  color: var(--primary-color) !important;
}

/* ============================================ */
/* MODAL */
/* ============================================ */
.modal-content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
}

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

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

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
}

.btn-close,
.btn-close-white {
  opacity: 1;
  transition: var(--transition);
}

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

.btn-close:hover,
.btn-close-white:hover {
  opacity: 0.7;
  transform: rotate(90deg);
}

/* ============================================ */
/* SOCIAL LINKS */
/* ============================================ */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(194, 24, 91, 0.1);
  color: var(--primary-color) !important;
  transition: var(--transition);
  text-decoration: none;
  font-size: 1.25rem;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white) !important;
  transform: translateY(-5px) rotate(10deg);
  box-shadow: var(--shadow-md);
}

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

footer h5,
footer h6 {
  color: var(--white) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

footer p,
footer a,
footer li {
  color: rgba(255, 255, 255, 0.8) !important;
}

footer a {
  text-decoration: none;
  transition: var(--transition);
}

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

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

footer .bi {
  margin-right: 0.5rem;
  color: var(--primary-light) !important;
}

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

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

.opacity-50 {
  opacity: 0.5 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex-column {
  flex-direction: column !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;
}

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

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

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

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

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

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

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

.gap-5 {
  gap: 3rem !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 fadeInDown {
  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);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

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

.fade-in-down {
  animation: fadeInDown 0.8s ease-out;
}

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

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

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

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

/* Tablets and below */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .display-5 {
    font-size: 1.75rem;
  }
  
  .carousel-item {
    height: 70vh;
    min-height: 500px;
  }
  
  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: var(--shadow-md);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .gallery-masonry {
    column-count: 2;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .sticky-lg-top {
    position: relative !important;
  }
}

/* Mobile devices */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .display-3 {
    font-size: 2rem;
  }
  
  .display-4 {
    font-size: 1.75rem;
  }
  
  .display-5 {
    font-size: 1.5rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .fs-3 {
    font-size: 1.5rem !important;
  }
  
  .fs-4 {
    font-size: 1.25rem !important;
  }
  
  .carousel-item {
    height: 60vh;
    min-height: 400px;
  }
  
  .btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem !important;
  }
  
  .gallery-masonry {
    column-count: 1;
  }
  
  .search-bar-container {
    padding: 0 1rem;
  }
  
  .input-group-lg .form-control {
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .timeline-container {
    padding-left: 1.5rem;
  }
  
  .timeline-marker {
    left: -2rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Small mobile devices */
@media (max-width: 575px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .display-3 {
    font-size: 1.75rem;
  }
  
  .display-4 {
    font-size: 1.5rem;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
}

/* ============================================ */
/* PRINT STYLES */
/* ============================================ */
@media print {
  .navbar,
  .carousel,
  .btn,
  footer {
    display: none !important;
  }
  
  body {
    background-color: white;
  }
  
  .card,
  .service-card {
    break-inside: avoid;
  }
}

/* ============================================ */
/* ACCESSIBILITY */
/* ============================================ */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

.btn:focus,
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  outline: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================ */
/* LOADING STATES */
/* ============================================ */
.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid var(--primary-light);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ============================================ */
/* SCROLLBAR STYLING */
/* ============================================ */
::-webkit-scrollbar {
  width: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-dark), var(--secondary-dark));
}

/* ============================================ */
/* SELECTION STYLING */
/* ============================================ */
::selection {
  background-color: var(--primary-color);
  color: var(--white);
}

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