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

:root {
    --primary-color: #d4a5a5;
    --primary-dark: #c08585;
    --primary-light: #e8c4c4;
    --accent-color: #e8a5a5;
    --accent-dark: #b87070;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    display: none;
}

.logo-text {
    display: none;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-color);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    transition: color 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-light);
}

.social-icons a:hover {
    color: var(--accent-color);
    background-color: #f5e5e5;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero.hero-home {
    background-image: url('Stock1.jpg');
}

.hero.hero-other {
    background-image: url('Stock2.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    background-color: var(--white);
    padding: 50px 20px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 165, 0.4);
}

/* Intro Section */
.intro-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.intro-section h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Page Hero (for non-home pages) */
.page-hero {
    position: relative;
    background-image: url('Stock2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.page-hero h1,
.page-hero p {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.95;
}

/* Content Section */
.content-section {
    padding: 80px 20px;
}

.content-section .container {
    max-width: 1200px;
}

.content-section h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.content-section h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section ul {
    margin-left: 25px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* About Page */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-list {
    list-style: none;
    margin-left: 0;
}

.about-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    color: var(--text-dark);
    margin-top: 0;
}

/* Therapists Page */
.therapists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.therapist-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.therapist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.therapist-image {
    font-size: 80px;
    margin-bottom: 20px;
}

.therapist-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
    margin-top: 0;
}

.therapist-title {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.therapist-specialty {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.therapist-bio {
    color: var(--text-light);
    line-height: 1.7;
    text-align: left;
}

/* Services Page */
.services-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-item h2 {
    margin-top: 0;
}

.appointment-cta {
    text-align: center;
    padding: 60px 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
    margin-top: 60px;
}

.appointment-cta h2 {
    margin-top: 0;
}

.appointment-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.testimonials-section h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-color);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 14px;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    margin-top: 0;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.contact-form-wrapper h2 {
    margin-top: 0;
}

.contact-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

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

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

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 165, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 640px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .intro-section h2,
    .content-section h2 {
        font-size: 28px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

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