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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-btn {
    background: #E61E2B;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-btn:hover {
    background: #C00000;
    transform: translateY(-1px);
}

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

/* Header */
.header {
    border-bottom: 1px solid #EF001D;
    background: #2B2B2E !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
}

.nav-brand img {
    height: 41px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #A0A5AB !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFFFFF !important;
}



/* Hero Section */
.hero {
    background: #322929;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Location Section */
.location-section {
    background: #E61E2B;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.location-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-selector span {
    font-size: 1.1rem;
    font-weight: 500;
}

.change-btn {
    background: none;
    border: none;
    color: #E61E2B;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    height: fit-content;
    vertical-align: middle;
}


.change-btn:hover {
    background: #f8d1d2;
}

.subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Membership Categories */
.membership-categories {
    padding: 3rem 0;
    /* background-color: #f8f9fa; */
}

.categories-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    display: inline-block;
    vertical-align: middle;
}

.categories-subtitle {
    font-size: 1rem;
    color: #666;
    margin-top: 1rem;
    margin-bottom: 0;
}

.text-center {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.text-center .categories-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(230, 30, 43, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(230, 30, 43, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 30, 43, 0.2);
    border-color: rgba(230, 30, 43, 1);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card > * {
    position: relative;
    z-index: 2;
}

.text-uppercase{
    text-transform: uppercase !important;
}


.category-icon {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    /* color: #E61E2B; */
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
    text-transform: uppercase !important;
}

.category-card p {
    color: #666;
    font-size: 1rem;
}

/* Membership Sections */
.membership-section {
    padding: 2rem 0;
}

.membership-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 2rem;
    margin-bottom: 3rem;
}

.membership-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.membership-card:hover {
    border-color: #E61E2B;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 30, 43, 0.1);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.commit-period {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.membership-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #333;
}

.membership-type {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.price {
    margin-bottom: 0.5rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
}

.price .period {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.per-visit {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.select-btn {
    background: #E61E2B;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.select-btn:hover {
    background: #C00000;
    transform: translateY(-2px);
}

/* Features Table */
.features-table {
    margin-top: 3rem;
    overflow-x: auto;
}

.features-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.features-table th {
    background: #f8f9fa;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
}

.features-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #666;
}

.features-table tr:last-child td {
    border-bottom: none;
}

.features-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Session Packs */
.session-packs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    /* max-width: 800px; */
    margin: 0 auto;
}

.session-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.session-card:hover {
    border-color: #E61E2B;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 30, 43, 0.1);
}

.session-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #333;
}

.session-card .price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
}

.per-session {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.no-billing {
    font-size: 0.9rem;
    color: #E61E2B;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #E61E2B;
    font-weight: bold;
}

.purchase-btn {
    background: #E61E2B;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.purchase-btn:hover {
    background: #C00000;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: #33363B;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-btn.primary {
    background:#C00000;
    color: #FFFFFF;
    text-decoration: none !important;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    background: rgb(192, 0, 0);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    border-top: 1px #C00000 solid;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: white;
}

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

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #E61E2B;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(230, 30, 43, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: #C00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 30, 43, 0.4);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* Location Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #E61E2B 0%, #C00000 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.location-dropdown {
    margin-bottom: 1rem;
}

.location-dropdown select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.location-dropdown select:focus {
    outline: none;
    border-color: #E61E2B;
    box-shadow: 0 0 0 3px rgba(230, 30, 43, 0.1);
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background-color: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #E61E2B;
    color: white;
}

.btn-primary:hover {
    background: #C00000;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.text-danger {
    color: rgb(220, 53, 69);
}
.no-decoration {
  text-decoration: none;
}
.pe-none {
    pointer-events: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .location-section {
        padding: 1.5rem 0;
    }
    
    .categories-title {
        font-size: 1.5rem;
    }
    
    .text-center .categories-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .membership-section h2 {
        font-size: 2rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .session-packs {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-table {
        font-size: 0.9rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .modal-content {
        margin: 15% auto;
        width: 95%;
    }
    
    .modal-header, .modal-body, .modal-footer {
        padding: 1rem 1.5rem;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .location-section {
        padding: 1rem 0;
    }
    
    .categories-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .text-center .categories-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .membership-section {
        padding: 2rem 0;
    }
    
    .membership-card,
    .session-card {
        padding: 1.5rem;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
}
