/* ==========================================
   CLINICA DENTAL MEDISCH - CUSTOM STYLES
   Brand Colors:
   - Primary: #283B6A
   - Accent:  #13C5DD
   - BG:      #FFFFFF
   - Text:    #283B6A
   ========================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary: #283B6A;
  --accent: #13C5DD;
  --bg: #FFFFFF;
  --text-primary: #283B6A;
  --text-secondary: #5a6a8a;
  --text-light: #8b97b0;
  --bg-light: #f4f7fb;
  --input-bg: #283B69;
  --input-text: #788FC8;
  --border-radius: 8px;
  --border-radius-btn-primary: 8px 8px 0px 8px;
  --border-radius-btn-secondary: 8px 8px 8px 0px;
  --border-radius-input: 8px 8px 0px 8px;
  --shadow-sm: 0 2px 10px rgba(40, 59, 106, 0.08);
  --shadow-md: 0 8px 30px rgba(40, 59, 106, 0.12);
  --shadow-lg: 0 15px 50px rgba(40, 59, 106, 0.15);
  --transition: all 0.3s ease;
}

/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

p {
  font-family: 'Roboto', sans-serif;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

a:hover {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}

#preloader.loaded {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  display: flex;
  gap: 6px;
}

.spinner > div {
  width: 14px;
  height: 14px;
  background-color: var(--accent);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.spinner .bounce1 { animation-delay: -0.32s; }
.spinner .bounce2 { animation-delay: -0.16s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* ---------- TOP BAR ---------- */
.top-bar {
  background: var(--primary);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.top-info {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.top-info li i {
  color: var(--accent);
  margin-right: 6px;
}

.top-social {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.top-social li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.top-social li a:hover {
  color: var(--accent);
}

/* ---------- NAVBAR ---------- */
#mainNav {
  background: var(--bg);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

#mainNav.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.logo-img {
  height: 80px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.navbar-nav .nav-link {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  color: var(--primary) !important;
  padding: 8px 16px !important;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  transform: scaleX(1);
}

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

.nav-cta .btn-primary-custom {
  padding: 10px 24px !important;
  margin-left: 8px;
}

/* ---------- BUTTONS ---------- */
.btn-primary-custom {
  background: var(--accent);
  color: #FFFFFF;
  border: 2px solid var(--accent);
  border-radius: var(--border-radius-btn-primary);
  padding: 12px 32px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: none;
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(19, 197, 221, 0.3);
}

.btn-secondary-custom {
  background: var(--bg);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--border-radius-btn-secondary);
  padding: 12px 32px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: none;
  cursor: pointer;
}

.btn-secondary-custom:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 59, 106, 0.3);
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f4f8 50%, #f8fbff 100%);
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: linear-gradient(135deg, rgba(19, 197, 221, 0.05) 0%, rgba(40, 59, 106, 0.03) 100%);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.min-vh-hero {
  min-height: 75vh;
}

.hero-badge {
  display: inline-block;
  background: rgba(19, 197, 221, 0.1);
  color: var(--accent);
  padding: 10px 28px;
  border-radius: 50px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: 'Heebo', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.hero-text {
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Heebo', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  display: inline;
}

.stat-suffix {
  font-family: 'Heebo', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  margin-top: -4px;
}

.hero-image-wrapper {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

/* ---------- FEATURES BAR ---------- */
.features-bar {
  padding: 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.feature-card {
  background: var(--bg);
  border-radius: var(--border-radius);
  padding: 30px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, var(--accent), #0fb8ce);
  border-radius: var(--border-radius-btn-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.feature-content h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 13px;
  margin-bottom: 0;
  color: var(--text-light);
}

/* ---------- SECTION COMMON ---------- */
.section-padding {
  padding: 90px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  display: inline-block;
  color: var(--accent);
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-family: 'Heebo', sans-serif;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
}

/* ---------- SERVICES ---------- */
.service-card {
  background: var(--bg);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid #eef2f7;
  position: relative;
  overflow: hidden;
}

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

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

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

.service-icon {
  width: 68px;
  height: 68px;
  background: rgba(19, 197, 221, 0.1);
  border-radius: var(--border-radius-btn-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 28px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(19, 197, 221, 0.15);
}

.service-icon-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.service-card h4 {
  font-size: 19px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  margin-bottom: 16px;
}

.service-link {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--primary);
  gap: 10px;
}

/* ---------- ABOUT ---------- */
.bg-light-custom {
  background: var(--bg-light);
}

.about-image-wrapper {
  position: relative;
  padding: 20px;
}

.about-image-main {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--border-radius);
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(19, 197, 221, 0.1) 0%, rgba(40, 59, 106, 0.1) 100%);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--accent);
}

.about-experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.exp-number {
  display: block;
  font-family: 'Heebo', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.exp-text {
  font-size: 13px;
  opacity: 0.9;
}

.about-features {
  margin-top: 24px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.about-feature-icon {
  color: var(--accent);
  font-size: 22px;
  margin-top: 2px;
}

.about-feature-item h5 {
  font-size: 16px;
  margin-bottom: 4px;
}

.about-feature-item p {
  font-size: 13px;
  margin-bottom: 0;
}

/* ---------- TEAM ---------- */
.team-card {
  background: var(--bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

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

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #e8f0fe 0%, #d6eef3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.4;
}

.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(0deg, rgba(40, 59, 106, 0.9) 0%, transparent 100%);
  transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--accent);
  color: #fff;
}

.team-info {
  padding: 24px 20px;
  text-align: center;
}

.team-info h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.team-info span {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  font-family: 'Rubik', sans-serif;
}

.team-info p {
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ---------- TESTIMONIALS ---------- */
.bg-primary-dark {
  background: linear-gradient(135deg, var(--primary) 0%, #1c2d52 100%);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.testimonial-stars {
  margin-bottom: 16px;
  color: #ffc107;
  font-size: 14px;
  display: flex;
  gap: 3px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(19, 197, 221, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
}

.testimonial-author h5 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 2px;
}

.testimonial-author span {
  color: var(--accent);
  font-size: 12px;
  font-family: 'Rubik', sans-serif;
}

/* ---------- APPOINTMENT ---------- */
.appointment-form-wrapper {
  background: var(--bg);
  border-radius: var(--border-radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.appointment-form-wrapper h3 {
  font-family: 'Heebo', sans-serif;
  font-size: 26px;
  margin-bottom: 28px;
  text-align: center;
}

.custom-input {
  background: var(--bg-light) !important;
  color: var(--primary) !important;
  border: 1.5px solid #dce3ed;
  border-radius: var(--border-radius-input) !important;
  padding: 14px 18px;
  font-size: 14px;
  transition: var(--transition);
}

.custom-input::placeholder {
  color: var(--text-light);
}

.custom-input:focus {
  background: #fff !important;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(19, 197, 221, 0.15);
}

select.custom-input {
  appearance: none;
  -webkit-appearance: none;
  color: var(--text-light) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23283B6A' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 12px !important;
}

select.custom-input:valid {
  color: var(--primary) !important;
}

select.custom-input option {
  background: #fff;
  color: var(--primary);
}

select.custom-input option:disabled {
  color: var(--text-light);
}

.appointment-info {
  margin-top: 20px;
}

.appointment-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(19, 197, 221, 0.1);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
}

.appointment-info-item h5 {
  font-size: 15px;
  margin-bottom: 2px;
}

.appointment-info-item p {
  font-size: 14px;
  margin-bottom: 0;
}

/* ---------- MAP ---------- */
.map-section .map-placeholder {
  height: 300px;
  background: linear-gradient(135deg, #e8f0fe 0%, #d6eef3 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 48px;
}

.map-placeholder p {
  font-size: 16px;
  margin-top: 12px;
  color: var(--text-secondary);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 60px;
}

.footer-logo {
  height: 55px;
  margin-bottom: 16px;
  border-radius: var(--border-radius);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}

.footer-title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 12px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact li i {
  color: var(--accent);
  margin-top: 4px;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 20px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--border-radius-btn-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(19, 197, 221, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .hero-title {
    font-size: 44px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-suffix {
    font-size: 28px;
  }

  .section-title {
    font-size: 32px;
  }

  .navbar-collapse {
    background: var(--bg);
    padding: 16px;
    margin-top: 8px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
  }

  .nav-cta {
    margin-top: 8px;
  }

  .nav-cta .btn-primary-custom {
    margin-left: 0 !important;
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .top-bar {
    display: none;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .min-vh-hero {
    min-height: auto;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .features-bar {
    margin-top: 0;
    padding-top: 40px;
  }

  .appointment-form-wrapper {
    padding: 28px 20px;
  }

  .about-image-placeholder {
    height: 280px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-suffix {
    font-size: 24px;
  }
}

/* ---------- FORM VALIDATION STATES ---------- */
.form-control.is-invalid.custom-input {
  border: 2px solid #dc3545 !important;
}

.form-control.is-valid.custom-input {
  border: 2px solid #28a745 !important;
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

/* ---------- SELECTION ---------- */
::selection {
  background: var(--accent);
  color: #fff;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

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