/* =============================================
   CSR PAGE SPECIFIC STYLES
   ============================================= */

.csr-page {
    margin-top: var(--nav-h);
}

.csr-hero {
    height: calc(100vh - var(--nav-h));
    background-image: url('Images/Frame 842.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 40px;
}

/* Glassmorphism card for CSR message */
.csr-hero__glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.15px solid rgba(255, 255, 255, 0.35);
    border-radius: 30px;
    padding: 60px 100px; /* Restored some padding for the content */
    text-align: center;
    max-width: 1000px;
    max-height: 600px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative; /* For absolute positioning of button */
}

.csr-hero__heading {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.csr-hero__text {
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.5;
    color: #fff;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 30px;
}

.csr-hero__footer {
    position: absolute;
    bottom: 0;
    right: 80px;
    transform: translateY(50%); /* Centered on the border line */
}

.csr-hero__btn {
    background-color: #ef9c4b; /* Exact orange from design */
    color: #fff;
    padding: 18px 49px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 156, 75, 0.3);
   
}

.csr-hero__btn:hover {
    background-color: #513316;
    transform: translateY(-2px);
}

/* CSR Impact Section */
.csr-impact {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.csr-impact__container {
    max-width: 1200px;
    margin: 0 auto;
}

.csr-impact__title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.csr-impact__subtitle {
    font-size: 20px;
    color: #444;
    max-width: 900px;
    margin: 0 auto 60px;
    font-weight: 400;
}

.csr-impact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.impact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f9f9f9;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-card__icon {
    width: 70px;
    height: 70px;
    background-color: #fff8e1; /* Yellowish light circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef9c4b; /* Icon orange */
    margin-bottom: 25px;
}

.impact-card__value {
    font-size: 32px;
    font-weight: 800;
    color: #d88330; /* Darker orange/brown */
    margin-bottom: 10px;
}

.impact-card__label {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.impact-card__desc {
    font-size: 14px;
    color: #777;
    line-height: 1.4;
    max-width: 200px;
}

/* Community Programs Section */
.csr-programs {
    padding: 60px 20px 40px;
    background-color: #fff;
}

.csr-programs__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(320px, 0.9fr);
    gap: 50px;
    align-items: center;
}

.programs-content {
    background-color: #121212;
    color: #fff;
    padding: 80px 60px;
    border-radius: 36px;
    position: relative;
    z-index: 1;
}

.programs-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 30px;
}

.programs-title .underline {
    border-bottom: 4px solid #ef9c4b;
    display: inline-block;
}

.programs-text {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.95;
    max-width: 520px;
}

.programs-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.programs-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 14px 50px rgba(0,0,0,0.18);
    display: block;
    margin: 0;
}

@media (max-width: 1024px) {
    .csr-programs__container {
        display: flex;
        flex-direction: column;
        gap: 36px;
        padding-bottom: 0;
    }
    .programs-content {
        padding: 60px 40px;
    }
    .programs-image {
        justify-content: center;
    }
    .programs-image img {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .csr-programs {
        padding: 40px 18px 28px;
    }
    .programs-content {
        padding: 40px 24px;
    }
    .programs-title {
        font-size: 2.4rem;
    }
    .programs-text {
        font-size: 1.05rem;
        max-width: 100%;
    }
}

/* CSR Initiatives Section */
.csr-initiatives {
    padding: 30px 20px 60px;
    background-color: #fff;
}

.csr-initiatives__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.initiative-block {
    max-width: 600px;
}

.initiative-block--left {
    align-self: flex-start;
    text-align: left;
}

.initiative-block--right {
    align-self: flex-end;
    text-align: right;
}

.initiative-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.initiative-text {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.initiative-list {
    list-style: none;
    padding: 0;
}

.initiative-list li {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.initiative-block--right .initiative-list li {
    padding-left: 0;
    padding-right: 20px;
}

.initiative-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.initiative-block--right .initiative-list li::before {
    left: auto;
    right: 0;
}

/* Row with Image */
.initiative-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
}

.initiative-image {
    flex: 1;
}

.initiative-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.initiative-row .initiative-block {
    flex: 1;
    text-align: left;
}

@media (max-width: 900px) {
    .initiative-block {
        max-width: 100%;
        text-align: center;
        align-self: center;
    }
    .initiative-block--right .initiative-list li {
        padding-right: 0;
    }
    .initiative-list li::before {
        display: none;
    }
    .initiative-row {
        flex-direction: column;
        gap: 30px;
    }
    .initiative-image {
        order: 2;
        width: 100%;
    }
    .initiative-image img {
        max-width: 90%;
        margin: 0 auto;
    }
}
/* CSR Join Section */
.csr-join {
    padding: 80px 70px 120px;
    background-color: #fff;
}

.csr-join__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.csr-join__info {
    flex: 1;
}

.csr-join__title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 25px;
}

.csr-join__text {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
    max-width: 500px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-method__icon {
    width: 45px;
    height: 45px;
    background-color: #fff8e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef9c4b;
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}

.contact-method p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Form Card */
.csr-join__form {
    flex: 1;
}

.form-card {
    background-color: #fffaf0; /* Light beige/off-white */
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: 1px solid #ef9c4b;
    border-color: #ef9c4b;
}

.form-submit-btn {
    width: 100%;
    background-color: #d88330; /* Darker orange from design */
    color: #fff;
    border: none;
    padding: 15px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background-color: #bf7123;
}

@media (max-width: 1024px) {
    .csr-join__container {
        flex-direction: column;
        gap: 60px;
    }
}

