/* ============================================
   Noelle Lutton Counseling - Redesign
   Nature-inspired palette:
   Forest Green, Warm Gold, Earth Tones, Cream
   ============================================ */

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Blue — trust, calm, security (primary) */
    --plum: #6e94ab;
    --plum-dark: #4e7389;
    --plum-light: #90b1c3;
    /* Green — growth, healing, balance (accent) */
    --gold: #89a894;
    --gold-light: #a5bfae;
    --gold-dark: #6f8f7a;
    /* Soft sage for tertiary touches */
    --sage: #b0c4b8;
    --sage-light: #c5d5cb;
    --sage-dark: #95ab9e;
    /* Warm neutrals — calm, simplicity, elegance */
    --cream: #f7f5f2;
    --cream-dark: #ece8e2;
    --white: #ffffff;
    --text-dark: #3a3d3f;
    --text-medium: #5e6365;
    --text-light: #8a8e90;
    --border: #dcd8d2;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.09);
    --radius: 6px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--plum);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }

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

a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

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

.container--narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--plum);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

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

.logo:hover { color: var(--plum); }

.logo-img {
    height: 60px;
    width: auto;
}

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

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--plum);
    line-height: 1.2;
}

.logo-title {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

.nav-menu > li > a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    transform: scaleX(1);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--plum);
}

.dropdown { position: relative; }

.dropdown-arrow {
    font-size: 0.6rem;
    margin-left: 4px;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    border-top: 3px solid var(--gold);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--cream);
    color: var(--plum);
}

.nav-cta {
    margin-left: 0.5rem;
}

.nav-cta a {
    background: var(--plum);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius);
    font-size: 0.9rem !important;
}

.nav-cta a::after { display: none !important; }

.nav-cta a:hover {
    background: var(--plum-dark);
    color: var(--white) !important;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--plum);
    transition: var(--transition);
    border-radius: 2px;
}

.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(5px, -5px);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

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

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--plum);
    border-color: var(--plum);
}

.btn-outline:hover {
    background: var(--plum);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--plum);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--plum);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--plum);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1rem 2.8rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: var(--white);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 0;
}

.hero-text h1 {
    color: var(--plum-dark);
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.hero-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

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

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 5rem 0;
}

.section--cream {
    background: var(--cream);
}

.section--plum {
    background: var(--plum);
    color: var(--white);
}

.section--plum h2,
.section--plum h3 {
    color: var(--white);
}

.section--sage {
    background: var(--sage);
    color: var(--white);
}

.section--sage h2,
.section--sage h3 {
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.section--plum .section-header p,
.section--sage .section-header p {
    color: rgba(255,255,255,0.85);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section--plum .section-label {
    color: var(--gold-light);
}

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card-header {
    background: var(--plum);
    color: var(--white);
    padding: 2rem;
}

.service-card.featured .service-card-header {
    background: linear-gradient(135deg, var(--sage-dark), var(--sage));
}

.service-card-header h3 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.6rem;
}

.service-card-header p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 0.95rem;
}

.service-card-body {
    padding: 2rem;
}

.service-card-body p {
    color: var(--text-medium);
}

.check-list {
    list-style: none;
    margin: 1.25rem 0;
}

.check-list li {
    padding: 0.4rem 0 0.4rem 1.75rem;
    position: relative;
    color: var(--text-dark);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
}

/* ============================================
   About Preview
   ============================================ */
.about-preview-grid {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 4rem;
    align-items: center;
}

.about-preview-text h2 {
    margin-bottom: 1.5rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-preview-image {
    position: relative;
}

.about-preview-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-preview-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 3px solid var(--sage);
    border-radius: var(--radius);
    z-index: -1;
}

/* ============================================
   Approach Cards
   ============================================ */
.approaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.approach-tile {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold);
    transition: all var(--transition);
}

.approach-tile:nth-child(2) {
    border-top-color: var(--sage);
}

.approach-tile:nth-child(3) {
    border-top-color: var(--plum);
}

.approach-tile:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.approach-tile h3 {
    margin-bottom: 1rem;
}

.approach-tile p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    padding: 4rem 0;
    text-align: center;
}

.cta-banner h2 {
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-banner .btn {
    margin: 0 0.5rem;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: var(--plum);
    color: var(--white);
    padding: 3.5rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header .page-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
}

/* ============================================
   About Page
   ============================================ */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 4rem 0;
}

.about-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.about-sidebar img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.about-credentials {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
}

.about-credentials h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.about-credentials ul {
    list-style: none;
}

.about-credentials li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-medium);
    padding-left: 1.25rem;
    position: relative;
}

.about-credentials li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.about-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cream-dark);
}

.about-body h2:first-child {
    margin-top: 0;
}

.content-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.content-list li {
    padding: 0.45rem 0 0.45rem 1.75rem;
    position: relative;
    color: var(--text-dark);
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
}

/* ============================================
   Services Page
   ============================================ */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.service-block {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.service-block-header {
    background: var(--plum);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-block.featured .service-block-header {
    background: linear-gradient(135deg, var(--sage-dark), var(--sage));
}

.service-block-header h2 {
    color: var(--white);
    margin: 0;
}

.service-block-header p {
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.service-block-body {
    padding: 2.5rem;
}

.service-block-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-block-body h3:first-child {
    margin-top: 0;
}

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

.option-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--plum);
}

.option-card h3 {
    margin-top: 0;
}

.rate-amount {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 0.25rem;
}

/* ============================================
   Service Detail Pages
   ============================================ */
.service-detail-page {
    padding: 4rem 0;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-intro {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cream-dark);
}

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

.specialty-item {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--radius);
    border-top: 4px solid var(--plum);
}

.specialty-item:nth-child(even) {
    border-top-color: var(--sage);
}

.specialty-item h3 {
    margin-bottom: 0.75rem;
}

.specialty-item p {
    color: var(--text-medium);
    margin: 0;
}

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

.concern-item {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
}

.concern-item:nth-child(even) {
    border-left-color: var(--sage);
}

.concern-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.concern-item p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.95rem;
}

/* EFT Stages */
.eft-stages {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.stage-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.stage-number {
    width: 56px;
    height: 56px;
    background: var(--plum);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.stage-content h3 {
    margin-bottom: 0.5rem;
}

.stage-content p {
    color: var(--text-medium);
}

/* Highlight Box */
.highlight-box {
    background: var(--plum);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
}

.highlight-box h2 {
    color: var(--white);
}

.highlight-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.highlight-box .btn-white:hover {
    color: var(--plum);
}

/* ============================================
   Approach Page
   ============================================ */
.approach-page {
    padding: 4rem 0;
}

.approach-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.approach-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.approach-detail-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.approach-detail-card.featured {
    border: 2px solid var(--plum);
}

.approach-detail-header {
    background: var(--cream);
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.approach-detail-card.featured .approach-detail-header {
    background: var(--plum);
}

.approach-detail-card.featured .approach-detail-header h2 {
    color: var(--white);
}

.approach-detail-header h2 {
    margin: 0;
}

.approach-badge {
    background: var(--gold);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.approach-detail-body {
    padding: 2.5rem;
}

.approach-detail-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.approach-detail-body h3:first-child {
    margin-top: 0;
}

.approach-integration {
    background: var(--cream);
    padding: 3rem;
    border-radius: var(--radius);
    margin-top: 3rem;
}

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

.integration-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--plum);
}

.integration-item:nth-child(even) {
    border-top-color: var(--sage);
}

.integration-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.integration-item p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-page {
    padding: 4rem 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

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

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.contact-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cream-dark);
}

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

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.contact-detail a {
    font-size: 1.05rem;
    font-weight: 500;
}

.session-option {
    margin-bottom: 1.5rem;
}

.session-option:last-child {
    margin-bottom: 0;
}

.session-option h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.session-option p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.session-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.contact-form-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cream-dark);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--plum);
}

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

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Map placeholder */
.map-section {
    margin-top: 3rem;
}

.map-section h2 {
    margin-bottom: 1.5rem;
}

.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-embed iframe {
    display: block;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--plum-dark);
    color: var(--white);
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer h3,
.footer h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-img {
    height: 140px;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-contact p,
.footer-contact a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        min-height: 500px;
    }

    .hero-text {
        padding: 3rem 2rem 3rem 0;
    }

    .about-preview-grid {
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    /* Nav */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transform: translateX(-100%);
        transition: transform var(--transition);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu > li > a {
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
    }

    .nav-cta a {
        display: block;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding-left: 1rem;
    }

    .dropdown-arrow { display: none; }

    .mobile-menu-toggle {
        z-index: 1000;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-text {
        padding: 3rem 0;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-height: 400px;
        overflow: hidden;
    }

    /* Sections */
    .section {
        padding: 3.5rem 0;
    }

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

    .about-preview-grid {
        grid-template-columns: 1fr;
    }

    .about-preview-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }

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

    /* About page */
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-sidebar {
        position: static;
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        position: static;
    }

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

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Stages */
    .stage-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }
}

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

    .stats-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .specialties-grid,
    .concerns-grid {
        grid-template-columns: 1fr;
    }

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

    .highlight-box {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   Blog
   ============================================ */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.blog-card-body {
    padding: 2rem;
}

.blog-card-date {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-card h2 a {
    color: var(--plum-dark);
}

.blog-card h2 a:hover {
    color: var(--plum);
}

.blog-card p {
    color: var(--text-medium);
}

.blog-post-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-post-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cream-dark);
}

.blog-post-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content p {
    color: var(--text-dark);
}

.blog-post-content a {
    color: var(--plum);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-post-content a:hover {
    color: var(--plum-dark);
}

.blog-post-content strong {
    color: var(--text-dark);
}

/* ============================================
   FAQ Page
   ============================================ */
.faq-page {
    padding: 4rem 0;
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    font-size: 1.6rem;
    color: var(--plum-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cream-dark);
}

.faq-item {
    border: 1px solid var(--cream-dark);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    gap: 1rem;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: var(--cream);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--plum);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    background-color: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 1.25rem 1.5rem;
}

.faq-answer p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer h4 {
    color: var(--plum-dark);
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.faq-answer h4:first-child {
    margin-top: 0;
}

.faq-answer ul {
    margin: 0.75rem 0 1rem 1.5rem;
    color: var(--text-medium);
}

.faq-answer ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-answer a {
    color: var(--plum);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer a:hover {
    color: var(--plum-dark);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem 1.25rem;
    }

    .faq-section h2 {
        font-size: 1.35rem;
    }
}

/* ============================================
   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);
}
