/* css/style.css */
:root {
    --primary-color: #3d00f2;
    --secondary-color: #0fc7c8;
    --accent-color: #53d440;
    --dark-color: #0a0a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --gradient-primary: linear-gradient(135deg, #3d00f2 0%, #0fc7c8 100%);
    --gradient-secondary: linear-gradient(135deg, #0fc7c8 0%, #53d440 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: rgba(10, 10, 26, 0.95);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--light-color);
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 600;
    margin: 0 10px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--secondary-color);
    background-color: rgba(15, 199, 200, 0.1);
}

.navbar-nav .btn-join {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    margin-left: 10px;
}

.navbar-nav .btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(61, 0, 242, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(10, 10, 26, 0.8), rgba(10, 10, 26, 0.9)), 
                url('../assets/images/Hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-btns .btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(61, 0, 242, 0.3);
}

.btn-outline-light {
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-color);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.floating-image {
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-stats {
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(61, 0, 242, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-text {
    color: var(--gray-color);
}

/* Pricing Cards */
.membership-preview {
    padding: 100px 0;
    background-color: white;
}

.features-section, 
.membership-preview,
.location-section,
.footer {
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(61, 0, 242, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-secondary);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
}

.pricing-header {
    background: var(--gradient-primary);
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 15px 0;
}

.currency {
    font-size: 1.2rem;
    margin-top: 5px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 5px;
}

.pricing-period {
    font-size: 0.9rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 30px;
    text-align: center;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.pricing-body .btn {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
}

/* Location Section */
.location-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.location-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.location-details {
    margin-top: 40px;
}

.location-item {
    display: flex;
    margin-bottom: 25px;
}

.location-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.location-item h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.map-container {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-placeholder {
    padding: 30px;
}

.map-placeholder h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.map-image {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-top: 30px;
    opacity: 0.7;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-links h5, .footer-contact h5 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
    min-width: 20px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
.animated-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-btns .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-btns .me-3 {
        margin-right: 0 !important;
    }
    
    .features-section, .membership-preview, .location-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* css/style.css - Additional Styles for all pages */
/* Add these styles to the existing style.css file */

/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(10, 10, 26, 0.85), rgba(10, 10, 26, 0.9)), 
                url('../assets/images/about.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    margin-top: auto;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Facilities Page Styles */
.facility-card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(61, 0, 242, 0.15);
}

.facility-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.facility-content {
    padding: 25px;
    background: white;
}

.facility-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Gallery Styles */
.gallery-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.gallery-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 0, 242, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Trainers Section */
.trainers-section {
    padding: 100px 0;
}

.trainer-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(61, 0, 242, 0.15);
}

.trainer-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.trainer-info {
    padding: 25px;
    text-align: center;
}

.trainer-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.trainer-specialty {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.trainer-bio {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.trainer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.trainer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trainer-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

/* Membership Page Styles */
.membership-benefits {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.benefit-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Pricing Table */
.pricing-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.table-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    text-align: center;
}

.table-body {
    padding: 0;
}

.pricing-row {
    display: flex;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.pricing-row:nth-child(even) {
    background-color: #f8f9fa;
}

.pricing-row:last-child {
    border-bottom: none;
}

.row-title {
    flex: 1;
    font-weight: 600;
}

.row-value {
    font-weight: 600;
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
}

.contact-info-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 30px;
}

.contact-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-details {
    margin-top: 20px;
}

.contact-detail {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-detail i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.2rem;
}

.contact-form {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(15, 199, 200, 0.25);
}

/* Opening Hours */
.opening-hours {
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
}

.opening-hours h3 {
    color: white;
    margin-bottom: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--gray-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card:before {
    content: '"';
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-color);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Modal for Image Gallery */
.modal-backdrop {
    background-color: rgba(10, 10, 26, 0.95);
}

.modal-content {
    background: transparent;
    border: none;
}

.modal-body {
    padding: 0;
}

.modal-body img {
    width: 100%;
    border-radius: 10px;
}

.btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: white;
    opacity: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animation for Modal */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content {
    animation: zoomIn 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-header {
        padding: 80px 0 60px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .testimonial-card:before {
        font-size: 4rem;
    }
}