@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette Overrides for Bootstrap Compatibility */
    --bs-primary: #1e3a5f; /* Deep Ocean Blue */
    --bs-secondary: #c98a5d; /* Earthy Terracotta */
    --bs-light: #f8f9fa;
    --bs-info: #d4af37; /* Gold Accent */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Visual Effects */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

/* Base Adjustments */
body {
    font-family: var(--font-body);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
}

/* Custom Utilities extending Bootstrap */
.text-primary {
    color: var(--bs-primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.text-accent {
    color: var(--bs-info) !important;
}

.bg-light-soft {
    background-color: #fafbfc;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn {
    font-family: var(--font-heading);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #152943 !important;
    border-color: #152943 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 58, 95, 0.2) !important;
}

.btn-outline-primary:hover {
    background-color: var(--bs-primary) !important;
    color: white !important;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--bs-info);
    color: var(--bs-primary);
    border: none;
}

.btn-accent:hover {
    background-color: #c4a133;
    color: var(--bs-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Glassmorphism Navigation */
.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.glass-nav.scrolled {
    box-shadow: var(--glass-shadow);
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-brand.logo {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--bs-primary);
    letter-spacing: 1px;
}

.navbar-brand.logo span {
    color: var(--bs-secondary);
}

.nav-link {
    font-weight: 500;
    color: #444 !important;
    position: relative;
    margin: 0 0.5rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--bs-primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--bs-info);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(201, 138, 93, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-text-wrapper {
    animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-image-placeholder {
    animation: float 6s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.4));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

/* Glass Cards & Core Pillars */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(8px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 40px rgba(30, 58, 95, 0.1);
    border-color: rgba(201, 138, 93, 0.2);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bs-primary), #3a6299);
}

.pillar-icon-biz {
    background: linear-gradient(135deg, var(--bs-secondary), #d9a47d);
}

.pillar-icon-prosper {
    background: linear-gradient(135deg, var(--bs-info), #e5c96a);
}

/* Lead Magnet Section */
.lead-magnet-card {
    background: var(--bs-primary);
}

.lead-magnet-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    z-index: 1;
}

.lead-form {
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(15px);
}

/* Quiz UI */
.quiz-btn {
    border-radius: 12px;
    transition: all 0.2s ease;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--bs-info);
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Animations Triggered via JS classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* WhatsApp Float Icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
}
