/* Base Variables - Consistent with other pages */
: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;
    --green-gradient: linear-gradient(135deg, 
        var(--primary-color),
        var(--hover-color)
    );
    --gold-gradient: linear-gradient(135deg, 
        var(--gradient-start),
        var(--gradient-end)
    );
    --dark-green-gradient: linear-gradient(135deg, #081c15, #1b4332);
    --gold-brown-gradient: linear-gradient(135deg, #b08d57, #816653, #b08d57);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page Hero Section */
.page-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);
    opacity: 0;
    animation: scaleIn 0.8s ease-out forwards;
}

.page-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;
}

/* Hero Icon and Title Group */
.icon-title-group {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Feature Icon Wrapper */
.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    animation: floatIcon 3s ease-in-out infinite;
}

.icon-stack {
    position: relative;
    display: inline-block;
    width: 5rem;
    height: 5rem;
}

.feature-icon {
    font-size: 5rem;
    background: linear-gradient(135deg, #ddb892, #b08d57, #816653);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 2;
    animation: iconGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 6px rgba(176, 141, 87, 0.3));
}

.feature-icon-overlay {
    position: absolute;
    font-size: 3rem;
    right: -0.5rem;
    bottom: -0.5rem;
    background: linear-gradient(135deg, #1b4332, #2d6a4f);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: 3;
    animation: shieldPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(27, 67, 50, 0.3));
}

/* Main Content Section */
.page-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(27, 67, 50, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(221, 184, 146, 0.2);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

/* Content Cards */
.content-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(221, 184, 146, 0.2);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(27, 67, 50, 0.1),
        0 2px 6px rgba(27, 67, 50, 0.05);
    border-color: var(--accent-color);
}

/* Typography */
.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.content-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.content-card:hover .content-title::after {
    width: 100px;
}

/* Buttons */
.action-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold-gradient);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(221, 184, 146, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.action-button:hover {
    background: var(--green-gradient);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(27, 67, 50, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 1);
}

/* Highlight Text */
.highlight-text {
    background: var(--gold-gradient);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    font-weight: 700;
    padding: 0 4px;
    transition: all 0.5s ease;
    animation: gradientMove 3s ease infinite;
}

/* Animations */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 4px 6px rgba(176, 141, 87, 0.3));
        background-position: 0% 50%;
    }
    50% {
        filter: drop-shadow(0 6px 12px rgba(176, 141, 87, 0.5));
        background-position: 100% 50%;
    }
}

@keyframes shieldPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(27, 67, 50, 0.3));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 4px 8px rgba(27, 67, 50, 0.5));
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 3rem 1.5rem;
        margin: 1rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1.2rem;
    }

    .page-content {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 3rem;
    }
}

/* Glass Effect Elements */
.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(221, 184, 146, 0.2);
    padding: 2rem;
    margin: 2rem 0;
}

/* List Styles */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    position: relative;
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--accent-color);
    font-weight: bold;
}

.feature-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(27, 67, 50, 0.1);
}

/* Separator */
.styled-separator {
    border: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--accent-color) 20%,
        var(--secondary-color) 50%,
        var(--accent-color) 80%,
        transparent 100%
    );
    margin: 2rem auto;
    width: 80%;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #ddb892, #b08d57, #ddb892) !important;
    background-size: 200% 100% !important;
    color: #1b4332;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(221, 184, 146, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    text-align: center;
    cursor: pointer;
    animation: buttonGradient 3s ease infinite;
    will-change: transform, opacity;
}

.btn:hover {
    background: linear-gradient(135deg, #e6ccb2, #b08d57, #e6ccb2) !important;
    background-size: 200% 100% !important;
    color: #1b4332;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(221, 184, 146, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 1);
    animation: buttonGradient 2s ease infinite;
}

@keyframes buttonGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

@media (max-width: 768px) {
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}
