/*

Dance4All Brazilian Zouk Studio - Dublin

Custom CSS for Dance4All studio website

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #C2185B;
  --secondary-color:              #4A148C;
  --section-bg-color:             #F8BBD9;
  --custom-btn-bg-color:          #FF6F00;
  --custom-btn-bg-hover-color:    #E65100;
  --dark-color:                   #000000;
  --p-color:                      #37474F;
  --link-hover-color:             #FF6F00;

  --body-font-family:             'DM Sans', sans-serif;

  --h1-font-size:                 42px;
  --h2-font-size:                 36px;
  --h3-font-size:                 28px;
  --h4-font-size:                 24px;
  --h5-font-size:                 22px;
  --h6-font-size:                 20px;
  --p-font-size:                  18px;
  --menu-font-size:               16px;
  --btn-font-size:                14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-medium);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-bg {
  background: linear-gradient(135deg, 
    #f8bbd9 0%, 
    #F8BBD9 30%, 
    #e1bee7 60%, 
    #f0c4cc 100%);
  background-size: 400% 400%;
  animation: gentle-gradient 15s ease infinite;
  position: relative;
}

.section-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(196, 33, 91, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes gentle-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-overlay {
  content: "";
  background: rgba(0, 0, 0, 0) linear-gradient(rgba(74, 20, 140, 0.01) 0%, rgba(74, 20, 140, 1) 100%) repeat scroll 0% 0%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  ANIMATED HEADLINE               
-----------------------------------------*/
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  color: var(--link-hover-color);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}
.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}
.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}
@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}
@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}
@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}
@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}
@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-group .link {
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
}

.custom-btn-group .link:hover {
  color: var(--link-hover-color);
}


/*---------------------------------------
  TESTIMONIALS SECTION STYLES
-----------------------------------------*/
.testimonials-section {
  background-color: #f8f9fa;
}

.testimonials-section .row.align-items-center {
  align-items: stretch !important;
}

.story-questions {
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.story-questions .accordion {
  flex-grow: 1;
}

/* Accordion Styles */
.story-questions .accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.story-questions .accordion-item:hover {
  box-shadow: 0 4px 20px rgba(74, 20, 140, 0.15);
  transform: translateY(-2px);
}

.story-questions .accordion-button {
  background: #ffffff;
  color: #4A148C;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 18px;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.story-questions .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #4A148C 0%, #7B1FA2 100%);
  color: #ffffff;
  box-shadow: none;
}

.story-questions .accordion-button:not(.collapsed) i {
  color: #ffffff;
}

.story-questions .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.story-questions .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234A148C'%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");
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.story-questions .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%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");
  transform: rotate(-180deg);
}

.story-questions .accordion-button i {
  color: #4A148C;
  font-size: 18px;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.story-questions .accordion-body {
  background: #ffffff;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  padding: 16px 20px;
  border-top: 1px solid rgba(74, 20, 140, 0.1);
}

.story-questions .accordion-collapse {
  border: none;
}

.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-wrapper .ratio {
  flex-shrink: 0;
}

.video-wrapper iframe {
  border-radius: 12px;
}

.video-wrapper > p {
  flex-shrink: 0;
}

.video-placeholder {
  background: linear-gradient(135deg, #4A148C 0%, #7B1FA2 50%, #C2185B 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.video-placeholder-content {
  text-align: center;
  color: #ffffff;
  z-index: 2;
  padding: 40px 20px;
}

.video-placeholder-content i.bi-play-circle-fill {
  font-size: 80px;
  color: #ffffff;
  margin-bottom: 20px;
  display: block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.video-placeholder-content h4 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 15px;
}

.video-placeholder-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 25px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.video-placeholder-content .btn {
  background: #ffffff;
  color: #4A148C;
  font-weight: bold;
  padding: 15px 35px;
  font-size: 18px;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.video-placeholder-content .btn:hover {
  background: #FFD700;
  color: #4A148C;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.telegram-post-wrapper {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
}

.telegram-post-wrapper iframe {
  max-width: 100%;
  border-radius: 12px;
}

/* Testimonial Cards */
.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(74, 20, 140, 0.2);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 18px;
}

.testimonial-text {
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 15px;
}

.testimonial-author {
  text-align: left;
  border-top: 2px solid #f0f0f0;
  padding-top: 15px;
}

.testimonial-author strong {
  display: block;
  color: #4A148C;
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-author small {
  color: #999;
  font-size: 13px;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #4A148C 0%, #7B1FA2 100%);
  padding: 40px;
  border-radius: 12px;
  color: #ffffff;
}

.cta-box h4 {
  color: #ffffff;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
}

.testimonials-section .custom-border-btn {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.testimonials-section .custom-border-btn:hover {
  background: #ffffff;
  color: #4A148C;
}

/* Responsive */
@media (max-width: 991px) {
  .story-questions {
    padding: 10px;
    margin-bottom: 30px;
    height: auto;
  }
  
  .story-questions .accordion {
    max-height: none;
    overflow-y: visible;
  }
  
  .story-questions .accordion-button {
    font-size: 15px;
    padding: 15px 18px;
  }
  
  .story-questions .accordion-button i {
    font-size: 18px;
  }
  
  .story-questions .accordion-body {
    font-size: 14px;
    padding: 18px 20px;
  }
  
  .cta-box {
    padding: 30px 20px;
  }
  
  .video-wrapper {
    height: auto;
  }
}


/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
.offcanvas {
  background-color: var(--primary-color);
  padding: 30px;
}

.offcanvas.offcanvas-end {
  border-left: 0;
}

.offcanvas-header .btn-close {
  transition: all 0.3s;
}

.offcanvas-header .btn-close:hover {
  transform: rotate(180deg);
}

.offcanvas svg {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--secondary-color);
}

.navbar {
  background: transparent;
  z-index: 99;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--dark-color);
  max-width: 48px;
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
  color: var(--white-color);
}


.navbar-brand-image {
  width: 48px;
  height: 48px;
}

.navbar-brand-text {
  line-height: normal;
  margin-left: 10px;
  position: relative;
  bottom: 5px;
}

.navbar-brand-text small {
  display: block;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--link-hover-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--link-hover-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-image: url('../images/home.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  height: 100vh;
  min-height: 670px;
  margin-bottom: -90px;
}

.hero-50 {
  height: auto;
  min-height: 540px;
  margin-bottom: -100px;
}

.hero-50 .container + svg {
  transform: rotate(180deg);
}

.hero-section .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section > svg {
  top: 0;
}

.hero-section .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section .row {
  position: relative;
  z-index: 22;
}


/*---------------------------------------
  BACKGROUND IMAGE SECTION        
-----------------------------------------*/
.section-bg-image {
  background-image: url('../images/whatsApp.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: -70px;
}

.section-bg-image .container + svg {
  transform: rotate(180deg);
  position: relative;
  bottom: -1px;
}

.section-bg-image-block {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.section-bg-image-block .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.section-bg-image-block .input-group-text {
  background-color: transparent;
  border: 0;
}

.section-bg-image-block input[type="email"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.section-bg-image-block button[type="submit"] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}

/* WhatsApp Button Styling */
.section-bg-image-block .btn.custom-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  border-radius: var(--border-radius-large);
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.section-bg-image-block .btn.custom-btn:hover {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: var(--white-color);
}

.section-bg-image-block .btn.custom-btn svg {
  fill: currentColor;
}


/*---------------------------------------
  ABOUT SECTOIN              
-----------------------------------------*/
.about-section {
  padding-bottom: 70px;
}

.instructor-block-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.instructor-block-image-wrap:hover .instructor-block-image {
  transform: scale(1.2);
}

.instructor-block-image-wrap:hover .social-icon {
  opacity: 1;
}

.instructor-block-image-wrap .social-icon {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
  padding: 15px 20px;
  width: auto;
}

.instructor-block-image {
  transition: all 0.3s;
}

.instructor-block-info {
  padding: 10px;
}

.instructor-block-info h4,
.instructor-block-info p {
  margin-bottom: 0;
}

.instructor-block {
  transition: all 0.3s ease;
}

.instructor-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.instructor-block.active-instructor {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  border: 2px solid var(--primary-color);
}

.instructor-block.active-instructor .instructor-block-info h4 {
  color: var(--primary-color);
}

/* Enhanced pink section styling */
.instructors-section.section-bg {
  background: linear-gradient(135deg, 
    #f8bbd9 0%, 
    #F8BBD9 25%, 
    #e1bee7 50%, 
    #f0c4cc 75%,
    #F8BBD9 100%);
  background-size: 400% 400%;
  animation: instructor-gradient 20s ease infinite;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}

.instructors-section.section-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(196, 33, 91, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(74, 20, 140, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.instructors-section.section-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
  animation: diagonal-shimmer 8s linear infinite;
  pointer-events: none;
}

@keyframes instructor-gradient {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 25%; }
  50% { background-position: 50% 100%; }
  75% { background-position: 25% 0%; }
  100% { background-position: 0% 50%; }
}

@keyframes diagonal-shimmer {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}

#info-title:hover {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

/*---------------------------------------
  INSTAGRAM SECTION              
-----------------------------------------*/
.instagram-section {
  background: #ffffff;
  position: relative;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(196, 33, 91, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(74, 20, 140, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes soft-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.instagram-widget-wrapper {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: var(--border-radius-medium);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.instagram-widget {
  border-radius: var(--border-radius-small);
  overflow: hidden;
  background-color: var(--white-color);
}

.instagram-section .btn {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  border: none;
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.instagram-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  color: var(--white-color);
}


/*---------------------------------------
  EVENTS & CLASSES WIDGET SECTION              
-----------------------------------------*/
.events-classes-section {
  background: #ffffff;
}

.events-classes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(194, 24, 91, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(74, 20, 140, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.events-widget-wrapper {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(248, 187, 217, 0.1) 100%);
  border-radius: var(--border-radius-medium);
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.events-widget-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(194, 24, 91, 0.02) 50%, 
    transparent 70%);
  pointer-events: none;
}

.events-widget {
  border-radius: var(--border-radius-small);
  overflow: hidden;
  background-color: var(--white-color);
  position: relative;
  z-index: 2;
}

.btn-group-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.events-classes-section .btn.custom-btn {
  background: linear-gradient(135deg, var(--custom-btn-bg-color) 0%, var(--custom-btn-bg-hover-color) 100%);
  border: none;
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
  padding: 15px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

.events-classes-section .btn.custom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 111, 0, 0.4);
  color: var(--white-color);
}

.events-classes-section .btn.custom-border-btn {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  padding: 13px 28px;
  transition: all 0.3s ease;
}

.events-classes-section .btn.custom-border-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(194, 24, 91, 0.3);
}

@media screen and (max-width: 768px) {
  .btn-group-custom {
    flex-direction: column;
  }
  
  .btn-group-custom .btn {
    width: 100%;
    max-width: 300px;
  }
}


/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
}

.custom-block-bg {
  background: var(--white-color);
}

.custom-block-date-wrap {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-medium);
  text-align: center;
  padding: 20px 30px;
}

.custom-block-date {
  font-size: var(--h1-font-size);
}

.custom-block-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.custom-block-image-wrap:hover .custom-block-image {
  transform: scale(1.2);
}

.custom-block-image-wrap:hover .custom-block-icon {
  opacity: 1;
}

.custom-block-image {
  transition: all 0.3s;
}

.custom-block-image-wrap .custom-block-date-wrap,
.custom-block-image-wrap .custom-btn-wrap {
  position: absolute;
  bottom: 0;
}

.custom-block-image-wrap .custom-block-date-wrap {
  border-radius: 0;
  left: 0;
  width: 50%;
  padding: 12.30px 20px;
}

.custom-block-image-wrap .custom-btn-wrap {
  right: 0;
  width: 50%;
}

.custom-block-image-wrap .custom-btn  {
  border-radius: 0;
  display: block;
  padding: 15px 20px;
}

.custom-block-info {
  padding-top: 10px;
}

.custom-block-image-wrap + .custom-block-info {
  padding-top: 20px;
}

.custom-block-span {
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 110px;
  margin-right: 10px;
}

.custom-block-icon {
  background: var(--custom-btn-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: var(--h3-font-size);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
}

.custom-block-icon:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}


/*---------------------------------------
  EVENTS SECTION            
-----------------------------------------*/
.events-section.section-bg .container > .row {
  margin-right: 5px;
  margin-left: 5px;
}

.events-section.section-bg .container > .row .row {
  margin: auto;
}

.events-listing-section {
  margin-bottom: 100px;
}

.events-detail-section .custom-block-info {
  padding: 40px 60px;
}

.events-detail-info {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  padding: 50px 25px;
}

.events-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-medium);
}


/*---------------------------------------
  CLASSES SECTION            
-----------------------------------------*/
.classes-section .container {
  position: relative;
  z-index: 2;
}

.table-responsive {
  border-radius: var(--border-radius-medium);
}

.table-responsive tbody, 
.table-responsive td, 
.table-responsive tfoot, 
.table-responsive th, 
.table-responsive thead, 
.table-responsive tr {
  border: 0;
}

.table-responsive thead tr {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.table-responsive thead th {
  padding: 22px 16px !important;
}

.table-responsive tbody tr:nth-child(even) {
  background-color: var(--section-bg-color);
}

.table>:not(caption)>*>* {
  padding: 18px 16px;
}

.table-responsive .bi-check-circle-fill {
  color: var(--primary-color);
}

.table-responsive .bi-x-circle-fill {
  color: var(--custom-btn-bg-hover-color);
}

.classes-form {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  padding: 35px;
}

.classes-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 100px;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: #ffffff;
  padding: 80px 0;
}

.map-wrapper {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(194, 24, 91, 0.1);
  position: relative;
}

.map-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-medium);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.map-wrapper:hover::before {
  opacity: 0.1;
}

.contact-info-wrapper {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98) 0%, 
    rgba(248, 187, 217, 0.03) 100%);
  border-radius: var(--border-radius-medium);
  padding: 50px 35px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(194, 24, 91, 0.08);
  position: relative;
  height: 100%;
}

.contact-info-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    transparent 0%, 
    rgba(194, 24, 91, 0.02) 50%, 
    transparent 100%);
  border-radius: var(--border-radius-medium);
  pointer-events: none;
}

.contact-info-wrapper h3 {
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(194, 24, 91, 0.08);
  transition: all 0.3s ease;
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact-info-item:hover {
  padding-left: 10px;
  background: rgba(194, 24, 91, 0.02);
  border-radius: var(--border-radius-small);
  border-bottom-color: transparent;
}

.contact-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(194, 24, 91, 0.25);
  transition: all 0.3s ease;
  position: relative;
}

.contact-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.contact-info-item:hover .contact-icon {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(194, 24, 91, 0.35);
}

.contact-info-item:hover .contact-icon::before {
  opacity: 0.1;
}

.contact-details h5 {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  margin-bottom: 5px;
  font-size: 16px;
}

.contact-details p {
  margin-bottom: 3px;
  color: var(--p-color);
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
  padding: 12px 16px;
  border-radius: var(--border-radius-small);
  border: 1px solid rgba(194, 24, 91, 0.15);
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(194, 24, 91, 0.1), transparent);
  transition: left 0.5s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(194, 24, 91, 0.3);
  border-color: var(--primary-color);
}

.social-link:hover::before {
  left: 100%;
}

.social-link i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.1);
}

@media screen and (max-width: 991px) {
  .contact-info-wrapper {
    margin-top: 30px;
    padding: 30px 25px;
  }
  
  .map-wrapper iframe {
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .contact-info-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    align-items: center;
    padding: 20px 15px;
    margin-bottom: 30px;
  }
  
  .contact-icon {
    align-self: center;
    margin-bottom: 5px;
  }
  
  .contact-details {
    text-align: center;
    width: 100%;
  }
  
  .contact-details h5 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .contact-details p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 5px;
  }
  
  .social-links {
    align-items: center;
    width: 100%;
    gap: 15px;
  }
  
  .social-link {
    justify-content: center;
    width: 220px;
    max-width: 100%;
    padding: 15px 20px;
    font-size: 16px;
  }
  
  .social-link i {
    font-size: 22px;
  }
  
  .contact-info-wrapper {
    padding: 30px 20px;
    margin-top: 40px;
  }
  
  .map-wrapper iframe {
    height: 250px;
  }
}

@media screen and (max-width: 480px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-info-wrapper {
    padding: 25px 15px;
  }
  
  .contact-info-item {
    padding: 15px 10px;
    margin-bottom: 25px;
  }
  
  .contact-details h5 {
    font-size: 16px;
  }
  
  .contact-details p {
    font-size: 14px;
  }
  
  .social-link {
    width: 100%;
    max-width: 280px;
    padding: 12px 16px;
    font-size: 15px;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .map-wrapper iframe {
    height: 220px;
  }
}


/*---------------------------------------
  SITE FOOTER            
-----------------------------------------*/
.site-footer {
  position: relative;
  padding-bottom: 200px;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.site-footer svg {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
}

.site-footer-title {
  color: var(--secondary-color);
}

.site-footer p span {
  font-weight: var(--font-weight-medium);
  margin-right: auto;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  border-width: 2px;
  box-shadow: none;
  color: var(--p-color);
  margin-bottom: 20px;
  padding: 10px;
  padding-left: 20px;
  outline: none;
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: var(--dark-color);
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
  padding-left: 10px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

.header-form {
  position: relative;
}

.header-form .form-control {
  padding-left: 42px;
}

.header-form-icon {
  width: 24px;
  position: absolute;
  top: 0;
  margin: 12px;
  margin-left: 15px;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--secondary-color);
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-top: 15px;
    padding-bottom: 10px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 5px;
    padding: 0;
  }

  .hero-section {
    position: relative;
    top: 82px;
    margin-bottom: 82px;
  }

  .events-listing-section {
    margin-bottom: 50px;
  }

  .events-detail-section .custom-block-info {
    padding: 40px;
  }

  .events-detail-info {
    padding: 35px 25px;
  }

  .contact-info-item {
    width: 60%;
  }

  .events-detail-section .contact-info-item {
    width: 70%;
  }

  .section-bg-image {
    margin-bottom: 0;
  }

  .section-bg-image-block {
    padding: 30px;
  }

  .site-footer {
    padding-top: 20px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 480px) {
  .navbar-brand {
    font-size: var(--p-font-size);
  }

  .navbar-brand-icon {
    width: 30px;
    height: 30px;
  }

  .navbar-brand-icon::after {
    top: 5px;
  }

  .section-bg-image-block {
    padding: 30px;
  }

  .contact-info-item {
    width: 72%;
  }
}

@media screen and (max-width: 360px) {
  .custom-btn {
    font-size: 12px;
    padding: 4px 12px;
  }
}

/*---------------------------------------
  BEAUTIFUL SECTION DIVIDERS              
-----------------------------------------*/
.section-divider {
  height: 100px;
  background: linear-gradient(135deg, 
    var(--primary-color) 0%, 
    var(--secondary-color) 50%, 
    var(--custom-btn-bg-hover-color) 100%);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
  margin: -50px 0 -50px 0;
  padding: 0;
  z-index: 10;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Beautiful static wave */
.decorative-divider {
  height: 100px;
  background: transparent;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.decorative-divider::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cdefs%3E%3ClinearGradient id='waveGrad1' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23C2185B;stop-opacity:1' /%3E%3Cstop offset='25%25' style='stop-color:%234A148C;stop-opacity:1' /%3E%3Cstop offset='50%25' style='stop-color:%23FF6F00;stop-opacity:1' /%3E%3Cstop offset='75%25' style='stop-color:%234A148C;stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:%23C2185B;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23waveGrad1)' d='M0,50L60,45C120,40,240,30,360,35C480,40,600,60,720,65C840,70,960,60,1080,50C1200,40,1320,30,1380,25L1440,20L1440,100L1380,100C1320,100,1200,100,1080,100C960,100,840,100,720,100C600,100,480,100,360,100C240,100,120,100,60,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

/* Elegant wave divider */
.wave-separator {
  height: 120px;
  background: transparent;
  position: relative;
  overflow: hidden;
  margin: -60px 0 -60px 0;
  padding: 0;
  z-index: 10;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.wave-separator svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: block;
}

/* Gradient flow divider */
.gradient-flow {
  height: 30px;
  background: linear-gradient(90deg, 
    var(--primary-color) 0%, 
    var(--secondary-color) 25%,
    var(--custom-btn-bg-hover-color) 50%,
    var(--secondary-color) 75%,
    var(--primary-color) 100%);
  background-size: 400% 100%;
  position: relative;
}

/* Minimal wave effect */
.minimal-wave {
  height: 80px;
  background: linear-gradient(90deg, 
    var(--primary-color) 0%, 
    var(--secondary-color) 50%,
    var(--custom-btn-bg-hover-color) 100%);
  position: relative;
  overflow: hidden;
  margin: -40px 0 -40px 0;
  padding: 0;
  z-index: 10;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.minimal-wave::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23C2185B' fill-opacity='0.15' d='M0,32L48,37.3C96,43,192,53,288,64C384,75,480,85,576,80C672,75,768,53,864,48C960,43,1056,53,1152,64C1248,75,1344,85,1392,90.7L1440,96L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

/*---------------------------------------
  PRICING SECTION
-----------------------------------------*/

.pricing-section {
  position: relative;
}

.pricing-card {
  background: var(--white-color);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 0;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  padding: 30px 25px 20px;
  text-align: center;
  position: relative;
}

.pricing-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--white-color);
}

.practice-card .pricing-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.beginner-card .pricing-icon {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
}

.intermediate-card .pricing-icon {
  background: linear-gradient(135deg, var(--custom-btn-bg-color), #ff5722);
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: var(--white-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-price {
  text-align: center;
}

.price-main {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.price-period {
  display: block;
  font-size: 14px;
  color: var(--p-color);
  margin-top: 5px;
}

.price-alternative {
  display: block;
  font-size: 12px;
  color: var(--secondary-color);
  margin-top: 8px;
  font-style: italic;
}

.pricing-body {
  padding: 0 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pricing-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--p-color);
  margin-bottom: 25px;
  text-align: center;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--p-color);
  display: flex;
  align-items: center;
}

.pricing-features .bi-check-circle {
  color: #4caf50;
  margin-right: 10px;
  font-size: 16px;
}

.pricing-features .bi-heart {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 16px;
}

.pricing-footer {
  padding: 20px 25px 30px;
  text-align: center;
  margin-top: auto;
}

.pricing-btn {
  width: 100%;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.practice-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
}

.practice-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white-color);
  transform: translateY(-2px);
}

.beginner-btn {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: var(--white-color);
}

.beginner-btn:hover {
  background: linear-gradient(135deg, #9c27b0, #e91e63);
  color: var(--white-color);
  transform: translateY(-2px);
}

.intermediate-btn {
  background: linear-gradient(135deg, var(--custom-btn-bg-color), #ff5722);
  color: var(--white-color);
}

.intermediate-btn:hover {
  background: linear-gradient(135deg, #ff5722, var(--custom-btn-bg-color));
  color: var(--white-color);
  transform: translateY(-2px);
}

.pricing-note {
  background: var(--white-color);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-color);
}

.pricing-note p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--p-color);
}

/* CTA Buttons Block - Bright and Eye-catching */
.cta-buttons-block {
  background: linear-gradient(135deg, #4A148C 0%, #7B1FA2 50%, #C2185B 100%);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(74, 20, 140, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-buttons-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.cta-buttons-block h3 {
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

.cta-buttons-block p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.action-buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.action-btn {
  padding: 18px 35px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
}

.action-btn:hover::before {
  width: 300px;
  height: 300px;
}

.register-btn {
  background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
  color: #ffffff;
}

.register-btn:hover {
  background: linear-gradient(135deg, #FF8F00 0%, #FFA726 100%);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 111, 0, 0.5);
  color: #ffffff;
}

.feedback-btn {
  background: #ffffff;
  color: #4A148C;
}

.feedback-btn:hover {
  background: #FFD700;
  color: #4A148C;
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
  .pricing-card {
    margin-bottom: 30px;
  }
  
  .pricing-header {
    padding: 25px 20px 15px;
  }
  
  .pricing-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .pricing-header h3 {
    font-size: 20px;
  }
  
  .price-main {
    font-size: 30px;
  }
  
  .pricing-note {
    padding: 20px;
  }
  
  .cta-buttons-block {
    padding: 35px 25px;
  }
  
  .cta-buttons-block h3 {
    font-size: 24px;
  }
  
  .cta-buttons-block p {
    font-size: 16px;
  }
  
  .action-buttons-wrapper {
    gap: 15px;
  }
  
  .action-btn {
    padding: 15px 25px;
    font-size: 16px;
    width: 100%;
    max-width: 320px;
  }
}

/*---------------------------------------
  SCROLL TO TOP BUTTON
-----------------------------------------*/

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(194, 24, 91, 0.3);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(194, 24, 91, 0.4);
}

.scroll-to-top i {
  font-size: 20px;
  font-weight: bold;
}

/* Mobile responsiveness for scroll button */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .scroll-to-top i {
    font-size: 18px;
  }
}

/*---------------------------------------
  DANCE DIVIDERS
-----------------------------------------*/

.dance-divider-top,
.dance-divider-bottom {
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, #fafafa, #f8f9fa);
}

/* Top Dance Divider */
.dance-elements {
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.dance-note {
  position: absolute;
  font-size: 24px;
  color: var(--primary-color);
  animation: dance-float 3s ease-in-out infinite;
  opacity: 0.8;
}

.note-1 { left: 10%; animation-delay: 0s; }
.note-2 { left: 25%; animation-delay: 0.5s; }
.note-3 { right: 25%; animation-delay: 1s; }
.note-4 { right: 10%; animation-delay: 1.5s; }
.note-5 { left: 50%; animation-delay: 2s; transform: translateX(-50%); }

.geometric-shape {
  position: absolute;
  border-radius: 50%;
  animation: rotate-dance 4s linear infinite;
}

.shape-1 {
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  left: 15%;
  top: 20%;
}

.shape-2 {
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, var(--custom-btn-bg-color), var(--primary-color));
  right: 20%;
  top: 10%;
  animation-delay: 1s;
}

.shape-3 {
  width: 15px;
  height: 15px;
  background: linear-gradient(45deg, var(--secondary-color), var(--custom-btn-bg-color));
  left: 70%;
  top: 60%;
  animation-delay: 2s;
}

.heart-beat {
  font-size: 32px;
  animation: heartbeat 1.5s ease-in-out infinite;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Bottom Dance Divider */
.dance-connection {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connection-line {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  animation: line-pulse 2s ease-in-out infinite;
}

.dancer-silhouette {
  font-size: 28px;
  position: absolute;
  animation: dance-move 2s ease-in-out infinite alternate;
}

.dancer-1 {
  left: calc(50% - 120px);
  animation-delay: 0s;
}

.dancer-2 {
  right: calc(50% - 120px);
  animation-delay: 0.5s;
}

.music-wave {
  position: absolute;
  width: 60px;
  height: 20px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-color) 25%, 
    transparent 50%, 
    var(--secondary-color) 75%, 
    transparent 100%
  );
  border-radius: 10px;
  animation: wave-pulse 1.5s ease-in-out infinite;
  top: 20%;
}

.floating-hearts {
  position: absolute;
  width: 100%;
  height: 100%;
}

.heart {
  position: absolute;
  color: var(--primary-color);
  font-size: 16px;
  animation: float-up 3s ease-in-out infinite;
  opacity: 0.7;
}

.h1 { left: 30%; animation-delay: 0s; }
.h2 { left: 50%; animation-delay: 1s; }
.h3 { left: 70%; animation-delay: 2s; }

/* Special styling for Events & Classes section with dance theme */
.section-with-dance-theme {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
  position: relative;
}

.section-with-dance-theme::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='%23C2185B' fill-opacity='0.02'%3E%3Cpath d='M20 20c0-11 9-20 20-20s20 9 20 20-9 20-20 20-20-9-20-20z'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

/* Animations */
@keyframes dance-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(5deg); }
  50% { transform: translateY(-5px) rotate(-3deg); }
  75% { transform: translateY(-15px) rotate(7deg); }
}

@keyframes rotate-dance {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes heartbeat {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.3); }
}

@keyframes line-pulse {
  0%, 100% { opacity: 0.6; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.1); }
}

@keyframes dance-move {
  0% { transform: translateY(0) rotate(-5deg); }
  100% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes wave-pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.5); }
}

@keyframes float-up {
  0% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-20px); opacity: 1; }
  100% { transform: translateY(-40px); opacity: 0; }
}

/* Enhanced events widget with dance theme */
.events-widget-wrapper {
  background: var(--white-color);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(194, 24, 91, 0.1);
  position: relative;
  z-index: 2;
  margin: 30px 0;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.events-widget-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--custom-btn-bg-color), var(--primary-color));
  border-radius: 22px;
  z-index: -1;
  animation: gradient-rotate 3s ease-in-out infinite;
}

@keyframes gradient-rotate {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Mobile responsiveness for dance dividers */
@media (max-width: 768px) {
  .dance-divider-top,
  .dance-divider-bottom {
    padding: 25px 0;
  }
  
  .dance-elements {
    height: 60px;
  }
  
  .dance-connection {
    height: 80px;
  }
  
  .dance-note {
    font-size: 18px;
  }
  
  .heart-beat {
    font-size: 24px;
  }
  
  .dancer-silhouette {
    font-size: 20px;
  }
  
  .events-widget-wrapper {
    padding: 20px;
    margin: 20px 0;
  }
}

