/* Project styles (page/layout specific). Global tokens in root.css; animations in animations.css */

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85vh;
    text-align: center;
    background-color: var(--soft);
    position: relative;
    background-image: url('../images/Hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero h2 {
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.hero button {
    background-color: var(--coral);
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero button:hover {
    background-color: #d9645b;
}

/* About */
.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 0 1 auto;
    max-width: 520px;
}

.about-text p {
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.about-text .btn-cta {
    margin-top: 0.5rem;
}

.about-img {
    height: auto;
    background: none;
    background-image: none;
    background-color: transparent;
    flex: 0 1 auto;
    width: 100%;
    max-width: 420px;
    align-self: flex-start;
    overflow: hidden;
    border-radius: var(--radius);
}

.about-img img {
    display: block;
    width: 100%;
    height: auto;
}

/* Features Accordion */
.features-accordion-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.features-image {
    position: sticky;
    top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.features-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.features-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--ink);
    background: linear-gradient(135deg, var(--soft) 0%, #fff 100%);
    transition: all 0.3s ease;
}

.feature-item summary::-webkit-details-marker {
    display: none;
}

.feature-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--coral);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.feature-item[open] summary::after {
    content: '−';
    transform: rotate(0deg);
}

.feature-item[open] summary {
    background: linear-gradient(135deg, var(--coral) 0%, #e66b5c 100%);
    color: #fff;
}

.feature-item[open] summary::after {
    color: #fff;
}

.feature-item summary h4 {
    margin: 0;
    font-size: 1.1rem;
}

.feature-item p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    animation: fadeIn 0.6s ease;
}

.features-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-cta {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    font-size: 1.05rem;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, var(--coral) 0%, #e66b5c 100%);
    color: #fff;
    border: none;
    outline: none;
    box-shadow: 0 4px 15px rgba(244, 124, 108, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #e66b5c 0%, var(--coral) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 124, 108, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive accordion */
@media (max-width: 768px) {
    .features-accordion-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-image {
        position: relative;
        top: 0;
        order: -1;
    }
}

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

.treatment-card {
    background-color: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s;
}

.treatment-card:hover {
    transform: translateY(-5px);
}

.treatment-img {
    width: 100%;
    height: 200px;
    background-color: #f4f4f4;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.treatment-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.treatment-info h4 {
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.treatment-info p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.treatment-info .btn-cta {
    margin-top: auto;
    width: 100%;
}

/* Testimonial Card */
.testimonial-card {
    max-width: 800px;
    margin: 2rem auto;
    background: linear-gradient(135deg, #fff 0%, var(--soft) 100%);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.testimonial-content {
    padding: 3rem;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 5rem;
    color: var(--coral);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-author {
    display: block;
    font-size: 1rem;
    color: var(--coral);
    font-weight: 600;
    font-style: normal;
    margin-top: 1rem;
}

/* Care */
.care-section {
    background-color: var(--soft);
    text-align: center;
}

.care-section p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.8;
}

/* ===============================================
   ABOUT PAGE STYLES
   =============================================== */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, var(--soft) 0%, #fef5f1 100%);
    padding: 6rem var(--container-x) 4rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.about-hero h1 .highlight-word {
    color: var(--coral);
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--body);
}

/* Mission Section */
.mission-section {
    padding: var(--section-y) var(--container-x);
    background-color: #fff;
}

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

.mission-content h2 {
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.mission-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
}

/* Team Section */
.team-section {
    padding: var(--section-y) var(--container-x);
    background-color: var(--soft);
}

.team-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 4rem;
}

.team-member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 5rem;
    background-color: #fff;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.member-image {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 480px;
}

.member-info h3 {
    font-size: 1.8rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.member-info .title {
    font-size: 1rem;
    color: var(--coral);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.bio p {
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 1.2rem;
}

.bio h4 {
    font-size: 1.1rem;
    color: var(--ink);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.bio ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.bio ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--body);
    line-height: 1.6;
}

.bio ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: bold;
}

.bio em {
    display: block;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--body);
    font-style: italic;
    padding: 1rem 1.5rem;
    background-color: var(--soft);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    margin-top: 1rem;
}

/* Values Section */
.values-section {
    padding: var(--section-y) var(--container-x);
    background-color: #fff;
}

.values-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background-color: var(--soft);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.value-card p {
    line-height: 1.7;
    color: var(--body);
}

/* CTA Section */
.cta-section {
    padding: var(--section-y) var(--container-x);
    background: #fff;
    text-align: center;
    color: var(--ink);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-primary {
    background-color: #fff;
    color: var(--coral);
}

.btn-primary:hover {
    background-color: var(--gold);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--coral);
}

/* ===============================================
   CARE PAGE STYLES
   =============================================== */

/* Care Hero */
.care-hero {
    background: linear-gradient(135deg, #e8f4f8 0%, var(--soft) 100%);
    padding: 6rem var(--container-x) 4rem;
    text-align: center;
}

.care-hero h1 {
    font-size: 2.8rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.care-hero p {
    font-size: 1.2rem;
    color: var(--body);
}

/* Care Intro */
.care-intro {
    padding: 3rem var(--container-x);
    background-color: #fff;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 1.5rem;
}

.intro-content p {
    line-height: 1.7;
    color: var(--muted);
}

.intro-content strong {
    color: var(--coral);
}

/* Care Sections */
.care-section {
    padding: var(--section-y) var(--container-x);
}

.care-section:nth-child(odd) {
    background-color: var(--soft);
}

.care-section:nth-child(even) {
    background-color: #fff;
}

.care-section .section-title {
    font-size: 2.2rem;
    color: var (--ink);
    margin-bottom: 1rem;
    text-align: center;
}

.care-section>p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--body);
    margin-bottom: 3rem;
}

/* Care Grid */
.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.care-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: var (--radius);
    box-shadow: var(--shadow-soft);
}

.care-card h3 {
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.care-card ul {
    list-style: none;
    padding-left: 0;
}

.care-card ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--body);
    line-height: 1.6;
}

.care-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: bold;
    font-size: 1.2rem;
}

.care-card ul li strong {
    color: var(--ink);
}

/* Accordions */
.accordion-group {
    max-width: 900px;
    margin: 0 auto;
}

.care-accordion {
    background: linear-gradient(135deg, #fff 0%, #fefaf8 100%);
    border: 1px solid rgba(244, 124, 108, 0.15);
    border-radius: 12px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.care-accordion:hover {
    box-shadow: 0 4px 20px rgba(244, 124, 108, 0.15);
    border-color: rgba(244, 124, 108, 0.3);
    transform: translateY(-2px);
}

.care-accordion[open] {
    border-color: var(--coral);
    box-shadow: 0 6px 25px rgba(244, 124, 108, 0.2);
}

.care-accordion summary {
    padding: 1.5rem 2rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.care-accordion summary:hover {
    background-color: transparent;
}

.care-accordion summary::-webkit-details-marker {
    display: none;
}

.care-accordion summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--coral);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.care-accordion[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.care-accordion summary h3 {
    font-size: 1.2rem;
    color: var(--ink);
    margin: 0;
    font-weight: 600;
}

.accordion-content {
    padding: 0 2rem 1.5rem 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(244, 124, 108, 0.1);
    animation: fadeSlideDown 0.6s ease;
}

.accordion-content p {
    color: var(--body);
    line-height: 1.7;
}

.accordion-content h4 {
    font-size: 1.1rem;
    color: var(--coral);
    margin-top: 1rem;
    margin-bottom: 0.8rem;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.accordion-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
    color: var(--body);
    line-height: 1.6;
}

.accordion-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var (--gold);
}

.accordion-content ul li strong {
    color: var(--ink);
}

/* Timeline Section */
.timeline-section {
    padding: var(--section-y) var(--container-x);
    background-color: #fff;
}

.timeline-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 3rem;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.timeline-item {
    background: linear-gradient(135deg, var(--soft) 0%, #fef5f1 100%);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    border-left: 4px solid var(--coral);
}

.timeline-item h4 {
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.timeline-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: 0.5rem;
}

.timeline-item strong {
    color: var(--coral);
}

/* Responsive tweaks */
@media (max-width: 768px) {

    .about-img,
    .about-text {
        max-width: 100%;
    }

    .team-member {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .about-hero h1,
    .care-hero h1 {
        font-size: 2.5rem;
    }

    .values-grid,
    .care-grid,
    .timeline-grid {
        grid-template-columns: 1fr;
    }

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

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

/* ===============================================
   CONTACT PAGE STYLES
   =============================================== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #e8f4f8 0%, var(--soft) 100%);
    padding: 6rem var(--container-x) 4rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--body);
}

/* Contact Section */
.contact-section {
    padding: var(--section-y) var(--container-x);
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info h2 {
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.contact-info .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.2rem;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.info-block p {
    line-height: 1.7;
    color: var(--body);
    margin-bottom: 0.5rem;
}

.info-block a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

.info-block .small {
    font-size: 0.9rem;
    color: var(--muted);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--soft);
    border-radius: 20px;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--coral);
    color: #fff;
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.contact-form {
    background-color: var(--soft);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 1rem;
}

/* What to Expect Section */
.expect-section {
    padding: var(--section-y) var(--container-x);
    background-color: var(--soft);
}

.expect-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 3rem;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.expect-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: var (--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--coral) 0%, #e66b5c 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.expect-card h3 {
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.expect-card p {
    line-height: 1.7;
    color: var(--body);
}

/* ===============================================
   FAQ PAGE STYLES
   =============================================== */

/* FAQ Hero */
.faq-hero {
    background: linear-gradient(135deg, #fef5f1 0%, var(--soft) 100%);
    padding: 6rem var(--container-x) 4rem;
    text-align: center;
}

.faq-hero h1 {
    font-size: 2.8rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.faq-hero p {
    font-size: 1.2rem;
    color: var(--body);
}

/* FAQ Section */
.faq-section {
    padding: var(--section-y) var(--container-x);
    background-color: #fff;
}

.faq-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.faq-intro .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--body);
}

.faq-intro a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
}

.faq-intro a:hover {
    text-decoration: underline;
}

/* FAQ Categories */
.faq-category {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.faq-category h2 {
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--coral);
}

/* FAQ Cards - Homepage & FAQ Page */
.faq details {
    background: linear-gradient(135deg, #fff 0%, #fefaf8 100%);
    border: 1px solid rgba(244, 124, 108, 0.15);
    border-radius: 12px;
    margin-bottom: 1.2rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq details:hover {
    box-shadow: 0 4px 20px rgba(244, 124, 108, 0.15);
    border-color: rgba(244, 124, 108, 0.3);
    transform: translateY(-2px);
}

.faq details[open] {
    border-color: var(--coral);
    box-shadow: 0 6px 25px rgba(244, 124, 108, 0.2);
}

.faq summary {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--coral);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq details p {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(244, 124, 108, 0.1);
    color: var(--body);
    line-height: 1.7;
    animation: fadeSlideDown 0.6s ease;
}

.faq-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-hero h1,
    .faq-hero h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

/* ===============================================
   SERVICES PAGE STYLES
   =============================================== */

/* Services Hero */
.services-hero {
    background: linear-gradient(135deg, #fef5f1 0%, var(--soft) 100%);
    padding: 6rem var(--container-x) 4rem;
    text-align: left;
}

.services-hero h1 {
    font-size: 2.8rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
    color: var(--body);
}

/* Split Title Styling */
.services-title-split {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 0;
}

.title-line-1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--ink);
    display: block;
}

.title-line-2 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--coral);
    display: block;
    padding-left: 4rem;
    margin-top: -0.5rem;
}

/* Services Intro */
.services-intro {
    padding: 3rem var(--container-x);
    background-color: #fff;
}

.services-intro .intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--body);
}

/* Services Grid Section */
.services-grid-section {
    padding: var(--section-y) var(--container-x);
    background-color: var(--soft);
}

.services-grid-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var (--ink);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.service-tagline {
    color: var(--coral);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service-content>p {
    line-height: 1.7;
    color: var(--body);
    margin-bottom: 1.5rem;
}

.service-details {
    background-color: var(--soft);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item strong {
    color: var(--ink);
}

.detail-item span {
    color: var(--body);
}

.service-link {
    display: inline-block;
    color: var(--coral);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--gold);
}

/* Treatment Areas Section */
.treatment-areas-section {
    padding: var(--section-y) var(--container-x);
    background-color: #fff;
}

.treatment-areas-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 3rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.area-card {
    background-color: var(--soft);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.area-card h3 {
    font-size: 1.5rem;
    color: var(--coral);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.area-card ul {
    list-style: none;
    padding-left: 0;
}

.area-card ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--body);
    line-height: 1.6;
}

.area-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: bold;
}

/* Combination Treatments Section */
.combination-section {
    padding: var(--section-y) var(--container-x);
    background-color: var(--soft);
}

.combination-content {
    max-width: 1000px;
    margin: 0 auto;
}

.combination-content h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.combination-content .lead {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 3rem;
}

.combination-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.combo-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--coral);
}

.combo-card h4 {
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.combo-card p {
    line-height: 1.7;
    color: var (--body);
    margin-bottom: 0.8rem;
}

.combo-card p strong {
    color: var(--coral);
    display: block;
    margin-bottom: 0.5rem;
}

/* Process Timeline */
.expect-process {
    padding: var(--section-y) var(--container-x);
    background-color: #fff;
}

.expect-process .section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 3rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral) 0%, #e66b5c 100%);
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.process-step p {
    line-height: 1.7;
    color: var(--body);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-y) var(--container-x);
    background-color: var(--soft);
}

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

.pricing-content h2 {
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.pricing-content p {
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 1.5rem;
}

.pricing-content ul {
    list-style: none;
    padding-left: 0;
    margin: 2rem auto;
    max-width: 500px;
    text-align: left;
}

.pricing-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--body);
    line-height: 1.6;
}

.pricing-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-note {
    font-weight: 600;
    color: var(--coral);
    margin-top: 2rem;
}

/* Responsive Adjustments for Services */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .title-line-1,
    .title-line-2 {
        font-size: 3rem;
    }

    .title-line-2 {
        padding-left: 2rem;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 2rem;
    }

    .detail-item {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .areas-grid,
    .combination-examples,
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .title-line-1,
    .title-line-2 {
        font-size: 2.5rem;
    }

    .title-line-2 {
        padding-left: 1.5rem;
    }
}

/* ===============================================
   COMPACT SERVICE CARDS (Services Page)
   =============================================== */

.services-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-compact-card {
    background: linear-gradient(135deg, #fff 0%, #fefaf8 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-compact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(244, 124, 108, 0.2);
}

.service-compact-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-compact-content {
    padding: 2rem;
    text-align: center;
}

.service-compact-content h3 {
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 0.8rem;
}

.service-compact-content .service-tagline {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-compact-content .btn {
    width: 100%;
}

/* ===============================================
   SERVICE MODALS
   =============================================== */

.service-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.6s ease;
}

.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: linear-gradient(135deg, #fff 0%, #fefaf8 100%);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.6s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--coral);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #d9645b;
}

.modal-header {
    padding: 2.5rem 3rem 1.5rem;
    border-bottom: 2px solid rgba(244, 124, 108, 0.15);
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.modal-header .modal-tagline {
    font-size: 1.1rem;
    color: var(--muted);
    font-style: italic;
}

.modal-body {
    padding: 2rem 3rem;
}

.modal-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.modal-body p {
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 1.5rem;
}

.modal-details {
    background: rgba(244, 124, 108, 0.05);
    border-left: 4px solid var(--coral);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.modal-details .detail-item {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.modal-details .detail-item:last-child {
    margin-bottom: 0;
}

.modal-details strong {
    color: var(--coral);
    font-size: 0.95rem;
}

.modal-details span {
    color: var(--body);
    line-height: 1.6;
}

.modal-footer {
    padding: 1.5rem 3rem 2.5rem;
    text-align: center;
}

.modal-footer .btn {
    min-width: 200px;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive - Compact Cards & Modals */
@media (max-width: 992px) {
    .services-compact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-compact-image {
        height: 200px;
    }

    .modal-content {
        margin: 1rem;
        max-height: 95vh;
    }

    .modal-header {
        padding: 2rem 2rem 1.5rem;
    }

    .modal-body {
        padding: 1.5rem 2rem;
    }

    .modal-footer {
        padding: 1.5rem 2rem 2rem;
    }

    .modal-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .modal-close {
        right: 1rem;
        top: 1rem;
        font-size: 2rem;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1rem 1.5rem;
    }

    .modal-footer {
        padding: 1rem 1.5rem 1.5rem;
    }

    .modal-details {
        padding: 1rem;
    }
}

/* ===============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   =============================================== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {

    /* Hero Section */
    .hero {
        height: 70vh;
    }

    .hero h1,
    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Features Accordion */
    .features-accordion-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-image {
        position: relative;
        top: 0;
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    /* About Section */
    .about-content {
        gap: 2rem;
    }

    .about-text,
    .about-img {
        max-width: 100%;
    }

    /* Treatments Grid */
    .treatments {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {

    /* Typography adjustments */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    p,
    li {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Section padding reduction */
    .section {
        padding: 3rem 5%;
    }

    /* Hero Section */
    .hero {
        height: 60vh;
        padding: 2rem 5%;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1,
    .hero h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .hero button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Features Accordion */
    .features-accordion-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-image {
        padding: 1rem;
    }

    .features-image img {
        max-width: 100%;
    }

    .feature-item summary {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .feature-item summary h4 {
        font-size: 1rem;
    }

    .feature-item p {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .btn-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-text,
    .about-img {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /* Treatments Grid */
    .treatments {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .treatment-card {
        max-width: 100%;
    }

    .treatment-img {
        height: 180px;
    }

    .treatment-info {
        padding: 1.25rem;
    }

    /* Testimonial */
    .testimonial-card {
        margin: 1.5rem auto;
    }

    .testimonial-content {
        padding: 2rem 1.5rem;
    }

    .quote-icon {
        font-size: 3.5rem;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }

    /* FAQ Section */
    .faq details {
        padding: 1.2rem 1.5rem;
    }

    .faq summary {
        font-size: 1.05rem;
    }

    .faq summary::after {
        font-size: 1.5rem;
    }

    /* Care Section */
    .care-section p {
        font-size: 0.95rem;
    }

    /* About Page Styles */
    .about-hero {
        padding: 4rem 5% 3rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member {
        max-width: 100%;
    }

    /* Services Page Styles */
    .services-hero,
    .care-hero,
    .faq-hero,
    .contact-hero {
        padding: 4rem 5% 3rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 1.5rem;
    }

    /* Treatment Areas */
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Combination Examples */
    .combination-examples {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Process Timeline */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        text-align: center;
    }

    .step-icon {
        margin: 0 auto 1rem;
    }

    /* Timeline Grid */
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Care Grid */
    .care-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .care-card {
        padding: 1.5rem;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 1rem;
    }

    /* Expect Grid */
    .expect-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .section {
        padding: 2.5rem 5%;
    }

    .hero {
        height: 50vh;
    }

    .hero h1,
    .hero h2 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero button {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    .treatment-img {
        height: 150px;
    }

    .feature-item summary {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .feature-item p {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.9rem;
    }

    .btn-cta {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }

    .testimonial-content {
        padding: 1.5rem 1rem;
    }

    .quote-icon {
        font-size: 3rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .faq details {
        padding: 1rem 1.2rem;
    }

    .faq summary {
        font-size: 1rem;
    }

    .faq summary::after {
        font-size: 1.3rem;
    }

    .faq details p {
        font-size: 0.95rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 3rem 5%;
    }
}

/* ===============================================
   GLOBAL UTILITY CLASSES
   =============================================== */

/* Highlight word styling */
.highlight-word {
    color: var(--coral);
}

/* Pre & Post Care color styling */
.pre-color {
    color: var(--coral);
}

.post-color {
    color: var(--coral);
}

/* ===============================================
   HERO SECTION
   =============================================== */