/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #000;
}

/* Basic Link Styles */
a {
    color: #6a7775;
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: #8e8e8e;
}



/* Heading Link Styles */
.heading-link {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.heading-link:hover {
    color: #6a7775 !important;
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 0.45rem 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #000 !important;
    text-decoration: none !important;
    font-size: 1.2rem;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 1.5rem;
    white-space: nowrap;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #6a7775;
}

.nav-cta {
    background-color: #6a7775;
    color: white !important;
    text-decoration: none !important;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    white-space: nowrap;
}

.nav-cta:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    color: #333;
    line-height: 1;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-button {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        color: #000;
    }

    .nav-wrapper {
        flex-wrap: wrap;
    }

    .nav-links {
        flex-basis: 100%;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
        padding: 0;
        width: 100%;
    }

    .nav-links.active {
        max-height: 500px;
        margin-top: 1rem;
    }

    .nav-links li {
        margin: 0.7rem 0;
        text-align: center;
        width: 100%;
    }
}

section {
    padding: 2rem 0;
}

/* Adjust hero section to account for navigation */
.hero {
    padding-top: 5rem;
    min-height: 65vh;
}

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

h1,
h2,
h3 {
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

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

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #6a7775;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    width: 255px;
    text-align: center;
}

.btn:hover {
    background-color: #333;
    transform: translateY(-3px);
}

/* Section Styles */
.hero {
    background-color: #fff;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.40;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2.5rem;
    transform: translateY(-15%);
    max-width: 60%;
    text-align: center;
}

.urgent-banner {
    background-color: #40a187;
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    max-width: 95%;
}

.about {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    padding-right: 1rem;
}

.about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.about-name h2 {
    margin-bottom: 1rem;
    color: #333;
}

.about-name p {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 1rem;
}

.services {
    background-color: #fff;
    padding: 4rem 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-image {
    width: 100%;
    margin-bottom: 1rem;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-text h3 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.services-cta {
    margin-top: 3rem;
    text-align: center;
}

.services-cta p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.services-cta .btn {
    margin-top: 0;
    background-color: #6a7775;
}

.services-cta .btn:hover {
    background-color: #555;
}

/* Ensure consistent button widths in services-cta */
.services-cta .spwidget-button-wrapper,
.services-cta .call-button-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.services-cta .btn,
.services-cta .btn-call {
    width: 255px;
    margin: 0;
}

/* Service Cards - for evidence-based therapy page */
.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.service-card h3 {
    color: #6a7775;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6a7775;
    margin-bottom: 0;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-card li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li:before {
    content: "✓";
    color: #6a7775;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive design for service cards */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .services h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .services {
        padding: 2rem 0;
    }
}

/* Methods CTA Section - for evidence-based therapy page */
.methods-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.methods-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.methods-cta .btn {
    margin-top: 0;
    background-color: #6a7775;
}

.methods-cta .btn:hover {
    background-color: #555;
}

/* Why Evidence CTA Section - for evidence-based therapy page */
.why-evidence-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.why-evidence-cta .btn {
    margin-top: 0;
    background-color: #6a7775;
}

.why-evidence-cta .btn:hover {
    background-color: #555;
}

/* Credentials CTA Section - for evidence-based therapy page */
.credentials-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.credentials-cta .btn {
    margin-top: 0;
    background-color: #6a7775;
}

.credentials-cta .btn:hover {
    background-color: #555;
}

.benefits {
    background-color: #6a7775;
    color: #fff;
}

.benefits .btn {
    background-color: #fff;
    color: #6a7775;
    border: 2px solid #fff;
}

.benefits .btn:hover {
    background-color: transparent;
    color: #fff;
}

.benefits h2 {
    margin-bottom: 2.5rem;
    text-align: center;
}

.benefits-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.benefits-text {
    flex: 0 0 65%;
    padding-right: 3rem;
}

.benefits-image {
    flex: 0 0 35%;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.benefits ul {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.benefits li {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.how-it-works {
    background-color: #e7dfd8;
    padding: 4rem 0;
    overflow: hidden;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.how-it-works-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
}

.how-it-works-image {
    flex: 0 0 40%;
    min-width: 255px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.how-it-works-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.process-steps {
    flex: 1;
    min-width: 255px;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.step {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    background-color: #6a7775;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact {
    background-color: #fff;
    padding-bottom: 6rem;
}

.contact h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.contact-form-section {
    flex: 1;
    min-width: 500px;
}

.contact-form-section h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.5rem;
}

.contact-sidebar {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-image {
    width: 100%;
}

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

.contact-info {
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mini-map {
    margin-top: 1.5rem;
}

.mini-map iframe {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
.footer {
    position: relative;
    background-color: transparent;
    text-align: center;
    padding: 8rem 0;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
    /* filter: brightness(1.2) contrast(0.9); */
}

.footer-content {
    position: relative;
    z-index: 2;
    display: inline-block;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    .hero-content {
        margin-right: 0;
        margin-left: 0;
        max-width: 100%;
        text-align: center;
        transform: translateY(0);
        padding-top: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        white-space: normal;
        line-height: 1.3;
    }

    .btn {
        display: block;
        width: 100%;
        max-width: 255px;
        text-align: center;
        margin: 1rem auto;
        white-space: nowrap;
    }

    .about-content,
    .service-item,
    .contact-content,
    .how-it-works-content,
    .benefits-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .about-text,
    .service-text,
    .how-it-works-image,
    .benefits-text {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 2rem;
        max-width: 100%;
        flex: 0 0 auto;
    }

    .how-it-works-image {
        order: -1;
        text-align: center;
    }

    .how-it-works-image img {
        max-width: 100%;
        height: auto;
    }

    .process-steps {
        flex: 0 0 100%;
        order: 1;
    }

    .contact-form-section {
        min-width: auto;
        margin-bottom: 2rem;
        width: 100%;
    }

    .contact-form {
        max-width: 100%;
        width: 100%;
    }

    .navigation-links {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-link {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-actions {
        text-align: center;
        align-items: center;
    }

    .contact-actions .spwidget-button-wrapper {
        display: flex;
        justify-content: center;
    }

    .contact-actions .spwidget-button-wrapper .btn,
    .contact-actions .btn-call {
        /* Inherits all styles from .btn */
    }

    .contact-sidebar {
        flex: 0 0 auto;
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto 2rem auto;
    }

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

    .about-text {
        order: 1;
    }

    .about-right {
        order: 2;
    }

    .about-name {
        margin-bottom: 2rem;
    }

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .how-it-works {
        padding: 2rem 0;
    }

    .how-it-works-content {
        gap: 1.5rem;
    }

    .how-it-works-image {
        min-width: auto;
        width: 100%;
    }

    .process-steps {
        min-width: auto;
    }
} 

/* Navigation Section Styles */
.navigation {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.navigation h2 {
    margin-bottom: 2rem;
    color: #333;
    font-size: 2.2rem;
}

.navigation-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.nav-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #6a7775;
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: #555;
    transform: translateY(-2px);
    color: white !important;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6a7775;
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.form-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    color: #666;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #ddd;
}

.form-divider::before {
    left: 0;
}

.form-divider::after {
    right: 0;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background-color: #6a7775;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background-color: #555;
}

.contact-form button[type="submit"]:disabled {
    background-color: #999;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
}

.btn-text {
    display: inline;
}

/* Form error message styling */
.form-error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #dc2626;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-error p {
    margin: 0;
    color: #dc2626;
}

/* Success message styling */
.form-success {
    padding: 1rem;
    background-color: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: 4px;
    color: #2e7d32;
    margin-bottom: 1rem;
    display: none;
}

.form-success.visible {
    display: block;
}

/* Thank You Message Styles */
.thank-you-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    max-width: 600px;
    margin: 2rem auto;
}

.thank-you-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.thank-you-message h3 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.thank-you-message p {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thank-you-message p:last-of-type {
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.thank-you-actions .btn {
    min-width: 200px;
    text-align: center;
}

/* Responsive adjustments for thank you message */
@media (max-width: 768px) {
    .thank-you-message {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .thank-you-message h3 {
        font-size: 2rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .thank-you-actions .btn {
        min-width: 100%;
    }
} 

.grecaptcha-badge {
    visibility: hidden;
}

/* reCAPTCHA Status Indicator */
.recaptcha-status {
    margin-top: 0.5rem;
    color: #6c757d;
    font-style: italic;
}

.recaptcha-status small {
    font-size: 0.875rem;
}