/* ==========================================
   ARCHITECTURAL STUDIO WEBSITE STYLES
   Theme: Deep Indigo & Teal Accent
   ========================================== */

/* === ROOT VARIABLES === */
:root {
  --primary-color: #1A237E;
  --secondary-color: #00BFA5;
  --dark-indigo: #0D1446;
  --light-indigo: #3949AB;
  --teal-light: #1DE9B6;
  --text-dark: #212529;
  --text-light: #6c757d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --transition: all 0.3s ease;
}

/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* === TYPOGRAPHY === */
.display-2,
.display-3,
.display-4,
.display-5 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

/* === NAVBAR === */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-indigo) 100%) !important;
  padding: 1rem 0;
  box-shadow: 0 2px 15px rgba(26, 35, 126, 0.3);
  transition: var(--transition);
}

.navbar.sticky-top {
  backdrop-filter: blur(10px);
}

.navbar-brand {
  color: var(--white) !important;
  font-size: 1.5rem;
  letter-spacing: 1px;
  transition: var(--transition);
}

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

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.5rem 1.2rem;
  margin: 0 0.2rem;
  border-radius: 5px;
  transition: var(--transition);
  font-weight: 500;
}

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

.navbar-toggler {
  border: 2px solid var(--secondary-color) !important;
  padding: 0.5rem;
}

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

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

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

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

.animated-patterns {
  height: 100%;
  z-index: 1;
}

.floating-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}

.floating-icon:nth-child(3) {
  top: 30%;
  right: 15%;
  animation-delay: 2s;
}

.floating-icon:nth-child(4) {
  top: 70%;
  right: 25%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

/* === BUTTONS === */
.btn {
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

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

.btn-primary:hover {
  background: var(--teal-light) !important;
  border-color: var(--teal-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.4) !important;
}

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

.btn-outline-light:hover {
  background: var(--white) !important;
  color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3) !important;
}

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

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

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

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

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

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

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

/* === SERVICES SECTION === */
.services-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.service-card {
  border-radius: 15px;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
  height: 100%;
  border: 2px solid transparent;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(26, 35, 126, 0.2) !important;
  border-color: var(--secondary-color);
}

.service-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  color: var(--secondary-color);
  transform: scale(1.1) rotate(5deg);
}

.service-reveal {
  background: linear-gradient(135deg, var(--primary-color), var(--light-indigo));
  height: 0;
  transition: height 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
}

.service-card:hover .service-reveal {
  height: 100%;
}

/* === PARALLAX SECTION === */
.parallax-section {
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.95), rgba(40, 53, 147, 0.95)),
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300BFA5' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  padding: 100px 0;
  background-attachment: fixed;
  background-size: cover;
  color: var(--white) !important;
}

.parallax-section .display-4 {
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.parallax-section .lead {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}

.testimonial-card {
  background: linear-gradient(135deg, var(--light-bg), var(--white));
  border-radius: 20px;
  border: 2px solid var(--secondary-color);
  max-width: 900px;
  margin: 0 auto;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--primary-color) !important;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1 !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--secondary-color) !important;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary-color) !important;
  opacity: 0.5;
}

.carousel-indicators .active {
  opacity: 1 !important;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--light-indigo));
  padding: 80px 0;
  color: var(--white) !important;
}

.cta-section h2,
.cta-section p {
  color: var(--white) !important;
}

/* === TIMELINE === */
.timeline-container {
  position: relative;
  padding: 50px 0;
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 50px;
}

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

.timeline-item::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  width: 2px;
  height: calc(100% + 30px);
  background: var(--primary-color);
}

.timeline-item:last-child::after {
  display: none;
}

/* === STAT COUNTER === */
.stat-counter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* === TEAM MEMBER === */
.team-member {
  text-align: center;
  transition: var(--transition);
}

.hexagon-container {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.hexagon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--secondary-color);
  transition: var(--transition);
}

.team-member:hover .hexagon {
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.hexagon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(0, 191, 165, 0.9));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  border-radius: 50%;
}

.team-member:hover .hexagon-overlay {
  opacity: 1;
}

/* === CARDS === */
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.card-body {
  padding: 2rem;
}

/* === FORMS === */
.form-control,
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: var(--transition);
  background: var(--white) !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(0, 191, 165, 0.25) !important;
  background: var(--white) !important;
  color: var(--text-dark) !important;
}

.form-floating > label {
  color: var(--text-light) !important;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--secondary-color) !important;
}

/* === ACCORDION === */
.accordion-item {
  border: 2px solid #e0e0e0 !important;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-button {
  background: var(--white) !important;
  color: var(--primary-color) !important;
  font-weight: 600;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color), var(--light-indigo)) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: var(--secondary-color) !important;
}

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

.accordion-button.collapsed::after {
  filter: none;
}

.accordion-body {
  padding: 1.5rem;
  background: var(--light-bg);
}

/* === TABLE === */
.table {
  border-radius: 10px;
  overflow: hidden;
}

.table-bordered {
  border: 2px solid var(--primary-color) !important;
}

.table thead {
  background: linear-gradient(135deg, var(--primary-color), var(--light-indigo));
  color: var(--white) !important;
}

.table thead th {
  color: var(--white) !important;
  font-weight: 600;
  border: none !important;
}

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

.table tbody tr:hover {
  background: rgba(0, 191, 165, 0.1);
  transform: scale(1.01);
}

/* === BADGES === */
.badge {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

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

/* === ALERTS === */
.alert {
  border-radius: 10px;
  border: none;
  padding: 1.25rem;
  border-left: 4px solid;
}

.alert-info {
  background: rgba(0, 191, 165, 0.1);
  border-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, var(--dark-indigo), var(--primary-color));
  color: var(--white) !important;
  padding: 60px 0 20px;
}

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

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: var(--transition);
  display: inline-block;
}

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

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

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

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

/* === PRACTICE AREA CARD === */
.practice-area-card,
.practice-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.practice-area-card:hover,
.practice-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(26, 35, 126, 0.3) !important;
}

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

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

/* === FILTER BUTTONS === */
.filter-btn {
  background: var(--white) !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  padding: 0.5rem 1.5rem;
  margin: 0.25rem;
  border-radius: 50px;
  transition: var(--transition);
  font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* === MASONRY GRID === */
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

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

@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }
}

/* === CASE STUDY ITEM === */
.case-study-item {
  padding: 2rem;
  margin-bottom: 3rem;
  border-left: 4px solid var(--secondary-color);
  background: var(--white);
  border-radius: 10px;
  transition: var(--transition);
}

.case-study-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
}

.featured-case-banner {
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(0, 191, 165, 0.9));
  padding: 100px 0;
  color: var(--white) !important;
}

.featured-case-banner h1,
.featured-case-banner p {
  color: var(--white) !important;
}

/* === EXPAND BUTTON === */
.expand-btn {
  background: transparent !important;
  color: var(--primary-color) !important;
  border: none !important;
  font-weight: 600;
  transition: var(--transition);
}

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

/* === POSITION UTILITIES === */
.position-fixed {
  z-index: 1000;
}

.position-sticky {
  top: 80px;
  z-index: 100;
}

/* === CHAT BUTTON === */
.position-fixed.end-0.bottom-0 {
  bottom: 2rem;
  right: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
}

/* === FORM SWITCH === */
.form-switch .form-check-input {
  width: 3rem;
  height: 1.5rem;
  border-radius: 50px;
  cursor: pointer;
}

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

/* === TEXT UTILITIES === */
.text-primary {
  color: var(--primary-color) !important;
}

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

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

.text-success {
  color: #28a745 !important;
}

.text-info {
  color: #17a2b8 !important;
}

.text-warning {
  color: #ffc107 !important;
}

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

/* === BORDER UTILITIES === */
.border-primary {
  border-color: var(--primary-color) !important;
}

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

/* === SHADOW UTILITIES === */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

.animate-fadeIn {
  animation: fadeIn 1s ease-out;
}

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

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

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .display-2 {
    font-size: 3rem;
  }
  .display-3 {
    font-size: 2.5rem;
  }
  .display-4 {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0;
  }
  
  .navbar-collapse {
    background: rgba(13, 20, 70, 0.98);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
  }
  
  .floating-icon {
    display: none;
  }
  
  .services-section,
  .testimonials-section,
  .parallax-section {
    padding: 60px 0;
  }
  
  .stat-counter {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .display-2 {
    font-size: 2.5rem;
  }
  .display-3 {
    font-size: 2rem;
  }
  .display-4 {
    font-size: 1.75rem;
  }
  .display-5 {
    font-size: 1.5rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .parallax-section {
    background-attachment: scroll;
  }
  
  .hexagon-container {
    width: 150px;
    height: 150px;
  }
  
  .timeline-item {
    padding-left: 30px;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .display-2 {
    font-size: 2rem;
  }
  .display-3 {
    font-size: 1.75rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem !important;
  }
  
  .testimonial-card {
    padding: 1.5rem !important;
  }
  
  .cta-section {
    text-align: center;
  }
  
  .position-fixed.end-0.bottom-0 {
    bottom: 1rem;
    right: 1rem;
  }
}

/* === UTILITY CLASSES === */
.overflow-hidden {
  overflow: hidden !important;
}

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

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

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

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

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

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

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

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

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

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

.rounded {
  border-radius: 0.375rem !important;
}

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

/* === HOVER EFFECTS === */
.img-fluid {
  transition: var(--transition);
}

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

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

/* === SCROLL BEHAVIOR === */
html {
  scroll-behavior: smooth;
}

/* === FOCUS STYLES === */
:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

button:focus,
.btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 191, 165, 0.25) !important;
}

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

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

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

/* === PRINT STYLES === */
@media print {
  .navbar,
  .btn,
  footer,
  .position-fixed {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}