/* ================= BACK TO HOME BUTTON ================= */

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #c56a1a;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.back-home-btn i {
    font-size: 13px;
}

.back-home-btn:hover {
    color: #a85414;
    transform: translateX(-4px);
}

/* Mobile */
@media (max-width: 575px) {
    .back-home-btn {
        font-size: 13px;
    }
}


/* ================= PAGE HERO ================= */

.page-hero {
    position: relative;
    background: linear-gradient(135deg, #fff7f0, #ffffff);
    padding: 140px 0 90px;
    text-align: center;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(197, 106, 26, 0.08);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

.page-hero h1 {
    font-size: 44px;
    font-weight: 700;
    color: #2c2c2c;
}

.page-hero p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    max-width: 520px;
    margin-inline: auto;
}


/* ================= ABOUT PAGE ================= */

.about-page-section {
    padding: 100px 0;
}

.about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #fff7f0, #ffffff);
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    max-width: 420px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.highlight-box:hover {
    transform: translateY(-8px);
}

.highlight-box h4 {
    color: #c56a1a;
    font-weight: 600;
    margin-bottom: 10px;
}


.vision-mission {
    background-color: #fff7f0;
    padding: 100px 0;
}

.vm-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.vm-card h4 {
    color: #c56a1a;
    font-weight: 600;
}


/* ================= VALUES ================= */

.value-box {
    background: #ffffff;
    padding: 35px 10px;
    border-radius: 16px;
    font-weight: 600;
    color: #2c2c2c;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.value-box:hover {
    background: #c56a1a;
    color: #ffffff;
    transform: translateY(-6px);
}


/* ================= GLOBAL ANIMATIONS ================= */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeLeft 1s ease forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeRight 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
