:root {
    --sage-green: #7C9885;
    /* Refined Sage */
    --gold-accent: #D4A574;
    /* Professional Gold */
    --deep-charcoal: #1A1A1B;
    --soft-cream: #FDFBF7;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --gold-gradient: linear-gradient(135deg, #9CAF88 0%, #D4A574 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--soft-cream);
    color: var(--deep-charcoal);
    line-height: 1.6;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

.gradient-text {
    background: linear-gradient(135deg, var(--sage-green), var(--terracotta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background: var(--gold-gradient);
    box-shadow: 0 4px 15px rgba(156, 175, 136, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(156, 175, 136, 0.4);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
}

/* Skeleton Loading Animation */
@keyframes skeleton-pulse {
    0% {
        background-color: rgba(200, 200, 200, 0.1);
    }

    50% {
        background-color: rgba(200, 200, 200, 0.3);
    }

    100% {
        background-color: rgba(200, 200, 200, 0.1);
    }
}

.skeleton {
    animation: skeleton-pulse 1.5s infinite ease-in-out;
    border-radius: 8px;
    height: 20px;
    width: 100%;
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

.reveal-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-animation.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}