/* Crimson Steel Architecture Studio - Custom Styles */

:root {
  --primary-color: #D32F2F;
  --secondary-color: #455A64;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  color: #333;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(211, 47, 47, 0.3);
  padding: 1rem 0;
  transition: all var(--transition-speed) ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(211, 47, 47, 0.95) !important;
}

.navbar-brand {
  font-size: 1.8rem !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition-speed) ease;
}

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

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

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.navbar-dark .navbar-nav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.25) !important;
  font-weight: 600 !important;
}

.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  padding: 0.5rem 0.75rem !important;
}

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

/* Hero Video Section */
.hero-video-section {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.8) 0%, rgba(69, 90, 100, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  z-index: 3;
  width: 90%;
  max-width: 1200px;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  margin-bottom: 1.5rem !important;
  animation: fadeInUp 1s ease-out;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: clamp(1.1rem, 3vw, 1.5rem) !important;
  font-weight: 300 !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  max-width: 800px;
  margin: 0 auto 2rem !important;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta-btn {
  background-color: #ffffff !important;
  color: var(--primary-color) !important;
  border: 3px solid #ffffff !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  border-radius: 50px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease !important;
  animation: fadeInUp 1s ease-out 0.6s both;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero-cta-btn:hover {
  background-color: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.9) !important;
  animation: bounce 2s infinite;
  cursor: pointer;
}

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

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

/* Button Styles */
.btn-danger {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 0.75rem 2rem !important;
  border-radius: 5px !important;
  transition: all var(--transition-speed) ease !important;
}

.btn-danger:hover {
  background-color: #b71c1c !important;
  border-color: #b71c1c !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 20px rgba(211, 47, 47, 0.4) !important;
}

.btn-outline-danger {
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  background-color: transparent !important;
  font-weight: 600 !important;
  padding: 0.75rem 2rem !important;
  border-radius: 5px !important;
  transition: all var(--transition-speed) ease !important;
}

.btn-outline-danger:hover {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 20px rgba(211, 47, 47, 0.4) !important;
}

.btn-light {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  transition: all var(--transition-speed) ease !important;
}

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

.btn-outline-light {
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  background-color: transparent !important;
  font-weight: 600 !important;
  transition: all var(--transition-speed) ease !important;
}

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

.btn-outline-secondary {
  color: var(--secondary-color) !important;
  border: 2px solid var(--secondary-color) !important;
  background-color: transparent !important;
  font-weight: 600 !important;
  transition: all var(--transition-speed) ease !important;
}

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

/* Badge Styles */
.badge {
  padding: 0.5rem 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
}

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

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

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

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

.diagonal-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.diagonal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 30px 30px;
  opacity: 0.3;
}

/* Service Card Styles */
.service-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.2);
  border-color: var(--primary-color);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ffffff !important;
  font-size: 2rem !important;
  transition: all var(--transition-speed) ease;
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
  box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
}

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

.service-card p {
  color: #666 !important;
  line-height: 1.8;
}

/* Numbers Section */
.numbers-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
  color: #ffffff;
  position: relative;
}

.number-stat {
  text-align: center;
  padding: 2rem 1rem;
}

.number-stat .display-2 {
  color: #ffffff !important;
  font-weight: 800 !important;
  margin-bottom: 0.5rem !important;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.number-stat p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

/* Testimonial Styles */
.testimonial-section {
  background-color: var(--light-color);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2.5rem;
  border: none;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.15);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.bi-star-fill.text-warning {
  color: #ffc107 !important;
  font-size: 1rem;
}

.testimonial-card blockquote {
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin: 1.5rem 0;
}

.testimonial-card .text-muted {
  color: #999 !important;
  font-size: 0.95rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Card Styles */
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.2);
}

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

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

.card-body {
  padding: 2rem;
}

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

.card-text {
  color: #666 !important;
  line-height: 1.8;
}

.card-header {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 1rem 1.5rem !important;
  border: none !important;
}

/* Program Card */
.program-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  height: 100%;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.2);
}

.program-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(211, 47, 47, 0.95), transparent);
  color: #ffffff;
  padding: 2rem;
  transform: translateY(60%);
  transition: transform var(--transition-speed) ease;
}

.program-card:hover .program-overlay {
  transform: translateY(0);
}

.program-overlay h5,
.program-overlay h6,
.program-overlay p {
  color: #ffffff !important;
}

/* Class Card */
.class-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  transition: all var(--transition-speed) ease;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.class-card:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 25px rgba(211, 47, 47, 0.2);
}

.class-card h5 {
  color: var(--secondary-color) !important;
  font-weight: 600 !important;
}

.bg-success {
  background-color: #4caf50 !important;
  color: #ffffff !important;
}

.bg-warning {
  background-color: #ff9800 !important;
}

.bg-warning.text-dark {
  color: #333 !important;
}

/* Form Styles */
.form-label {
  color: var(--secondary-color) !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
}

.form-control,
.form-select {
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  transition: all var(--transition-speed) ease !important;
  background-color: #ffffff !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.15) !important;
  background-color: #ffffff !important;
}

.form-check-input {
  border: 2px solid #e0e0e0 !important;
  transition: all var(--transition-speed) ease !important;
}

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

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.15) !important;
}

.form-check-label {
  color: #555 !important;
  cursor: pointer;
}

.invalid-feedback {
  color: var(--primary-color) !important;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  display: none;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: var(--primary-color) !important;
}

.form-control.is-invalid ~ .invalid-feedback,
.form-select.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Alert Styles */
.alert {
  border-radius: 10px !important;
  border: none !important;
  padding: 1.25rem 1.5rem !important;
  font-weight: 500 !important;
}

.alert-success {
  background-color: #d4edda !important;
  color: #155724 !important;
}

.alert-info {
  background-color: #d1ecf1 !important;
  color: #0c5460 !important;
}

.alert-light {
  background-color: #f8f9fa !important;
  color: #333 !important;
  border: 1px solid #dee2e6 !important;
}

/* Table Styles */
.table {
  color: #333 !important;
}

.table-dark {
  background-color: var(--secondary-color) !important;
  color: #ffffff !important;
}

.table-dark th,
.table-dark td {
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

.table-bordered {
  border: 2px solid #dee2e6 !important;
}

.table-responsive {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.schedule-table {
  width: 100%;
  margin: 0;
}

.schedule-table th {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 1rem !important;
}

.schedule-table td {
  padding: 1rem !important;
  vertical-align: middle !important;
}

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

.accordion-header {
  margin-bottom: 0 !important;
}

.accordion-button {
  background-color: #ffffff !important;
  color: var(--secondary-color) !important;
  font-weight: 600 !important;
  padding: 1.25rem 1.5rem !important;
  font-size: 1.1rem !important;
  transition: all var(--transition-speed) ease !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.15) !important;
  border-color: var(--primary-color) !important;
}

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

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

.accordion-body {
  padding: 1.5rem !important;
  color: #555 !important;
  line-height: 1.8;
  background-color: #fafafa !important;
}

/* Modal Styles */
.modal-content {
  border: none !important;
  border-radius: 15px !important;
  overflow: hidden;
}

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

.modal-title {
  color: #ffffff !important;
  font-weight: 700 !important;
}

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

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

.modal-body p {
  color: #555 !important;
  line-height: 1.8;
}

/* Fixed Chat Button */
.position-fixed.end-0.m-4 {
  bottom: 20px !important;
  z-index: 1000;
}

.position-fixed .btn {
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(211, 47, 47, 0.4) !important;
  font-size: 1.5rem !important;
  padding: 0 !important;
  transition: all var(--transition-speed) ease !important;
}

.position-fixed .btn:hover {
  transform: scale(1.1) rotate(15deg) !important;
  box-shadow: 0 8px 35px rgba(211, 47, 47, 0.6) !important;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 1rem;
}

footer h5 {
  color: #ffffff !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  position: relative;
  padding-bottom: 0.5rem;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

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

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  transition: all var(--transition-speed) ease !important;
  display: inline-flex;
  align-items: center;
}

footer a:hover {
  color: #ffffff !important;
  padding-left: 5px;
}

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

footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

footer .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

footer .bi-facebook:hover,
footer .bi-instagram:hover,
footer .bi-twitter:hover {
  color: var(--primary-color) !important;
}

/* Image Styles */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

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

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

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

.shadow {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
}

/* Filter Buttons */
.filter-btn {
  background-color: transparent !important;
  border: 2px solid var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  transition: all var(--transition-speed) ease !important;
  margin: 0.25rem !important;
}

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

/* Masonry Grid */
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

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

/* Transformation Item */
.transformation-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all var(--transition-speed) ease;
}

.transformation-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

.transformation-item img {
  transition: transform 0.5s ease;
}

.transformation-item:hover img {
  transform: scale(1.1);
}

/* Schedule Container */
.schedule-container {
  background: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Utility Classes */
.opacity-25 {
  opacity: 0.25 !important;
}

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

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

.bg-white {
  background-color: #ffffff !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

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

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

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

.text-muted {
  color: #6c757d !important;
}

.text-dark {
  color: #333 !important;
}

/* Responsive Typography */
.display-1 {
  font-size: clamp(2.5rem, 6vw, 5rem) !important;
  font-weight: 800 !important;
}

.display-2 {
  font-size: clamp(2rem, 5vw, 4rem) !important;
  font-weight: 800 !important;
}

.display-3 {
  font-size: clamp(1.75rem, 4vw, 3.5rem) !important;
  font-weight: 700 !important;
}

.display-4 {
  font-size: clamp(1.5rem, 3.5vw, 3rem) !important;
  font-weight: 700 !important;
}

.display-5 {
  font-size: clamp(1.25rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
}

.display-6 {
  font-size: clamp(1.1rem, 2.5vw, 2rem) !important;
  font-weight: 600 !important;
}

/* 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-bounce {
  animation: bounce 2s infinite;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.slide-in-left {
  opacity: 0;
  animation: slideInLeft 1s ease-out forwards;
}

.slide-in-right {
  opacity: 0;
  animation: slideInRight 1s ease-out forwards;
}

/* Media Queries */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(211, 47, 47, 0.98);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0 !important;
  }
  
  .hero-video-section {
    height: 80vh;
  }
  
  .masonry-grid {
    column-count: 2;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

@media (max-width: 767.98px) {
  .hero-video-section {
    height: 70vh;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-content .lead {
    font-size: 1.1rem !important;
  }
  
  .hero-cta-btn {
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .masonry-grid {
    column-count: 1;
  }
  
  .number-stat .display-2 {
    font-size: 2.5rem !important;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem !important;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .modal-body {
    padding: 1.5rem !important;
  }
  
  .accordion-button {
    font-size: 1rem !important;
    padding: 1rem !important;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .position-fixed .btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem !important;
  }
}

@media (max-width: 575.98px) {
  .hero-video-section {
    height: 60vh;
  }
  
  .container-fluid.px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .btn-lg {
    padding: 0.65rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .program-overlay {
    padding: 1.5rem;
  }
  
  .schedule-container {
    padding: 1rem;
  }
  
  footer {
    padding: 3rem 0 1rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .scroll-indicator,
  .position-fixed,
  .modal,
  footer {
    display: none !important;
  }
  
  .hero-video-section {
    height: auto !important;
    page-break-after: always;
  }
  
  .video-background {
    display: none !important;
  }
  
  section {
    page-break-inside: avoid;
  }
}