:root {
    --primary-color: #0f172a; /* Midnight Blue */
    --secondary-color: #f59e0b; /* Vibrant Orange */
    --accent-color: #3b82f6; /* Bright Blue */
    --text-color: #334155;
    --bg-light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Navbar - Glassmorphism */
.navbar {
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: white !important;
}

/* Buttons */
.btn-warning-custom {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-warning-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    color: white;
}

.btn-outline-light {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-width: 2px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Feature Cards */
.section-padding {
    padding: 100px 0;
}

.feature-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.card-hover {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 158, 11, 0.1);
}

.card-title {
    font-weight: 700;
    color: var(--primary-color);
}

/* Compliance Section */
.bg-light {
    background-color: #f8fafc !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 20px !important;
}

/* Deep Dive Sections */
.list-unstyled li {
    margin-bottom: 1.5rem;
}

.text-success {
    color: #10b981 !important;
}

/* Form Section */
.form-section {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.form-container {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background-color: white;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer h5, footer h6 {
    color: white;
    letter-spacing: 0.5px;
}

footer a {
    color: #94a3b8;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--secondary-color);
}

.social-icons a {
    font-size: 1.25rem;
    background: rgba(255,255,255,0.05);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: white !important;
    transform: translateY(-3px);
}

/* Cookie Banner */
.cookie-banner {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
}

.cookie-btn {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
}
