/* ===================================
   ROOT VARIABLES - COLOR PALETTE
   =================================== */
:root {
    /* Tetrad Color Scheme - Futuristic Theme */
    --primary-color: #8b5cf6;
    --primary-light: #a78bfa;
    --primary-dark: #6d28d9;
    
    --secondary-color: #f59e0b;
    --secondary-light: #fbbf24;
    --secondary-dark: #d97706;
    
    --accent-color: #06b6d4;
    --accent-light: #22d3ee;
    --accent-dark: #0891b2;
    
    --quaternary-color: #ec4899;
    --quaternary-light: #f472b6;
    --quaternary-dark: #db2777;
    
    /* Neutral Colors */
    --bg-dark: #0f0f23;
    --bg-darker: #060613;
    --bg-card: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--quaternary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(236, 72, 153, 0.9) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(139, 92, 246, 0.1);
    --shadow-md: 0 4px 16px rgba(139, 92, 246, 0.2);
    --shadow-lg: 0 8px 32px rgba(139, 92, 246, 0.3);
    --shadow-xl: 0 16px 48px rgba(139, 92, 246, 0.4);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Work Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ===================================
   GLOBAL RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--gradient-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: var(--accent-light);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-light);
}

/* ===================================
   GLOBAL BUTTON STYLES
   =================================== */
.btn,
.button,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before,
.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-secondary);
    transition: width var(--transition-normal);
    z-index: -1;
}

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

.button.is-primary,
.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

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

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

.button.is-outlined:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    border-color: var(--primary-light);
}

.button.is-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.cta-button {
    background: var(--gradient-primary);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.cta-button:hover {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.7);
    transform: translateY(-3px) scale(1.02);
}

.submit-button {
    background: var(--gradient-primary);
    margin-top: var(--spacing-sm);
}

.resource-link {
    margin-top: var(--spacing-sm);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding: 0.5rem 0;
    transition: all var(--transition-normal);
    z-index: 9999;
}

.navbar.is-scrolled {
    background: rgba(6, 6, 19, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.navbar-item {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all var(--transition-fast);
    position: relative;
}

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

.navbar-item:hover {
    color: var(--primary-light);
}

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

.navbar-burger {
    color: var(--text-primary);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.85) 0%, rgba(139, 92, 246, 0.6) 50%, rgba(236, 72, 153, 0.7) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.3) 0%, transparent 60%);
    z-index: 2;
}

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

.hero-title {
    color: var(--text-primary);
    text-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
    margin-bottom: var(--spacing-sm);
    animation: slideInDown 0.8s ease-out;
}

.hero-subtitle {
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.6s both;
}

/* ===================================
   SECTION COMMONS
   =================================== */
.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.section-title {
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto var(--spacing-lg);
    border-radius: 2px;
    position: relative;
}

.section-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    filter: blur(8px);
    opacity: 0.6;
}

.section-description {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   VISION SECTION
   =================================== */
.vision-section {
    background: var(--bg-darker);
    position: relative;
}

.vision-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.vision-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
    z-index: 1;
}

.vision-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.vision-card:hover::before {
    opacity: 0.05;
}

.vision-card .card-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.vision-card .image-container {
    width: 100%;
    height: 100%;
}

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

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

.vision-card .card-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.vision-card .title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-sm);
}

.vision-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===================================
   PROJECTS TIMELINE SECTION
   =================================== */
.projects-section {
    background: var(--bg-dark);
}

.timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 4px solid var(--bg-dark);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.3);
    z-index: 2;
    animation: pulse 2s infinite;
}

.timeline-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    transition: all var(--transition-normal);
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.timeline-content .image-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-md);
}

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

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

.timeline-date {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-sm);
}

.timeline-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-section {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-item .image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(15, 15, 35, 0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
}

/* ===================================
   RESOURCES SECTION
   =================================== */
.resources-section {
    background: var(--bg-dark);
}

.resource-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    height: 100%;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.resource-card:hover::before {
    transform: scaleX(1);
}

.resource-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.resource-card .title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-sm);
}

.resource-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    background: var(--bg-darker);
    position: relative;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    height: 100%;
}

.contact-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item h4 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: var(--shadow-lg);
}

.contact-form .field {
    margin-bottom: var(--spacing-md);
}

.contact-form .label {
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
    background: var(--bg-darker);
    border: 2px solid rgba(139, 92, 246, 0.3);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
    outline: none;
}

.contact-form .input::placeholder,
.contact-form .textarea::placeholder {
    color: var(--text-muted);
}

.contact-form .select {
    width: 100%;
}

.contact-form .select select {
    width: 100%;
}

.contact-form .select::after {
    border-color: var(--primary-light);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-darker);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-title {
    color: var(--primary-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all var(--transition-fast);
    color: var(--primary-light);
}

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

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(139, 92, 246, 0.2);
    font-weight: 600;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.image-container {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    display: block;
    margin: 0 auto;
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Card Centering */
.card,
.item,
.testimonial,
.team-member,
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ===================================
   SUCCESS PAGE
   =================================== */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
    background: var(--gradient-dark);
}

.success-content {
    text-align: center;
    max-width: 600px;
}

.success-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
    animation: scaleIn 0.5s ease-out;
}

.success-title {
    margin-bottom: var(--spacing-md);
    animation: slideInDown 0.6s ease-out 0.2s both;
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    animation: fadeIn 0.8s ease-out 0.4s both;
}

/* ===================================
   PRIVACY & TERMS PAGES
   =================================== */
.privacy-page,
.terms-page {
    padding-top: 100px;
    min-height: 100vh;
}

.content-section {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) auto;
    max-width: 900px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: var(--shadow-lg);
}

.content-section h1,
.content-section h2,
.content-section h3 {
    color: var(--primary-light);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.content-section p,
.content-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.content-section ul,
.content-section ol {
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
    }
}

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media screen and (max-width: 1024px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-2xl: 4rem;
    }
    
    .timeline-wrapper::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content .columns {
        flex-direction: column !important;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 2.5rem;
        --spacing-2xl: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .button {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar-menu {
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(20px);
    }
    
    .navbar-item::after {
        display: none;
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .button.is-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .vision-card .image-container,
    .timeline-content .image-container {
        height: 250px;
    }
    
    .gallery-item .image-container {
        height: 300px;
    }
}

/* ===================================
   GLASSMORPHISM EFFECTS
   =================================== */
.glass-effect {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================================
   CURVED GRID EFFECTS
   =================================== */
.curved-container {
    position: relative;
    overflow: visible;
}

.curved-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-dark);
    clip-path: ellipse(70% 50% at 50% 0%);
}

/* ===================================
   SCROLL-DEPENDENT EFFECTS
   =================================== */
.parallax-element {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .navbar,
    .footer,
    .hero-buttons,
    .contact-form {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ============================================
   ANIMATIONS DISABLED
   ============================================ */

*, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
}

html {
    scroll-behavior: auto !important;
}

/* Make AOS elements always visible */
[data-aos],
[data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Make scroll-reveal / custom reveal elements visible */
[data-reveal],
[data-reveal].is-revealed,
[data-scroll-reveal],
[data-scroll-reveal].is-revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Site 3 timeline items */
.timeline-item,
.timeline-item.is-revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Remove transform hover effects */
.card:hover,
.vision-card:hover,
.gallery-item:hover,
.resource-card:hover,
.timeline-content:hover,
.pricing-card:hover,
.team-card:hover,
.testimonial-card:hover {
    transform: none !important;
}

.button:hover,
.btn:hover,
.btn-primary:hover,
.cta-button:hover {
    transform: none !important;
}

/* Remove parallax movement */
.parallax-element {
    transform: none !important;
    transition: none !important;
}

/* Disable background grid movement */
.gallery-section::before {
    animation: none !important;
}

/* Keep functional transitions for interactive states (very fast) */
.navbar-item:hover,
a:hover,
.social-link:hover,
.footer-links a:hover {
    transition: color 0.05s !important;
}


/* ============================================
   SITE 3 — CONTACT PAGE DARK THEME FIXES
   ============================================ */

/* Contact info card (was: background: #f8f9fa) */
.contact-info-card {
    background: var(--bg-card) !important;
    border: 1px solid rgba(139, 92, 246, 0.25) !important;
    border-radius: var(--radius-md) !important;
    padding: 40px !important;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

/* Opening hours card (was: background: #f8f9fa) */
.opening-hours-card {
    background: var(--bg-card) !important;
    border: 1px solid rgba(139, 92, 246, 0.25) !important;
    border-radius: var(--radius-md) !important;
    padding: 40px !important;
    box-shadow: var(--shadow-md);
}

/* Contact section titles */
.contact-info-card .title,
.opening-hours-card .title {
    color: var(--text-primary) !important;
}

/* Subtitle overrides — prevent Bulma making them gray on dark */
.subtitle {
    color: var(--text-secondary) !important;
}

.contact-info-card .subtitle,
.opening-hours-card .subtitle {
    color: var(--primary-light) !important;
}

/* Table in contacts */
.table {
    background: transparent !important;
    color: var(--text-secondary) !important;
}

.table td,
.table th {
    border-color: rgba(139, 92, 246, 0.2) !important;
    color: var(--text-secondary) !important;
}

.table tbody tr:hover td {
    background: rgba(139, 92, 246, 0.05) !important;
}

/* Notification on contacts */
.notification {
    background: var(--bg-card) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    color: var(--text-secondary) !important;
}

.notification.is-info.is-light {
    background: rgba(6, 182, 212, 0.1) !important;
    border-color: rgba(6, 182, 212, 0.3) !important;
    color: #a5f3fc !important;
}

.notification.is-warning.is-light {
    background: rgba(251, 191, 36, 0.1) !important;
    border-color: rgba(251, 191, 36, 0.3) !important;
    color: #fde68a !important;
}

/* Bulma title overrides */
.title,
.title.is-1,
.title.is-2,
.title.is-3,
.title.is-4,
.title.is-5 {
    color: var(--text-primary) !important;
}

/* General paragraph color */
section p,
.contact-info-card p,
.opening-hours-card p {
    color: var(--text-secondary) !important;
}

/* Contact hero section */
.contact-hero-section,
section.section:first-of-type {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

/* Contact page subtitle text */
.contact-hero-section .subtitle {
    color: var(--text-secondary) !important;
}

/* Map container */
.contact-map-section {
    background: var(--bg-darker);
}

.map-container iframe {
    border-radius: var(--radius-md);
    border: 1px solid rgba(139, 92, 246, 0.3);
    width: 100%;
}

/* About page - Bulma title fix */
.vision-card .title {
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
