/* Color scheme:
   Green: #6DC291
   Dark Blue: #10405D
   Background: #F5F5F5
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F5F5F5;
    color: #10405D;
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: #10405D;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.header-item a:hover {
    color: #6DC291;
}

.header-item i {
    font-size: 1.2em;
}

.header-item span {
    font-size: 0.95em;
}

.header-logo {
    width: 200px;
}

/* Main Content */
.main {
    padding: 40px 0;
}

/* Introduction Section */
.intro-section {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.intro-text h1 {
    color: #10405D;
    font-size: 2em;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-name {
    color: #6DC291;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
}

.intro-text p {
    margin-bottom: 10px;
    color: #10405D;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.services-section h2 {
    color: #10405D;
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-subtitle {
    color: #6DC291;
    font-style: italic;
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
    margin-bottom: 30px;
}

.services-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

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

.services-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6DC291;
    font-weight: bold;
    font-size: 1.2em;
}

.pricing {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #6DC291;
}

.pricing h3 {
    color: #10405D;
    margin-bottom: 15px;
}

.pricing p {
    margin-bottom: 10px;
}

.special-offer {
    color: #6DC291;
    font-weight: 600;
    font-size: 1.1em;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-section h2 {
    color: #10405D;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #f9f9f9;
    border: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05em;
    font-weight: 600;
    color: #10405D;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question i {
    color: #6DC291;
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 20px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer ul {
    list-style: none;
    margin: 15px 0;
}

.faq-answer ul li {
    padding: 5px 0;
}

/* About Section */
.about-section {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.about-toggle h2 {
    color: #10405D;
    font-size: 1.8em;
}

.about-toggle i {
    color: #6DC291;
    font-size: 1.5em;
    transition: transform 0.3s;
}

.about-toggle.active i {
    transform: rotate(180deg);
}

.about-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.about-content.active {
    max-height: 2000px;
    padding-top: 20px;
    transition: max-height 0.5s ease-in;
}

.about-content h3 {
    color: #10405D;
    margin: 25px 0 15px 0;
}

.about-content h3:first-of-type {
    margin-top: 0;
}

.about-content p {
    margin-bottom: 10px;
    color: #555;
}

.about-content ul {
    list-style: none;
    margin: 10px 0 20px 0;
}

.about-content ul li {
    padding: 5px 0 5px 20px;
    position: relative;
}

.about-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6DC291;
    font-weight: bold;
}

.experience-text {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.about-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.motto {
    color: #6DC291;
    font-style: italic;
    font-size: 1.1em;
    margin-top: 15px;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonials-section h2 {
    color: #10405D;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.testimonial {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #6DC291;
}

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 8px;
}

.testimonial-author {
    text-align: right;
    color: #10405D;
    font-weight: 600;
    font-style: normal !important;
}

.show-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #6DC291;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    margin: 20px auto;
    transition: background 0.3s, transform 0.2s;
}

.show-more-btn:hover {
    background: #10405D;
    transform: translateY(-2px);
}

.show-more-btn i {
    transition: transform 0.3s;
}

.show-more-btn.active i {
    transform: rotate(180deg);
}

.testimonial-hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.testimonial-hidden.active {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

/* Footer */
.footer {
    background-color: #10405D;
    color: white;
    padding: 30px 0;
    margin-top: 30px;
}

.footer h2 {
    color: #6DC291;
    font-size: 1em;
    margin-bottom: 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

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

.footer-section h3 {
    color: #6DC291;
    font-size: 0.8em;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 0.8em;
    line-height: 1.6;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #6DC291;
}

/* Motto Sections */
.motto-section {
    background: linear-gradient(135deg, #10405D 0%, #1a5a7d 100%);
    padding: 60px 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.motto-section h2 {
    color: white;
    font-size: 2em;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.motto-section .highlight {
    color: #6DC291;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
}

.motto-section .highlight:hover {
    color: #8ed4ab;
    border-bottom: 2px solid #6DC291;
}

/* Services Section Updates */
.services-section .services-subtitle {
    font-size: 1.4em;
    font-weight: 500;
}

.services-list li:before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url('./assets/motion-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 10px;
}

/* Description Sections (Personal & Online Training) */
.description-section {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.description-section h2 {
    color: #10405D;
    font-size: 2em;
    margin-bottom: 25px;
    font-weight: 600;
}

.keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
}

.keyword {
    background: #6DC291;
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95em;
}

.keyword:before {
    content: "#";
    margin-right: 3px;
}

.description-body {
    margin-bottom: 30px;
}

.description-body p {
    margin-bottom: 15px;
    color: #10405D;
    line-height: 1.8;
}

.description-body ul {
    list-style: none;
    margin: 15px 0;
}

.description-body ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #10405D;
}

.description-body ul li:before {
    content: ">";
    position: absolute;
    left: 0;
    color: #6DC291;
    font-weight: bold;
    font-size: 1.2em;
}

.pricing-subsection {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #6DC291;
    margin-bottom: 30px;
}

.pricing-subsection h3 {
    color: #10405D;
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-subsection p {
    margin-bottom: 10px;
    color: #10405D;
}

/* About Section with Image */
.about-section-new {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-section-new h2 {
    color: #10405D;
    font-size: 2em;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-header-new {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-image {
    width: 300px;
    float: right;
    margin: 0 0 20px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-initial {
    color: #10405D;
    font-size: 1.1em;
    font-weight: 500;
}

.about-details-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #6DC291;
    font-weight: 600;
    font-size: 1.05em;
}

.about-details-toggle i {
    color: #6DC291;
    transition: transform 0.3s;
}

.about-details-toggle.active i {
    transform: rotate(180deg);
}

.about-details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.about-details-content.active {
    max-height: 2000px;
    padding-top: 20px;
    transition: max-height 0.5s ease-in;
}

.about-details-content p {
    margin-bottom: 10px;
    color: #10405D;
}

.about-details-content h3 {
    color: #10405D;
    margin: 25px 0 15px 0;
}

.about-details-content h3:first-of-type {
    margin-top: 0;
}

.about-details-content ul {
    list-style: none;
    margin: 10px 0 20px 0;
}

.about-details-content ul li {
    padding: 5px 0 5px 20px;
    position: relative;
    color: #10405D;
}

.about-details-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6DC291;
    font-weight: bold;
}

.about-details-content .experience-text {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.about-details-content .about-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.about-details-content .motto {
    color: #6DC291;
    font-style: italic;
    font-size: 1.1em;
    margin-top: 15px;
}

/* Collapsible Footer */
.footer-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 0;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-toggle h2 {
    font-size: 0.9em;
    margin: 0;
}

.footer-toggle i {
    color: #6DC291;
    transition: transform 0.3s;
    font-size: 1.2em;
}

.footer-toggle.active i {
    transform: rotate(180deg);
}

.footer-content-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.footer-content-wrapper.active {
    max-height: 2000px;
    padding-top: 20px;
    transition: max-height 0.5s ease-in;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-form h3 {
    color: #10405D;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #10405D;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    color: #10405D;
}

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

.submit-btn {
    background: #6DC291;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background: #10405D;
    transform: translateY(-2px);
}

.closing-motto {
    text-align: center;
    font-size: 1.3em;
    color: #10405D;
    font-weight: 600;
    font-style: italic;
    padding: 40px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .intro-image {
        order: -1;
    }
    
    .intro-text h1 {
        font-size: 1.5em;
    }
    
    .motto-section h2 {
        font-size: 1.5em;
    }
    
    .description-section h2 {
        font-size: 1.6em;
    }
    
    .about-header-new {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        float: none;
        width: 100%;
        margin: 20px 0;
    }
    
    .services-section h2,
    .faq-section h2,
    .about-toggle h2,
    .testimonials-section h2,
    .footer h2 {
        font-size: 1.5em;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .keywords {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .intro-section,
    .services-section,
    .faq-section,
    .about-section,
    .about-section-new,
    .description-section,
    .testimonials-section {
        padding: 20px;
    }
    
    .motto-section {
        padding: 40px 20px;
    }
    
    .motto-section h2 {
        font-size: 1.3em;
    }
    
    .header-item span {
        font-size: 0.85em;
    }
    
    .keywords {
        gap: 10px;
    }
    
    .keyword {
        font-size: 0.85em;
        padding: 6px 14px;
    }
}
