/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Green Palette (NeuroClarity-inspired) */
    --primary: #2C5F2D;
    --primary-dark: #1a3d1b;
    --primary-light: #3a7a3c;
    --accent: #97BC62;
    --accent-warm: #B8D89A;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #fafaf8;
    --bg-tan: #e8f3e9;
    --border: #e5e5e5;
    --shadow: rgba(44, 95, 45, 0.12);

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Container */
    --container-max: 1200px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3.75rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.15;
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.25;
}

h3 {
    font-size: 1.65rem;
    font-weight: 500;
}

p {
    margin-bottom: var(--spacing-sm);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: var(--spacing-sm) 0;
    z-index: 1000;
    box-shadow: 0 2px 8px var(--shadow);
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.nav {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

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

.btn-primary-nav {
    background-color: var(--primary);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-primary-nav:hover {
    background-color: var(--primary-dark);
}

.btn-secondary-nav {
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-nav:hover {
    background-color: rgba(44, 95, 45, 0.08);
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--border);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        rgba(45, 45, 45, 0.3) 0%,
        rgba(45, 45, 45, 0.75) 35%,
        rgba(123, 104, 85, 0.85) 100%);
    z-index: 1;
}

.hero-photo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 33.333%;
    height: 100%;
    background-image: url('chris-butler.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.hero-photo-spacer {
    /* Just creates space for the background photo */
}

.hero-content {
    text-align: left;
}

.hero h1 {
    margin-bottom: var(--spacing-sm);
    color: white;
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    line-height: 1.6;
}

.hero-clinic-info {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 6px;
    color: var(--text-dark);
    display: inline-block;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

/* Sections */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: var(--spacing-sm) auto var(--spacing-md);
    border-radius: 2px;
}

/* About Section */
.about {
    background-color: var(--bg-tan);
    padding: var(--spacing-xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.care-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.care-step {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--spacing-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.care-step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.care-step p {
    margin: 0;
    color: var(--text-medium);
}

.step-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.about-subtext {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
}

.about-text .btn-primary {
    margin-top: var(--spacing-md);
}

.about-photo {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.insight-card {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-lg);
    border: 1px solid var(--border);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}

.insight-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm) 0;
}

.insight-list li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.insight-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1;
}

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

/* Services Section */
.services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    background-color: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

.service-icon {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

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

/* Clinic Info Section */
.clinic-info {
    background-color: var(--primary);
    color: white;
    padding: var(--spacing-lg) 0;
}

.clinic-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.clinic-details h3 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.clinic-schedule {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.clinic-address {
    font-size: 1rem;
    opacity: 0.9;
}

.schedule-instructions {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

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

.clinic-action .btn-primary:hover {
    background-color: var(--bg-cream);
    border-color: var(--bg-cream);
}

/* Community Section */
.community {
    background-color: var(--bg-white);
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
}

.community-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.community-benefits {
    list-style: none;
    margin: var(--spacing-md) 0;
    padding: 0;
}

.community-benefits li {
    padding: var(--spacing-sm) 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.community-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
}

.contact-card h3 {
    margin-bottom: var(--spacing-sm);
}

.contact-card > p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.contact-methods {
    margin: var(--spacing-md) 0;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background-color: var(--primary);
    color: white;
}

.contact-method svg {
    flex-shrink: 0;
}

.insurance-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: var(--spacing-md);
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #3a3a3a;
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-column h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-address {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--spacing-sm);
}

.footer-phone a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-phone a:hover {
    color: white;
}

.footer-schedule {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    margin-top: var(--spacing-xs);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .subpage-hero {
        padding: var(--spacing-lg) 0;
    }

    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .nav {
        display: none;
    }

    .hero {
        padding: var(--spacing-lg) 0;
    }

    .hero-photo-bg {
        width: 100%;
        height: 300px;
        position: relative;
        background-size: contain;
        background-position: top center;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
            rgba(45, 45, 45, 0.4) 0%,
            rgba(45, 45, 45, 0.85) 50%,
            rgba(123, 104, 85, 0.9) 100%);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .hero-photo-spacer {
        display: none;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

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

    .hero-clinic-info {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

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

    .contact-grid,
    .feature-grid,
    .detail-grid,
    .care-steps {
        grid-template-columns: 1fr;
    }

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

    .clinic-card {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-photo {
        order: -1;
    }

    .care-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .insurance-list {
        font-size: 1rem;
    }

    .contact-method {
        font-size: 1.1rem;
        padding: var(--spacing-sm);
    }

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

    .nav {
        gap: var(--spacing-sm);
    }

    .nav a {
        font-size: 0.85rem;
    }
}

/* News Sidebar */
.news-sidebar {
    position: fixed;
    top: 80px;
    right: 0;
    width: 320px;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    border-left: 1px solid var(--border);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
    z-index: 900;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidebar-section {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-section:last-child {
    border-bottom: none;
    flex: 1;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sidebar-header h3 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin: 0;
}

.sidebar-header svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Announcements */
.announcement-item {
    background-color: var(--bg-tan);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.announcement-item:last-child {
    margin-bottom: 0;
}

.announcement-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.announcement-badge.new {
    background-color: var(--primary);
    color: white;
}

.announcement-badge.event {
    background-color: var(--accent);
    color: var(--text-dark);
}

.announcement-badge.update {
    background-color: #6b7280;
    color: white;
}

.announcement-item h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.announcement-item p {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

.announcement-date {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Community Feed */
.community-feed-placeholder {
    background-color: var(--bg-light);
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 2rem 1rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.community-feed-placeholder svg {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    opacity: 0.5;
}

.community-feed-placeholder p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.community-feed-placeholder a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.community-feed-placeholder a:hover {
    text-decoration: underline;
}

/* Community Feed Embed Container */
.community-feed-embed {
    min-height: 300px;
}

.community-feed-embed iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
}

/* Subpage + Utility Layouts */
.subpage-hero {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background: var(--bg-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subpage-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(151, 188, 98, 0.2), transparent 45%);
    pointer-events: none;
}

.subpage-hero .container {
    position: relative;
    z-index: 1;
}

.subpage-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.subpage-hero .lead {
    max-width: 720px;
    margin: 0 auto;
}

.hero-stats {
    margin-top: var(--spacing-lg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
}

.hero-stat {
    background-color: white;
    border-radius: 12px;
    padding: var(--spacing-sm);
    border: 1px solid var(--border);
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    display: block;
}

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

.subpage-section {
    padding: var(--spacing-xl) 0;
}

.subpage-section.light {
    background: var(--bg-light);
}

.subpage-section .section-header {
    text-align: center;
}

.feature-grid,
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.feature-card h3 {
    margin-bottom: var(--spacing-xs);
}

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

.list-check {
    list-style: none;
    margin: var(--spacing-sm) 0 0;
    padding: 0;
}

.list-check li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.step-list li {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.cta-panel {
    background: var(--bg-tan);
    border-radius: 16px;
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.contact-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: var(--spacing-md);
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
    margin-bottom: var(--spacing-xs);
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
    align-items: center;
}

.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    background: var(--bg-tan);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.map-embed iframe {
    border: 0;
    border-radius: 16px;
    width: 100%;
    min-height: 360px;
}

.contact-form {
    display: grid;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.contact-form label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-sans);
    background: var(--bg-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.15);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    justify-self: flex-start;
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    position: fixed;
    top: 100px;
    right: 320px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 901;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.15);
}

.sidebar-toggle:hover {
    background-color: var(--primary-dark);
}

.sidebar-toggle.collapsed {
    right: 0;
}

.news-sidebar.collapsed {
    transform: translateX(100%);
}

/* Adjust main content when sidebar is open */
body.sidebar-open {
    margin-right: 320px;
}

/* Responsive - hide sidebar on smaller screens */
@media (max-width: 1200px) {
    .news-sidebar {
        display: none;
    }

    .sidebar-toggle {
        display: none;
    }

    body.sidebar-open {
        margin-right: 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
a:focus, button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header, .footer {
        display: none;
    }
}
