* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f6f6f6;
    font-family: 'Afacad Flux', sans-serif;
    overflow-x: hidden;
}

/* ANIMATION */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SAME NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: #d63a33;
    padding: 20px 50px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.logo {
    height: 80px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.08);
}

.navbar.scrolled .logo {
    height: 60px;
}

nav {
    display: flex;
    margin-left: 30px;
    flex: none;
}

.review-link {
    margin-left: auto;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 18px;
    position: relative;
    transition: 0.3s;
}

nav a:hover {
    color: #ffe0c2;
}

nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ffe0c2;
    transition: 0.3s;
    transform: translateX(-50%);
}

nav a:hover::after,
nav .active::after {
    width: 100%;
}

.review-btn {
    background: white;
    color: #d63a33;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.review-btn:hover {
    box-shadow: 0 4px 15px rgba(255,224,194,0.6),
                0 0 10px rgba(255,224,194,0.8);
}

/* TITLE */
.title {
    text-align: center;
    margin: 50px 0;
}

.title h1 {
    font-family: "acumin-variable", sans-serif;
    font-weight: 900;
    font-stretch: semi-condensed;
    font-size: 52px;
    color: #d63a33;
}

/* VIDEO */
.video-section {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

.video-container iframe {
    width: 760px;
    height: 430px;
    border: none;
}

/* STORY */
.story-section {
    background: url('../GRAPHIC/ENVIRONMENT/AboutUs.jpg') center/cover no-repeat;
    min-height: 520px;
    position: relative;
}

.story-overlay {
    background: rgba(255,255,255,0.72);
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 60px;
}

.story-left h2 {
    font-size: 72px;
    font-weight: 900;
    color: #111;
}

.story-right {
    max-width: 620px;
}

.story-right p {
    font-size: 22px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 28px;
}

/* VISION SECTION */
.vision-section {
    padding: 90px 0;
    text-align: center;
}

.vision-section h2 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #111;
}

.vision-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
}

/* REMOVE IMAGE */
.vision-image {
    display: none;
}

.vision-card,
.mission-card {
    background: #d1493a;
    color: white;
    width: 400px;
    min-height: 520px;
    padding: 45px;
    border-radius: 30px;
    text-align: left;
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HOVER EFFECT */
.vision-card:hover,
.mission-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(209, 73, 58, 0.35);
}

.vision-card h3,
.mission-card h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 35px;
}

.vision-card p,
.mission-card li {
    font-size: 20px;
    line-height: 1.9;
}

.mission-card ul {
    padding-left: 28px;
}

/* MOBILE */
@media (max-width: 768px) {
    .vision-section h2 {
        font-size: 36px;
    }

    .vision-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .vision-card,
    .mission-card {
        width: 90%;
        min-height: auto;
        padding: 30px;
    }

    .vision-card h3,
    .mission-card h3 {
        font-size: 32px;
    }

    .vision-card p,
    .mission-card li {
        font-size: 16px;
    }
}
/* FOOTER */
.footer {
    background: linear-gradient(to right, #2b1e1e, #1a1414);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.footer-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-nav {
    margin-bottom: 25px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-nav a:hover {
    opacity: 0.6;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-socials img {
    width: 35px;
    transition: 0.3s;
}

.footer-socials img:hover {
    transform: translateY(-5px) scale(1.05);
    opacity: 0.7;
}

.footer-copy {
    font-size: 12px;
    opacity: 0.7;
}

/* BACK TO TOP */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d63a33;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
}

#backToTop:hover {
    background: #b52d27;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    margin-left: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .logo {
        height: 60px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #d63a33;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: 0.3s;
        margin-left: 0;
    }

    nav.active {
        max-height: 300px;
    }

    nav a {
        margin: 15px 0;
    }

    .review-link {
        display: none;
    }

    .title h1 {
        font-size: 36px;
    }

    .video-container iframe {
        width: 95%;
        height: 250px;
    }

    .story-overlay {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .story-left h2 {
        font-size: 42px;
    }

    .story-right p {
        font-size: 16px;
    }

    .vision-container {
        flex-direction: column;
        align-items: center;
    }

    .vision-card,
    .mission-card {
        width: 90%;
    }
}