/* Base Styles */
html {
    scroll-behavior: smooth;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #C9A227 0%, #E5C44D 50%, #C9A227 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Gradient */
.hero-gradient {
    background: linear-gradient(135deg, #0A1628 0%, #1A2B47 50%, #0A1628 100%);
}

/* Card Hover Effect */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    background: #0F1E33;
}

/* Navigation Link Animation */
.line-animation {
    position: relative;
}

.line-animation::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C9A227;
    transition: width 0.3s ease;
}

.line-animation:hover::after {
    width: 100%;
}

/* Stat Card */
.stat-card {
    background: linear-gradient(145deg, rgba(26, 43, 71, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
    backdrop-filter: blur(10px);
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #0A1628;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #C9A227;
}

.form-input::placeholder {
    color: #94A3B8;
}

/* Button Styles */
.btn-primary {
    padding: 1rem 2rem;
    background: #C9A227;
    color: #0A1628;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #E5C44D;
}

.btn-outline {
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #C9A227;
    color: #C9A227;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block;
}

/* Scroll Indicator Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25%);
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Success Message */
.form-success {
    display: none;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.75rem;
    color: #22c55e;
    text-align: center;
}

.form-success.show {
    display: block;
}

/* Page Content Styles */
.page-content h2 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-content p {
    color: #94A3B8;
    line-height: 1.75;
}

.page-content ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-left: 1rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.875rem;
    }
}
