/* ========================= */
/* ZESTGAH ABOUT PAGE - CSS */
/* ========================= */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background: rgba(15, 52, 96, 0.7);
    backdrop-filter: blur(5px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(15, 52, 96, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8fbc3f !important;
}

.brand-text {
    background: linear-gradient(135deg, #8fbc3f, #a0d055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.nav-link {
    color: #e6e6e6 !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8fbc3f !important;
    background: rgba(143, 188, 63, 0.1);
}

.nav-link i {
    margin-left: 0.5rem;
}

/* Hero Section */
.about-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.9), rgba(22, 33, 62, 0.9)),
        url('../images/about-hero-bg.jpg') center/cover;
    margin-top: 70px;
    overflow: hidden;
}


.hero-content {
    position: relative;
    z-index: 2;
}

.hero-icon {
    font-size: 4rem;
    color: #8fbc3f;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 30px rgba(143, 188, 63, 0.5);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #8fbc3f;
    font-weight: 300;
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8fbc3f, transparent);
    margin: 2rem auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #8fbc3f;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 3;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Brand Story Section */
.brand-story {
    background: rgba(255, 255, 255, 0.02);
}

.story-image-wrapper {
    position: relative;
}

.story-image-wrapper img {
    border: 3px solid #8fbc3f;
    transition: transform 0.5s ease;
}

.story-image-wrapper:hover img {
    transform: scale(1.05) rotate(2deg);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid #8fbc3f;
    border-radius: 20px;
    z-index: -1;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #8fbc3f, #a0d055);
    color: #0f3460;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c7c7c7;
}

.brand-values {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8fbc3f;
    font-weight: 600;
}

.value-item i {
    font-size: 1.5rem;
}

/* Mission & Vision Section */
.mission-card {
    background: linear-gradient(135deg, rgba(143, 188, 63, 0.1), rgba(160, 208, 85, 0.05));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(143, 188, 63, 0.2);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(143, 188, 63, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: #8fbc3f;
    box-shadow: 0 20px 40px rgba(143, 188, 63, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8fbc3f, #a0d055);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #0f3460;
    transition: transform 0.4s ease;
}

.mission-card:hover .card-icon {
    transform: rotate(360deg);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8fbc3f;
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #c7c7c7;
    margin-bottom: 1.5rem;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 0.5rem 0;
    color: #e6e6e6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mission-list li i {
    color: #8fbc3f;
    font-size: 1.2rem;
}

/* Philosophy Section */
.philosophy-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(143, 188, 63, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    border-color: #8fbc3f;
    background: linear-gradient(135deg, rgba(143, 188, 63, 0.1), rgba(160, 208, 85, 0.05));
    box-shadow: 0 15px 30px rgba(143, 188, 63, 0.2);
}

.philosophy-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(143, 188, 63, 0.2), rgba(160, 208, 85, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #8fbc3f;
    transition: all 0.4s ease;
}

.philosophy-card:hover .philosophy-icon {
    background: linear-gradient(135deg, #8fbc3f, #a0d055);
    color: #0f3460;
    transform: scale(1.1);
}

.philosophy-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8fbc3f;
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: #c7c7c7;
    line-height: 1.8;
}

/* Team Section */
.team-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(143, 188, 63, 0.1);
}

.team-card:hover {
    transform: translateY(-15px);
    border-color: #8fbc3f;
    box-shadow: 0 20px 40px rgba(143, 188, 63, 0.3);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 52, 96, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(143, 188, 63, 0.2);
    border: 2px solid #8fbc3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8fbc3f;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #8fbc3f;
    color: #0f3460;
    transform: translateY(-5px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8fbc3f;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #c7c7c7;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Stats Section */
.stat-card {
    padding: 2rem;
    text-align: center;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(143, 188, 63, 0.2), rgba(160, 208, 85, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #8fbc3f;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, #8fbc3f, #a0d055);
    color: #0f3460;
    transform: scale(1.1) rotate(360deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8fbc3f;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #c7c7c7;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, rgba(143, 188, 63, 0.1), rgba(160, 208, 85, 0.05));
    border-top: 2px solid rgba(143, 188, 63, 0.2);
    border-bottom: 2px solid rgba(143, 188, 63, 0.2);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #8fbc3f;
}

.cta-text {
    font-size: 1.1rem;
    color: #c7c7c7;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a1f3d, #0f3460);
    padding: 4rem 0 0;
    border-top: 2px solid rgba(143, 188, 63, 0.2);
}

.footer-brand img {
    filter: drop-shadow(0 0 10px rgba(143, 188, 63, 0.5));
}

.footer-text {
    color: #a0a0a0;
    line-height: 1.8;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(143, 188, 63, 0.1);
    border: 2px solid rgba(143, 188, 63, 0.3);
    border-radius: 50%;
    color: #8fbc3f;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #8fbc3f;
    color: #0f3460;
    transform: translateY(-5px);
}

.footer-title {
    color: #8fbc3f;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #8fbc3f, transparent);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #8fbc3f;
    padding-right: 0.5rem;
}

.footer-links a i {
    font-size: 0.7rem;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(143, 188, 63, 0.2);
    color: #fff;
    padding: 0.75rem 1rem;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #8fbc3f;
    color: #fff;
    box-shadow: 0 0 15px rgba(143, 188, 63, 0.3);
}

.newsletter-form .btn-warning {
    background: linear-gradient(135deg, #8fbc3f, #a0d055);
    border: none;
    color: #0f3460;
    font-weight: 700;
}

.newsletter-form .btn-warning:hover {
    background: linear-gradient(135deg, #a0d055, #8fbc3f);
    transform: translateX(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(143, 188, 63, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    color: #808080;
    margin: 0;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #8fbc3f;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8fbc3f, #a0d055);
    border: none;
    border-radius: 50%;
    color: #0f3460;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(143, 188, 63, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(143, 188, 63, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .brand-values {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}