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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: rgb(254, 245, 232);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4ECDC4, #44A08D);
    border-radius: 2px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 100px;
    height: 100px;
    max-height: 80px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.logo-sub {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: #7f8c8d;
    line-height: 1;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ECDC4;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-header {
    background: #4ECDC4;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.cta-header:hover {
    background: #44A08D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.01) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 400;
    margin-top: 9rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #f8f9fa;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.btn-tertiary {
    background: linear-gradient(135deg, #257c76, #44A08D);
    color: white;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.4);
}

.btn-secondary {
    background: white;
    color: #4ECDC4;
    border: 2px solid #4ECDC4;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.2);
}

.btn-secondary:hover {
    background: #4ECDC4;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.3);
}

/* Who It Helps Section */
.who-helps {
    padding: 2rem 0;
    background: white;
}

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

.help-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.help-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.help-image {
    margin-bottom: 1.5rem;
}

.circular-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4ECDC4;
}

.therapist-image .circular-image {
    width: 250px;
    height: 250px;
}

.help-card:hover .circular-image {
    transform: scale(1.05);
    border-color: #44A08D;
}

.help-title {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 1.5rem;
    color: #4ECDC4;
    margin-bottom: 1rem;
    font-weight: 600;
}

.help-description {
    color: #5a6c7d;
    line-height: 1.6;
}

/* What We Offer Section */
.what-we-offer {
    padding: 6rem 0;
    background: rgb(254, 245, 232);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 400px);
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.offer-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.offer-image {
    height: 300px;
    overflow: hidden;
}

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

.offer-card:hover .offer-img {
    transform: scale(1.05);
}

.offer-title {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.offer-description {
    color: #5a6c7d;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* Meet Your Therapist Section */
.meet-therapist {
    padding: 6rem 0;
    background: white;
}

.therapist-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 2rem;
}

.therapist-image {
    text-align: center;
}

.therapist-name {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.therapist-bio {
    max-width: 900px;
    text-align: left;
}

.therapist-bio p {
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Let's Talk Section */
.lets-talk {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    text-align: center;
}

.lets-talk .section-title {
    color: white;
}

.lets-talk .section-title::after {
    background: white;
}

.talk-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.talk-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.lets-talk .btn-primary {
    background: white;
    color: #4ECDC4;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.lets-talk .btn-primary:hover {
    background: #f8f9fa;
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.lets-talk .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.lets-talk .btn-secondary:hover {
    background: white;
    color: #4ECDC4;
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-logo {
    margin-bottom: 0rem;
}

.footer-logo-img {
    width: 320px;
    height: 320px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
}

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

.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    color: #4ECDC4;
}

.affiliation {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4ECDC4;
    font-weight: 500;
}

.address {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.help-card,
.offer-card {
    animation: fadeInUp 0.6s ease-out;
}

.help-card:nth-child(2) {
    animation-delay: 0.2s;
}

.help-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem 20px;
        justify-content: space-between;
    }

    .nav {
        gap: 1rem;
    }
    
    .cta-header {
        font-weight: 700;
        text-align: center;
    }
    
    .mobile-menu-btn {
        color: #2c3e50 !important;
    }
    
    .nav .nav-link {
        color: #2c3e50 !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        margin: 0 1rem;
        padding: 1.5rem;
    }

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

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

    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-image {
        height: 250px;
    }

    .therapist-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .talk-buttons {
        padding: 0 1rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

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

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

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .circular-image {
        width: 120px;
        height: 120px;
    }

    .offer-image {
        height: 350px;
    }
}


/* Loading animation for images */
img {
}

img[src*="placeholder"] {
    opacity: 0.8;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.cta-header:focus {
    outline: 2px solid #4ECDC4;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-bg {
        display: none;
    }
    
    .hero-overlay {
        background: white;
    }
}
