/* ============================================
   Mission Page Styles
   ============================================ */

.mission-statement,
.core-objectives,
.vision-section,
.values-section,
.cta-section {
    font-family: "BrownLLWebPan", "HelveticaNeue", "Arial", sans-serif;
}

/* ── Section 1: Mission Statement (left-right) ── */
.mission-statement {
    padding: 80px 0 70px;
    background: #fff;
}
.mission-statement .div1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.mission-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
}
.mission-left {
    flex: 0 0 45%;
}
.mission-right {
    flex: 1;
    padding-top: 8px;
}
.mission-statement .small-title {
    font-size: 36px;
    color: #009494;
    text-transform: none;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.mission-statement .big-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
    line-height: 1.3;
}
.mission-statement .mission-text {
    font-size: 16px;
    line-height: 2;
    color: #555;
    position: relative;
    padding-left: 24px;
    border-left: 3px solid #009494;
    white-space: pre-line;
}

/* ── Section 2: Core Objectives ── */
.core-objectives {
    padding: 70px 0;
    background: #f7fafa;
}
.core-objectives .div1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-title-left {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    text-align: left;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 14px;
}
.section-title-left::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #009494;
    border-radius: 2px;
}
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.objective-item {
    text-align: center;
    padding: 20px 15px;
}
.objective-item .obj-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    background: #e0f0f0;
}
.objective-item .obj-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #009494 0%, #00783f 100%);
    color: #fff;
    font-size: 40px;
}
.objective-item p {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
}

/* ── Section 3: Vision ── */
.vision-section {
    padding: 80px 0;
    background: #fff;
}
.vision-section .div1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.vision-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.vision-text .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}
.vision-text p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}
.vision-img img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.vision-img .vision-placeholder {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    background: linear-gradient(135deg, #009494 0%, #00783f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

/* ── Section 4: Our Values (Accordion) ── */
.values-section {
    padding: 100px 0 110px;
    background: linear-gradient(180deg, #f4fafa 0%, #e6f0f0 100%);
    position: relative;
}
/* top line removed */
.values-section .div1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.values-header-wrap {
    margin-bottom: 50px;
}
.values-section .section-title-left {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}
.section-desc-left {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    text-align: left;
    max-width: 800px;
}

/* Value Accordion Container */
.value-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1060px;
    margin: 0 auto;
}

/* Value Item Wrapper */
.value-item {
    border-radius: 50px;
    overflow: hidden;
    transition: border-radius 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 2px 8px rgba(0, 148, 148, 0.08);
}
.value-item:hover {
    box-shadow: 0 4px 18px rgba(0, 148, 148, 0.15);
}
.value-item.active {
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0, 148, 148, 0.18);
}

/* Top bar (the clickable oval) */
.value-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 22px 38px;
    border: 2px solid #009494;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}
.value-header .value-title {
    font-size: 19px;
    font-weight: 600;
    color: #009494;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}
.value-header .value-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #009494;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-left: 20px;
}
/* Plus icon with CSS pseudo-elements */
.value-header .value-icon::before,
.value-header .value-icon::after {
    content: '';
    position: absolute;
    background: #009494;
    border-radius: 1px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.value-header .value-icon::before {
    width: 16px; height: 2px;
}
.value-header .value-icon::after {
    width: 2px; height: 16px;
}

/* Hover: bg #009494 (same as active) */
.value-item:not(.active) .value-header:hover {
    background: #009494;
    border-color: #009494;
    transform: translateY(-1px);
}
.value-item:not(.active) .value-header:hover .value-title {
    color: #fff;
}
.value-item:not(.active) .value-header:hover .value-icon {
    border-color: rgba(255,255,255,0.6);
}
.value-item:not(.active) .value-header:hover .value-icon::before,
.value-item:not(.active) .value-header:hover .value-icon::after {
    background: #fff;
}

/* Active/expanded: header #009494, text white */
.value-item.active .value-header {
    background: #009494;
    border-color: #009494;
    border-radius: 20px 20px 0 0;
}
.value-item.active .value-header .value-title {
    color: #fff;
}
.value-item.active .value-header .value-icon {
    border-color: rgba(255,255,255,0.6);
    transform: rotate(45deg);
}
.value-item.active .value-header .value-icon::before,
.value-item.active .value-header .value-icon::after {
    background: #fff;
}

/* Content panel (hidden by default) */
.value-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, #008a6a 0%, #00783f 8%, #00783f 100%);
}
.value-content-inner {
    padding: 30px 42px 34px 62px;
    font-size: 16px;
    line-height: 1.95;
    color: rgba(255,255,255,0.92);
    position: relative;
}
.value-content-inner::before {
    content: '';
    position: absolute;
    left: 38px;
    top: 28px;
    bottom: 32px;
    width: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

/* Active: show content with bottom rounded corners */
.value-item.active .value-content {
    max-height: 400px;
}
.value-item.active {
    border-radius: 20px;
    overflow: hidden;
}
.value-item.active .value-header {
    border-bottom-color: transparent;
}

/* ── Section 5: CTA Banner ── */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: #009494;
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 80, 80, 0.6);
    z-index: 1;
}
.cta-section .div1200 {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-left {
    flex: 1;
}
.cta-right {
    flex-shrink: 0;
}
.cta-section .cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.4;
    white-space: pre-line;
    text-align: left;
}
.cta-section .cta-btn {
    display: inline-block;
    padding: 16px 50px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.cta-section .cta-btn:hover {
    background: #fff;
    color: #009494;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .mission-wrap { gap: 40px; }
    .mission-statement .big-title { font-size: 30px; }
    .vision-wrap { grid-template-columns: 1fr; gap: 30px; }
    .objectives-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .mission-statement { padding: 50px 0 40px; }
    .mission-wrap { flex-direction: column; gap: 24px; }
    .mission-left { flex: none; width: 100%; }
    .mission-statement .big-title { font-size: 26px; }
    .mission-statement .mission-text { font-size: 15px; padding-left: 18px; }
    .core-objectives { padding: 50px 0; }
    .section-title-left { font-size: 26px; margin-bottom: 30px; }
    .objectives-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .objective-item .obj-img,
    .objective-item .obj-placeholder { width: 120px; height: 120px; }
    .vision-section { padding: 50px 0; }
    .vision-text .section-title { font-size: 26px; }
    .values-section { padding: 50px 0 60px; }
    .values-section .section-title-left { font-size: 28px; }
    .section-desc-left { font-size: 14px; }
    .values-header-wrap { margin-bottom: 35px; }
    .value-accordion { gap: 10px; }
    .value-header { padding: 14px 16px 14px 24px; }
    .value-header .value-title { font-size: 15px; }
    .value-header .value-icon { width: 30px; height: 30px; margin-left: 12px; }
    .value-header .value-icon::before { width: 12px; }
    .value-header .value-icon::after { height: 12px; }
    .value-content-inner { padding: 20px 24px 24px 40px; }
    .value-content-inner::before { left: 24px; top: 20px; bottom: 24px; }
    .cta-section { padding: 60px 0; }
    .cta-wrap { flex-direction: column; text-align: center; gap: 28px; }
    .cta-section .cta-title { font-size: 26px; text-align: center; }
}
@media (max-width: 480px) {
    .objectives-grid { grid-template-columns: 1fr; }
    .objective-item .obj-img,
    .objective-item .obj-placeholder { width: 100px; height: 100px; font-size: 28px; }
}
