/*
 * PsihoAsist - Psychology & Therapy Website
 * Main Stylesheet
 */

:root {
    --color-cream: #F9F6F1;
    --color-sage: #8B9D83;
    --color-sage-light: #A8B8A0;
    --color-sage-dark: #5D6B57;
    --color-terracotta: #C4907A;
    --color-terracotta-light: #D4A08A;
    --color-charcoal: #2D3436;
    --color-warm-gray: #6B6B6B;
    --color-white: #FFFFFF;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    line-height: 1.7;
    font-size: 16px;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(249, 246, 241, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 157, 131, 0.2);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-sage-dark);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-warm-gray);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-terracotta);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-charcoal);
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-charcoal);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
    opacity: 0.15;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

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

.hero-text h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: var(--color-sage-dark);
    font-style: italic;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--color-warm-gray);
    margin-bottom: 2rem;
    max-width: 480px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    border: 2px solid var(--color-terracotta);
}

.btn-primary:hover {
    background: var(--color-terracotta-light);
    border-color: var(--color-terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 144, 122, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-sage-dark);
    border: 2px solid var(--color-sage);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--color-sage);
    color: var(--color-white);
}

.hero-image {
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--color-sage-light), var(--color-sage));
    border-radius: 200px 200px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
    padding: 0;
    box-shadow: 0 30px 60px rgba(139, 157, 131, 0.3);
    overflow: hidden;
}

.hero-image-placeholder img {
    width: 50%;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
}

.decorative-element {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid var(--color-terracotta);
    border-radius: 50%;
    top: -30px;
    right: -30px;
    opacity: 0.5;
}

/* Contact Banner */
.contact-banner {
    background: var(--color-sage-dark);
    padding: 2rem 0;
    margin-top: -1px;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
}

.contact-icon {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-terracotta);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-charcoal);
}

/* About Section */
.about {
    background: var(--color-white);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--color-warm-gray);
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--color-charcoal);
}

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

.quality-tag {
    background: var(--color-cream);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-sage-dark);
    border: 1px solid rgba(139, 157, 131, 0.3);
}

.client-profiles {
    background: var(--color-sage);
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--color-white);
}

.client-profiles h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.client-profiles ul {
    list-style: none;
}

.client-profiles li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.client-profiles li:last-child {
    border-bottom: none;
}

/* Specializations */
.specializations {
    background: var(--color-cream);
}

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

.spec-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--color-sage-light);
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-white);
}

.spec-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
}

.spec-card p {
    font-size: 0.95rem;
    color: var(--color-warm-gray);
}

/* Approach Section */
.approach {
    background: var(--color-white);
}

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

.approach-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-cream);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.approach-item:hover {
    background: var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.approach-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-terracotta);
    line-height: 1;
}

.approach-item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.approach-item p {
    font-size: 0.95rem;
    color: var(--color-warm-gray);
}

/* Modalities */
.modalities {
    background: linear-gradient(135deg, var(--color-sage-dark) 0%, var(--color-sage) 100%);
    color: var(--color-white);
}

.modalities .section-subtitle {
    color: var(--color-terracotta-light);
}

.modalities .section-title {
    color: var(--color-white);
}

.modalities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.modality-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 400;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.modality-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Pricing */
.pricing {
    background: var(--color-cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    background: var(--color-charcoal);
    color: var(--color-white);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-terracotta);
}

.pricing-type {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-sage);
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-type {
    color: var(--color-terracotta-light);
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.pricing-amount span {
    font-size: 1.5rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--color-warm-gray);
    margin-bottom: 2rem;
}

.pricing-card.featured .pricing-note {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card .btn {
    width: 100%;
}

/* Expect Section */
.expect {
    background: var(--color-white);
}

.expect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.expect-list {
    list-style: none;
}

.expect-list li {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(139, 157, 131, 0.2);
}

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

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--color-sage);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-white);
}

.expect-box {
    background: var(--color-cream);
    padding: 3rem;
    border-radius: 20px;
}

.expect-box h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.expect-box ul {
    list-style: none;
}

.expect-box li {
    padding: 0.75rem 0;
    color: var(--color-warm-gray);
    position: relative;
    padding-left: 1.5rem;
}

.expect-box li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--color-terracotta);
}

/* Education */
.education {
    background: var(--color-cream);
}

.education-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.edu-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.edu-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.edu-card .year {
    font-size: 0.9rem;
    color: var(--color-terracotta);
    margin-bottom: 0.75rem;
}

.edu-card p {
    color: var(--color-warm-gray);
    font-size: 0.95rem;
}

.certifications h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.cert-list {
    list-style: none;
}

.cert-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 157, 131, 0.2);
    color: var(--color-warm-gray);
}

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

.cert-list .year {
    font-size: 0.85rem;
    color: var(--color-sage);
}

/* Contact Section */
.contact {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.contact .section-subtitle {
    color: var(--color-terracotta-light);
}

.contact .section-title {
    color: var(--color-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-details {
    padding: 2rem;
}

.contact-details h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: var(--color-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
}

.contact-detail-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.contact-detail-text p {
    font-size: 1.1rem;
}

.contact-detail-text a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-text a:hover {
    color: var(--color-terracotta-light);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-terracotta);
    background: rgba(255, 255, 255, 0.15);
}

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

.contact-form .btn-primary {
    width: 100%;
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-message.success {
    background: rgba(139, 157, 131, 0.3);
    border: 1px solid var(--color-sage);
}

.form-message.error {
    background: rgba(196, 144, 122, 0.3);
    border: 1px solid var(--color-terracotta);
}

/* Languages */
.languages {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.language-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--color-charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-content,
    .about-content,
    .expect-grid,
    .education-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .spec-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .qualities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-cream);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(139, 157, 131, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 2rem;
    }

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

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

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

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

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 4rem 0;
    }
}

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

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
