/* ==========================================
   1. GENERAL RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* ==========================================
   2. STICKY NAVIGATION BAR
   ========================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* ==========================================
   3. MAIN LAYOUT CONTAINER
   ========================================== */
.container {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ==========================================
   4. HERO CARD (WITH CUSTOM BACKGROUND IMAGE)
   ========================================== */
.hero-card {
    background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), 
                url('hero-bg.jpg'); 
                
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat;
    
    padding: 80px 20px;           
    text-align: center;
    
    /* CURVED EDGES */
    border-radius: 30px; 
    
    /* SOFT SHADOW & SUBTLE EDGE */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    
    margin-bottom: 50px;
}

.hero-card h1 {
    font-size: 2.8rem;
    color: #e63946; 
    margin-bottom: 12px;
}

.subtitle {
    font-size: 1.2rem;
    color: #444;
}

/* Location Tag Style */
.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    margin-top: 10px;
}

.pricing-pill {
    display: inline-block;
    background: #f1d5e0; 
    color: #8c2d52;
    padding: 10px 24px;
    border-radius: 50px;
    margin: 24px 0;
    font-weight: bold;
    font-size: 1rem;
}

.cta-button {
    display: block;
    width: fit-content;
    margin: 10px auto;
    background: #333;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #111;
}

/* ==========================================
   5. ABOUT ME SECTION
   ========================================== */
.about-section {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    text-align: center;
}

.about-section h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.2rem;
    color: #e63946; 
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.5;
}

.about-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 15px;
    text-align: left; 
    line-height: 1.7;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #f1d5e0;
}

.badge {
    background: #fdf6f8;
    color: #a03c5f;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.95rem;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

/* ==========================================
   6. SERVICES OFFERED SECTION
   ========================================== */
.services-section {
    margin-bottom: 50px;
    text-align: center;
}

.services-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 5px;
}

.services-subtitle {
    color: #777;
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.service-card {
    background: white;
    flex: 1;
    padding: 35px 25px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ==========================================
   7. CLIENT INTAKE & CARE AGREEMENT FORM
   ========================================== */
.contact-section {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 8px;
    color: #333;
    font-size: 2rem;
}

.contact-section > p {
    color: #666;
    margin-bottom: 35px;
}

.contact-form {
    text-align: left;
}

.form-block {
    border: none;
    margin-bottom: 40px;
    padding: 0;
}

.form-block legend {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #f1d5e0; 
    padding-bottom: 6px;
    margin-bottom: 24px;
    width: 100%;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.95rem;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px; 
    font-size: 1rem;
    outline: none;
    background: #fafafa;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e63946;
    background: #fff;
}

.terms-box {
    background: #fcfcfc;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 20px;
    height: 200px;
    overflow-y: scroll; 
    font-size: 0.9rem;
    color: #555;
    text-align: left;
    margin-bottom: 18px;
}

.terms-box h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #222;
}

.terms-box p {
    margin-bottom: 12px;
    line-height: 1.5;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    margin-top: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
    transform: scale(1.1);
}

.checkbox-group label {
    font-size: 0.95rem;
    color: #444;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.4;
}

.sig-input {
    font-family: 'Brush Script MT', 'cursive', sans-serif; 
    font-size: 1.4rem !important;
    background-color: #fafdff !important;
    border-left: 4px solid #e63946 !important;
}

.form-help {
    display: block;
    color: #777;
    font-size: 0.8rem;
    margin-top: 6px;
}

input[type="date"] {
    cursor: pointer;
}

.submit-button {
    width: 100%;
    background: #e63946; 
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #c32f3a; 
}

/* ==========================================
   8. COMPREHENSIVE MOBILE RESPONSIVENESS
   ========================================== */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .hero-card {
        padding: 50px 15px;
        border-radius: 20px; 
    }

    .hero-card h1 {
        font-size: 2rem;
    }

    .about-section {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .badge {
        width: 100%;
        text-align: center;
    }

    .services-grid {
        flex-direction: column;
        gap: 15px;
    }

    .service-card {
        border-radius: 20px;
    }

    .contact-section {
        padding: 30px 15px;
        border-radius: 20px;
    }
}/* Mobile Fix for Navigation Bar */
@media (max-width: 768px) {
    /* Target the container holding your logo and links */
    nav, .nav-container, header { 
        flex-direction: column !important;
        text-align: center !important;
        padding: 10px !important;
    }

    /* Target your links list */
    nav ul, .nav-links {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        padding: 0 !important;
        margin-top: 10px !important;
        gap: 15px !important; /* Space between links */
    }

    /* Make sure individual links don't crowd together */
    nav a, .nav-links a {
        font-size: 14px !important;
    }
}

