:root {
    --primary-green: #1e7a44;
    --dark-green: #0f3d24;
    --gold: #d97706;
    --light-green: #eef8f0;
    --text-dark: #17202a;
    --text-muted: #6b7280;
    --border-light: #e5e7eb;
}

body {
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--primary-green);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
/* Header logo */
.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 8px;
    background: #ffffff;
    padding: 3px;
}

/* Organization card logo */
.org-logo-box {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px;
    overflow: hidden;
}

.org-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Organization detail page logo */
.org-detail-logo {
    width: 190px;
    height: 135px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    margin-bottom: 22px;
    overflow: hidden;
}

.org-detail-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Mobile logo adjustment */
@media (max-width: 768px) {
    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .org-logo-box {
        width: 64px;
        height: 64px;
    }

    .org-detail-logo {
        width: 160px;
        height: 115px;
    }
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text small {
    color: var(--text-muted);
    font-size: 12px;
}

.nav-link {
    font-weight: 500;
}

.nav-link.active {
    color: var(--primary-green) !important;
    font-weight: 700;
}

.hero-section {
    background: linear-gradient(135deg, #eef8f0, #ffffff);
    padding: 90px 0;
}

.hero-badge {
    display: inline-block;
    background: #ffffff;
    color: var(--primary-green);
    border: 1px solid #b7e4c7;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-green);
}

.hero-text {
    font-size: 18px;
    color: var(--text-muted);
    margin-top: 20px;
}

.section-padding {
    padding: 70px 0;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 760px;
}

.org-card {
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    transition: 0.25s ease;
    background: #ffffff;
}

.org-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.org-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 18px;
}

.org-card h5 {
    font-weight: 800;
}

.org-card p {
    color: var(--text-muted);
    min-height: 72px;
}

.feature-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 26px;
    height: 100%;
}

.cta-section {
    background: var(--dark-green);
    color: #ffffff;
    border-radius: 28px;
    padding: 50px;
}

.site-footer {
    background: #111827;
    color: #d1d5db;
}
.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer h5,
.site-footer h6 {
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .cta-section {
        padding: 32px;
    }
}
.products-hero,
.product-detail-hero {
    background: linear-gradient(135deg, #eef8f0, #ffffff);
    padding: 85px 0;
    border-bottom: 1px solid var(--border-light);
}

.product-filter-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.product-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.product-image-box {
    height: 220px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-image-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: #1e7a44;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
}

.product-featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #1e7a44;
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
}

.product-card-body {
    padding: 22px;
}

.product-card-body h5,
.product-card-body h6 {
    font-weight: 800;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: var(--text-muted);
}

.product-price {
    font-size: 18px;
    font-weight: 800;
    color: #1e7a44;
}

.product-detail-image-box {
    min-height: 420px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    overflow: hidden;
}

.product-detail-image-box img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: contain;
}

.product-detail-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 36px;
    background: #1e7a44;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-weight: 800;
}

.product-detail-meta {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 20px;
    display: grid;
    gap: 8px;
}

.product-detail-price {
    font-size: 28px;
    font-weight: 900;
    color: #1e7a44;
}

.product-info-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.product-info-box h3,
.product-info-box h5 {
    font-weight: 800;
    margin-bottom: 16px;
}

.product-benefit-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.product-benefit-list li {
    padding: 10px 0 10px 34px;
    position: relative;
    border-bottom: 1px solid #eef2f7;
}

.product-benefit-list li:last-child {
    border-bottom: 0;
}

.product-benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #1e7a44;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.small-product-image {
    height: 150px;
}

@media (max-width: 768px) {
    .products-hero,
    .product-detail-hero {
        padding: 55px 0;
    }

    .product-detail-image-box {
        min-height: 280px;
    }

    .product-detail-placeholder {
        width: 110px;
        height: 110px;
        font-size: 34px;
    }

    .product-detail-price {
        font-size: 24px;
    }
}
.cart-hero {
    background: linear-gradient(135deg, #eef8f0, #ffffff);
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

.cart-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.cart-table th {
    white-space: nowrap;
    font-size: 14px;
    color: var(--text-muted);
}

.cart-table td {
    vertical-align: middle;
}

.cart-total-box {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-total-box strong {
    color: #1e7a44;
    font-size: 20px;
}

@media (max-width: 768px) {
    .cart-hero {
        padding: 55px 0;
    }

    .cart-card {
        padding: 18px;
    }
}

.site-footer {
    background: #111827;
    color: #ffffff;
    padding: 64px 0 24px;
}

.footer-main-row {
    align-items: flex-start;
}

.footer-widget {
    height: 100%;
}

.footer-brand-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-brand-text {
    max-width: 430px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-widget-title {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: "";
    width: 38px;
    height: 3px;
    background: #22c55e;
    border-radius: 999px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact-box a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover,
.footer-contact-box a:hover {
    color: #22c55e;
    padding-left: 4px;
}

.footer-contact-box strong {
    display: block;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-contact-box p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-contact-box span {
    color: #ffffff;
    font-weight: 700;
}

.footer-social-links li {
    margin-bottom: 12px;
}

.footer-whatsapp-box {
    margin-top: 22px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.28);
    border-radius: 16px;
    padding: 16px;
}

.footer-whatsapp-box span {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    margin-bottom: 4px;
}

.footer-whatsapp-box a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.footer-whatsapp-box a:hover {
    color: #22c55e;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 48px;
    padding-top: 22px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
}

.footer-bottom span {
    color: #ffffff;
}

@media (max-width: 991px) {
    .site-footer {
        padding-top: 52px;
    }

    .footer-brand-text {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .site-footer {
        padding: 44px 0 22px;
    }

    .footer-brand-title {
        font-size: 23px;
    }

    .footer-widget-title {
        margin-bottom: 14px;
    }

    .footer-bottom {
        margin-top: 34px;
    }

    .footer-bottom p {
        font-size: 14px;
        line-height: 1.7;
    }
}
.product-detail-cart-form {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 18px;
    min-width: 280px;
}

.product-detail-cart-form .form-select {
    min-width: 260px;
}

.cart-table td,
.cart-table th {
    vertical-align: middle;
}

@media (max-width: 575px) {
    .product-detail-cart-form {
        width: 100%;
    }

    .product-detail-cart-form .form-select {
        min-width: 100%;
    }
}
/* =========================================================
   Product Catalogue Page
========================================================= */

.products-hero {
    background: linear-gradient(135deg, #eef8f0 0%, #ffffff 100%);
    padding: 80px 0 55px;
    border-bottom: 1px solid #e5e7eb;
}

.products-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.products-hero .hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 18px;
}

.products-hero .hero-text {
    max-width: 850px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.7;
}

.product-filter-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.product-filter-card .form-label {
    color: #111827;
    margin-bottom: 8px;
}

.product-filter-card .form-select,
.product-filter-card .btn {
    min-height: 48px;
    border-radius: 10px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
}

.product-image-box {
    height: 210px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef8f0 100%);
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 22px;
}

.product-image-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 28px;
    background: #15803d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 12px 24px rgba(21, 128, 61, 0.25);
}

.product-featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #15803d;
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 12px;
    font-weight: 800;
}

.product-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-body h5 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 900;
    color: #111827;
    margin-bottom: 10px;
}

.product-card-body p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-card-body .small {
    font-size: 14px;
    color: #6b7280 !important;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #4b5563;
    font-size: 14px;
    margin-top: auto;
}

.product-price {
    color: #15803d;
    font-size: 19px;
    font-weight: 900;
    margin-top: 18px;
}

.product-card .btn {
    border-radius: 10px;
    min-height: 44px;
    font-weight: 700;
}

.product-card .form-select {
    border-radius: 10px;
    min-height: 44px;
}

.product-card .d-grid {
    margin-top: 18px;
}

/* Product Detail Page */

.product-detail-hero {
    background: linear-gradient(135deg, #eef8f0 0%, #ffffff 100%);
    padding: 80px 0;
    border-bottom: 1px solid #e5e7eb;
}

.product-detail-image-box {
    min-height: 420px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
}

.product-detail-image-box img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.product-detail-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 38px;
    background: #15803d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-weight: 900;
}

.product-detail-meta {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    display: grid;
    gap: 8px;
    color: #374151;
}

.product-detail-price {
    color: #15803d;
    font-size: 30px;
    font-weight: 900;
}

.product-info-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
}

.product-info-box h3,
.product-info-box h5 {
    color: #111827;
    font-weight: 900;
    margin-bottom: 16px;
}

.product-benefit-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.product-benefit-list li {
    position: relative;
    padding: 10px 0 10px 34px;
    border-bottom: 1px solid #eef2f7;
    color: #4b5563;
}

.product-benefit-list li:last-child {
    border-bottom: none;
}

.product-benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    width: 23px;
    height: 23px;
    border-radius: 999px;
    background: #15803d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.product-detail-cart-form {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px;
    min-width: 300px;
}

.product-detail-cart-form .form-select {
    min-width: 280px;
}

/* Responsive */

@media (max-width: 991px) {
    .products-hero .hero-title {
        font-size: 40px;
    }

    .product-image-box {
        height: 190px;
    }
}

@media (max-width: 768px) {
    .products-hero,
    .product-detail-hero {
        padding: 55px 0 40px;
    }

    .products-hero .hero-title {
        font-size: 34px;
    }

    .products-hero .hero-text {
        font-size: 16px;
    }

    .product-filter-card {
        padding: 20px;
    }

    .product-card-body {
        padding: 20px;
    }

    .product-detail-image-box {
        min-height: 280px;
    }

    .product-detail-placeholder {
        width: 110px;
        height: 110px;
        font-size: 34px;
    }

    .product-detail-price {
        font-size: 24px;
    }

    .product-detail-cart-form {
        width: 100%;
        min-width: 100%;
    }

    .product-detail-cart-form .form-select {
        min-width: 100%;
    }
}
/* =========================================================
   Inquiry Management
========================================================= */

.inquiry-hero {
    background: linear-gradient(135deg, #eef8f0 0%, #ffffff 100%);
    padding: 80px 0 55px;
    border-bottom: 1px solid #e5e7eb;
}

.inquiry-card,
.admin-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.inquiry-card .form-control,
.inquiry-card .form-select {
    min-height: 48px;
    border-radius: 10px;
}

.inquiry-card textarea.form-control {
    min-height: 130px;
}

.inquiry-note {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #166534;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 600;
}

.admin-card table th {
    white-space: nowrap;
    font-size: 14px;
    color: #374151;
    background: #f8fafc;
}

.admin-card table td {
    font-size: 14px;
}

@media (max-width: 768px) {
    .inquiry-hero {
        padding: 55px 0 40px;
    }

    .inquiry-card,
    .admin-card {
        padding: 20px;
    }
}
/* =========================================================
   Sprint 3H - Contact Page
========================================================= */

.contact-hero {
    background: linear-gradient(135deg, #eef8f0 0%, #ffffff 100%);
    padding: 82px 0 58px;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info-card,
.contact-form-card,
.department-contact-card,
.map-card,
.social-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.contact-info-card h3,
.contact-form-card h3,
.map-card h3,
.social-card h3 {
    font-weight: 900;
    color: #111827;
    margin-bottom: 22px;
}

.contact-detail-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #eef2f7;
}

.contact-detail-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-item strong {
    display: block;
    color: #111827;
    font-weight: 800;
    margin-bottom: 4px;
}

.contact-detail-item p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-detail-item a {
    color: #15803d;
    text-decoration: none;
    font-weight: 700;
}

.contact-detail-item a:hover {
    text-decoration: underline;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.business-hours-box,
.quick-connect-box {
    margin-top: 24px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px;
}

.business-hours-box strong,
.quick-connect-box h5 {
    display: block;
    color: #111827;
    font-weight: 900;
    margin-bottom: 6px;
}

.business-hours-box p,
.quick-connect-box p {
    color: #4b5563;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    min-height: 48px;
    border-radius: 10px;
}

.contact-form-card textarea.form-control {
    min-height: 130px;
}

.lead-note {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #166534;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 600;
}

.department-contact-card {
    transition: all 0.25s ease;
}

.department-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
}

.department-badge {
    display: inline-flex;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.department-contact-card h5 {
    font-size: 20px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 10px;
}

.department-contact-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 18px;
}

.department-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.map-embed {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.social-link-list {
    display: grid;
    gap: 12px;
}

.social-link-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #111827;
    text-decoration: none;
    border-radius: 14px;
    padding: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.social-link-list a:hover {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    transform: translateX(4px);
}

.social-link-list span {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #15803d;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 58px 0 42px;
    }

    .contact-info-card,
    .contact-form-card,
    .department-contact-card,
    .map-card,
    .social-card {
        padding: 22px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .btn {
        width: 100%;
    }

    .map-embed iframe {
        height: 320px;
    }
}

/* =========================================================
   Sprint 3I - Gallery, Media and Social Proof
========================================================= */

.media-hero {
    background: linear-gradient(135deg, #eef8f0 0%, #ffffff 100%);
    padding: 82px 0 58px;
    border-bottom: 1px solid #e5e7eb;
}

.media-filter-card,
.media-card,
.media-channel-card,
.proof-card,
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.media-filter-card {
    padding: 26px;
}

.media-card {
    overflow: hidden;
    transition: all 0.25s ease;
}

.media-card:hover,
.proof-card:hover,
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
}

.media-image-box {
    height: 220px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef8f0 100%);
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.media-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 28px;
    background: #15803d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(21, 128, 61, 0.25);
}

.media-featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #15803d;
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 12px;
    font-weight: 800;
}

.media-card-body {
    padding: 24px;
}

.media-card-body h5,
.proof-card h5,
.testimonial-card h6 {
    font-weight: 900;
    color: #111827;
    margin-bottom: 10px;
}

.media-card-body p,
.media-channel-card p,
.proof-card p,
.testimonial-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

.media-category {
    display: inline-flex;
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 800;
}

.media-channel-card {
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.media-channel-icon,
.proof-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
    background: #15803d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.media-channel-card h4 {
    margin-top: 12px;
    font-weight: 900;
    color: #111827;
}

.proof-card,
.testimonial-card {
    padding: 28px;
    transition: all 0.25s ease;
}

.proof-icon {
    margin-bottom: 18px;
}

.testimonial-card p {
    font-size: 17px;
}

.testimonial-card span {
    display: block;
    color: #6b7280;
    font-size: 14px;
}

.testimonial-rating {
    margin-top: 14px;
    color: #15803d;
    font-weight: 800;
}

@media (max-width: 768px) {
    .media-hero {
        padding: 58px 0 42px;
    }

    .media-filter-card,
    .media-channel-card,
    .proof-card,
    .testimonial-card {
        padding: 22px;
    }

    .media-channel-card {
        flex-direction: column;
    }

    .media-image-box {
        height: 190px;
    }
}
/* =========================================================
   Sprint 3J - Blog, News and Knowledge
========================================================= */

.blog-hero,
.blog-detail-hero {
    background: linear-gradient(135deg, #eef8f0 0%, #ffffff 100%);
    padding: 82px 0 58px;
    border-bottom: 1px solid #e5e7eb;
}

.blog-filter-card,
.blog-card,
.blog-content-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.blog-filter-card {
    padding: 26px;
}

.blog-filter-card .form-control,
.blog-filter-card .form-select,
.blog-filter-card .btn {
    min-height: 48px;
    border-radius: 10px;
}

.blog-card {
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
}

.blog-image-box {
    height: 220px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef8f0 100%);
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 28px;
    background: #15803d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(21, 128, 61, 0.25);
}

.blog-featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #15803d;
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 12px;
    font-weight: 800;
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-body h5 {
    font-weight: 900;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.35;
}

.blog-card-body p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-meta-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.blog-meta-row span {
    display: inline-flex;
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 800;
}

.blog-small-meta {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-top: auto;
}

.blog-detail-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.blog-detail-meta span {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 8px 14px;
    color: #4b5563;
    font-size: 14px;
}

.blog-content-card {
    padding: 36px;
}

.blog-content-card p {
    font-size: 18px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 22px;
}

.blog-detail-image {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-inquiry-box {
    margin-top: 34px;
    background: linear-gradient(135deg, #eef8f0 0%, #ffffff 100%);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 22px;
    padding: 24px;
}

.blog-inquiry-box h5 {
    font-weight: 900;
    color: #111827;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .blog-hero,
    .blog-detail-hero {
        padding: 58px 0 42px;
    }

    .blog-filter-card,
    .blog-content-card {
        padding: 22px;
    }

    .blog-image-box {
        height: 190px;
    }

    .blog-content-card p {
        font-size: 16px;
        line-height: 1.8;
    }

    .blog-detail-meta {
        flex-direction: column;
    }
}
/* =========================================================
   Sprint 3K - Careers Page and Applications
========================================================= */

.career-hero {
    background: linear-gradient(135deg, #eef8f0 0%, #ffffff 100%);
    padding: 82px 0 58px;
    border-bottom: 1px solid #e5e7eb;
}

.career-card,
.career-cta-card,
.career-application-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.career-card {
    padding: 28px;
    position: relative;
    transition: all 0.25s ease;
}

.career-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
}

.career-featured-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #15803d;
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 12px;
    font-weight: 800;
}

.career-org {
    display: inline-flex;
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 16px;
    max-width: 75%;
}

.career-card h5 {
    font-size: 21px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.35;
}

.career-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 18px;
}

.career-meta-list {
    display: grid;
    gap: 8px;
    color: #4b5563;
    font-size: 14px;
}

.career-meta-list strong {
    color: #111827;
}

.career-cta-card {
    padding: 42px;
}

.career-cta-card h2 {
    font-weight: 900;
    color: #111827;
    margin-bottom: 14px;
}

.career-cta-card p {
    max-width: 720px;
    margin: 0 auto 24px;
    color: #4b5563;
    line-height: 1.7;
}

.career-application-card {
    padding: 32px;
}

.career-application-card .form-control,
.career-application-card .form-select {
    min-height: 48px;
    border-radius: 10px;
}

.career-application-card textarea.form-control {
    min-height: 120px;
}

.career-note {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #166534;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .career-hero {
        padding: 58px 0 42px;
    }

    .career-card,
    .career-cta-card,
    .career-application-card {
        padding: 22px;
    }

    .career-org {
        max-width: 100%;
    }

    .career-featured-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 12px;
    }
}
/* =========================================================
   Sprint 3L - Admin CMS Foundation
========================================================= */

.admin-login-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #eef8f0 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    padding: 70px 0;
}

.admin-login-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 26px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.admin-login-card h1 {
    color: #111827;
    font-weight: 900;
    margin-bottom: 8px;
}

.admin-login-card p {
    color: #6b7280;
    margin-bottom: 0;
}

.admin-login-card .form-control {
    min-height: 48px;
    border-radius: 10px;
}

.admin-login-help {
    margin-top: 24px;
    background: #f8fafc;
    border: 1px dashed #d1d5db;
    border-radius: 16px;
    padding: 14px 16px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
}

.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.admin-stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.admin-stat-card span {
    display: block;
    color: #6b7280;
    font-weight: 700;
    margin-bottom: 8px;
}

.admin-stat-card strong {
    display: block;
    color: #15803d;
    font-size: 34px;
    font-weight: 900;
}

.admin-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-card h4 {
    color: #111827;
    font-weight: 900;
}

@media (max-width: 768px) {
    .admin-login-card {
        padding: 24px;
    }

    .admin-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-page-header form,
    .admin-page-header .btn {
        width: 100%;
    }

    .admin-page-header form button {
        width: 100%;
    }

    .admin-quick-links .btn {
        width: 100%;
    }
}
/* =========================================================
   Sprint 3M - Admin CMS Organizations and Products
========================================================= */

.admin-card .form-control,
.admin-card .form-select {
    min-height: 46px;
    border-radius: 10px;
}

.admin-card textarea.form-control {
    min-height: 110px;
}

.admin-thumb {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 4px;
}

.admin-preview-img {
    width: 120px;
    height: 90px;
    object-fit: contain;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 6px;
}

.admin-section-title {
    font-size: 20px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 6px;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
}

.admin-card table input.form-control,
.admin-card table select.form-select {
    min-width: 120px;
}

.admin-card table th {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .admin-thumb {
        width: 48px;
        height: 48px;
    }

    .admin-preview-img {
        width: 100px;
        height: 76px;
    }
}
/* =========================================================
   Sprint 3N - Admin CMS Blog, Media and Careers
========================================================= */

.admin-card .form-control,
.admin-card .form-select {
    min-height: 46px;
    border-radius: 10px;
}

.admin-card textarea.form-control {
    min-height: 110px;
}

.admin-card table th {
    white-space: nowrap;
    background: #f8fafc;
    color: #374151;
    font-size: 14px;
}

.admin-card table td {
    font-size: 14px;
}

.admin-preview-img {
    width: 130px;
    height: 90px;
    object-fit: contain;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 6px;
}

.admin-cms-section-title {
    font-size: 20px;
    font-weight: 900;
    color: #111827;
    margin: 20px 0 10px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .admin-preview-img {
        width: 110px;
        height: 78px;
    }
}

/* =========================================================
   Sprint 3O - Admin Categories, Subcategories and Variants
========================================================= */

#variant_table th,
#variant_table td {
    vertical-align: middle;
}

#variant_table input.form-control,
#variant_table select.form-select {
    min-width: 130px;
}

#variant_table .remove-variant-row {
    white-space: nowrap;
}

.admin-card .table-responsive {
    border-radius: 14px;
}

@media (max-width: 768px) {
    #variant_table input.form-control,
    #variant_table select.form-select {
        min-width: 150px;
    }
}
/* =========================================================
   Sprint 3P - Admin Status Management
========================================================= */

.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.admin-detail-grid div {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
}

.admin-detail-grid span {
    display: block;
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
}

.admin-detail-grid strong {
    display: block;
    color: #111827;
    font-size: 15px;
    line-height: 1.5;
}

.admin-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.status-new {
    background: #fef3c7;
    color: #92400e;
}

.status-contacted,
.status-reviewed {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-in_progress,
.status-shortlisted,
.status-interview_scheduled {
    background: #ede9fe;
    color: #6d28d9;
}

.status-converted,
.status-selected {
    background: #dcfce7;
    color: #166534;
}

.status-closed {
    background: #e5e7eb;
    color: #374151;
}

.status-lost,
.status-rejected {
    background: #fee2e2;
    color: #b91c1c;
}

.status-spam {
    background: #111827;
    color: #ffffff;
}

.status-on_hold {
    background: #ffedd5;
    color: #c2410c;
}

@media (max-width: 768px) {
    .admin-detail-grid {
        grid-template-columns: 1fr;
    }
}