/* About Page Variables */
:root {
    --gold-primary: #d4af37;
    --gold-light: #f5e6b7;
    --gold-dark: #aa8c2c;
    --text-dark: #001f3f;
    --text-gray: #666;
    --bg-light: #f9f9f9;
    --bg-dark: #001f3f;
}

.about-page {
    animation: fadeIn 0.8s ease-out;
    width: 100%;
    overflow-x: hidden;
    background-color: #f9f9f9;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: calc(var(--navbar-height) + 2rem) 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(45deg, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    letter-spacing: 1px;
}

/* Section Common Styles */
.about-section {
    padding: 5rem 0;
}

.about-page .section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-divider {
    height: 3px;
    width: 60px;
    background: var(--gold-primary);
    margin-bottom: 2rem;
}

.section-divider.center {
    margin: 0 auto 2rem;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: #fff;
}

/* Grids */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse>* {
    direction: ltr;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
}

/* Image Placeholders */
.about-image-placeholder {
    background: white;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 31, 63, 0.1);
}

.placeholder-content {
    color: var(--gold-primary);
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0.8;
    border: 2px solid var(--gold-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 31, 63, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-primary);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--gold-primary);
    color: white;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Mission & Vision */
.mission-vision-section {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.mv-card {
    padding: 3.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.mv-card h3 {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.mv-card p {
    opacity: 0.95;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.about-cta {
    background: #fff;
    padding: 6rem 2rem;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.about-cta p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-flex;
    background: var(--gold-primary);
    color: #001f3f;
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #f3e5ab;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: calc(var(--navbar-height) + 1rem) 1rem 2rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-page .section-title {
        font-size: 2rem;
    }

    .about-cta h2 {
        font-size: 2rem;
    }
}