/* CA-SA of AST Website Styles */
/* Color Scheme: Navy Blue (#1a3a5c), Teal (#00a8a8), White, Dark Gray (#333) */

:root {
    --navy-blue: #1a3a5c;
    --teal: #00a8a8;
    --teal-dark: #008888;
    --white: #ffffff;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --border-gray: #dddddd;
    --success-green: #28a745;
    --error-red: #dc3545;
    --warning-yellow: #ffc107;
}

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

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }

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

a:hover, a:focus {
    color: var(--teal-dark);
    text-decoration: underline;
}

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

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

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--medium-gray);
}

header {
    background: linear-gradient(180deg, #122f52 0%, #1a3f6e 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease, background 0.3s ease;
    /* needed so the mobile dropdown anchors to this element */
    isolation: isolate;
}

header.scrolled {
    background: linear-gradient(180deg, #0e2540 0%, #163655 100%);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.navbar {
    padding: 0;
    height: 84px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    padding-left: 0.25rem;
}

.logo-text {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-decoration: none;
    display: block;
    transition: opacity 0.2s ease;
}

.logo-text:hover { opacity: 0.88; }

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

.nav-menu > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-menu > li > a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    padding: 0 1.1rem;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-menu > li > a::after {
    content: "";
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 0;
    height: 2.5px;
    background: #00a8a8;
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-menu > li > a:hover {
    color: #ffffff;
    transform: translateY(-1px);
    text-decoration: none;
}

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

.nav-menu > li > a[aria-current="page"] {
    color: #ffffff;
}

.nav-menu > li > a[aria-current="page"]::after {
    transform: scaleX(1);
    background: #00c8c8;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background: #ffffff;
    min-width: 210px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
    border-radius: 0 0 8px 8px;
    border-top: 2px solid #00a8a8;
    padding: 0.4rem 0;
    list-style: none;
    z-index: 999;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #2c3e50;
    padding: 0.7rem 1.4rem;
    white-space: nowrap;
    font-size: 0.88rem;
    font-weight: 500;
    display: block;
    transition: background 0.18s ease, color 0.18s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
    background: #f0f7f7;
    color: #00a8a8;
    padding-left: 1.75rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

main {
    min-height: calc(100vh - 400px);
}

.hero {
    background:
        linear-gradient(to bottom, rgba(26, 58, 92, 0.78) 0%, rgba(0, 168, 168, 0.65) 100%),
        url('/images/hero-bg.jpg') center center / cover no-repeat;
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

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

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
    color: var(--white);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 168, 0.3);
}

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

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--white);
    color: var(--navy-blue);
    text-decoration: none;
}

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

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--navy-blue);
    color: var(--white);
    text-decoration: none;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.intro-section,
.content-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

.section-divider {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-gray);
}

.anniversary-banner {
    background: linear-gradient(135deg, #1a3a5c 0%, #2a4a6c 100%);
    color: var(--white);
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}

.banner-badge {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.badge-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-info h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

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

.testimonials-section {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--teal);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--navy-blue);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.featured-event {
    position: relative;
    border: 2px solid var(--teal);
    background: linear-gradient(to right, rgba(0, 168, 168, 0.05), transparent);
}

.highlights-section {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

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

.highlight-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    color: var(--teal);
    margin-bottom: 1rem;
}

.highlight-card h3 {
    margin-bottom: 1rem;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--teal);
    font-weight: 600;
}

.upcoming-events-section {
    padding: 4rem 0;
}

/* ── NOREX FEATURED SPOTLIGHT ── */
.featured-spotlight-section {
    padding: 5rem 0;
    background: #f7f9fc;
}

.spotlight-eyebrow {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 2rem;
}

.spotlight-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
}

.spotlight-img-col {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

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

.spotlight-kicker {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 0.85rem;
}

.spotlight-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy-blue);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.spotlight-meta-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.spotlight-meta-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.9rem;
    color: #444;
    font-weight: 500;
}

.spotlight-meta-pill svg {
    color: var(--teal);
    flex-shrink: 0;
}

.spotlight-desc {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.spotlight-pricing {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.spl-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1.5px solid #dde4ee;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    min-width: 72px;
}

.spl-price.ce {
    border-color: var(--teal);
    background: rgba(0,168,168,0.06);
}

.spl-amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy-blue);
    line-height: 1;
}

.spl-price.ce .spl-amount {
    color: var(--teal);
}

.spl-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #777;
    margin-top: 4px;
    white-space: nowrap;
}

.spotlight-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-outline-dark {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--navy-blue);
    color: var(--navy-blue);
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.btn-outline-dark:hover {
    background: var(--navy-blue);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 860px) {
    .spotlight-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .spotlight-title {
        font-size: 1.8rem;
    }
}

.events-preview {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.event-card {
    display: flex;
    gap: 2rem;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    min-width: 100px;
    text-align: center;
}

.event-date .month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .year {
    font-size: 0.875rem;
}

.event-info h3 {
    margin-bottom: 0.5rem;
}

.event-location {
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.event-description {
    margin-bottom: 1rem;
}

.newsletter-section {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 4rem 0;
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-form {
    margin: 2rem 0 1rem;
}

.newsletter-form.inline-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

.form-note {
    font-size: 0.875rem;
    opacity: 0.9;
}

.quick-links-section {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

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

.quick-link-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.quick-link-card:hover,
.quick-link-card:focus {
    border-color: var(--teal);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quick-link-card h3 {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.quick-link-card p {
    color: var(--medium-gray);
    margin: 0;
}

.page-header {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

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

.page-header .lead {
    color: rgba(255, 255, 255, 0.85);
}

.about-content,
.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.impact-stats-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #2a4a6c 100%);
    color: var(--white);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--teal);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
}

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

.feature-item h3 {
    color: var(--teal);
    margin-bottom: 0.75rem;
}

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

.impact-item {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-item h4 {
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
}

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

.reach-item {
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-left: 4px solid var(--teal);
    border-radius: 4px;
}

.reach-item h4 {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

/* ── Events Page Clean Header ── */
.ev-header {
    background: #fff;
    border-bottom: 1px solid #e8ecf2;
    padding: 4rem 0 3rem;
    text-align: center;
}
.ev-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}
.ev-kicker-pill {
    display: inline-block;
    background: #e8f5f5;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.ev-h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--navy-blue);
    margin: 0 0 0.75rem;
    line-height: 1.1;
}
.ev-subhead {
    font-size: 1.1rem;
    color: #5a6778;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── Dodgers Night Hero ── */
.dodgers-hero {
    position: relative;
    min-height: 480px;
    background: url('/images/dodgers-night.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.dodgers-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,10,40,0.82) 0%, rgba(0,30,80,0.68) 60%, rgba(0,10,40,0.55) 100%);
}
.dodgers-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 3rem 2rem;
    max-width: 700px;
}
.dodgers-label {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.dodgers-title {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.dodgers-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.btn-dodgers {
    display: inline-block;
    background: #005a9c;
    color: #fff;
    border: 2px solid #fff;
    padding: 0.85rem 2.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.5px;
}
.btn-dodgers:hover {
    background: #003f7a;
    transform: translateY(-2px);
}

/* ── Dodgers Registration Modal ── */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,10,40,0.75);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-backdrop.active {
    display: flex;
}
.modal-card {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
}
.modal-close:hover { color: #111; }
.modal-event-label {
    display: inline-block;
    background: #005a9c;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}
.modal-header h3 {
    font-size: 1.6rem;
    color: var(--navy-blue);
    margin: 0 0 0.4rem;
}
.modal-header p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.modal-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.modal-field { display: flex; flex-direction: column; gap: 0.3rem; }
.modal-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}
.modal-field input {
    padding: 0.65rem 0.9rem;
    border: 1.5px solid #d0d5dd;
    border-radius: 8px;
    font-size: 0.97rem;
    color: #111;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}
.modal-field input:focus { border-color: var(--teal); }
.btn-dodgers-modal {
    display: block;
    width: 100%;
    text-align: center;
    background: #005a9c;
    color: #fff;
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: background 0.2s;
    letter-spacing: 0.3px;
}
.btn-dodgers-modal:hover { background: #003f7a; color: #fff; }

/* ── Northern Exposure Featured ── */
.northern-exposure-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f0 100%);
    padding: 3.5rem 0;
    border-top: 4px solid var(--teal);
    border-bottom: 4px solid var(--teal);
}
.northern-featured-card {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 32px rgba(26,58,92,0.10);
    border: 1px solid #c8e6e6;
}
.northern-badge-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.northern-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: var(--navy-blue);
    color: #fff;
    border-radius: 12px;
    padding: 0.5rem;
}
.ne-month { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.ne-day   { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.ne-year  { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.northern-ce-pill {
    background: var(--teal);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    text-align: center;
    white-space: nowrap;
}
.northern-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.4rem;
}
.northern-title {
    font-size: 1.9rem;
    color: var(--navy-blue);
    margin: 0 0 0.75rem;
    font-weight: 800;
}
.northern-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
}
.northern-content > p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.northern-tickets {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.ticket-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f4f8ff;
    border: 1.5px solid #c8e0f7;
    border-radius: 10px;
    padding: 0.6rem 1.1rem;
    min-width: 100px;
}
.ticket-label { font-size: 0.75rem; font-weight: 600; color: #555; }
.ticket-price { font-size: 1.3rem; font-weight: 800; color: var(--navy-blue); }
.northern-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Featured Events Two-Column Grid ── */
.featured-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: start;
}
.dodgers-date-badge {
    background: #003f7a;
}
.dodgers-ce-pill {
    background: #005a9c;
}

@media (max-width: 900px) {
    .featured-events-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .northern-featured-card { flex-direction: column; }
    .northern-badge-col { flex-direction: row; align-items: center; }
    .modal-form-row { grid-template-columns: 1fr; }
}

/* ── CTA Box ── */
.cta-box {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.cta-box h3 {
    margin-bottom: 1rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.mission-statement {
    background-color: var(--light-gray);
    padding: 2rem;
    border-left: 4px solid var(--teal);
    margin: 2rem 0;
}

.mission-statement ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.mission-statement li {
    margin-bottom: 0.5rem;
}

.leadership-quote {
    background-color: var(--light-gray);
    padding: 2rem;
    border-left: 4px solid var(--teal);
    margin: 2rem 0;
    border-radius: 4px;
}

.leadership-quote blockquote {
    margin: 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--navy-blue);
    line-height: 1.6;
}

.leadership-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--teal);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.achievement-item {
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.achievement-item h4 {
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
}

.photo-timeline {
    margin: 2rem 0 3rem;
}

.photo-timeline-section {
    margin-bottom: 3rem;
}

.photo-timeline-section h4 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.photo-placeholder {
    background-color: var(--light-gray);
    border: 2px dashed var(--border-gray);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.photo-placeholder:hover {
    border-color: var(--teal);
}

.photo-icon {
    color: var(--medium-gray);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.photo-placeholder p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.photo-note {
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--teal);
}

.timeline-item {
    position: relative;
    padding-left: 120px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    background-color: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: 4px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.value-card {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--teal);
}

.value-card h3 {
    color: var(--teal);
    margin-bottom: 0.5rem;
}

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

.board-member {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
}

.member-photo {
    background-color: var(--light-gray);
    text-align: center;
    padding: 2rem;
}

.placeholder-photo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background-color: var(--border-gray);
    border-radius: 50%;
    color: var(--medium-gray);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: var(--teal);
    margin-bottom: 1rem;
}

.board-note {
    background-color: #fff3cd;
    padding: 1rem;
    border-left: 4px solid var(--warning-yellow);
    margin: 2rem 0;
}

.involvement-options {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.involvement-card {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem;
}

.involvement-card h3 {
    margin-bottom: 1rem;
}

.involvement-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.involvement-card li {
    margin-bottom: 0.5rem;
}

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

.benefit-item {
    text-align: center;
}

.benefit-item h4 {
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.events-list {
    margin: 2rem 0;
}

.event-item {
    display: flex;
    gap: 2rem;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.event-item-date {
    display: none;
}

.event-date-inline {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
}

.event-item-date .month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-item-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-item-date .year {
    font-size: 0.875rem;
}

.event-item-content {
    flex: 1;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.event-meta span {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.event-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.gallery-grid,
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    text-align: center;
}

.gallery-placeholder {
    background-color: var(--light-gray);
    border: 2px dashed var(--border-gray);
    border-radius: 8px;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: var(--medium-gray);
}

.gallery-caption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.gallery-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.gallery-note {
    text-align: center;
    color: var(--medium-gray);
    font-style: italic;
    margin-top: 2rem;
}

.past-events-section {
    margin-bottom: 3rem;
}

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

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

.resource-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

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

.resource-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.certification-info,
.legislative-content {
    max-width: 900px;
    margin: 0 auto;
}

.certification-info ul,
.legislative-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.alert-box {
    background-color: #d1ecf1;
    border-left: 4px solid var(--teal);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.alert-box h4 {
    color: var(--teal);
    margin-bottom: 0.5rem;
}

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

.link-card {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.link-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.link-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.external-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--teal);
    font-weight: 600;
}

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

.contact-form {
    max-width: 600px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.required {
    color: var(--error-red);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.1);
}

small {
    display: block;
    margin-top: 0.25rem;
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.form-actions {
    margin-top: 2rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    margin: 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.contact-info-card {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.info-note {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-btn:hover,
.social-link-btn:focus {
    background-color: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
    text-decoration: none;
}

.faq-links {
    list-style: none;
    padding: 0;
}

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

.registration-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.registration-form {
    max-width: 700px;
}

.event-summary-card,
.event-info-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.event-summary-card h3,
.event-info-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.event-summary-card h4 {
    color: var(--teal);
    margin-bottom: 1rem;
}

.summary-item,
.info-item {
    margin-bottom: 1rem;
}

.summary-item strong,
.info-item strong {
    display: block;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--teal);
}

.early-bird {
    background-color: #fff3cd;
    padding: 1rem;
    border-radius: 4px;
}

.registration-help,
.registration-policies {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.registration-policies ul {
    list-style: none;
    padding: 0;
}

.registration-policies li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.registration-policies li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.payment-info {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.early-bird-note {
    color: var(--teal);
    font-weight: 600;
}

.payment-methods {
    margin-top: 1.5rem;
}

.payment-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.payment-badge {
    background-color: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.event-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.event-detail-hero {
    margin-bottom: 2rem;
}

.event-hero-placeholder {
    background-color: var(--light-gray);
    border: 2px dashed var(--border-gray);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--medium-gray);
}

.agenda-list,
.includes-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.includes-list {
    list-style: none;
    padding-left: 0;
}

.includes-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.share-card,
.related-links {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.share-btn {
    display: block;
    padding: 0.5rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.share-btn:hover,
.share-btn:focus {
    background-color: var(--teal);
    color: var(--white);
    border-color: var(--teal);
    text-decoration: none;
}

.related-links ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

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

footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-section a {
    color: var(--white);
    opacity: 0.9;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover,
.footer-section a:focus {
    opacity: 1;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--white);
    transition: color 0.3s ease;
}

.social-links a:hover,
.social-links a:focus {
    color: var(--teal);
}

.footer-contact {
    margin-top: 1rem;
}

.newsletter-section .newsletter-form {
    margin: 1rem 0;
}

.newsletter-section input[type="email"] {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.875rem;
}

.footer-legal {
    flex: 1;
    min-width: 250px;
}

.footer-legal p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-tagline {
    font-style: italic;
    color: var(--teal);
    opacity: 1;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--teal);
    text-decoration: underline;
}

.footer-links .separator {
    opacity: 0.5;
}

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

.hidden {
    display: none !important;
}

.payment-page {
    min-height: 100vh;
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.payment-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.payment-summary {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.price-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    margin-top: 1rem;
}

.payment-options {
    margin-top: 2rem;
}

.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.payment-btn {
    width: 100%;
}

.payment-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 4px;
}

.integration-note {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #fff3cd;
    border-left: 4px solid var(--warning-yellow);
    border-radius: 4px;
    font-size: 0.875rem;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .mobile-menu-toggle {
        display: block;
    }

    /* ── MOBILE NAV PANEL ──
       position: fixed guarantees it sits above all page content.
       max-height animates open/close — no display toggling needed. */
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: #0d2444;
        padding: 0;
        gap: 0;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
        border-top: 2px solid #00a8a8;
        z-index: 9999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.32s ease;
    }

    .nav-menu.active {
        max-height: 520px;
        padding: 0.5rem 0 1rem;
    }

    /* Reset every li to block layout */
    .nav-menu > li {
        height: auto !important;
        width: 100%;
        display: block !important;
        align-items: unset;
    }

    /* Full-width tappable links */
    .nav-menu > li > a {
        height: auto !important;
        display: block !important;
        align-items: unset;
        color: #ffffff !important;
        padding: 1rem 1.75rem;
        font-size: 1.05rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transform: none !important;
        transition: background 0.15s ease;
    }

    .nav-menu > li:last-child > a {
        border-bottom: none;
    }

    .nav-menu > li > a:hover {
        background: rgba(0, 168, 168, 0.18);
        color: #ffffff !important;
        text-decoration: none;
    }

    .nav-menu > li > a[aria-current="page"] {
        color: #00d8d8 !important;
        background: rgba(0, 168, 168, 0.12);
        border-left: 3px solid #00a8a8;
        padding-left: calc(1.75rem - 3px);
    }

    /* No underline animation on mobile */
    .nav-menu > li > a::after {
        display: none !important;
    }

    /* Sub-items (About dropdown) always visible on mobile */
    .dropdown-menu {
        position: static !important;
        display: block !important;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.25);
        border-top: none;
        border-radius: 0;
        border: none;
        padding: 0 0 0.5rem;
        min-width: unset;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 0.7rem 1.75rem 0.7rem 2.5rem;
        font-size: 0.92rem;
        font-weight: 600;
        border-bottom: none;
        transition: background 0.15s;
    }

    .dropdown-menu a:hover {
        background: rgba(0, 168, 168, 0.15);
        color: #fff !important;
        padding-left: 2.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .event-card,
    .event-item {
        flex-direction: column;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .timeline-item {
        padding-left: 90px;
    }
    
    .contact-grid,
    .registration-grid,
    .event-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form.inline-form {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .intro-split,
    .about-image-split,
    .events-intro,
    .resources-intro {
        grid-template-columns: 1fr;
    }

    .who-we-serve-image img {
        height: 220px;
    }

    .resource-image-wide img {
        height: 220px;
    }
}

.intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h2 {
    margin-bottom: 1rem;
}

.intro-text .lead {
    margin-bottom: 1.5rem;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    height: 360px;
}

.about-image-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-image-photo img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    height: 320px;
}

.who-we-serve-image {
    margin-bottom: 2rem;
}

.who-we-serve-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.events-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.events-intro-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.resources-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.resources-intro-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.resource-image-inline {
    margin: 1.5rem 0 2rem;
}

.resource-image-inline img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.resource-image-wide {
    margin: 1.5rem 0 2rem;
}

.resource-image-wide img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.image-caption {
    font-size: 0.875rem;
    color: var(--medium-gray);
    font-style: italic;
    margin-top: 0.75rem;
    text-align: center;
}

@media print {
    header, footer, .cta-box, .btn {
        display: none;
    }
}

/* ══════════════════════════════
   RESOURCES PAGE — FULL REBUILD
══════════════════════════════ */

.res-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background: url('/images/team-checklist.jpg') center 30% / cover no-repeat;
}

.res-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,58,92,0.92) 0%, rgba(0,100,100,0.7) 100%);
}

.res-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 4.5rem 0 3.5rem;
}

.res-hero-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.6rem;
}

.res-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.85rem;
    line-height: 1.1;
}

.res-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 2rem;
}

.res-quick-nav {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.res-nav-pill {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 30px;
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.res-nav-pill:hover {
    background: var(--teal);
    border-color: var(--teal);
    text-decoration: none;
    color: #fff;
}

/* Featured Resource */
.res-featured-section {
    background: #fff;
    padding: 5rem 0;
    border-bottom: 1px solid #e8edf4;
}

.res-featured-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.res-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.6rem;
    display: block;
}

.res-label.teal { color: var(--teal); }

.res-featured-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.res-featured-text p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.res-featured-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.res-featured-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: var(--navy-blue);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    min-width: 200px;
}

.res-fstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.res-fstat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.res-fstat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    margin-top: 0.3rem;
}

/* Section base */
.res-section { padding: 5rem 0; }
.res-section.bg-light { background: #f7f9fc; }
.res-section.bg-white { background: #fff; }
.res-section.bg-navy { background: var(--navy-blue); }

.res-section-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.res-section-header.light h2 { color: #fff; }

.res-section-icon {
    font-size: 2.8rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 4px;
}

.res-section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 0.4rem;
}

.res-section-header h2.white { color: #fff; }

.res-section-sub {
    color: #666;
    font-size: 0.97rem;
    line-height: 1.65;
    margin: 0;
}

.res-section-sub.light-text { color: rgba(255,255,255,0.72); }

/* Resource cards (CE section) */
.res-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.res-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #dde4ee;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}

.res-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}

.res-card-icon {
    font-size: 2rem;
    margin-bottom: 0.85rem;
}

.res-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.6rem;
}

.res-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

.res-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.res-list li {
    padding: 0.35rem 0 0.35rem 1.25rem;
    position: relative;
    font-size: 0.88rem;
    color: #444;
    line-height: 1.5;
}

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

.res-list.light li { color: rgba(255,255,255,0.82); }
.res-list.light li::before { color: var(--teal); }

.res-card-link {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: auto;
    padding-top: 0.5rem;
}

.res-card-link:hover { text-decoration: underline; }

/* Certification split */
.cert-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cert-block {
    background: #f7f9fc;
    border-radius: 10px;
    padding: 2rem;
    border-top: 4px solid var(--teal);
}

.cert-block-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.cert-block-icon { font-size: 1.8rem; }

.cert-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin: 0;
}

.cert-block .res-list { margin-bottom: 1.5rem; }

/* Legislative */
.leg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 280px;
    gap: 2rem;
    align-items: stretch;
    margin-top: 2.5rem;
}

.leg-card {
    background: #ffffff;
    border: 1px solid rgba(26,58,92,0.1);
    border-radius: 14px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 14px rgba(0,0,0,0.14);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.leg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.2);
}

.leg-card h3 {
    color: #1a3a5c;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.leg-card > p {
    color: #5a6a7d;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.leg-card .res-list {
    flex: 1;
}

.leg-card .res-list li {
    color: #3d4f63;
    line-height: 1.55;
}

.leg-card .res-list li::before {
    color: #00a8a8;
}

.leg-card-action {
    margin-top: auto;
    padding-top: 1.5rem;
}

.leg-card-action a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #00a8a8;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 0.65rem 1.25rem;
    border: 1.5px solid rgba(0,168,168,0.35);
    border-radius: 6px;
    background: rgba(0,168,168,0.06);
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    width: 100%;
    justify-content: center;
}

.leg-card-action a:hover {
    background: #00a8a8;
    color: #fff;
    border-color: #00a8a8;
    text-decoration: none;
}

.leg-alert {
    background: linear-gradient(160deg, #008f8f 0%, #00a8a8 60%, #00bfbf 100%);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0,168,168,0.25);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.leg-alert:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,168,168,0.3);
}

.leg-alert-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.leg-alert h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
}

.leg-alert p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
    max-width: 220px;
}

/* Organizations */
.org-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.org-card {
    display: flex;
    gap: 1rem;
    background: #fff;
    border: 1px solid #dde4ee;
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    align-items: flex-start;
}

.org-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
    border-color: var(--teal);
    transform: translateY(-2px);
    text-decoration: none;
}

.org-card-abbr {
    background: var(--navy-blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
    text-align: center;
    min-width: 52px;
    flex-shrink: 0;
    line-height: 1.3;
}

.org-card-body h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.org-card-body p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.55;
    margin-bottom: 0.5rem;
}

.org-link {
    font-size: 0.8rem;
    color: var(--teal);
    font-weight: 600;
}

/* Downloads */
.dl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.dl-card {
    background: #f7f9fc;
    border-radius: 10px;
    padding: 1.75rem 1.5rem;
    border: 1px solid #dde4ee;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.25s;
}

.dl-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.dl-card-icon { font-size: 2rem; }

.dl-card-body h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.4rem;
}

.dl-card-body p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

.dl-btn {
    display: inline-block;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: auto;
}

.dl-btn:hover { text-decoration: underline; }

/* CTA */
.res-cta-section {
    background: var(--navy-blue);
    padding: 5rem 0;
    text-align: center;
}

.res-cta-inner { max-width: 700px; margin: 0 auto; }

.res-cta-inner h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.res-cta-inner p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.res-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Resources responsive */
@media (max-width: 1100px) {
    .dl-grid { grid-template-columns: repeat(2, 1fr); }
    .leg-grid { grid-template-columns: 1fr 1fr; }
    .leg-alert { grid-column: span 2; }
}

@media (max-width: 860px) {
    .res-hero-title { font-size: 2rem; }
    .res-card-grid { grid-template-columns: 1fr; }
    .cert-split { grid-template-columns: 1fr; }
    .org-grid { grid-template-columns: 1fr; }
    .res-featured-inner { grid-template-columns: 1fr; }
    .res-featured-stats { flex-direction: row; justify-content: space-around; min-width: unset; }
    .leg-grid { grid-template-columns: 1fr; }
    .leg-alert { grid-column: unset; }
    .dl-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   ABOUT PAGE — FULL REBUILD
══════════════════════════════ */

.about-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: url('/images/hero-bg.jpg') center 25% / 120% no-repeat;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,58,92,0.88) 0%, rgba(0,168,168,0.55) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 5rem 0 4rem;
}

.about-hero-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.75rem;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
}

.about-hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 680px;
    color: rgba(255,255,255,0.88);
}

/* Mission */
.about-mission-section {
    background: #f7f9fc;
    padding: 5rem 0;
    text-align: center;
}

.about-mission-inner {
    max-width: 820px;
    margin: 0 auto;
}

.about-mission-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.about-mission-quote {
    font-size: 1.45rem;
    font-weight: 600;
    font-style: italic;
    color: var(--navy-blue);
    line-height: 1.55;
    border: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.about-mission-sub {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
}

/* Who We Are split */
.about-split-section {
    padding: 5rem 0;
    background: #fff;
}

.about-serve-section {
    padding: 5rem 0;
    background: #f7f9fc;
}

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

.about-split-inner.reverse {
    direction: rtl;
}

.about-split-inner.reverse > * {
    direction: ltr;
}

.about-split-text .section-eyebrow,
.section-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
    display: block;
}

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

.about-split-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-split-text p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-split-text .btn {
    margin-top: 0.5rem;
}

.about-split-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    display: block;
}

/* What We Do */
.what-we-do-section {
    padding: 5rem 0;
    background: #f0f4f8;
}

.what-we-do-section .section-title {
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.what-we-do-section .section-eyebrow {
    color: var(--teal);
}

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.wwd-card {
    background: #fff;
    border: 1px solid #d8e3ef;
    border-top: 4px solid var(--teal);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wwd-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

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

.wwd-card h3 {
    color: var(--navy-blue);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.wwd-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Stats strip */
.about-stats-strip {
    background: var(--teal);
    padding: 3rem 0;
}

.about-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 3rem;
    text-align: center;
}

.about-stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.about-stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.8);
}

.about-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.3);
}

/* Who We Serve list */
.serve-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.serve-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.serve-bullet {
    color: var(--teal);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.serve-item strong {
    display: block;
    color: var(--navy-blue);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.serve-item p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Reach */
.about-reach-section {
    padding: 5rem 0;
    background: #fff;
}

.reach-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.reach-card-new {
    background: #f7f9fc;
    border-radius: 10px;
    padding: 2rem;
    border-left: 4px solid var(--teal);
}

.reach-region-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.reach-card-new h3 {
    color: var(--navy-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.reach-card-new p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Leadership preview */
.about-leadership-preview {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #2a5080 100%);
    padding: 5rem 0;
}

.about-leadership-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.about-leadership-text .section-eyebrow {
    color: var(--teal);
}

.about-leadership-text h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-leadership-text p {
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-leadership-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.large-badge {
    width: 180px !important;
    height: 180px !important;
}

/* CTA */
.about-cta-section {
    background: #f7f9fc;
    padding: 5rem 0;
    text-align: center;
}

.about-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-inner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.about-cta-inner p {
    color: #555;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.about-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About responsive */
@media (max-width: 1024px) {
    .wwd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-title { font-size: 2rem; }
    .about-split-inner,
    .about-leadership-inner { grid-template-columns: 1fr; gap: 2rem; }
    .about-split-inner.reverse { direction: ltr; }
    .wwd-grid { grid-template-columns: 1fr; }
    .reach-grid-new { grid-template-columns: 1fr; }
    .about-stats-inner { gap: 1.5rem; }
    .about-stat-divider { display: none; }
    .about-leadership-badge { display: none; }
}

/* ══════════════════════════════
   CONTACT PAGE — FULL REBUILD
══════════════════════════════ */

.contact-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    background: url('/images/robotic-surgery.jpg') center 40% / cover no-repeat;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,58,92,0.93) 0%, rgba(0,100,100,0.72) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0 3.5rem;
}

.contact-hero-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.contact-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    max-width: 580px;
    margin: 0;
}

/* Contact Types */
.contact-types-section {
    background: #f0f4f8;
    padding: 3.5rem 0;
    border-bottom: 1px solid #dde4ee;
}

.contact-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.5rem;
    display: block;
}

.contact-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.contact-type-card {
    background: #fff;
    border: 1px solid #dde4ee;
    border-top: 3px solid var(--teal);
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.contact-type-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.ct-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }

.contact-type-card h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.4rem;
}

.contact-type-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.ct-link {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
}

.ct-link:hover { text-decoration: underline; }

/* Two-column main layout */
.contact-main-section {
    background: #fff;
    padding: 5rem 0;
}

.contact-two-col {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left column */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
    display: block;
}

.contact-info-block,
.contact-social-block,
.contact-faq-block {
    background: #f7f9fc;
    border: 1px solid #dde4ee;
    border-radius: 10px;
    padding: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.85rem 0;
    border-bottom: 1px solid #eaeff6;
}

.contact-info-item:last-child { border-bottom: none; }

.ci-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.contact-info-item div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-info-item strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item a,
.contact-info-item span {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.55;
    text-decoration: none;
}

.contact-info-item a {
    color: var(--teal);
    font-weight: 600;
}

.contact-info-item a:hover { text-decoration: underline; }

.contact-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy-blue);
    color: #fff;
    border-radius: 6px;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.contact-social-btn:hover {
    background: var(--teal);
    text-decoration: none;
    color: #fff;
}

.contact-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-faq-list li {
    border-bottom: 1px solid #eaeff6;
}

.contact-faq-list li:last-child { border-bottom: none; }

.contact-faq-list a {
    display: block;
    padding: 0.65rem 0;
    font-size: 0.87rem;
    color: #444;
    text-decoration: none;
    transition: color 0.15s;
}

.contact-faq-list a:hover { color: var(--teal); }

/* Right column — form card */
.contact-form-card {
    background: #fff;
    border: 1px solid #dde4ee;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-form-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 0.4rem;
}

.contact-form-sub {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.75rem;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.form-note {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

/* Contact page responsive */
@media (max-width: 1024px) {
    .contact-two-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .contact-types-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .contact-hero-title { font-size: 1.9rem; }
    .contact-types-grid { grid-template-columns: 1fr; }
    .cf-row { grid-template-columns: 1fr; }
    .form-actions { flex-direction: column; align-items: flex-start; }
    .contact-form-card { padding: 1.5rem; }
}
