/* hero */
.hero-section {
    height: 100vh;
    min-height: 620px;
    position: relative;
    color: #fff;
}

/* Background image */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(9, 87, 99, 0.85), rgba(9, 87, 99, 0.4)),
        url('https://lh3.googleusercontent.com/aida-public/AB6AXuC0KMePBkOgTsnpeXpsJUFXObPQiTug6Q2icwzTdXYndYNodjA9qZXKxJdvqaCmrkMeFON0k2fsWA2KtxeGDLsVGd7GBk1MMjj3osBYkWtfsydHy5M2fOAqk2FBYMU1uXm14yhr2NCNnpCnegEVHlD7hqjiDqEQ7k_0c6JH0Bzj9g6K8AjC3Ji4EOcL3nfwp-HceJAY6fnnVQxS3wIcYXosV5rvz_pjbqqI0tgkJlMJK5uMUPtHTqFPrHDjpaqOzbTitrqrxH2mYws');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(9, 87, 99, 0.4) 0%,
            rgba(9, 87, 99, 0.3) 40%,
            rgba(9, 87, 99, 0.2) 70%,
            rgba(9, 87, 99, 0.1) 100%);
    z-index: 0;
}

/* Headline */
.hero-title {
    font-size: clamp(2.8rem, 5vw, 2rem);
    letter-spacing: -0.02em;
}

/* Muted last line */
.hero-muted {
    opacity: 0.7;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.15rem;
    max-width: 620px;
    padding-left: 1rem;
    border-left: 4px solid rgba(255, 255, 255, 0.25);
    opacity: 0.9;
}

/* Buttons */
.btn-hero-primary {
    background: #ffffff;
    color: #095763;
    font-weight: 700;
    padding: 14px 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Outline button */
.btn-hero-outline {
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.25s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 100px 0;
    }

    .hero-title {
        font-size: 2.4rem;
    }
}

.pledge-texture {
    background-image: radial-gradient(#095763 0.5px, transparent 0.5px);
    background-size: 24px 24px;
}

.section-divider {
    height: 4px;
    width: 80px;
    @apply bg-primary rounded-full;
}

.glass-card {
    @apply bg-white border border-slate-100 shadow-subtle hover:shadow-card-hover transition-all duration-300;
}

/* Small decorative line */
.line-primary {
    height: 1px;
    width: 32px;
    background-color: #095763;
}

/* Typography helpers */
.tracking-wide {
    letter-spacing: 0.15em;
}

.fw-extrabold {
    font-weight: 800;
}

/* Image sizing */
.philosophy-img {
    height: 550px;
    object-fit: cover;
}

/* Floating icon box */
.philosophy-icon {
    width: 96px;
    height: 96px;
    border-radius: 1rem;
    bottom: -40px;
    right: -40px;
    background-color: #095763;
}

/* Stat underline */
.stat-line {
    height: 4px;
    width: 48px;
    background-color: rgba(9, 87, 99, 0.2);
    border-radius: 999px;
}

/* Max-width controls */
.philosophy-text {
    max-width: 420px;
}

.philosophy-text-wide {
    max-width: 520px;
}

/* SECTION BASE */
.vision-section {
    background-color: #095763;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Large screens spacing */
@media (min-width: 992px) {
    .vision-section {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

/* OVERLAY */
.vision-overlay {
    opacity: 0.1;
    z-index: 0;
}

/* CONTENT */
.vision-content {
    max-width: 860px;
    z-index: 1;
}

/* BADGE */
.vision-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.vision-badge-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* TITLE */
.vision-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    max-width: 900px;
}

/* Responsive heading */
@media (min-width: 768px) {
    .vision-title {
        font-size: 3rem;
    }
}

/* UNDERLINE HIGHLIGHT */
.vision-highlight {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 8px;
}

/* DIVIDER */
.section-divider {
    width: 64px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 999px;
}

/* SECTION */
.values-section {
    background-color: #f8fafc;
    padding: 8rem 0;
}

/* GLASS CARD */
.glass-card {
    padding: 2rem;
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* CORNER DECORATION */
.card-corner {
    position: absolute;
    top: -4rem;
    right: -4rem;
    width: 8rem;
    height: 8rem;
    background-color: rgba(9, 87, 99, 0.05);
    border-bottom-left-radius: 100%;
    transition: background-color 0.3s ease;
}

.glass-card:hover .card-corner {
    background-color: rgba(9, 87, 99, 0.1);
}

/* ICON */
.icon-box-purpose {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background-color: #095763;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(9, 87, 99, 0.2);
}

.icon-box-purpose span {
    font-size: 32px;
}

/* TITLES */
.value-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #095763;
    margin-bottom: 1.5rem;
}

/* LINK */
.value-link {
    margin-top: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #095763;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* IMAGE */
.value-image {
    width: 100%;
    height: 378px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

/* SECTION */
.initiatives-section {
    background-color: #ffffff;
    padding: 8rem 0;
}

/* HEADER */
.header-content {
    max-width: 640px;
}

.header-line {
    width: 32px;
    height: 1px;
    background-color: #095763;
}

.header-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* DIVIDER */
.section-divider {
    width: 64px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 999px;
}

/* sustainable */
.sustainability-section {
    background-color: #f8fafc;
    padding: 8rem 0;
}

/* CARD */
.initiative-card {
    height: 100%;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: border-color 0.3s ease;
}

.initiative-card:hover {
    border-color: rgba(9, 87, 99, 0.2);
}

/* ICON */
.initiative-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background-color: rgba(9, 87, 99, 0.05);
    color: #095763;
    display: flex;
    align-items: center;
    justify-content: center;
}

.initiative-icon span {
    font-size: 24px;
}

/* CARD TEXT */
.initiative-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #095763;
}

.initiative-text {
    font-size: 0.875rem;
    color: #095763;
    line-height: 1.6;
    margin-bottom: 0px;
}

/* SECTION */
.pledge-section {
    background-color: #095763;
    padding: 8rem 0;
}

@media (min-width: 992px) {
    .pledge-section {
        padding: 12rem 0;
    }
}

/* TEXTURE */
.pledge-texture-layer {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background: var(--pledge-texture);
}

/* CARD */
.pledge-card {
    background: #fff;
    padding: 3rem;
    border-radius: 2.5rem;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .pledge-card {
        padding: 6rem;
    }
}

/* FLOATING ICON */
.pledge-icon-wrapper {
    position: absolute;
    top: -40px;
    left: 50%;
    width: 96px;
    height: 96px;
    transform: translateX(-50%) rotate(45deg);
    background: #fff;
    border: 8px solid #095763;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.pledge-icon-wrapper span {
    font-size: 2.25rem;
    color: #095763;
    transform: rotate(-45deg);
}

/* HEADER */
.pledge-header {
    margin-bottom: 5rem;
    padding-top: 2rem;
}

.pledge-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #095763;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .pledge-title {
        font-size: 2.75rem;
    }
}

.pledge-divider {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.pledge-divider span {
    width: 48px;
    height: 4px;
    background: #095763;
    border-radius: 999px;
}

.pledge-divider .mid {
    width: 16px;
    background: #727271;
}

/* SUBTITLE */
.pledge-subtitle {
    max-width: 640px;
    margin: auto;
    font-size: 0.8rem;
    font-weight: 500;
    color: #727271;
}

/* PLEDGE ITEMS */
.pledge-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pledge-item-head {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pledge-item-head h6 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #095763;
}

/* BULLET */
.pledge-bullet {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(9, 87, 99, 0.1);
    color: #095763;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pledge-item:hover .pledge-bullet {
    background: #095763;
    color: #fff;
}

/* TEXT + BAR */
.pledge-text-wrap {
    margin-left: 16px;
    position: relative;
    padding-left: 2.5rem;
}

.pledge-bar {
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: #f1f5f9;
    border-radius: 999px;
}

.pledge-bar span {
    position: absolute;
    inset: auto 0 0 0;
    height: 0;
    background: #095763;
    border-radius: inherit;
    transition: height 0.7s ease;
}

.pledge-item:hover .pledge-bar span {
    height: 100%;
}

.pledge-text-wrap p {
    font-size: 1rem;
    font-weight: 500;
    color: #727271;
    font-style: italic;
    line-height: 1.75;
}

/* FOOTER */
.pledge-footer {
    margin-top: 6rem;
    padding-top: 3rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.pledge-org {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #727271;
}

/* BUTTON */
.pledge-btn {
    background: #095763;
    color: #fff;
    padding: 1.25rem 3rem;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pledge-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Commitment Section */
.commitment-section {
    padding: 80px 0;
}

.commitment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(125%);
    transition: transform 700ms ease;
    overflow: hidden;
}

.commitment-image:hover {
    filter: grayscale(0%);
}

.commitment-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 20px;
}

.quote-icon {
    font-size: 4rem;
    color: #cfe3e5;
    line-height: 1;
}

.commitment-quote {
    font-size: 1.3rem;
    color: #0b4d57;
    font-style: italic;
    margin-top: 10px;
}

.quote-author {
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #6c757d;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .commitment-title {
        font-size: 2.2rem;
    }
}

.value-card {
    background: #ffffff;
    border: 1px solid #eef2f4;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.icon-box {
    width: 44px;
    height: 44px;
    background-color: #f1f6f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icon-box i {
    font-size: 20px;
    color: #0b4d57;
}

.card-title {
    font-weight: 600;
    font-size: 1rem;
    color: #0b4d57;
    margin-bottom: 10px;
}

.divider {
    width: 32px;
    height: 2px;
    background-color: #d6e4e7;
    margin-bottom: 12px;
}

.card-text {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}

.promise-section {
    background: linear-gradient(180deg,
            #f8fafb 0%,
            #ffffff 100%);
}

.promise-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #6c757d;
}

.promise-divider {
    width: 60px;
    height: 3px;
    background-color: #0b4d57;
    border-radius: 2px;
}

.promise-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #0b4d57;
    font-weight: 500;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .promise-text {
        font-size: 1.1rem;
    }
}

/* pledge */
.pledge-wrapper {
    padding: 3rem 1rem;
}

.pledge-left {
    background: #f0f4f4;
    position: relative;
    padding: 3rem;
}

.pledge-right {
    background: linear-gradient(135deg, #095763, #095763a8);
    position: relative;
    padding: 3rem;
    color: #fff;
}

.watermark-leaf {
    position: absolute;
    top: -40px;
    right: -40px;
    opacity: 0.05;
    pointer-events: none;
}

.watermark-leaf img {
    width: 320px;
    height: 320px;
    filter: grayscale(1);
}

.watermark-map {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
    pointer-events: none;
}

.watermark-map span {
    font-size: 400px;
}

.material-symbols-outlined {
    font-size: 3rem;
}

.pledge-title {
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.2;
    color: white;
}

.pledge-text {
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 500;
}

.pledge-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.pledge-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pledge-footer.light {
    border-color: rgba(11, 77, 87, 0.1);
}

.signature-font {
    font-family: "Georgia", serif;
    font-style: italic;
}

@media (min-width: 992px) {

    .pledge-left,
    .pledge-right {
        padding: 4rem;
    }
}

.section-subtitle {
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #0b5d63;
    font-weight: 600;
}

.promise-section {
    background-color: #f8fafc;
    padding: 8rem 0;
}

.promise-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3rem;
    color: #7a7a7a;
    line-height: 1.2;
}

.promise-text {
    font-size: 1.5rem;
    color: #0b5d63;
}

.promise-text strong {
    font-weight: 600;
    text-decoration: underline;
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e5eeee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: #0b5d63;
    font-size: 1.4rem;
}

.icon-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: #0b5d63;
    font-weight: 600;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #8a8a8a;
}