/* 
================================================================
   Basic Pranic Healing Workshop Landing Page Style Sheet
   Designed for Luxury, Premium Wellness Experience
   Colors: Turquoise (#12B8C8), Emerald (#00A884), Gold (#D4AF37)
================================================================
*/

/* 1. Theme Configuration & CSS Variables */
:root {
  /* Colors */
  --primary: #12B8C8;
  --primary-rgb: 18, 184, 200;
  --secondary: #00A884;
  --secondary-rgb: 0, 168, 132;
  --accent: #D4AF37;
  --accent-rgb: 212, 175, 55;
  --dark: #1F2937;
  --light: #F8FCFD;
  --white: #FFFFFF;
  --gray-200: #E5E7EB;
  --gray-500: #6B7280;
  --card-bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(255, 255, 255, 0.5);

  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Mukta', 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(18, 184, 200, 0.1), 0 10px 10px -5px rgba(0, 168, 132, 0.04);
  --shadow-gold: 0 15px 25px -5px rgba(212, 175, 55, 0.25);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --grad-accent: linear-gradient(135deg, var(--accent), #B89020);
  --grad-glow: radial-gradient(circle, rgba(18, 184, 200, 0.15) 0%, rgba(0, 168, 132, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  --grad-light: linear-gradient(180deg, var(--white), var(--light));

  /* Durations */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Global Styles & Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
}

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

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light);
}
::-webkit-scrollbar-thumb {
  background: rgba(18, 184, 200, 0.3);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Section Spacing */
section {
  padding: 80px 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--light);
}

/* 3. Button Styles with Ripple & Gradient Effects */
.btn-premium {
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 50px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  font-size: 0.95rem;
}

.btn-premium-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-premium-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  z-index: -1;
  opacity: 0;
  transition: var(--transition-normal);
}

.btn-premium-primary:hover::before {
  opacity: 1;
}

.btn-premium-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(18, 184, 200, 0.3);
}

.btn-premium-accent {
  background: var(--grad-accent);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-premium-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #B89020, var(--accent));
  z-index: -1;
  opacity: 0;
  transition: var(--transition-normal);
}

.btn-premium-accent:hover::before {
  opacity: 1;
}

.btn-premium-accent:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

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

.btn-premium-secondary:hover {
  background: rgba(18, 184, 200, 0.05);
  transform: translateY(-2px);
}

/* 4. Glassmorphism Utilities */
.glass-card {
  background: var(--card-bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  border-radius: 20px;
  transition: var(--transition-normal);
}

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

/* 5. Sticky Transparent Navbar */
.navbar-custom {
  transition: var(--transition-normal);
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(18, 184, 200, 0.1);
}

.navbar-brand-custom {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.navbar-custom.scrolled .navbar-brand-custom {
  color: var(--primary);
}

.navbar-nav-custom .nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0 12px;
  position: relative;
  opacity: 0.85;
}

.navbar-nav-custom .nav-link:hover,
.navbar-nav-custom .nav-link.active {
  color: var(--primary);
  opacity: 1;
}

.navbar-nav-custom .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition-normal);
}

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

.navbar-toggler-custom {
  border: none;
  background: transparent;
  outline: none;
}

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

.navbar-toggler-custom .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--dark);
  margin: 4px 0;
  transition: var(--transition-normal);
}

/* Hamburger transition state */
.navbar-toggler-custom[aria-expanded="true"] .icon-bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.navbar-toggler-custom[aria-expanded="true"] .icon-bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggler-custom[aria-expanded="true"] .icon-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* 6. Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--grad-light);
  position: relative;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(18, 184, 200, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 168, 132, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

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

.hero-heading {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-subheading {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 30px;
}

.hero-checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.hero-checklist li {
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
}

.hero-checklist i {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-right: 12px;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 90%;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

/* Floating badge styles */
.floating-badge {
  position: absolute;
  padding: 12px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 2;
  animation: float-badge 4s ease-in-out infinite;
}

.floating-badge i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 12px;
}

.floating-badge span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.badge-1 {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 20%;
  left: -8%;
  animation-delay: 1s;
}

.badge-3 {
  top: 25%;
  right: -5%;
  animation-delay: 0.5s;
}

.badge-4 {
  bottom: 10%;
  right: -2%;
  animation-delay: 1.5s;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  cursor: pointer;
  z-index: 1;
}

.scroll-down i {
  font-size: 1.5rem;
  color: var(--primary);
  animation: bounce 2s infinite;
  margin-top: 5px;
}

/* Keyframe Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes float-badge {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

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

/* 7. Trust & Numbers Section */
.trust-section {
  background: var(--light);
  padding: 60px 0;
  border-top: 1px solid rgba(18, 184, 200, 0.1);
  border-bottom: 1px solid rgba(18, 184, 200, 0.1);
}

.counter-box {
  text-align: center;
}

.counter-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.counter-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
}

/* 8. About Section */
.about-image {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}

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

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

.about-feature-icon {
  background: rgba(18, 184, 200, 0.1);
  color: var(--primary);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.about-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* 9. Benefits Section */
.benefit-card {
  padding: 35px 25px;
  height: 100%;
  border-radius: 20px;
  transition: var(--transition-normal);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

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

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
  background: rgba(18, 184, 200, 0.08);
  color: var(--primary);
  transition: var(--transition-normal);
}

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

/* 10. Learn Timeline Section */
.timeline-container {
  position: relative;
  padding: 40px 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--accent));
}

.timeline-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content-wrapper {
  width: 45%;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--primary);
  z-index: 1;
  transition: var(--transition-normal);
}

.timeline-item:hover .timeline-marker {
  background: var(--primary);
  box-shadow: 0 0 10px rgba(18, 184, 200, 0.5);
  transform: translateX(-50%) scale(1.2);
}

.timeline-left {
  justify-content: flex-start;
}

.timeline-right {
  justify-content: flex-end;
}

.timeline-left .timeline-content-wrapper {
  text-align: right;
}

.timeline-card {
  padding: 30px;
}

.timeline-day {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Responsive timeline for mobile */
@media (max-width: 768px) {
  .timeline-container::before {
    left: 20px;
  }
  .timeline-item {
    justify-content: flex-start;
    padding-left: 50px;
  }
  .timeline-content-wrapper {
    width: 100%;
  }
  .timeline-left .timeline-content-wrapper {
    text-align: left;
  }
  .timeline-marker {
    left: 20px;
  }
}

/* 11. Who Should Attend Section */
.attendee-card {
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
}

.attendee-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.attendee-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 168, 132, 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.attendee-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0;
}

/* 12. Workshop Details Section */
.detail-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
}

.detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.detail-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.detail-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--gray-500);
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.detail-value {
  font-size: 1.2rem;
  font-weight: 700;
}

/* 13. Trainer Profile Section */
.trainer-img-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 30px;
}

.trainer-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid rgba(18, 184, 200, 0.08);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.trainer-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 184, 200, 0.15) 0%, rgba(212, 175, 55, 0.1) 70%);
  z-index: 0;
}

.trainer-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.trainer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: var(--transition-normal);
}

.trainer-social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.highlight-item i {
  color: var(--secondary);
  margin-right: 12px;
  font-size: 1.1rem;
}

/* 14. Course Highlights Icons Grid */
.highlight-card-mini {
  padding: 20px;
  border-radius: 15px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
}

.highlight-card-mini:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.highlight-icon-mini {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.highlight-title-mini {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0;
}

/* 15. Video Section */
.video-card {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: #000;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 16. Gallery Section (Masonry-like) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 20px;
  grid-auto-rows: 240px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 184, 200, 0.8), rgba(0, 168, 132, 0.2));
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  transition: var(--transition-normal);
}

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

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

.gallery-title {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.gallery-tag {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Responsive fixes for grid layout */
@media (max-width: 600px) {
  .gallery-grid {
    grid-auto-rows: 200px;
  }
  .gallery-item-wide {
    grid-column: span 1;
  }
  .gallery-item-tall {
    grid-row: span 1;
  }
}

/* 17. Testimonials Section (Swiper) */
.testimonial-card {
  padding: 40px;
  height: auto;
}

.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--gray-500);
}

.testimonial-user {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-loc {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

/* 18. Registration Form Section */
.registration-container {
  position: relative;
  z-index: 1;
}

.countdown-wrapper {
  background: var(--grad-primary);
  color: var(--white);
  border-radius: 16px;
  padding: 15px 25px;
  display: inline-flex;
  gap: 15px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 25px;
}

.countdown-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.countdown-timer {
  display: flex;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 8px;
  border-radius: 6px;
}

.form-progress-bar {
  height: 6px;
  background-color: var(--gray-200);
  border-radius: 3px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.form-progress-fill {
  height: 100%;
  background: var(--grad-primary);
  width: 0%;
  transition: width 0.3s ease;
}

.form-floating-custom {
  margin-bottom: 20px;
}

.form-floating-custom input,
.form-floating-custom select,
.form-floating-custom textarea {
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  padding: 15px;
  width: 100%;
  font-family: var(--font-body);
  transition: var(--transition-normal);
  background: rgba(255, 255, 255, 0.6);
  outline: none;
}

.form-floating-custom input:focus,
.form-floating-custom select:focus,
.form-floating-custom textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(18, 184, 200, 0.15);
  background: var(--white);
}

.form-floating-custom label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 4px;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Success Card Animation overlay */
.success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-slow);
}

.success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 168, 132, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 25px;
  transform: scale(0.5);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-overlay.active .success-checkmark {
  transform: scale(1);
}

/* 20. FAQ Accordion Section */
.faq-accordion .accordion-item {
  border-radius: 12px !important;
  margin-bottom: 15px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  padding: 20px;
  background: var(--white);
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(18, 184, 200, 0.04);
}

.faq-accordion .accordion-button::after {
  background-size: 1.25rem;
}

.faq-accordion .accordion-body {
  padding: 20px;
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* 21. Contact Section */
.contact-info-card {
  padding: 25px;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  margin-bottom: 20px;
  transition: var(--transition-normal);
}

.contact-info-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(18, 184, 200, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.map-container {
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* 22. Floating Buttons & Sticky Footer */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
}

.float-whatsapp {
  background-color: #25D366;
}

.float-whatsapp:hover {
  background-color: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.float-back-to-top {
  background-color: var(--primary);
  opacity: 0;
  visibility: hidden;
}

.float-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.float-back-to-top:hover {
  background-color: var(--secondary);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(18, 184, 200, 0.4);
}

/* Sticky Mobile CTA footer */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 20px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.08);
  z-index: 98;
  display: none;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex;
  }
  .floating-widgets {
    bottom: 85px; /* Position above sticky footer */
    right: 20px;
  }
}

.sticky-mobile-price {
  display: flex;
  flex-direction: column;
}

.sticky-mobile-price span:first-child {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.sticky-mobile-price span:last-child {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
}

/* 22. Lead Capture Popups */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  padding: 20px;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  max-width: 500px;
  width: 100%;
  position: relative;
  text-align: center;
  padding: 40px 30px;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
  transition: var(--transition-normal);
}

.popup-close:hover {
  color: var(--dark);
}

.popup-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

/* 23. Footer Section */
.footer-section {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
  border-top: 4px solid var(--primary);
}

.footer-section h5 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

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

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

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

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 10px;
  transition: var(--transition-normal);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  margin-top: 50px;
  font-size: 0.85rem;
}

.footer-bottom-links a {
  margin-left: 20px;
}

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

/* 24. SEO & Accessibility Support Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
