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

:root {
    --primary-color: #597067;
    --secondary-color: #6b8574;
    --accent-color: #7d9a88;
    --primary-dark: #4a5c54;
    --primary-light: #6d8a7a;
    --text-color: #2c3e2f;
    --text-light: #5a6b5f;
    --bg-color: #ffffff;
    --bg-alt: #f5f7f6;
    --border-color: #d4ddd8;
    --max-width: 1200px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(89, 112, 103, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-brand-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-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);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.logo-section {
    margin-bottom: 2rem;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.company-name {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.provider-name {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.services-subheading {
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin: 1.5rem auto 1rem;
    max-width: 600px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.therapy-description {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    opacity: 0.92;
    max-width: 700px;
    margin: 0 auto;
    font-style: normal;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--bg-alt);
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.content-block {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(89, 112, 103, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(89, 112, 103, 0.12);
}

.content-block.full-width {
    grid-column: 1 / -1;
}

.headshot-container {
    text-align: center;
    margin-bottom: 0;
}

.headshot {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(89, 112, 103, 0.15);
    object-fit: cover;
}

.content-block h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-block p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Services */
.service-category {
    margin-bottom: 3rem;
}

.service-category h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.75rem;
    font-weight: 600;
}

.service-list {
    display: grid;
    gap: 2rem;
}

.service-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(89, 112, 103, 0.08);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(89, 112, 103, 0.15);
}

.service-item h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

.steps-list {
    margin-left: 1.5rem;
    color: var(--text-light);
    line-height: 2;
}

.steps-list li {
    margin-bottom: 0.5rem;
}

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

.included-not-included h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.included-not-included ul {
    margin-left: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.included-not-included li {
    margin-bottom: 0.5rem;
}

.adhd-step-list {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-light);
    line-height: 1.9;
}

.adhd-step-list li {
    margin-bottom: 0.75rem;
}

.adhd-pricing-section {
    background: linear-gradient(135deg, var(--bg-alt) 0%, white 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(89, 112, 103, 0.08);
    border: 1px solid var(--border-color);
    margin-top: 1rem;
}

.adhd-pricing-section h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.adhd-cost-breakdown {
    max-width: 500px;
    margin: 0 auto 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.cost-step {
    color: var(--text-color);
    font-size: 1.05rem;
}

.cost-amount {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.adhd-payment-notes {
    text-align: center;
    margin-top: 1.5rem;
}

.adhd-payment-notes p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Fees and Insurance */
.insurance-section {
    margin-bottom: 3rem;
}

.insurance-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.insurance-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(89, 112, 103, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.insurance-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(89, 112, 103, 0.12);
    border-color: var(--primary-color);
}

.insurance-item.private-pay {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: var(--primary-color);
    font-weight: 600;
}

.consultation-section {
    background: linear-gradient(135deg, var(--bg-alt) 0%, white 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(89, 112, 103, 0.08);
    border: 1px solid var(--border-color);
}

.consultation-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.consultation-info p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.consultation-notes {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.consultation-notes li {
    margin-bottom: 0.5rem;
}

.contact-for-pricing {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
}

.payment-intro {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.credentialing-note {
    font-size: 0.85rem;
    font-style: italic;
    display: block;
    margin-top: 0.5rem;
    opacity: 0.8;
    line-height: 1.4;
}

.payment-options-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-alt);
    border-radius: 8px;
    text-align: center;
}

.payment-options-note p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.fees-section {
    margin-top: 3rem;
}

.fees-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.fees-list {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(89, 112, 103, 0.08);
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.fee-type {
    color: var(--text-color);
    font-size: 1.05rem;
}

.fee-amount {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
}

/* Contact Section */
.contact-content {
    max-width: 700px;
    margin: 2rem auto 0;
    text-align: center;
}

.contact-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-info {
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

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

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(89, 112, 103, 0.2);
}

.contact-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(89, 112, 103, 0.3);
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: left;
    box-shadow: 0 2px 10px rgba(89, 112, 103, 0.05);
}

/* Location Section */
.location-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.location-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.address-block {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(89, 112, 103, 0.08);
    margin-bottom: 2rem;
}

.address-block p {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

.address-block p:first-child {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.office-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
}

.social-links h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
}

.social-link:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer-text {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.footer-text p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

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

    .nav-brand-text {
        font-size: 0.9rem;
    }

    .nav-logo {
        height: 28px;
    }

    .company-name {
        font-size: 1.8rem;
    }

    .hero-logo {
        height: 80px;
    }

    .provider-name {
        font-size: 1.2rem;
    }

    .services-subheading {
        font-size: 0.9rem;
        margin: 1rem auto 0.75rem;
        letter-spacing: 1.5px;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .therapy-description {
        font-size: 1rem;
        line-height: 1.8;
    }

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

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

    .included-not-included {
        grid-template-columns: 1fr;
    }

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

    .fees-list {
        padding: 1.5rem;
    }

    .fee-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .fee-amount {
        font-size: 1.5rem;
    }

    .adhd-cost-breakdown {
        padding: 1rem;
    }

    .cost-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .cost-amount {
        font-size: 1.5rem;
    }

    .social-icons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero {
        padding: 2.5rem 0;
    }

    .section {
        padding: 2.5rem 0;
        scroll-margin-top: 50px;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .company-name {
        font-size: 1.5rem;
    }

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

    .service-item {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

