body { 
    color: #1a1a1a; 
    font-family: 'Inter', sans-serif; 
    background-color: #FAF9F6; 
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30 30 0zM30 10L10 30l20 20 20-20-20-20z' fill='%23006b3f' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-attachment: fixed;
    overflow-x: hidden;
    width: 100%;
}

/* Ensure pattern shows in every section */
section, main {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30 30 0zM30 10L10 30l20 20 20-20-20-20z' fill='%23006b3f' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-attachment: fixed;
}

/* Specialized pattern and high-contrast text for dark footers */
footer {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30 30 0zM30 10L10 30l20 20 20-20-20-20z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E") !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

footer a {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer a:hover {
    color: #fcd400 !important;
}

footer h5, footer h4 {
    color: #ffffff !important;
}

footer p, footer li, footer span {
    color: rgba(255, 255, 255, 0.8) !important;
}

.adire-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30 30 0zM30 10L10 30l20 20 20-20-20-20z' fill='%23006b3f' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Global Navigation & Header Transparency - No Demarcation Line */
nav.fixed, nav.fixed > div:first-child {
    background-color: transparent !important;
    transition: all 0.4s ease;
}

header {
    background-color: transparent !important;
}

nav.fixed.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(0, 107, 63, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

/* Hide top bar on scroll for cleaner look */
nav.fixed.scrolled > div:first-child {
    display: none !important;
}

.glass { 
    background: rgba(255, 255, 255, 0.6) !important; 
    backdrop-filter: blur(12px) !important; 
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important; 
}
.glass-light {
    background: rgba(250, 249, 246, 0.7) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}
.glass-dark {
    background: rgba(5, 15, 10, 0.8) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}
#mobile-menu { 
    transition: transform 0.3s ease-in-out; 
    z-index: 100; 
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.3) !important;
}
.menu-open { 
    transform: translateX(0) !important; 
}
* { 
    max-width: 100%; 
    box-sizing: border-box; 
}

/* Fixed Chat Widget Style */
#chat-widget { 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    z-index: 1000; 
    pointer-events: none; 
}
#chat-container { 
    pointer-events: auto; 
}
@media (max-width: 768px) {
    #chat-widget { 
        bottom: 15px; 
        right: 15px; 
        left: 15px; 
        display: flex; 
        justify-content: flex-end; 
    }
}

/* Headline Fade Animation */
.fade-text { 
    transition: opacity 0.8s ease-in-out; 
    opacity: 1; 
}
.fade-out { 
    opacity: 0; 
}

/* Form Reveal Animation */
.reveal-form {
    animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

@media (max-width: 768px) {
    .animate-marquee {
        animation: marquee 10s linear infinite;
    }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

/* Gradient blob animations */
@keyframes float1 {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}
@keyframes float2 {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, 50px) scale(0.9); }
    66% { transform: translate(20px, -20px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}
.animate-float-1 { animation: float1 15s infinite ease-in-out; }
.animate-float-2 { animation: float2 18s infinite ease-in-out; }

/* ========================================
   PREMIUM DESIGN SYSTEM — FINAL TOUCHES
   ======================================== */

/* Sans-serif display font for all h1, h2 headings */
h1, h2 {
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: -0.01em;
}

/* h3 and below stay Montserrat */
h3, h4, h5, h6 {
    font-family: 'Archivo Black', sans-serif;
}

/* Gold accent gradient text utility */
.text-gold {
    background: linear-gradient(135deg, #d4a017, #f5c842, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium glass card */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* Nav scroll shadow enhancement */
nav {
    transition: box-shadow 0.3s ease;
}
nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Smoother AOS defaults */
[data-aos] {
    transition-duration: 700ms !important;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Emerald button glow on hover */
a.btn-primary, button.btn-primary {
    transition: all 0.3s ease;
}
a.btn-primary:hover, button.btn-primary:hover {
    box-shadow: 0 0 30px rgba(5, 150, 105, 0.4);
}

/* Section divider accent line */
.accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2C5E4F, #34d399);
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

/* Stat counter shimmer */
.stat-number {
    background: linear-gradient(135deg, #2C5E4F, #458B74, #2C5E4F);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Floating label effect for inputs */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #2C5E4F !important;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
    transition: all 0.2s ease;
}

/* Link underline hover animation */
a.animated-link {
    position: relative;
    text-decoration: none;
}
a.animated-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2C5E4F;
    transition: width 0.3s ease;
}
a.animated-link:hover::after {
    width: 100%;
}

/* Countdown block premium styling */
#countdown > div {
    position: relative;
}
#countdown > div::after {
    content: ':';
    position: absolute;
    right: -0.5rem;
    top: 0;
    font-size: 2rem;
    font-weight: 800;
    color: #2C5E4F;
    line-height: 1.2;
}
#countdown > div:last-child::after {
    display: none;
}


