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

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #333333;
    --line-color: #000000;
    --text-light: #666666;
    --spacing-unit: 1rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    z-index: 1000;
    border-bottom: 1px solid var(--line-color);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section - Block 1 */
.hero {
    padding: 6rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.line-decoration {
    position: absolute;
    background-color: var(--line-color);
}

.line-1 {
    width: 2px;
    height: 120px;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-text h2 {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.hero-paragraph {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    color: var(--primary-color);
    border: 1px solid var(--line-color);
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--secondary-color);
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: transparent;
}

.btn-secondary {
    background-color: transparent;
    margin-top: 2rem;
}

/* Why Choose Section - Block 2 */
.why-choose {
    padding: 8rem 0;
    background-color: #fafafa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-line {
    width: 60px;
    height: 1px;
    background-color: var(--line-color);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feature-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Programs Section - Block 3 */
.programs {
    padding: 8rem 0;
}

.programs-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.programs-image {
    position: relative;
    order: 2;
}

.programs-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.line-2 {
    width: 2px;
    height: 120px;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.programs-text {
    order: 1;
}

.program-list {
    margin: 2.5rem 0;
}

.program-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.program-line {
    width: 60px;
    height: 1px;
    background-color: var(--line-color);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.program-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.program-item strong {
    color: var(--primary-color);
    font-weight: 500;
}

/* Testimonials Section - Block 4 */
.testimonials {
    padding: 8rem 0;
    background-color: #fafafa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-item {
    position: relative;
    padding: 2rem 0;
}

.quote-line {
    width: 40px;
    height: 1px;
    background-color: var(--line-color);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* CTA Section - Block 5 */
.cta {
    padding: 8rem 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Page Header (for Services and Contacts) */
.page-header {
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.header-line {
    width: 80px;
    height: 1px;
    background-color: var(--line-color);
    margin: 0 auto;
}

/* Policy Content */
.policy-content {
    padding: 4rem 0 8rem;
}

.policy-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.policy-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.policy-section-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    color: var(--primary-color);
}

.policy-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.policy-line {
    width: 60px;
    height: 1px;
    background-color: var(--line-color);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.policy-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.policy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.policy-text a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.policy-text a:hover {
    border-bottom-color: var(--line-color);
}

/* Services Intro */
.services-intro {
    padding: 6rem 0 4rem;
}

.services-intro h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-heading {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Services Detail */
.services-detail {
    padding: 4rem 0 6rem;
}

.service-card-with-image {
    max-width: 1100px;
    margin: 0 auto 6rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-line-vertical {
    position: absolute;
    width: 2px;
    height: 120px;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--line-color);
}

.service-content {
    padding-top: 1rem;
    position: relative;
}

.service-line-horizontal {
    width: 60px;
    height: 1px;
    background-color: var(--line-color);
    margin-bottom: 2rem;
}

.service-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 1px;
    background-color: var(--line-color);
}

.service-price {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1.5rem;
}

/* Membership Plans */
.membership-plans {
    padding: 6rem 0 8rem;
    background-color: #fafafa;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    padding: 2rem;
    position: relative;
    padding-left: 3rem;
}

.plan-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--line-color);
}

.plan-card h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.plan-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.plan-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Contact Info */
.contact-info {
    padding: 4rem 0 8rem;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding-left: 2rem;
    position: relative;
}

.contact-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--line-color);
}

.contact-card h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.contact-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-card a:hover {
    border-bottom-color: var(--line-color);
}

/* Contact Info Section */
.contact-info-section {
    padding: 6rem 0;
    background-color: #fafafa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-item {
    padding-left: 2rem;
    position: relative;
}

.contact-info-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--line-color);
}

.contact-info-item h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

.contact-info-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-info-item a:hover {
    border-bottom-color: var(--line-color);
}

/* Opening Hours */
.opening-hours {
    padding: 6rem 0;
}

.hours-list {
    max-width: 800px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hours-line {
    width: 60px;
    height: 1px;
    background-color: var(--line-color);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.hours-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.hours-item strong {
    color: var(--primary-color);
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #fafafa;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-links h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-legal {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.footer-legal li {
    margin-bottom: 0.6rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-light);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contacts p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.footer-contacts a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.footer-contacts a:hover {
    border-bottom-color: var(--line-color);
}

.footer-line {
    width: 100%;
    height: 1px;
    background-color: var(--line-color);
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .programs-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .programs-image {
        order: 1;
    }

    .programs-text {
        order: 2;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-line-vertical {
        display: none;
    }

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

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 4rem 0;
        min-height: auto;
    }

    .hero-content,
    .programs-content {
        padding: 0 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .why-choose,
    .programs,
    .testimonials,
    .cta {
        padding: 4rem 0;
    }

    .line-1,
    .line-2 {
        display: none;
    }

    .services-intro h1 {
        font-size: 2rem;
    }

    .service-card-with-image {
        margin-bottom: 4rem;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }
}

