/* ===== Architectural Studio - Midnight Steel & Forge Orange Theme ===== */

/* === CSS Variables & Root Styles === */
:root {
  --primary-color: #1a237e;
  --secondary-color: #ff6f00;
  --dark-bg: #0d1117;
  --light-bg: #f8f9fa;
  --text-dark: #212529;
  --text-light: #ffffff;
  --steel-gray: #37474f;
  --midnight-blue: #1a237e;
  --forge-orange: #ff6f00;
  --transition-speed: 0.3s;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

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

html {
  scroll-behavior: smooth;
}

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

/* === Navbar Styles === */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, #283593 100%) !important;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-speed) ease;
  padding: 1rem 0;
}

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

.navbar-dark .navbar-brand {
  color: var(--text-light) !important;
  font-size: 1.75rem;
  letter-spacing: 1px;
  transition: color var(--transition-speed) ease;
}

.navbar-brand.fw-bold {
  font-weight: 800 !important;
}

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

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

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1.25rem !important;
  margin: 0 0.25rem;
  transition: all var(--transition-speed) ease;
  position: relative;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
}

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

/* === Hero Section === */
.hero-section {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--steel-gray) 100%);
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(55, 71, 79, 0.85) 100%);
  z-index: 1;
}

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

.hero-title {
  font-weight: 800 !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  color: var(--text-light) !important;
}

.hero-subtitle {
  color: var(--secondary-color) !important;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
  color: rgba(255, 255, 255, 0.95) !important;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn {
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
}

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

.cta-primary:hover {
  background: #ff8c00 !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 111, 0, 0.3);
}

.cta-secondary {
  background: transparent !important;
  color: var(--text-light) !important;
  border: 2px solid var(--text-light) !important;
}

.cta-secondary:hover {
  background: var(--text-light) !important;
  color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  color: var(--text-light) !important;
  z-index: 2;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.scroll-indicator:hover {
  color: var(--secondary-color) !important;
  transform: translateX(-50%) translateY(5px) !important;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* === Intro Section === */
.intro-section {
  background: var(--light-bg);
  padding: 5rem 0;
}

.intro-section .img-fluid {
  transition: transform var(--transition-speed) ease;
}

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

.intro-section .display-5 {
  color: var(--primary-color) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.intro-section p {
  color: var(--steel-gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.btn-outline-primary {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all var(--transition-speed) ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

/* === Services Preview Section === */
.services-preview {
  padding: 5rem 0;
  background: var(--text-light);
}

.diagonal-section {
  position: relative;
}

.diagonal-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--light-bg);
  transform: skewY(-2deg);
}

.services-preview .display-4 {
  color: var(--primary-color) !important;
  font-weight: 800;
  margin-bottom: 1rem;
}

.services-preview .lead {
  color: var(--steel-gray);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.service-card {
  background: var(--text-light);
  border-radius: 15px;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
  height: 100%;
}

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

.service-icon {
  color: var(--secondary-color) !important;
  margin-bottom: 1rem;
  transition: transform var(--transition-speed) ease;
}

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

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

.service-card p {
  color: var(--steel-gray);
  line-height: 1.8;
}

/* === Why Choose Section === */
.why-choose-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--steel-gray) 100%);
  color: var(--text-light) !important;
  padding: 5rem 0;
}

.why-choose-section .display-4 {
  color: var(--text-light) !important;
  font-weight: 800;
  margin-bottom: 3rem;
}

.feature-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary-color);
  transform: translateY(-5px);
}

.feature-box .bi {
  color: var(--secondary-color) !important;
  margin-bottom: 1rem;
}

.feature-box .h5 {
  color: var(--text-light) !important;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-box p {
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 0;
}

/* === CTA Section === */
.cta-section {
  background: var(--secondary-color);
  padding: 4rem 0;
}

.contact-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.contact-box .display-5 {
  color: var(--primary-color) !important;
  font-weight: 800;
}

.contact-box p {
  color: var(--steel-gray);
  font-size: 1.1rem;
}

.contact-box .btn {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition-speed) ease;
}

.contact-box .btn:hover {
  background: var(--secondary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 111, 0, 0.3);
}

.contact-box .bi-telephone {
  color: var(--secondary-color) !important;
}

.text-decoration-none {
  color: var(--primary-color) !important;
  font-weight: 600;
}

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

/* === Location Section === */
.location-section {
  background: var(--light-bg);
}

.map-placeholder {
  height: 500px;
  background: linear-gradient(135deg, var(--steel-gray) 0%, var(--primary-color) 100%);
  align-items: center;
  justify-content: center;
}

.map-placeholder .display-6 {
  color: var(--text-light) !important;
  font-weight: 700;
}

.map-placeholder .bi-geo-alt-fill {
  color: var(--secondary-color) !important;
}

/* === Footer === */
.footer {
  background: linear-gradient(135deg, #0d1117 0%, var(--primary-color) 100%);
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 3rem 0 1rem;
}

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

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light) !important;
  border-radius: 50%;
  margin-right: 0.5rem;
  transition: all var(--transition-speed) ease;
}

.social-links a:hover {
  background: var(--secondary-color) !important;
  transform: translateY(-3px);
}

.footer-link {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  display: inline-block;
}

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

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

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

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

/* === Timeline Container === */
.timeline-container {
  position: relative;
  padding-left: 3rem;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary-color);
}

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

.timeline-marker {
  position: absolute;
  left: -2.5rem;
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  border: 4px solid var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light) !important;
  box-shadow: var(--shadow-md);
}

.timeline-content .card {
  border-left: 4px solid var(--secondary-color) !important;
  transition: all var(--transition-speed) ease;
}

.timeline-content .card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg) !important;
}

.timeline-content .card-title {
  color: var(--primary-color) !important;
  font-weight: 700;
}

/* === Form Styles === */
.needs-validation .form-floating {
  margin-bottom: 1rem;
}

.form-control,
.form-select {
  border: 2px solid #dee2e6;
  border-radius: 10px;
  padding: 0.75rem;
  transition: all var(--transition-speed) ease;
  background-color: var(--text-light) !important;
  color: var(--text-dark) !important;
}

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

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

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

.form-check-input {
  border: 2px solid #dee2e6;
  cursor: pointer;
}

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

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

.invalid-feedback {
  color: #dc3545 !important;
  font-weight: 600;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545 !important;
}

.form-control.is-valid,
.form-select.is-valid {
  border-color: #28a745 !important;
}

/* === Alert Styles === */
.alert-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
  color: var(--text-light) !important;
  border: none;
  border-radius: 10px;
  font-weight: 600;
}

.alert-info {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%) !important;
  color: var(--text-light) !important;
  border: none;
  border-radius: 10px;
}

.alert .bi {
  margin-right: 0.5rem;
}

/* === Card Styles === */
.card {
  border-radius: 15px;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #283593 100%) !important;
  color: var(--text-light) !important;
  font-weight: 700;
  padding: 1.25rem;
  border: none;
}

.card-body {
  padding: 1.5rem;
}

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

.card-img-top {
  transition: transform var(--transition-speed) ease;
}

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

/* === Sticky Elements === */
.sticky-top,
.sticky-lg-top {
  top: 80px;
  z-index: 1020;
}

/* === List Group === */
.list-group-item {
  border: none;
  border-left: 3px solid transparent;
  transition: all var(--transition-speed) ease;
  background: var(--text-light) !important;
  color: var(--text-dark) !important;
}

.list-group-item:hover,
.list-group-item-action:hover {
  border-left-color: var(--secondary-color);
  background: var(--light-bg) !important;
  color: var(--primary-color) !important;
  padding-left: 1.5rem;
}

.list-group-item.active {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  border-left-color: var(--secondary-color);
}

/* === Accordion === */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  border-radius: 10px;
}

.accordion-button {
  background: var(--light-bg) !important;
  color: var(--primary-color) !important;
  font-weight: 700;
  border: none;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color) 0%, #283593 100%) !important;
  color: var(--text-light) !important;
  box-shadow: none;
}

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

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

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

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

/* === Nav Pills === */
.nav-pills .nav-link {
  color: var(--primary-color) !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
}

.nav-pills .nav-link:hover {
  background: var(--light-bg) !important;
  color: var(--secondary-color) !important;
}

.nav-pills .nav-link.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, #283593 100%) !important;
  color: var(--text-light) !important;
  border-color: var(--secondary-color);
}

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

.table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, #283593 100%);
  color: var(--text-light) !important;
}

.table thead th {
  color: var(--text-light) !important;
  font-weight: 700;
  border: none;
  padding: 1rem;
}

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

.table-hover tbody tr:hover {
  background: var(--light-bg) !important;
  transform: scale(1.01);
}

.table tbody td {
  padding: 1rem;
  vertical-align: middle;
  color: var(--text-dark) !important;
}

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

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

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

/* === Button Variants === */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 50px;
}

.btn-outline-dark {
  color: var(--text-dark) !important;
  border-color: var(--text-dark) !important;
  transition: all var(--transition-speed) ease;
}

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

.filter-btn {
  margin: 0.25rem;
  transition: all var(--transition-speed) ease;
}

.filter-btn.active {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  border-color: var(--secondary-color) !important;
}

/* === Gallery === */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 35, 126, 0.9) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--text-light) !important;
}

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

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

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 0;
}

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

.modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #283593 100%);
  color: var(--text-light) !important;
  border: none;
  padding: 1.5rem;
}

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

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

.btn-close:hover,
.btn-close-white:hover {
  opacity: 0.8;
}

.modal-body {
  padding: 2rem;
}

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

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

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

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

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

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

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

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

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

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

.opacity-75 {
  opacity: 0.75 !important;
}

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

/* === Responsive Design === */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(26, 35, 126, 0.98);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.5rem !important;
  }
  
  .hero-buttons .btn {
    margin-bottom: 1rem;
    width: 100%;
  }
  
  .display-2 {
    font-size: 2.5rem;
  }
  
  .display-3 {
    font-size: 2rem;
  }
  
  .display-4 {
    font-size: 1.75rem;
  }
  
  .display-5 {
    font-size: 1.5rem;
  }
  
  .timeline-container {
    padding-left: 2rem;
  }
  
  .timeline-marker {
    left: -2rem;
    width: 30px;
    height: 30px;
  }
  
  .map-placeholder {
    height: 300px;
  }
  
  .sticky-lg-top {
    position: relative !important;
    top: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.25rem !important;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .feature-box {
    margin-bottom: 1.5rem;
  }
  
  .gallery-image {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem;
  }
  
  .display-2 {
    font-size: 2rem;
  }
  
  .contact-box {
    padding: 2rem !important;
  }
  
  .footer {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
    display: flex;
  }
}

/* === Print Styles === */
@media print {
  .navbar,
  .hero-section,
  .btn,
  .footer {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}

/* === Animations === */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

.slide-in-up {
  animation: slideInUp 1s ease;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

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

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