:root {
    /* Trauma-informed Color Palette */
    --clr-bg: #FAFAFA;
    --clr-light: #FFFFFF;
    --clr-soft-blue: #E3F2FD;
    --clr-blue: #BBDEFB;
    --clr-teal: #B2DFDB;
    --clr-dark-teal: #4DB6AC;
    --clr-soft-pink: #FCE4EC;
    --clr-text-main: #37474F;
    --clr-text-light: #607D8B;
    
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --transition: all 0.3s ease;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --border-radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--clr-text-main);
    background-color: var(--clr-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--clr-text-main);
    font-weight: 500;
}

h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

a {
    text-decoration: none;
    color: var(--clr-text-main);
    transition: var(--transition);
}

p {
    margin-bottom: 1rem;
    color: var(--clr-text-light);
}

.bg-light { background-color: var(--clr-light); }
.bg-soft-blue { background-color: var(--clr-soft-blue); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 600px; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-small {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--clr-dark-teal);
    color: white;
    box-shadow: 0 4px 15px rgba(77, 182, 172, 0.3);
}

.btn-primary:hover {
    background-color: #3d968e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 182, 172, 0.4);
    color: white;
}

.btn-primary-small {
    padding: 0.5rem 1.5rem;
    background-color: var(--clr-dark-teal);
    color: white;
}
.btn-primary-small:hover {
    background-color: #3d968e;
    color: white;
}

.btn-secondary {
    background-color: var(--clr-soft-pink);
    color: var(--clr-text-main);
}

.btn-secondary:hover {
    background-color: #f8bbd0;
    transform: translateY(-2px);
}

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

.section {
    padding: 6rem 0;
}

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

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

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 65px;
    width: auto;
    mix-blend-mode: multiply;
}

.hero-logo-left {
    max-width: 450px; /* Bigger logo */
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    mix-blend-mode: multiply; /* Hides white background */
    display: block;
    margin-left: 0;
    margin-right: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
}

.nav-links a:hover {
    color: var(--clr-dark-teal);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--clr-text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* navbar height */
    background: linear-gradient(135deg, var(--clr-soft-blue) 0%, var(--clr-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 2rem 4rem;
    max-width: 600px;
    z-index: 2;
}

.hero-image-container {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 30%;
    box-shadow: var(--shadow-soft);
}

/* About Section */
.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--clr-light);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card.featured {
    background: linear-gradient(145deg, #ffffff, var(--clr-soft-blue));
    border: 1px solid white;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-dark-teal);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    font-weight: 400;
}

.service-list {
    list-style: none;
    margin-top: 1.5rem;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--clr-text-light);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--clr-dark-teal);
}

/* Forms */
.booking-form, .contact-form {
    background: var(--clr-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fafafa;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--clr-dark-teal);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(77, 182, 172, 0.1);
}

.form-subtitle {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    font-size: 1.2rem;
    color: var(--clr-dark-teal);
}

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

.radio-options {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-options input[type="radio"] {
    margin-right: 0.3rem;
}

.radio-options label {
    display: inline-block;
    font-weight: normal;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--clr-soft-pink);
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--clr-dark-teal);
}

/* Tips */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: var(--clr-soft-blue);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.tip-card h3 {
    color: var(--clr-dark-teal);
}

/* Contact Info */
.info-item {
    margin-bottom: 1.5rem;
}

.info-item a {
    color: var(--clr-dark-teal);
}
.info-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #fff;
    padding: 3rem 0;
    border-top: 1px solid #eee;
}

.logo-footer-img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    mix-blend-mode: multiply;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-logo-left {
        margin-left: auto;
        margin-right: auto;
    }
    
    .layout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero {
        flex-direction: column;
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 2rem;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image-container {
        position: relative;
        width: 100%;
        height: 400px;
        order: -1;
    }
    
    .hero-img {
        border-radius: 0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        transition: 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
}

/* Modals */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(55, 71, 79, 0.6); 
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--clr-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: var(--clr-text-light);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--clr-dark-teal);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.modal-section h4 {
    color: var(--clr-dark-teal);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.modal-section ul {
    list-style: none;
}

.modal-section ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--clr-text-light);
}

.modal-section ul li::before {
    content: "•";
    color: var(--clr-dark-teal);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-content {
        padding: 2rem;
    }
}
