/* Base Variables */
:root {
    --primary-color: #1b4332;
    --secondary-color: #ddb892;
    --accent-color: #b08d57;
    --hover-color: #2d6a4f;
    --text-color: #333333;
    --light-color: #ffffff;
    --glass-bg: rgba(27, 67, 50, 0.1);
    --glass-border: rgba(221, 184, 146, 0.2);
    --gradient-start: #b08d57;
    --gradient-end: #ddb892;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section */
.about-hero {
    position: relative;
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 2rem auto;
    max-width: 1200px;
    overflow: hidden;
    border: 1px solid rgba(221, 184, 146, 0.2);
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(221, 184, 146, 0.1),
        rgba(27, 67, 50, 0.05),
        rgba(176, 141, 87, 0.1)
    );
    z-index: -1;
}

/* Shield Icon Animation */
.shield-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.shield-icon i {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.shield-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(221, 184, 146, 0.2) 0%,
        transparent 70%
    );
    left: 0;
    top: 0;
    filter: blur(10px);
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0.8);
}

.shield-icon:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

/* Title Styles */
.about-hero h1 {
    font-size: 3.5rem;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Content Cards */
.about-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(27, 67, 50, 0.1);
    border: 1px solid rgba(221, 184, 146, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-card:nth-child(2) {
    animation-delay: 0.2s;
}

.about-card:nth-child(3) {
    animation-delay: 0.4s;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(27, 67, 50, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

.about-card h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.about-card:hover h2::after {
    width: 100px;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Feature Icons */
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.about-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(221, 184, 146, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(27, 67, 50, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 1.5rem;
        margin: 1rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        padding: 1.5rem;
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 1.5rem;
    }

    .shield-icon {
        font-size: 3rem;
    }
}
