/* ===================================
   SURREAL HOPE WELLNESS - STYLE.CSS
   =============================================== */

/* ===== ROOT & COLORS ===== */
:root {
    --sage: #a8c5a0;
    --sage-light: #c8dfc3;
    --sage-dark: #8fb080;
    --teal: #7db4a8;
    --teal-light: #a8d4cc;
    --teal-dark: #6a9a91;
    --blue-green: #8fc9c0;
    --cream: #f5f3f0;
    --cream-light: #faf9f7;
    --white: #ffffff;
    --beige: #d4c5b8;
    --beige-warm: #e8ddd3;
    --text-dark: #3a3a3a;
    --text-light: #6b6b6b;
    --accent: #a8c5a0;
    --shadow: 0 4px 15px rgba(168, 197, 160, 0.1);
    --shadow-hover: 0 8px 25px rgba(168, 197, 160, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--cream-light);
    color: var(--text-dark);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

body.modal-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

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

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

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

a {
    color: var(--teal-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--sage-dark);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-align: center;
}

.btn-primary {
    background-color: var(--sage);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--sage-dark);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--teal-light);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background-color: var(--teal);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

/* ===== NAVIGATION BAR ===== */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.navbar-logo {
    flex: 1;
}

.logo-text {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--sage-dark);
    letter-spacing: 0.5px;
}

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

.nav-link {
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--sage);
}

.nav-cta {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--beige);
}

.nav-cta-button {
    background-color: var(--sage);
    color: var(--white);
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
}

.nav-cta-button:hover {
    background-color: var(--sage-dark);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--teal-light) 100%);
    overflow: hidden;
}

.hero-question {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.25rem;
    padding: 0 20px;
    color: #000000;
    font-size: 2.6rem;
    line-height: 1.2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 8px solid var(--sage-dark);
    box-shadow: 0 15px 40px rgba(125, 180, 168, 0.25);
    animation: fadeInLeft 0.8s ease-out;
}

.hero-content {
    animation: fadeInRight 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--sage-dark);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--teal-dark);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hero-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===== CREDENTIALS SECTION ===== */
.credentials {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.credential-card {
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--teal-light) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.credential-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.credential-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.section-title.centered {
    text-align: center;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 5rem 0;
    background-color: var(--cream);
}

.about-content {
    max-width: 900px;
    margin: 2rem auto;
    text-align: center;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* ===== MY APPROACH SECTION ===== */
.approach {
    padding: 5rem 0;
    background-color: var(--white);
}

.approach-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-card {
    background: linear-gradient(135deg, var(--blue-green) 0%, var(--teal) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    color: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.approach-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.approach-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.approach-card p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.7;
}

/* ===== COACHING AREAS SECTION ===== */
.coaching-areas {
    padding: 5rem 0;
    background-color: var(--cream);
}

.coaching-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.coaching-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.coaching-card {
    background-color: var(--white);
    padding: 2.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--sage);
}

.coaching-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.coaching-card h3 {
    color: var(--sage-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.coaching-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--teal-light) 100%);
}

.why-text {
    text-align: center;
    font-size: 1.4rem;
    color: var(--white);
    margin: 1rem 0 1.5rem 0;
    font-weight: 500;
}

.why-detail {
    text-align: center;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.why-button-container {
    text-align: center;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 5rem 0;
    background-color: var(--white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background-color: var(--cream);
    border: 2px solid var(--beige);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border-color: var(--sage);
    background-color: var(--cream-light);
    box-shadow: 0 8px 30px rgba(168, 197, 160, 0.2);
}

.pricing-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.pricing-card h3 {
    color: var(--teal-dark);
    margin-bottom: 1.5rem;
}

.pricing-amount {
    font-size: 2.5rem;
    color: var(--sage-dark);
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
}

.pricing-period {
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--beige);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* ===== FORMS SECTION ===== */
.forms {
    padding: 5rem 0;
    background-color: var(--cream);
}

.forms-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.forms-cta-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

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

.form-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.form-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.form-card h3 {
    color: var(--teal-dark);
    margin-bottom: 1rem;
}

.form-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== CONSULTATION SECTION ===== */
.consultation {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--blue-green) 100%);
}

.consultation-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
}

.calendly-placeholder {
    background-color: var(--white);
    border-radius: 18px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 18px 40px rgba(38, 67, 62, 0.12);
}

.booking-preview {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.6rem;
    align-items: center;
}

.booking-preview-left {
    text-align: left;
    padding: 0.8rem 0.4rem;
}

.booking-label {
    font-size: 0.82rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.booking-preview-left h3 {
    color: var(--text-dark);
    font-size: 1.85rem;
    margin-bottom: 0.8rem;
}

.booking-description {
    color: var(--text-light);
    max-width: 48ch;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.booking-detail-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.15rem;
}

.booking-detail-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #eff7f4 0%, #f8fbfa 100%);
    border: 1px solid var(--beige-warm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal-dark);
}

.booking-preview-btn {
    margin-bottom: 0.8rem;
}

.booking-preview-right {
    border-radius: 14px;
    background: linear-gradient(165deg, #f8fbfa 0%, #f4f8f6 100%);
    border: 1px solid #e5eeea;
    padding: 0.9rem;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.booking-preview-right:hover {
    transform: translateY(-2px);
    border-color: #d0e2db;
    box-shadow: 0 14px 28px rgba(67, 105, 99, 0.13);
}

.booking-preview-right:focus {
    outline: 2px solid var(--teal-dark);
    outline-offset: 2px;
}

.mini-calendar {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e5eeea;
    padding: 0.9rem;
}

.mini-calendar-header {
    display: flex;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.mini-calendar-month {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--sage-dark);
}

.mini-calendar-weekdays,
.mini-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.4rem;
}

.mini-calendar-weekdays {
    margin-bottom: 0.55rem;
}

.mini-calendar-weekdays span {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    color: #8b9892;
    font-weight: 700;
}

.mini-calendar-grid span {
    height: 30px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: #5f6f69;
    background: #f8fbfa;
    border: 1px solid #eef4f1;
}

.mini-calendar-grid span.muted {
    color: #b4c0bb;
    background: #fbfcfc;
}

.mini-calendar-grid span.soft {
    background: #edf6f2;
    color: #456e65;
}

.mini-calendar-grid span.highlight {
    background: linear-gradient(135deg, #d8ebe3 0%, #e8f4f0 100%);
    border-color: #c4ddd3;
    color: #335f55;
    font-weight: 700;
}

.mini-slots {
    margin-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mini-slots span {
    font-size: 0.76rem;
    color: #365f56;
    padding: 0.35rem 0.6rem;
    background: #eff7f3;
    border-radius: 999px;
    border: 1px solid #d7e8e1;
    font-weight: 600;
}

.calendly-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.consultation-button-container {
    text-align: center;
    margin-top: 2rem;
}

.calendly-support-text {
    color: rgba(255, 255, 255, 0.96);
    font-size: 1rem;
    margin: 0 auto 1rem;
    max-width: 620px;
    line-height: 1.7;
}

.calendly-popup-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f4fbf9 100%);
    color: var(--sage-dark);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    padding: 0.95rem 2.35rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.calendly-popup-btn:hover {
    color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.calendly-popup-btn:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.contact-form {
    background-color: var(--cream-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.optional {
    font-weight: normal;
    color: var(--text-light);
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--beige);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(168, 197, 160, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    background-color: var(--cream-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--sage-dark);
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-detail p {
    margin: 0;
}

.contact-detail a {
    color: var(--teal-dark);
}

.contact-detail a:hover {
    color: var(--sage-dark);
}

/* ===== MORE ABOUT SECTION ===== */
.more-about {
    padding: 5rem 0;
    background-color: var(--cream);
}

.more-about-content {
    max-width: 900px;
    margin: 2rem auto;
    text-align: center;
}

.more-about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* ===== CLOSING SECTION ===== */
.closing {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--teal-light) 100%);
    color: var(--white);
}

.closing-content {
    text-align: center;
    margin: 2rem 0 2.5rem;
}

.closing-line {
    font-size: 1.5rem;
    margin: 0.8rem 0;
    color: var(--white);
    font-style: italic;
    font-weight: 300;
}

.closing-message {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 2rem auto;
    line-height: 1.8;
}

.closing-button {
    text-align: center;
    margin-top: 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--sage-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--sage-light);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--sage);
    border-radius: 50%;
    color: var(--white);
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.social-icon:hover {
    background-color: var(--teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

/* ===== INTAKE MODAL ===== */
.intake-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2500;
}

.intake-modal.is-open {
    display: block;
}

.intake-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(32, 43, 40, 0.62);
}

.intake-modal-dialog {
    position: relative;
    width: min(980px, 94vw);
    max-height: 94vh;
    margin: 3vh auto;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.intake-modal-header {
    padding: 1.4rem 3.5rem 1rem 1.4rem;
    border-bottom: 1px solid var(--beige);
}

.intake-modal-header h2 {
    margin-bottom: 0.35rem;
    font-size: 1.8rem;
}

.intake-modal-header p {
    margin-bottom: 0;
}

.intake-modal-close {
    position: absolute;
    top: 0.65rem;
    right: 0.9rem;
    border: none;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
}

.intake-modal-body {
    padding: 1.2rem 1.4rem 1.4rem;
    overflow-y: auto;
}

.intake-section {
    border: 1px solid var(--beige-warm);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #fdfdfc;
}

.intake-section legend {
    font-family: 'Georgia', 'Garamond', serif;
    font-size: 1.05rem;
    color: var(--sage-dark);
    padding: 0 0.4rem;
}

.intake-grid {
    display: grid;
    gap: 1rem;
}

.intake-grid.two-col {
    grid-template-columns: 1fr 1fr;
}

.intake-field {
    margin-bottom: 0.8rem;
}

.intake-field:last-child {
    margin-bottom: 0;
}

.intake-field label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.intake-field input,
.intake-field select,
.intake-field textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--beige);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
}

.intake-field input:focus,
.intake-field select:focus,
.intake-field textarea:focus,
.intake-modal-close:focus,
.intake-actions .btn:focus {
    outline: 2px solid var(--teal-dark);
    outline-offset: 2px;
}

.radio-stack,
.checkbox-stack {
    display: grid;
    gap: 0.7rem;
}

.radio-stack label,
.checkbox-stack label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.97rem;
    color: var(--text-dark);
}

.radio-stack input,
.checkbox-stack input {
    margin-top: 0.2rem;
}

.agreement-summary-box {
    border: 1px solid var(--beige);
    border-radius: 10px;
    padding: 1rem;
    background: var(--cream-light);
}

.agreement-summary-box h3 {
    color: var(--sage-dark);
    margin-bottom: 0.7rem;
}

.agreement-summary-box ul {
    margin-left: 1.2rem;
}

.agreement-summary-box li {
    margin-bottom: 0.45rem;
    color: var(--text-light);
}

.field-error {
    min-height: 1.1em;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: #b64141;
}

.input-error {
    border-color: #b64141 !important;
    background: #fff8f8 !important;
}

.intake-form-message {
    min-height: 1.4rem;
    margin: 0.2rem 0 0.8rem;
    font-weight: 600;
}

.intake-form-message.success {
    color: #2f7e4d;
}

.intake-form-message.error {
    color: #b64141;
}

.intake-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .navbar-container {
        padding: 0.8rem 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 1rem;
        padding: 1.5rem 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 20px;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-image {
        order: 2;
    }

    .hero-content {
        order: 1;
    }

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

    .hero-question {
        font-size: 2rem;
        margin-bottom: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

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

    .coaching-cards-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-buttons,
    .hero-buttons {
        flex-direction: column;
    }

    .pricing-buttons .btn,
    .hero-buttons .btn {
        width: 100%;
    }

    .forms-cards {
        grid-template-columns: 1fr;
    }

    .intake-modal-dialog {
        width: 96vw;
        max-height: 96vh;
        margin: 2vh auto;
    }

    .intake-grid.two-col {
        grid-template-columns: 1fr;
    }

    .closing-line {
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 15px;
    }

    .calendly-placeholder {
        padding: 2rem;
        min-height: 250px;
    }

    .booking-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .booking-preview-left h3 {
        font-size: 1.55rem;
    }

    .calendly-support-text {
        font-size: 0.95rem;
        padding: 0 0.4rem;
    }

    .booking-preview-left {
        text-align: center;
        padding: 0;
    }

    .booking-description {
        max-width: none;
    }

    .booking-detail-row {
        justify-content: center;
    }

    .booking-preview-btn {
        width: 100%;
    }

    .mini-slots {
        justify-content: center;
    }

    .contact-form,
    .contact-info {
        padding: 1.6rem;
    }

    .intake-modal-header {
        padding: 1.1rem 2.9rem 0.85rem 1.1rem;
    }

    .intake-modal-body {
        padding: 1rem 1.1rem 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1rem;
    }

    p {
        font-size: 0.95rem;
    }

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

    .hero-question {
        font-size: 1.45rem;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

    .nav-menu {
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .navbar-container {
        padding: 0.75rem 14px;
    }

    .logo-text {
        font-size: 1.02rem;
    }

    .pricing-amount {
        font-size: 1.8rem;
    }

    .closing-line {
        font-size: 1rem;
    }

    .credential-card h3,
    .approach-card h3,
    .coaching-card h3,
    .form-card h3 {
        font-size: 1rem;
    }

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

    .intake-modal-header h2 {
        font-size: 1.45rem;
    }

    .intake-actions {
        flex-direction: column;
    }

    .intake-actions .btn {
        width: 100%;
    }

    .calendly-popup-btn {
        width: 100%;
        max-width: 320px;
    }

    .calendly-placeholder {
        padding: 1rem;
        min-height: auto;
    }

    .booking-preview-left h3 {
        font-size: 1.3rem;
    }

    .booking-detail-row {
        gap: 0.45rem;
    }

    .booking-detail-pill {
        font-size: 0.75rem;
        padding: 0.32rem 0.58rem;
    }

    .booking-preview-right {
        padding: 0.7rem;
    }

    .mini-calendar {
        padding: 0.65rem;
    }

    .mini-calendar-weekdays,
    .mini-calendar-grid {
        gap: 0.28rem;
    }

    .mini-calendar-weekdays span {
        font-size: 0.64rem;
    }

    .mini-calendar-grid span {
        height: 24px;
        font-size: 0.7rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.1rem;
    }
}
