/* Midnight Crimson Architecture Studio Theme */

/* =========================
   CSS VARIABLES & ROOT
   ========================= */
:root {
  --primary-color: #1A1A2E;
  --secondary-color: #E94560;
  --accent-color: #16213E;
  --light-bg: #F5F5F5;
  --dark-bg: #0F0F1E;
  --text-light: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-muted: #999999;
  --shadow-sm: 0 2px 8px rgba(233, 69, 96, 0.1);
  --shadow-md: 0 4px 16px rgba(233, 69, 96, 0.15);
  --shadow-lg: 0 8px 32px rgba(233, 69, 96, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =========================
   TYPOGRAPHY
   ========================= */
.display-1, .display-3, .display-4, .display-5 {
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  line-height: 1.2 !important;
  color: var(--text-light) !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-light) !important;
}

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

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

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

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

/* =========================
   NAVBAR STYLES
   ========================= */
.navbar {
  background: linear-gradient(180deg, var(--primary-color) 0%, rgba(26, 26, 46, 0.95) 100%) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border-bottom: 2px solid var(--secondary-color);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: var(--primary-color) !important;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-size: 1.8rem !important;
  color: var(--text-light) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  transition: var(--transition);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

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

.navbar-nav {
  gap: 0.5rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
  font-size: 1rem !important;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(233, 69, 96, 0.1);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 70%;
}

/* =========================
   HERO SECTION
   ========================= */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 50%, #16213E 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(233, 69, 96, 0.4), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(233, 69, 96, 0.3), transparent);
  background-size: 200% 200%, 180% 180%, 220% 220%, 190% 190%;
  background-position: 0% 0%, 100% 100%, 50% 50%, 100% 0%;
  animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 100% 0%; }
  25% { background-position: 100% 100%, 0% 0%, 75% 25%, 0% 100%; }
  50% { background-position: 50% 50%, 50% 50%, 25% 75%, 50% 50%; }
  75% { background-position: 100% 0%, 100% 100%, 75% 75%, 100% 100%; }
}

.hero-image {
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.2), rgba(26, 26, 46, 0.3));
  backdrop-filter: blur(100px);
}

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

.hero-section .display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  color: var(--text-light) !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
  margin-bottom: 1.5rem !important;
}

.hero-section .display-5 {
  font-size: clamp(1.2rem, 3vw, 1.8rem) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out 0.2s both;
  margin-bottom: 2rem !important;
}

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

/* =========================
   BUTTONS
   ========================= */
.btn {
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: var(--transition);
  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: 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;
}

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

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

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

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

.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;
  transform: translateY(-3px);
}

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

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

.btn-sm {
  padding: 0.4rem 1rem !important;
  font-size: 0.875rem !important;
}

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

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

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

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

.card-text {
  color: var(--text-muted) !important;
  line-height: 1.8;
  font-size: 1rem;
}

.founder-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.founder-card .rounded-circle {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid var(--secondary-color);
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

/* =========================
   SECTIONS
   ========================= */
.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

section {
  position: relative;
  overflow: hidden;
}

section .container {
  position: relative;
  z-index: 2;
}

/* About Section */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

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

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

/* Stats Icons */
.bi {
  display: inline-block;
  vertical-align: middle;
}

.bi-lightning-charge-fill,
.bi-people-fill,
.bi-fire,
.bi-bar-chart-fill,
.bi-person-check-fill,
.bi-egg-fried,
.bi-people,
.bi-trophy-fill {
  color: var(--secondary-color) !important;
  font-size: 1.5rem;
}

.bi-chevron-down {
  color: var(--text-light) !important;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

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

/* Service Cards */
.card .bi {
  font-size: 3rem;
  color: var(--secondary-color) !important;
  margin-bottom: 1rem;
  display: block;
}

/* =========================
   CONTACT & FOOTER
   ========================= */
.bg-dark {
  background: var(--primary-color) !important;
}

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

.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-facebook,
.bi-instagram,
.bi-twitter {
  color: var(--secondary-color) !important;
}

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

.list-unstyled a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  transition: var(--transition);
  font-size: 0.95rem;
}

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

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(233, 69, 96, 0.1);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  color: var(--secondary-color) !important;
  font-size: 1.25rem;
  transition: var(--transition);
  margin: 0 0.5rem;
}

.social-icons a:hover {
  background: var(--secondary-color);
  color: var(--text-light) !important;
  transform: translateY(-5px) rotate(360deg);
}

/* =========================
   FORMS
   ========================= */
.form-floating {
  margin-bottom: 1.5rem;
}

.form-control,
.form-select {
  border: 2px solid #ddd !important;
  border-radius: 8px !important;
  padding: 1rem !important;
  font-size: 1rem !important;
  transition: var(--transition);
  background: 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.25rem rgba(233, 69, 96, 0.15) !important;
  outline: none !important;
}

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

.form-floating label {
  color: var(--text-muted) !important;
  padding: 1rem !important;
}

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

/* =========================
   MODAL
   ========================= */
.modal-content {
  border-radius: 12px !important;
  border: none !important;
  background: var(--primary-color) !important;
}

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

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}

/* =========================
   ACCORDION
   ========================= */
.accordion {
  border-radius: 12px;
  overflow: hidden;
}

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

.accordion-button {
  background: white !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  font-size: 1.1rem !important;
  transition: var(--transition);
}

.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.15) !important;
  border: none !important;
}

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

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

/* =========================
   BADGE & ALERTS
   ========================= */
.badge {
  padding: 0.5rem 1rem !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
}

.alert {
  border-radius: 8px !important;
  border: none !important;
  padding: 1.25rem !important;
  font-size: 1rem !important;
}

.bi-check-circle-fill {
  color: #28a745 !important;
  font-size: 1.25rem;
}

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

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

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

/* =========================
   SCHEDULE GRID
   ========================= */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.day-column {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.day-column:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.day-header {
  background: var(--primary-color);
  color: var(--text-light) !important;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.class-card {
  background: var(--light-bg);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  border-left: 4px solid var(--secondary-color);
  transition: var(--transition);
}

.class-card:hover {
  background: rgba(233, 69, 96, 0.05);
  transform: translateX(5px);
}

.bi-clock,
.bi-person {
  color: var(--secondary-color) !important;
  font-size: 0.9rem;
  margin-right: 0.25rem;
}

/* =========================
   PRICING CARDS
   ========================= */
.pricing-toggle-btn {
  background: white !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  padding: 0.75rem 2rem !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  transition: var(--transition);
  margin: 0 0.5rem;
}

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

.card-header {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  padding: 1.5rem !important;
  border: none !important;
  font-weight: 700;
  font-size: 1.5rem;
}

.monthly-price,
.annual-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-color) !important;
  display: block;
  margin: 1rem 0;
}

.annual-price {
  display: none;
}

.feature-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-bg);
  color: var(--text-dark) !important;
}

.feature-item:last-child {
  border-bottom: none;
}

.bi-check-circle-fill.feature-icon {
  color: #28a745 !important;
  margin-right: 0.5rem;
}

.bi-x-circle {
  color: #dc3545 !important;
  margin-right: 0.5rem;
}

/* =========================
   CAROUSEL
   ========================= */
.carousel {
  border-radius: 12px;
  overflow: hidden;
}

.carousel-item {
  padding: 3rem 2rem;
  background: white;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.carousel-control-prev {
  left: 20px !important;
}

.carousel-control-next {
  right: 20px !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1 !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.bi-star-fill {
  color: #FFD700 !important;
  font-size: 1.25rem;
}

/* =========================
   UTILITIES
   ========================= */
.position-relative {
  position: relative !important;
}

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

.position-sticky {
  position: sticky !important;
  top: 100px;
}

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

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

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

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

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

.align-items-start {
  align-items: flex-start !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

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

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

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

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

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

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

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

.flex-grow-1 {
  flex-grow: 1 !important;
}

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

/* =========================
   SPACING UTILITIES
   ========================= */
.p-0 { padding: 0 !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.pt-5 { padding-top: 3rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.px-lg-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

.ps-lg-5 { padding-left: 3rem !important; }
.pe-lg-5 { padding-right: 3rem !important; }

.m-0 { margin: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-auto { margin-left: auto !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }

.mb-lg-0 { margin-bottom: 0 !important; }
.mb-md-0 { margin-bottom: 0 !important; }
.mt-lg-0 { margin-top: 0 !important; }
.mt-md-0 { margin-top: 0 !important; }

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(26, 26, 46, 0.98);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: var(--shadow-lg);
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 6px;
    margin: 0.25rem 0;
  }

  .hero-section {
    padding: 80px 0 40px;
    min-height: 90vh;
  }

  .display-1 {
    font-size: 2.5rem !important;
  }

  .display-3 {
    font-size: 2rem !important;
  }

  .display-4 {
    font-size: 1.75rem !important;
  }

  .display-5 {
    font-size: 1.25rem !important;
  }

  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
  }

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

  .position-sticky {
    position: relative !important;
    top: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

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

  .ps-lg-5,
  .pe-lg-5,
  .px-lg-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .social-icons a {
    margin: 0 0.25rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px !important;
    height: 40px !important;
  }

  .carousel-control-prev {
    left: 10px !important;
  }

  .carousel-control-next {
    right: 10px !important;
  }
}

@media (max-width: 767.98px) {
  .flex-md-row {
    flex-direction: row !important;
  }

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

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

  .col-md-4,
  .col-md-6,
  .col-md-8,
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .founder-card .rounded-circle {
    width: 100px;
    height: 100px;
  }

  .card-body {
    padding: 1.5rem !important;
  }

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

@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section .display-1 {
    font-size: 2rem !important;
  }

  .hero-section .display-5 {
    font-size: 1.1rem !important;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
  }

  .filter-btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
  }

  .pricing-toggle-btn {
    padding: 0.5rem 1.25rem !important;
    font-size: 0.875rem !important;
    margin: 0.25rem;
  }

  .monthly-price,
  .annual-price {
    font-size: 2rem;
  }

  .founder-card {
    padding: 1.5rem;
  }

  .day-column {
    padding: 1rem;
  }
}

/* =========================
   ANIMATIONS
   ========================= */
@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.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #d63850;
}

/* =========================
   LOADING SPINNER
   ========================= */
.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); }
}

/* =========================
   PRINT STYLES
   ========================= */
@media print {
  .navbar,
  .btn,
  .social-icons {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}