/* ===== Profre Carlos Academy - Custom Design ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #f30208;
  --primary-dark: #c70106;
  --secondary-color: #1a1a2e;
  --accent-color: #f30208;
  --text-color: #1a1a2e;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-dark: #0f0f1a;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #f30208 0%, #ff4d4d 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-color);
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

main.flex-grow-1 {
  flex: 1 0 auto;
}

#footer-placeholder {
  flex-shrink: 0;
  margin-top: auto;
}

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

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

/* ===== Navbar - Sleek Dark Style ===== */
.navbar {
  background: var(--bg-dark);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}

.logo-nav {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo-nav {
  height: 55px;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
}

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

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

  
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 40px;
}
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.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='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--bg-dark);
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
  }

  .navbar .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar .nav-link::after {
    display: none;
  }

  .navbar .btn-brand {
    margin-top: 1rem;
    width: 100%;
  }
}

/* ===== Buttons ===== */
.btn {
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.btn-brand {
  background: var(--gradient-primary) !important;
  border: none;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(243, 2, 8, 0.35);
}

.btn-brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(243, 2, 8, 0.45);
}

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

.btn-outline-dark:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--secondary-color);
}

/* ===== Brand Utilities ===== */
.brand-text {
  color: var(--primary-color) !important;
}

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

/* ===== Hero Section - Bold Split Design ===== */
.hero-section {
  background: var(--white);
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section .container {
  padding-top: 100px;
}

.hero-content {
  padding: 2rem 0;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--primary-color);
}

.hero-subtitle {
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.hero-stat h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0;
}

.hero-stat p {
  color: var(--text-light);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--primary-color);
  border-radius: var(--radius-xl);
  z-index: -1;
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .hero-image-wrapper {
    margin-bottom: 2rem;
  }

  .hero-image-wrapper img {
    height: 400px;
  }

  .hero-image-wrapper::before {
    display: none;
  }
}

/* ===== Section Styles ===== */
.section-padding {
  padding: 6rem 0;
}

#goToBooking {
  scroll-margin-top: 100px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
}

.section-label {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
}

/* ===== Features Section - Card Grid ===== */
.features-section {
  background: var(--bg-light);
  padding: 6rem 0;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.4s ease;
}

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

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(243, 2, 8, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.feature-card h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  margin: 0;
}

/* ===== Stats Section ===== */
.stats-section {
  background: var(--gradient-dark);
  padding: 4rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--primary-color);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
  .stat-suffix {
    font-size: 2rem;
  }
}

/* ===== Programs Page ===== */
.programs-hero {
  background: var(--bg-light);
  padding-top: 120px;
}

.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
}

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

.tier-featured {
  border-color: var(--primary-color);
  background: linear-gradient(180deg, rgba(243, 2, 8, 0.03) 0%, var(--white) 100%);
}

.tier-icon {
  width: 80px;
  height: 80px;
  background: rgba(243, 2, 8, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.tier-tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
}

.popular-badge .badge {
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

/* ===== FAQ Accordion ===== */
.faq-section {
  background: var(--bg-light);
}

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

.accordion-button {
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  background: var(--white);
}

.accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f30208'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ===== About Page ===== */
.about-hero {
  background: var(--bg-light);
  padding-top: 120px;
}

.about-hero-img {
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-story {
  background: var(--white);
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.story-content p.lead {
  color: var(--text-color);
  font-weight: 500;
}

.about-credentials {
  background: var(--bg-light);
}

.credential-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

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

.credential-icon {
  width: 80px;
  height: 80px;
  background: rgba(243, 2, 8, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.about-philosophy {
  background: var(--bg-dark);
}

.pillar-item {
  padding: 1rem 0;
}

.pillar-icon {
  flex-shrink: 0;
}

.about-why {
  background: var(--white);
}

.why-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.why-icon {
  flex-shrink: 0;
}

.about-cta {
  background: var(--bg-light);
}

/* ===== Contact Page ===== */
.contact-hero {
  background: var(--bg-light);
  padding-top: 120px;
}

.contact-section {
  background: var(--white);
}

.contact-info-card {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(243, 2, 8, 0.2) 0%, transparent 70%);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(243, 2, 8, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-color);
}

.contact-social {
  display: flex;
  gap: 1rem;
}

.contact-social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.contact-form-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(243, 2, 8, 0.1);
}

.contact-cta {
  background: var(--bg-light);
}

/* ===== Gallery/Vault Page ===== */
.vault-hero {
  background: var(--bg-light);
  padding-top: 120px;
}

.vault-tab {
  background: transparent;
  color: var(--text-color);
  font-weight: 600;
  border: 2px solid var(--secondary-color);
  border-radius: 50px !important;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.vault-tab:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.vault-tab.active {
  background: var(--gradient-primary) !important;
  border-color: var(--primary-color) !important;
  color: var(--white) !important;
}

.gallery-item {
  cursor: pointer;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-caption {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 1rem;
}

/* Lightbox */
.lightbox-image {
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: var(--primary-color);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* Blog Cards */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.blog-card-img-placeholder {
  height: 200px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-detail-img {
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.blog-content {
  line-height: 1.8;
  color: var(--text-color);
}

/* ===== Reviews Section ===== */
.reviews-section {
  background: var(--bg-dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.review-quote-icon {
  color: var(--primary-color);
  font-size: 3rem;
  opacity: 0.8;
}

.review-quote-icon i {
  transform: rotate(180deg);
  display: inline-block;
}

.review-message {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.8;
  font-style: italic;
}

.review-rating {
  color: var(--primary-color);
  font-size: 1.25rem;
  letter-spacing: 4px;
}

.review-rating .bi-star {
  color: rgba(255, 255, 255, 0.2);
}

.review-name {
  color: var(--white);
  font-weight: 600;
}

.review-term {
  color: var(--primary-color);
  font-size: 0.9rem;
}

#reviewsCarousel .carousel-control-prev,
#reviewsCarousel .carousel-control-next {
  width: 60px;
  opacity: 1;
}

.carousel-control-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-control-icon-wrapper i {
  font-size: 1.25rem;
  color: var(--white);
}

#reviewsCarousel .carousel-control-prev:hover .carousel-control-icon-wrapper,
#reviewsCarousel .carousel-control-next:hover .carousel-control-icon-wrapper {
  background: var(--primary-color);
}

#reviewsCarousel .carousel-indicators {
  bottom: -50px;
}

#reviewsCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  margin: 0 6px;
  transition: all 0.3s ease;
}

#reviewsCarousel .carousel-indicators button.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .review-card {
    padding: 2rem;
  }

  .review-message {
    font-size: 1rem;
  }

  #reviewsCarousel .carousel-control-prev,
  #reviewsCarousel .carousel-control-next {
    display: none;
  }
}

/* ===== Free Consultation Section ===== */
.free-consult-section {
  padding: 5rem 0;
  background: var(--white);
}

.free-consult-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 60%, #3d1a1a 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.free-consult-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(243, 2, 8, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.free-consult-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(243, 2, 8, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.free-consult-content {
  position: relative;
  z-index: 1;
}

.free-consult-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(243, 2, 8, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(243, 2, 8, 0.6);
  }
}

.free-consult-title {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.free-consult-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.free-consult-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.free-consult-list li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.free-consult-list i {
  color: var(--primary-color);
  font-size: 1rem;
}

.free-consult-btn {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.free-consult-subtext {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 991.98px) {
  .free-consult-card {
    padding: 2.5rem;
    text-align: center;
  }

  .free-consult-list {
    justify-content: center;
  }

  .free-consult-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .free-consult-card {
    padding: 2rem 1.5rem;
  }

  .free-consult-list {
    flex-direction: column;
    align-items: center;
  }
}

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

.cta-card {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(243, 2, 8, 0.15) 0%, transparent 70%);
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(243, 2, 8, 0.1) 0%, transparent 70%);
}

/* ===== Booking Status Pages ===== */
.booking-status-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  background: var(--bg-light);
}

.status-card {
  border: none;
  border-radius: var(--radius-xl);
}

.status-icon {
  font-size: 5rem;
  line-height: 1;
}

.status-icon.success {
  color: #10b981;
}

.status-icon.cancelled {
  color: var(--primary-color);
}

.confirmation-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
}

.info-box {
  background: rgba(100, 116, 139, 0.08);
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: var(--radius-md);
}

.info-box a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-box a:hover {
  color: var(--primary-color);
}

/* ===== Modals ===== */
.waiver-link {
  color: var(--primary-color);
  font-weight: 600;
}

.waiver-link:hover {
  color: var(--primary-dark);
}

#waiverCheck:checked,
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

#waiverCheck:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(243, 2, 8, 0.25);
}

#waiverModal .modal-header,
#leaveReviewModal .modal-header {
  background: var(--gradient-dark);
  border: none;
}

#waiverModal .modal-title,
#leaveReviewModal .modal-title {
  color: var(--white);
  font-weight: 700;
}

#waiverModal .btn-close,
#leaveReviewModal .btn-close {
  filter: invert(1);
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 8px;
  font-size: 2rem;
}

.star-icon {
  color: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
}

.star-icon:hover,
.star-icon.hovered,
.star-icon.selected {
  color: var(--primary-color);
  transform: scale(1.15);
}

/* ===== Footer - Modern Dark ===== */
.site-footer {
  background: var(--bg-dark);
  position: relative;
}

.footer-accent-line {
  height: 4px;
  background: var(--gradient-primary);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-about {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-heading {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

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

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

.footer-contact-list li {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: var(--primary-color);
}

.footer-contact-list i {
  color: var(--primary-color);
  width: 20px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* ===== Alerts ===== */
.alert {
  border-radius: var(--radius-md);
  border: none;
}

#contactSuccessAlert,
#reviewSuccessAlert {
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
}

#contactErrorAlert,
#reviewErrorAlert {
  background: rgba(243, 2, 8, 0.1);
  color: #991b1b;
}

/* ===== Form Controls ===== */
.form-control,
.form-select {
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(243, 2, 8, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}
