/* Midnight Crimson Architecture Studio - Complete CSS */

:root {
  --primary-color: #1a1a2e;
  --secondary-color: #e94560;
  --accent-dark: #0f0f1e;
  --accent-light: #ff6b85;
  --text-light: #ffffff;
  --text-muted: #b8b8c8;
  --shadow-color: rgba(233, 69, 96, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography Overrides */
h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  color: var(--text-light) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}

p, .lead, .fs-5 {
  color: var(--text-muted) !important;
  line-height: 1.8;
}

a {
  color: var(--secondary-color) !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-light) !important;
  transform: translateY(-2px);
}

/* Navbar Styling */
.navbar {
  background: rgba(26, 26, 46, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0 !important;
  box-shadow: 0 2px 20px rgba(233, 69, 96, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(15, 15, 30, 0.98) !important;
  box-shadow: 0 4px 30px rgba(233, 69, 96, 0.2);
}

.navbar-brand {
  color: var(--text-light) !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  transition: all 0.3s ease;
}

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

.navbar-brand .bi {
  color: var(--secondary-color) !important;
  font-size: 1.8rem;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--text-light) !important;
  background: rgba(233, 69, 96, 0.1) !important;
  transform: translateY(-2px);
}

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

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.3) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(233, 69, 96, 1)' 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(--accent-dark) 0%, var(--primary-color) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
  opacity: 0.1;
  animation: pulse 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
  opacity: 0.08;
  animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.15;
  }
}

.hero-section .display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  line-height: 1.1;
  margin-bottom: 1.5rem !important;
  text-shadow: 2px 2px 20px rgba(233, 69, 96, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-section .lead {
  font-size: clamp(1.1rem, 2vw, 1.5rem) !important;
  color: var(--text-muted) !important;
  max-width: 700px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-section .fs-5 {
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

/* Buttons */
.btn {
  font-weight: 600 !important;
  border-radius: 12px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: none !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

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

.btn-lg {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  padding: 1rem 2.5rem !important;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.btn-lg:hover {
  background: var(--accent-light) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.6) !important;
}

.btn-outline-light {
  border: 2px solid var(--text-light) !important;
  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) !important;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3) !important;
}

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

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

.crimson-submit-btn {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  border: none !important;
  font-weight: 600 !important;
}

.crimson-submit-btn:hover {
  background: var(--accent-light) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5) !important;
}

/* Scroll Indicator */
.bi-chevron-double-down {
  color: var(--secondary-color) !important;
  font-size: 2rem !important;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bi-chevron-double-down:hover {
  color: var(--accent-light) !important;
  transform: scale(1.2);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

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

/* Stats Section */
.col-md-4 .p-4 {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(233, 69, 96, 0.2);
  border-radius: 16px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.col-md-4 .p-4:hover {
  background: rgba(233, 69, 96, 0.1) !important;
  border-color: var(--secondary-color);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.col-md-4 .bi {
  color: var(--secondary-color) !important;
  font-size: 3rem !important;
  margin-bottom: 1rem;
}

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

/* Image Styling */
.img-fluid {
  border-radius: 16px !important;
  transition: all 0.4s ease;
}

.img-fluid:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4) !important;
}

.shadow-lg {
  box-shadow: 0 10px 40px rgba(233, 69, 96, 0.3) !important;
}

.shadow {
  box-shadow: 0 5px 20px rgba(233, 69, 96, 0.2) !important;
}

/* Service Cards */
.service-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(233, 69, 96, 0.2) !important;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: rgba(233, 69, 96, 0.08) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4) !important;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(233, 69, 96, 0.5);
}

.service-icon .bi {
  color: var(--text-light) !important;
  font-size: 2rem !important;
}

.col-md-6 .bi,
.col-lg-4 .bi,
.col-md-4 .bi {
  color: var(--secondary-color) !important;
  font-size: 2.5rem !important;
  transition: all 0.3s ease;
}

.col-md-6:hover .bi,
.col-lg-4:hover .bi,
.col-md-4:hover .bi {
  transform: scale(1.2) rotate(5deg);
}

/* Info Cards Section */
.info-cards-section {
  background: var(--accent-dark) !important;
  padding: 5rem 0;
}

.info-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(233, 69, 96, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  height: 100%;
}

.info-card:hover {
  background: rgba(233, 69, 96, 0.1) !important;
  border-color: var(--secondary-color);
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(233, 69, 96, 0.3);
}

.info-card .bi {
  color: var(--secondary-color) !important;
  font-size: 2.8rem !important;
}

/* Timeline Section */
.timeline-section {
  background: var(--accent-dark) !important;
  position: relative;
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
  border-left: 2px solid rgba(233, 69, 96, 0.3);
  transition: all 0.3s ease;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 14px;
  height: 14px;
  background: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.2);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  border-left-color: var(--secondary-color);
  padding-left: 3.5rem;
}

.timeline-item:hover::before {
  width: 18px;
  height: 18px;
  left: -10px;
  box-shadow: 0 0 0 6px rgba(233, 69, 96, 0.3);
}

.badge {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  padding: 0.5rem 1rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
}

/* Carousel Styling */
.carousel {
  border-radius: 16px;
  overflow: hidden;
}

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

.carousel-item img {
  filter: brightness(0.8);
  transition: all 0.4s ease;
}

.carousel-item:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: rgba(233, 69, 96, 0.2);
}

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

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: all 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(233, 69, 96, 0.9), transparent);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.overlay h5,
.overlay p {
  color: var(--text-light) !important;
  margin: 0;
}

/* Filter Buttons */
.filter-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-muted) !important;
  border: 1px solid rgba(233, 69, 96, 0.2) !important;
  padding: 0.5rem 1.5rem !important;
  margin: 0.25rem !important;
  border-radius: 25px !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

/* Before After Container */
.before-after-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16/9;
}

.before-after-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Section */
.contact-hero {
  background: linear-gradient(135deg, var(--accent-dark), var(--primary-color));
  padding: 5rem 0;
}

.contact-form-section {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(233, 69, 96, 0.2);
  border-radius: 16px;
  padding: 3rem;
  transition: all 0.4s ease;
}

.contact-form-section:hover {
  background: rgba(233, 69, 96, 0.05) !important;
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.direct-contact {
  background: var(--secondary-color) !important;
  border-radius: 16px;
  padding: 3rem;
  color: var(--text-light) !important;
}

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

.direct-contact h5,
.direct-contact p,
.direct-contact a {
  color: var(--text-light) !important;
}

/* Form Controls */
.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(233, 69, 96, 0.3) !important;
  color: var(--text-light) !important;
  padding: 0.75rem 1rem !important;
  border-radius: 8px !important;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25) !important;
  color: var(--text-light) !important;
}

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

.form-select option {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
}

/* Map Section */
.map-section {
  position: relative;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(233, 69, 96, 0.2);
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--secondary-color);
  text-align: center;
}

/* Accordion Styling */
.accordion {
  background: transparent !important;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(233, 69, 96, 0.2) !important;
  margin-bottom: 1rem;
  border-radius: 12px !important;
  overflow: hidden;
}

.accordion-button {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-light) !important;
  font-weight: 600 !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  transition: all 0.3s ease;
}

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

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25) !important;
  border-color: var(--secondary-color) !important;
}

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

.accordion-body {
  background: rgba(255, 255, 255, 0.02) !important;
  color: var(--text-muted) !important;
  padding: 1.5rem !important;
  border-top: 1px solid rgba(233, 69, 96, 0.2);
}

.accordion-collapse {
  background: transparent !important;
}

/* Modal Styling */
.modal-content {
  background: var(--primary-color) !important;
  border: 1px solid var(--secondary-color) !important;
  border-radius: 16px !important;
}

.modal-header {
  border-bottom: 1px solid rgba(233, 69, 96, 0.3) !important;
  padding: 1.5rem !important;
}

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

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

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

.btn-close:hover {
  opacity: 1;
}

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

/* Footer Styling */
footer {
  background: var(--accent-dark) !important;
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(233, 69, 96, 0.2);
}

footer .bi {
  color: var(--secondary-color) !important;
  font-size: 1.8rem !important;
  transition: all 0.3s ease;
}

footer .bi:hover {
  color: var(--accent-light) !important;
  transform: scale(1.2) translateY(-3px);
}

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

footer p,
footer a,
footer .small {
  color: var(--text-muted) !important;
}

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

.list-unstyled li {
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.list-unstyled a {
  display: inline-block;
  transition: all 0.3s ease;
}

/* Scroll to Top Button */
.bi-arrow-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem !important;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.bi-arrow-up.show {
  opacity: 1;
  visibility: visible;
}

.bi-arrow-up:hover {
  background: var(--accent-light) !important;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

/* Animations */
@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-fade-in {
  animation: fadeIn 0.8s ease-out;
}

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

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

/* Responsive Design */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(15, 15, 30, 0.98);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    border: 1px solid rgba(233, 69, 96, 0.2);
  }
  
  .nav-link {
    margin: 0.5rem 0;
  }
  
  .hero-section {
    min-height: 90vh;
    padding: 2rem 0;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.8rem !important;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .contact-form-section,
  .direct-contact {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .d-flex.gap-3 {
    flex-direction: column;
    align-items: stretch !important;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .info-card {
    padding: 2rem;
  }
  
  .timeline-item {
    padding-left: 2rem;
  }
  
  .bi-arrow-up {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-section .display-1 {
    font-size: 2rem !important;
  }
  
  .hero-section .lead {
    font-size: 1rem !important;
  }
  
  .display-3 {
    font-size: 1.5rem !important;
  }
  
  .p-5 {
    padding: 2rem !important;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-section {
    padding: 1.5rem;
  }
  
  .modal-dialog {
    margin: 0.5rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .bi-arrow-up,
  footer {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
}

/* Accessibility Improvements */
.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-visible {
  outline: 2px solid var(--secondary-color) !important;
  outline-offset: 2px;
}

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.hide {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(233, 69, 96, 0.2);
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

::-webkit-scrollbar-track {
  background: var(--accent-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 6px;
  border: 2px solid var(--accent-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

/* Selection Color */
::selection {
  background: var(--secondary-color);
  color: var(--text-light);
}

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