/* About Page Specific Styles */
:root {
    --primary-color: #0b1120;
    --secondary-color: #d4af37; /* Golden */
    --accent-color: #f8f9fa;
    --text-white: #ffffff;
    --text-gray: #a0aec0;
}

/* ==========================================================================
   About Hero Section
   ========================================================================== */
.about-hero-section {
    background-color: var(--primary-color);
    background-image: url('/images/about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 150px 0 100px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(11, 17, 32, 0.7) 0%, rgba(11, 17, 32, 0.8) 100%);
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-white);
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--text-white);
}

.breadcrumb .active {
    color: var(--text-gray);
}

/* ==========================================================================
   About Story Section
   ========================================================================== */
.about-story-section {
    background-color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-top: 5px;
    color: var(--text-white);
}

.section-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    position: relative;
}
.section-tag.center {
    display: block;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.section-title .highlight {
    color: var(--secondary-color);
}

.story-content p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-content .lead-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.story-features {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.story-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.story-features li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* ==========================================================================
   Mission Section
   ========================================================================== */
.about-mission-section {
    background-color: var(--accent-color);
}

.mission-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-statement {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--primary-color);
    font-style: italic;
    position: relative;
    padding: 20px 40px;
}

.quote-icon {
    color: rgba(212, 175, 55, 0.2);
    font-size: 3rem;
    position: absolute;
}
.fa-quote-left {
    top: -10px;
    left: -10px;
}
.fa-quote-right {
    bottom: -10px;
    right: -10px;
}

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

.stat-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.about-team-section {
    background-color: #ffffff;
}

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

.team-card {
    background: var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 17, 32, 0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(to top, rgba(11,17,32,0.9), transparent);
    padding: 30px 0 15px;
    transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.team-social a:hover {
    background: #ffffff;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-role {
    color: var(--text-white);
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        right: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-statement {
        font-size: 1.3rem;
        padding: 20px;
    }
}

/* ==========================================================================
   Values Section
   ========================================================================== */
.values-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.values-bg-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 55%;
    background-color: var(--primary-color); /* Updated to website theme */
    z-index: 0;
}

.values-bg-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 45%;
    background-color: #ffffff;
    z-index: 0;
}

.values-container {
    position: relative;
    z-index: 1;
}

.values-header {
    margin-bottom: 50px;
}

.section-tag-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.section-tag-line .line {
    width: 2px;
    height: 20px;
    background-color: var(--secondary-color);
}
.section-tag-line .text {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.values-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
}

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

.value-card {
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card.gray-card {
    background-color: #e2e8f0; /* Solid light slate/gray */
    color: var(--primary-color);
    border: none;
}

.value-card.white-card {
    background-color: #ffffff;
    color: var(--primary-color);
    border: none;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.value-card.white-card .value-icon {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: #4a5568;
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .values-bg-top {
        height: 15%; /* adjust for stacked cards */
    }
}
