/* Base Styles */
:root {
    --primary-color: #c8a2c8;
    --secondary-color: #d4af37;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --background-color: #f8f9fa;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --level1-color: #c8e6c9;
    --level2-color: #a5d6a7;
    --level3-color: #81c784;
    --hover-transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Karla', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--hover-transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

ul {
    list-style: none;
}

/* Texture Background */
.texture-bg {
    background-color: var(--background-color);
    background-image: 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='%23c8a2c8' 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");
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--hover-transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 4px 8px rgba(200, 162, 200, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(212, 175, 55, 0.4);
    color: var(--light-color);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(200, 162, 200, 0.3);
}

.full-width {
    width: 100%;
}

/* Header & Navigation */
header {
    background-color: var(--light-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--hover-transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--hover-transition);
}

.nav-link[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}

.nav-link.highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.mobile-nav-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 40px 0 60px;
    overflow: hidden;
    background-color: var(--background-color);
}

.hero-wave-top, .hero-wave-bottom, .wave-divider, .wave-divider-bottom {
    position: absolute;
    width: 100%;
    height: 50px;
    z-index: 1;
}

.hero-wave-top {
    top: 0;
    left: 0;
}

.hero-wave-bottom {
    bottom: -1px;
    left: 0;
}

.wave-divider {
    top: -1px;
    left: 0;
}

.wave-divider-bottom {
    bottom: -1px;
    left: 0;
}

.hero-wave-top svg, .hero-wave-bottom svg, .wave-divider svg, .wave-divider-bottom svg {
    width: 100%;
    height: 50px;
    display: block;
}

.hero-container {
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.hero-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-text h3 {
    margin-bottom: 0.2rem;
    font-size: 1.3rem;
}

.feature-text p {
    margin-bottom: 0;
    font-size: 1rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--hover-transition);
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0);
}

/* About Section */
.section-about {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title .accent {
    color: var(--primary-color);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.benefits-list {
    margin-top: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--hover-transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-color);
}

/* Programs Section */
.section-programs {
    position: relative;
    padding: 80px 0;
    background-color: var(--light-color);
}

.programs-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.programs-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

.programs-table th, .programs-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.programs-table th {
    background-color: var(--primary-color);
    color: var(--light-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.programs-table tr:hover {
    background-color: rgba(200, 162, 200, 0.05);
}

.badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 10px;
    vertical-align: middle;
}

.level-indicator {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.level-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--border-color);
}

.level-dot.filled {
    background-color: var(--primary-color);
}

.level-text {
    font-size: 0.9rem;
    color: var(--text-color);
}

.small-list {
    padding-left: 20px;
    margin-bottom: 0;
}

.small-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.small-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.programs-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--hover-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-icon {
    margin-bottom: 20px;
}

.program-card h3 {
    margin-bottom: 15px;
}

.program-card p {
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Exercises Section */
.section-exercises {
    padding: 80px 0;
}

.exercises-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.exercise-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.exercise-item:nth-child(even) {
    flex-direction: row-reverse;
}

.exercise-image {
    flex: 1;
}

.exercise-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.exercise-content {
    flex: 1.5;
}

.exercise-steps {
    padding-left: 25px;
    margin-bottom: 1.5rem;
}

.exercise-steps li {
    margin-bottom: 10px;
    position: relative;
}

.exercise-tips {
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--secondary-color);
    padding: 15px;
    border-radius: 0 8px 8px 0;
}

/* Gallery Section */
.section-gallery {
    position: relative;
    padding: 80px 0;
    background-color: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--hover-transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--hover-transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: var(--light-color);
    transform: translateY(100%);
    transition: var(--hover-transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    margin-bottom: 5px;
    color: var(--light-color);
}

.gallery-caption p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Trainers Section */
.section-trainers {
    padding: 80px 0;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trainer-card {
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--hover-transition);
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trainer-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.trainer-info {
    padding: 20px;
}

.trainer-info h3 {
    margin-bottom: 5px;
}

.trainer-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.trainer-desc {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.trainer-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trainer-specialties span {
    background-color: rgba(200, 162, 200, 0.1);
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Schedule Section */
.section-schedule {
    position: relative;
    padding: 80px 0;
    background-color: var(--light-color);
}

.schedule-calendar {
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.schedule-header {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px 10px;
}

.day-header {
    text-align: center;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.schedule-body {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    padding: 20px;
}

.schedule-day {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    background-color: var(--level1-color);
    border-radius: 10px;
    padding: 15px;
    transition: var(--hover-transition);
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.schedule-item.level-1 {
    background-color: var(--level1-color);
}

.schedule-item.level-2 {
    background-color: var(--level2-color);
}

.schedule-item.level-3 {
    background-color: var(--level3-color);
}

.schedule-item .time {
    font-size: 0.85rem;
    color: var(--text-color);
    display: block;
    margin-bottom: 5px;
}

.schedule-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
    color: var(--dark-color);
}

.schedule-item .trainer {
    font-size: 0.85rem;
    color: var(--text-color);
    display: block;
}

.schedule-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.legend-color.level-1 {
    background-color: var(--level1-color);
}

.legend-color.level-2 {
    background-color: var(--level2-color);
}

.legend-color.level-3 {
    background-color: var(--level3-color);
}

.legend-text {
    font-size: 0.9rem;
}

/* Testimonials Section */
.section-testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--hover-transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.2;
    z-index: 0;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Contact Section */
.section-contact {
    position: relative;
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Karla', sans-serif;
    font-size: 1rem;
    transition: var(--hover-transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(200, 162, 200, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.contact-map {
    flex: 1;
}

.location-info {
    margin-bottom: 20px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.location-icon {
    flex-shrink: 0;
    margin-top: 5px;
}

.location-item h4 {
    margin-bottom: 5px;
}

.location-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.static-map {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.static-map img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}

.contact-info {
    display: flex;
    justify-content: space-between;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-item p {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-item h3 {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-logo p {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-item ul li {
    margin-bottom: 15px;
}

.footer-item ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--hover-transition);
}

.footer-item ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-container {
        flex-direction: column-reverse;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .programs-cards, 
    .gallery-grid, 
    .trainers-grid, 
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .programs-cards, 
    .gallery-grid, 
    .trainers-grid, 
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .exercise-item {
        flex-direction: column;
    }
    
    .exercise-item:nth-child(even) {
        flex-direction: column;
    }
    
    .schedule-header, 
    .schedule-body {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .day-header:nth-child(n+4), 
    .schedule-day:nth-child(n+4) {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .schedule-header, 
    .schedule-body {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .day-header:nth-child(n+3), 
    .schedule-day:nth-child(n+3) {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 375px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .schedule-header, 
    .schedule-body {
        grid-template-columns: 1fr;
    }
    
    .day-header:nth-child(n+2), 
    .schedule-day:nth-child(n+2) {
        display: none;
    }
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(200, 162, 200, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(200, 162, 200, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(200, 162, 200, 0.3);
    }
}

.btn-primary:hover {
    animation: pulse 1.5s infinite;
}

/* Custom styles for hover effects */
.nav-link:hover {
    transform: translateY(-2px);
}

.program-card:hover .program-icon svg {
    transform: rotate(10deg) scale(1.1);
}

.program-icon svg {
    transition: var(--hover-transition);
}

.gallery-item:hover .gallery-caption {
    background: linear-gradient(to top, rgba(200, 162, 200, 0.9), transparent);
}

.exercise-image img {
    transition: var(--hover-transition);
}

.exercise-item:hover .exercise-image img {
    transform: scale(1.03);
}

.trainer-card .trainer-image img {
    transition: var(--hover-transition);
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.05);
}

.testimonial-card:hover .quote-icon {
    opacity: 0.4;
    transform: rotate(-5deg);
}

.quote-icon {
    transition: var(--hover-transition);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.5;
}

.checkbox-group input:checked + label {
    color: var(--primary-color);
}

/* Custom elements for accessibility */
:focus {
    outline: 3px solid rgba(200, 162, 200, 0.5);
    outline-offset: 3px;
}

input:focus, 
select:focus, 
textarea:focus {
    outline: 3px solid rgba(200, 162, 200, 0.5);
    outline-offset: 0;
}

::selection {
    background-color: var(--primary-color);
    color: var(--light-color);
}