/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

.about-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    overflow: hidden;
}

/* Background Elements */

.about-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(212, 165, 117, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 63, 38, 0.05) 0%, transparent 50%);
    animation: aboutGradientShift 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes aboutGradientShift {

    0%,
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1) rotate(5deg);
    }
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, rgba(212, 165, 117, 0.03) 0px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, rgba(212, 165, 117, 0.03) 0px, transparent 1px, transparent 60px);
    z-index: 1;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Hero Section */

.about-hero {
    text-align: center;
    margin-bottom: 100px;
    animation: fadeInUp 0.8s ease-out;
}

.about-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 165, 117, 0.15);
    color: #d4a575;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 165, 117, 0.3);
}

.about-hero h1 {
    font-size: clamp(48px, 6vw, 60px);
    font-weight: 800;
    color: #0a3f26;
    margin: 20px 0;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #0a3f26 0%, #0d5232 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 18px;
    color: rgba(10, 63, 38, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Story Section */

.about-story {
    margin-bottom: 100px;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text {
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.story-text h2 {
    font-size: clamp(32px, 4vw, 30px);
    font-weight: 700;
    color: #0a3f26;
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-text p {
    font-size: 16px;
    color: rgba(10, 63, 38, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.story-image img {
    width: 100%;
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #d4a575, #b08455);
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(212, 165, 117, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Stats Section */

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 100px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 117, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 165, 117, 0.2);
    border-color: #d4a575;
}

.stat-card h3 {
    font-size: 48px;
    font-weight: 800;
    color: #d4a575;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #d4a575, #b08455);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card p {
    font-size: 16px;
    color: rgba(10, 63, 38, 0.7);
    font-weight: 600;
}

/* Values Section */

.about-values {
    margin-bottom: 100px;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.values-header h2 {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    color: #0a3f26;
    margin-bottom: 15px;
}

.values-header p {
    font-size: 18px;
    color: rgba(10, 63, 38, 0.6);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 117, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out both;
}

.value-card:nth-child(1) {
    animation-delay: 0.3s;
}

.value-card:nth-child(2) {
    animation-delay: 0.4s;
}

.value-card:nth-child(3) {
    animation-delay: 0.5s;
}

.value-card:nth-child(4) {
    animation-delay: 0.6s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 165, 117, 0.2);
    border-color: #d4a575;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4a575, #b08455);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(212, 165, 117, 0.3);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a3f26;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: rgba(10, 63, 38, 0.7);
    line-height: 1.6;
}

/* Mission & Vision */

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 100px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, rgba(10, 63, 38, 0.05) 0%, rgba(212, 165, 117, 0.05) 100%);
    border: 2px solid rgba(212, 165, 117, 0.3);
    border-radius: 24px;
    padding: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 165, 117, 0.2);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0a3f26, #0d5232);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a575;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(10, 63, 38, 0.3);
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0a3f26;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 17px;
    color: rgba(10, 63, 38, 0.8);
    line-height: 1.7;
}

/* Team Section */

.about-team {
    margin-bottom: 100px;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.team-header h2 {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    color: #0a3f26;
    margin-bottom: 15px;
}

.team-header p {
    font-size: 18px;
    color: rgba(10, 63, 38, 0.6);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 117, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out both;
}

.team-card:nth-child(1) {
    animation-delay: 0.3s;
}

.team-card:nth-child(2) {
    animation-delay: 0.4s;
}

.team-card:nth-child(3) {
    animation-delay: 0.5s;
}

.team-card:nth-child(4) {
    animation-delay: 0.6s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 165, 117, 0.2);
    border-color: #d4a575;
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.5s ease;
}

.team-image .team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 117, 0.15), rgba(10, 63, 38, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212, 165, 117, 0.5);
}

.team-placeholder .placeholder-icon {
    width: 80px;
    height: 80px;
    color: rgba(212, 165, 117, 0.4);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 63, 38, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-contact-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #d4a575, #b08455);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 117, 0.4);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0a3f26;
    margin-bottom: 5px;
}

.team-info p {
    font-size: 15px;
    color: #d4a575;
    font-weight: 600;
}

/* CTA Section */

.about-cta {
    background: linear-gradient(135deg, #0a3f26 0%, #0d5232 100%);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 117, 0.1) 0%, transparent 70%);
    animation: shimmer 10s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30%, -30%);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #d4a575, #b08455);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(212, 165, 117, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 117, 0.5);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #d4a575;
}

/* Animations */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */

@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-hero {
        margin-bottom: 60px;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .story-text h2 {
        font-size: 32px;
    }

    .story-image img {
        height: 350px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .vision-card {
        padding: 35px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-cta {
        padding: 50px 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}