/* CSS Variables - Analog Color Scheme */
:root {
    /* Primary Colors (Analog: Blue-Green-Teal) */
    --primary-color: #2563eb;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --secondary-color: #059669;
    --secondary-light: #34d399;
    --secondary-dark: #047857;
    --accent-color: #0891b2;
    --accent-light: #67e8f9;
    --accent-dark: #0e7490;
    
    /* Extended Color Palette */
    --tertiary-color: #7c3aed;
    --tertiary-light: #a78bfa;
    --tertiary-dark: #5b21b6;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --black: #000000;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Work Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows - 3D/Volumetric Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 24px 48px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(0, 0, 0, 0.12);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--tertiary-color));
    --gradient-overlay: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(5, 150, 105, 0.8));
    --gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 600; }
h3 { font-size: 2rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1.125rem; font-weight: 500; }

p {
    margin-bottom: var(--space-sm);
    color: var(--gray-700);
}

/* Global Button Styles */
.btn, 
button, 
input[type='submit'], 
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transform: translateY(0);
}

.btn:before,
button:before,
.button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all var(--transition-slow);
}

.btn:hover:before,
button:hover:before,
.button:hover:before {
    left: 100%;
}

.btn:hover,
button:hover,
.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn:active,
button:active,
.button:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Button Variants */
.btn-primary,
.button.is-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-secondary,
.button.is-secondary {
    background: var(--gradient-accent);
    color: var(--white);
}

.btn-outline,
.button.is-outlined {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover,
.button.is-outlined:hover {
    background: var(--primary-color);
    color: var(--white);
}

.button.is-light {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.button.is-light:hover {
    background: transparent;
    color: var(--white);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand .title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0;
}

.navbar-item {
    color: var(--gray-700);
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-item:hover,
.navbar-item:focus {
    color: var(--primary-color);
    background: transparent;
}

.navbar-item:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.navbar-item:hover:after {
    width: 100%;
}

/* Hero Section */
#hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

#hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-body {
    position: relative;
    z-index: 2;
    padding: var(--space-2xl) 0;
}

.hero .title,
.hero .subtitle,
.hero p {
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .title {
    animation: fadeInUp 1s ease-out;
    margin-bottom: var(--space-md);
}

.hero .subtitle {
    animation: fadeInUp 1s ease-out 0.2s both;
    margin-bottom: var(--space-lg);
}

.hero p {
    animation: fadeInUp 1s ease-out 0.4s both;
    margin-bottom: var(--space-xl);
    font-size: 1.125rem;
    line-height: 1.7;
}

.hero .buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Sections */
.section {
    padding: var(--space-2xl) 0;
}

.section.has-background-light {
    background: linear-gradient(135deg, var(--gray-50), var(--white));
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--gray-100);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-content {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 450px;
    max-width: 100%;
    width: 100%;
}

.card-image img {
    width: 100%;
}

.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.card:hover .image-container img {
    transform: scale(1.05);
}

/* History Section */
#history .card .title {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

/* Customer Stories / Testimonials */
.testimonial-card {
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: var(--space-sm);
    right: var(--space-lg);
    font-size: 4rem;
    color: var(--primary-light);
    font-family: var(--font-heading);
    opacity: 0.3;
}

.media-left .image {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.media-left img {
    /* width: 48px;
    height: 48px; */
    object-fit: cover;
}

/* Success Stories */
#success-stories .tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
}

.tag {
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.875rem;
    padding: var(--space-xs) var(--space-sm);
}

.tag.is-success {
    background: var(--secondary-light);
    color: var(--secondary-dark);
}

.tag.is-info {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.tag.is-warning {
    background: var(--tertiary-light);
    color: var(--tertiary-dark);
}

/* Resources Section */
.resource-card {
    background: var(--gradient-primary);
    color: var(--white);
}

.resource-card .title {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.resource-card p {
    color: rgba(255, 255, 255, 0.9);
}

.resource-card .button {
    background: var(--white);
    color: var(--primary-color);
}

.resource-card .button:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* Events Calendar */
.event-card {
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    border-left: 4px solid var(--primary-color);
}

.event-card .title {
    color: var(--primary-color);
}

.event-card .level-right {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
}

.event-card .level-right p {
    color: var(--white);
    margin: 0;
}

/* Accolades Section */
.achievement-card {
    background: var(--gradient-accent);
    color: var(--white);
    text-align: center;
}

.statistic-number .title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: var(--space-xs);
}

.statistic-number .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Contact Section */
.contact-info-card {
    background: var(--gradient-primary);
    color: var(--white);
}

.contact-info-card .title {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-sm);
}

.contact-form .label {
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.contact-form .input,
.contact-form .textarea {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    transition: all var(--transition-normal);
    font-family: var(--font-body);
}

.contact-form .input:focus,
.contact-form .textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer .title {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.social-links a {
    color: var(--gray-300);
    text-decoration: none;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    color: var(--white);
    background: var(--primary-color);
    transform: translateY(-2px);
}

.contact-info p {
    color: var(--gray-400);
    margin-bottom: var(--space-xs);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

/* Success Page Styles */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
}

.success-content {
    text-align: center;
    color: var(--white);
    padding: var(--space-2xl);
}

/* Privacy & Terms Pages */
/* .content-page {
    padding-top: 100px;
} */

/* .content-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
} */

.content-page h1,
.content-page h2,
.content-page h3 {
    color: var(--gray-900);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-page p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.content-page ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.content-page li {
    margin-bottom: var(--space-xs);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Effect */
.parallax-container {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Read More Links */
.read-more-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
}

.read-more-link:after {
    content: '→';
    margin-left: var(--space-xs);
    transition: all var(--transition-fast);
}

.read-more-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.read-more-link:hover:after {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1023px) {
    .navbar-menu {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
    }
    
    .hero .title {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero .title {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.25rem;
    }
    
    .section {
        padding: var(--space-xl) 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .card-content {
        padding: var(--space-md);
    }
    
    .parallax-container {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero .title {
        font-size: 1.75rem;
    }
    
    .hero .subtitle {
        font-size: 1.125rem;
    }
    
    .buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .button {
        width: 100%;
        margin-bottom: var(--space-sm);
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .buttons,
    .social-links {
        display: none;
    }
    
    .section {
        padding: var(--space-md) 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid var(--gray-300);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --gray-700: var(--black);
        --gray-800: var(--black);
        --gray-900: var(--black);
    }
    
    .card {
        border: 2px solid var(--gray-800);
    }
    
    .button {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *:before,
    *:after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .parallax-container {
        background-attachment: scroll;
    }
}

.title:not(.is-spaced)+.subtitle {
    margin-top: 0;
}

#contactForm {
    width: 100%;
}


.navbar-item .title.is-4 {
    margin-top: 0;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

#cookie-consent p {
    color: #fff;
}