/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e91e63;
    --primary-light: #f8bbd9;
    --primary-dark: #ad1457;
    --secondary-color: #9c27b0;
    --accent-color: #ff4081;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #fafafa;
    --gradient-primary: linear-gradient(135deg, #e91e63, #9c27b0);
    --gradient-secondary: linear-gradient(135deg, #ff4081, #e91e63);
    --shadow-light: 0 4px 20px rgba(233, 30, 99, 0.1);
    --shadow-medium: 0 8px 30px rgba(233, 30, 99, 0.15);
    --shadow-heavy: 0 15px 40px rgba(233, 30, 99, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -5px;
}

.logo-text span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-main {
    display: block;
    color: var(--text-dark);
    font-weight: 300;
}

.title-accent {
    display: block;
    font-family: 'Dancing Script', cursive;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 4rem;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-image {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hero-logo-section {
    text-align: center;
}

.hero-logo {
    width: 400px;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 15px 30px rgba(233, 30, 99, 0.2));
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(233, 30, 99, 0.3));
}

.trainer-hero-photo {
    position: relative;
    text-align: center;
}

.trainer-main-photo {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
}

.trainer-main-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.3);
}

.trainer-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    min-width: 200px;
}

.trainer-badge span {
    display: block;
    font-weight: 500;
}

.trainer-badge span:first-child {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.trainer-badge span:last-child {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Transformations Section */
.transformations {
    padding: 100px 0;
    background: var(--light-bg);
}

.transformation-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
    align-items: start;
}

.transformation-item {
    background: var(--white);
    border-radius: 15px;
    padding: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    break-inside: avoid;
}

.transformation-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.transformation-img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

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

/* Fallback for broken images */
.transformation-img[src=""], .transformation-img:not([src]) {
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.transformation-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.transformation-item:hover .transformation-img::after {
    opacity: 1;
}

.transformation-item {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.transformation-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.transformation-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.transformation-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.transformation-labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.before-label, .after-label {
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px;
    border-radius: 8px;
}

.before-label {
    background: #ffebee;
    color: #c62828;
}

.after-label {
    background: #e8f5e8;
    color: #2e7d32;
}

.transformation-cta {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.transformation-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.transformation-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    align-items: start;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    background: var(--white);
    break-inside: avoid;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.gallery-img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    background: #f8f9fa;
}

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

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 10%;
    right: 10%;
    animation: rotate 20s linear infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    bottom: 20%;
    left: 5%;
    animation: rotate 15s linear infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    top: 60%;
    right: 30%;
    animation: rotate 25s linear infinite;
}
/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.trainer-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

.trainer-photo {
    position: relative;
}

.trainer-photo img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.trainer-photo img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.trainer-info h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.3;
}

.trainer-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.trainer-info p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.experience-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 1.1rem;
}

.highlight-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.stat-item h4 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 0;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Page Sections */
.page-section {
    padding-top: 120px;
    min-height: 100vh;
}

/* Active Navigation State */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Services CTA */
.services-cta {
    text-align: center;
    padding: 50px 30px;
    background: var(--light-bg);
    border-radius: 20px;
    margin-top: 60px;
}

.services-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Facilities Section */
.facilities-section {
    margin: 80px 0 60px;
    text-align: center;
}

.facilities-section h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.facility-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.facility-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.facility-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.facility-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    padding: 50px 30px;
    background: var(--light-bg);
    border-radius: 20px;
    margin-top: 60px;
}

.gallery-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Form Select Styling */
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

/* Training Cards Button */
.training-card .btn {
    margin-top: 20px;
    width: 100%;
}
.membership {
    padding: 100px 0;
    background: var(--white);
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.training-plans {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.training-plans h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.training-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.training-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.training-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.training-price {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.training-price span {
    font-size: 1rem;
    color: var(--text-light);
}

.training-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Image Loading States */
.transformation-img, .gallery-img {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.3s ease;
}

.transformation-img.loaded, .gallery-img.loaded {
    opacity: 1;
}

/* Adaptive Image Containers */
.transformation-item, .gallery-item {
    overflow: hidden;
}

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

@supports (display: grid) {
    .transformation-gallery, .gallery-grid {
        grid-auto-rows: min-content;
    }
}

/* Loading Message */
.loading-message {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-size: 1.1rem;
    background: var(--light-bg);
    border-radius: 10px;
    margin: 20px 0;
    grid-column: 1 / -1;
}

.membership-card {
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

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

.membership-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-light);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid #f0f0f0;
}

.features li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    animation: fadeInLeft 0.8s ease-out;
}

/* Contact Page Logo */
.contact-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--primary-light);
}

.contact-page-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 15px;
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow-medium);
}

.logo-text-contact h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.logo-text-contact span {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.info-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.location-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 5px;
}

.location-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form {
    animation: fadeInRight 0.8s ease-out;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .logo-text h2 {
        font-size: 2rem;
    }

    .logo-text span {
        font-size: 0.9rem;
    }

    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .membership-cards {
        grid-template-columns: 1fr;
    }

    .training-cards {
        grid-template-columns: 1fr;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 40px;
    }

    .hero-logo {
        width: 280px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .transformation-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .transformation-item {
        padding: 15px;
    }

    .transformation-img {
        max-height: 250px !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery-img {
        max-height: 300px !important;
    }

    .transformation-cta {
        padding: 30px 20px;
    }

    .transformation-cta h3 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-accent {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        gap: 40px;
    }

    .trainer-section {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .trainer-photo img {
        height: 300px;
        max-width: 300px;
        margin: 0 auto;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-logo {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px;
        margin-bottom: 40px;
    }

    .contact-page-logo {
        width: 100px;
        height: 100px;
    }

    .logo-text-contact h3 {
        font-size: 2rem;
    }

    .logo-text-contact span {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .membership-cards {
        grid-template-columns: 1fr;
    }

    .membership-card.featured {
        transform: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .title-accent {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}