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

/* Body margin adjustment */
body {
    margin-top: 80px;
}

/* =====================================
   MODERN HERO SECTION
   ===================================== */
.about-hero-modern {
    padding: 80px 0 40px;
    background: #fff;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-texts {
    padding-right: 20px;
}

.about-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #d3a748;
    margin-bottom: 16px;
    position: relative;
    padding-left: 50px;
}

.about-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #d3a748;
    transform: translateY(-50%);
}

.about-main-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #222;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    font-weight: 300;
}

.hero-side-desc {
    position: relative;
}

.side-desc-text {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid #d3a748;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-hero-image {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-hero-image:hover img {
    transform: scale(1.05);
}

/* =====================================
   MISSION & VISION SECTION
   ===================================== */
.about-mission-section {
    padding: 100px 0;
    background: #fff;
}

.mission-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #d3a748;
    margin-bottom: 15px;
    display: block;
}

.mission-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #222;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.mission-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #d3a748;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-item:hover::before {
    transform: scaleX(1);
}

.mission-item i {
    font-size: 2.5rem;
    color: #d3a748;
    margin-bottom: 24px;
    background: rgba(211, 167, 72, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mission-item:hover i {
    background: #d3a748;
    color: #fff;
    transform: rotateY(180deg);
}

.mission-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
}

.mission-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* =====================================
   HISTORY SECTION
   ===================================== */
.about-history-modern {
    padding: 100px 0;
    background: #f9f9f9;
}

.history-label {
    font-weight: 700;
    color: #d3a748;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: block;
}

.history-content {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border-left: 5px solid #d3a748;
}

.history-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
}

.history-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* =====================================
   RESPONSIVE DESIGN
   ===================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-modern {
        padding-top: 40px;
    }

    .about-main-title {
        font-size: 2.5rem;
    }

    .about-hero-image {
        height: 350px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .history-content {
        padding: 30px;
    }
}