/* assets/css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --royal-blue: #1e3a8a;
    --royal-blue-light: #1e40af;
    --royal-blue-dark: #172554;
    --gold: #d97706;
    --gold-light: #f59e0b;
    --gold-dark: #b45309;
    --emerald: #50C878;
    --emerald-light: #6dd593;
    --emerald-dark: #3da35f;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--royal-blue);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.glass-nav {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, #50C878 0%, #3da35f 100%);
    color: white;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(80, 200, 120, 0.5);
    background: linear-gradient(135deg, #3da35f 0%, #50C878 100%);
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid #50C878;
    color: #50C878;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: rgba(80, 200, 120, 0.1);
    border-color: #3da35f;
    color: #3da35f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(80, 200, 120, 0.3);
}

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, #172554 0%, #1e3a8a 50%, #1e40af 100%);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #50C878 0%, #3da35f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cards */
.card-white {
    background: white;
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-white:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(30, 58, 138, 0.15);
    border-color: rgba(80, 200, 120, 0.3);
}

.card-gold {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.05) 0%, rgba(245, 158, 11, 0.02) 100%);
    border: 1px solid rgba(217, 119, 6, 0.15);
}

.card-gold:hover {
    border-color: rgba(217, 119, 6, 0.4);
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

/* Icons */
.icon-gold {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

.icon-gold svg, .icon-gold i {
    color: white;
}

/* Patterns */
.grid-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 40px 40px;
}

/* Animations */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.pulse-ring {
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Section Backgrounds */
.section-royal {
    background: linear-gradient(180deg, #1e3a8a 0%, #172554 100%);
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    outline: none;
    background: white;
}

.form-input:focus {
    border-color: #50C878;
    box-shadow: 0 0 0 3px rgba(80, 200, 120, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    outline: none;
    resize: vertical;
    font-family: 'Inter', sans-serif;
}

.form-textarea:focus {
    border-color: #50C878;
    box-shadow: 0 0 0 3px rgba(80, 200, 120, 0.1);
}