:root {
    --royal-blue: #0056a3;
    --mustard-yellow: #ffc400;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding-top: 76px;
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
}

.value-icon i {
    color: #FFD700; /* Yellow/Gold color */
}

.btn-order {
    background: var(--mustard-yellow);
    color: var(--royal-blue);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--mustard-yellow);
}

.btn-order:hover {
    background: var(--royal-blue);
    color: var(--mustard-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 86, 163, 0.3);
}

/* Hero Section with Background */
.about-hero {
    background: linear-gradient(135deg, rgba(0, 86, 163, 0.9) 0%, rgba(25, 118, 210, 0.9) 100%),
        url('../public/IMG_8131.PNG') center/cover;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.about-hero p {
    font-size: 1.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    color: var(--royal-blue);
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--mustard-yellow);
    border-radius: 2px;
}

.story-text {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: center;
}

.story-highlight {
    background: linear-gradient(135deg, var(--mustard-yellow), #ffb700);
    color: var(--royal-blue);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(255, 196, 0, 0.3);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 86, 163, 0.1);
    transition: transform 0.3s ease;
    border-top: 5px solid var(--mustard-yellow);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.mission-card h3,
.vision-card h3 {
    color: var(--royal-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--white);
}

.value-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    background: var(--white);
    border-color: var(--mustard-yellow);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 86, 163, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h4 {
    color: var(--royal-blue);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--royal-blue) 0%, #1976d2 100%);
    color: var(--white);
}

.team-section .section-title {
    color: var(--white);
}

.team-section .section-title::after {
    background: var(--mustard-yellow);
}

.team-highlight {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-highlight h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--mustard-yellow);
}

.team-highlight p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Pre-Footer CTA */
.pre-footer {
    background: linear-gradient(135deg, var(--mustard-yellow) 0%, #ffb700 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pre-footer::before {
    content: '🌽';
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    top: 50%;
    left: 10%;
    transform: translateY(-50%) rotate(-20deg);
}

.pre-footer::after {
    content: '🌽';
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    top: 50%;
    right: 10%;
    transform: translateY(-50%) rotate(20deg);
}

.pre-footer-content {
    position: relative;
    z-index: 1;
}

.pre-footer h2 {
    color: var(--royal-blue);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.pre-footer p {
    color: var(--royal-blue);
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-menu {
    background: var(--royal-blue);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 86, 163, 0.3);
}

.btn-menu:hover {
    background: #003d73;
    color: var(--mustard-yellow);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 86, 163, 0.5);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--mustard-yellow);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--mustard-yellow);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--mustard-yellow);
    color: var(--royal-blue);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pre-footer h2 {
        font-size: 2rem;
    }

    .pre-footer::before,
    .pre-footer::after {
        font-size: 8rem;
    }
}