/*
Theme Name: Landing Page
Description: A modern, responsive one-page landing WordPress theme perfect for businesses, startups, and agencies. Features particle animation hero section, network graphics, services showcase, pricing tables, and contact form. Built with Bootstrap 5 and optimized for mobile devices.
Version: 2.1.0
Author: Opto Softechs
Text Domain: landingpage
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Table of Contents:
1. Reset & Base Styles
2. Typography
3. Buttons & Forms
4. Header & Navigation
5. Hero Section
6. Content Sections
7. Footer
8. Blog & Pages
9. Product Pages
10. Contact Forms
11. Utilities
12. Responsive Design
13. Animations
14. Accessibility
15. Cookie Banner Content
*/

/* ==========================================================================
   1. RESET AND BASE STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #333;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* ==========================================================================
   3. BUTTONS AND FORMS
   ========================================================================== */

.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: #007bff;
    color: #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    border-color: #007bff;
    outline: none;
}

.form-control::placeholder {
    color: #666;
}

/* ==========================================================================
   4. HEADER AND NAVIGATION
   ========================================================================== */

.site-header {
    position: relative;
    z-index: 1000;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #333 !important;
}

.logo-img {
    max-height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 16px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
    background-color: rgba(0, 123, 255, 0.1);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mega Menu */
.mega-menu {
    position: static;
}

.mega-menu .dropdown-toggle {
    background: none !important;
    border: none !important;
}

.mega-menu-content {
    display: none;
    position: absolute;
    left: 0 !important;
    right: 0;
    top: 100% !important;
    background: white;
    border-top: 3px solid #007bff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 40px 0;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mega-menu:hover .mega-menu-content,
.mega-menu.active .mega-menu-content,
.mega-menu-content.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 10px;
    min-height: 150px;
}

.product-item:hover {
    background: #f8f9fa;
    color: #007bff;
    transform: translateY(-5px);
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.product-item:hover .product-icon {
    background: linear-gradient(135deg, #0056b3, #003d82);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    transform: scale(1.1);
}

.product-icon i {
    font-size: 1.8rem;
    color: white;
}

.product-name {
    font-weight: 500;
    font-size: 0.95rem;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

/* Grid Lines Background - Horizontal and Vertical Only with Gradient Colors */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 240px,
            #4F46E5 240px,
            #7C3AED 241px,
            #EC4899 243px,
            transparent 242px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 240px,
            #4F46E5 240px,
            #7C3AED 241px,
            #EC4899 243px,
            transparent 242px
        );
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

/* White Square Background for Logo - Larger Size */
.hero-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 390px;
    height: 390px;
    background: white;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 4;
}

/* Particle Canvas & Overlay */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(245, 247, 250, 0) 0%, rgba(245, 247, 250, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Animated Text Above Logo */
.hero-text-above {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 90%;
    max-width: 800px;
}

.animated-hero-text {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: center;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(124, 58, 237, 0.5);
    animation: fadeInScale 1s ease-out;
    line-height: 1.2;
}

/* Gradient Text Effect */
.animated-hero-text span {
    background: linear-gradient(135deg, #4F46E5, #7C3AED, #EC4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Logo Container */
.hero-logo-container {
    position: relative;
    z-index: 5;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-logo-container img {
    width: 100%;
    height: auto;
    max-width: 280px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

/* Message Bubble SVG */
.message-bubble-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bubble-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(124, 58, 237, 0.3));
}

/* Network Graphics - Left and Right Sides */
.network-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    opacity: 0.8;
    z-index: 3;
    pointer-events: none;
}

.network-people {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.network-line {
    stroke: rgba(124, 58, 237, 0.3);
    stroke-width: 2;
    animation: pulse 2s ease-in-out infinite;
}

/* Join Button Below Logo */
.hero-join-button {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.hero-join-button .btn {
    padding: 16px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.4s ease;
}

.hero-join-button .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* ==========================================================================
   6. CONTENT SECTIONS
   ========================================================================== */

.services-section,
.products-section,
.documentation-section {
    padding: 80px 0;
}

.services-section {
    background: #f8f9fa;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: white;
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */

.site-footer {
    background-color: #2c3e50;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-widgets {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

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

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #007bff;
}

.footer-bottom {
    background-color: #1a252f;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 10;
}

.footer-links a {
    position: relative;
    z-index: 10;
    touch-action: manipulation;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   8. BLOG AND PAGES
   ========================================================================== */

.blog-page,
.page-template {
    padding-top: 100px;
    min-height: 60vh;
}

.blog-post {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.page-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.page-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

/* ==========================================================================
   9. PRODUCT PAGES
   ========================================================================== */

.product-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.product-card.featured {
    border: 2px solid #667eea;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.product-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.product-card:hover .product-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.product-icon-wrapper i {
    font-size: 40px;
    color: white;
}

.product-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3748;
}

.product-description {
    color: #718096;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-card .btn {
    margin-top: auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.coming-soon-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    margin-top: auto;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   10. ENHANCED CONTACT FORM STYLES
   ========================================================================== */

/* Modal Form Specific Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 20px 30px;
}

.modal-header .modal-title {
    color: white;
    font-weight: 600;
    font-size: 1.4rem;
}

.modal-header .btn-close {
    background: transparent;
    opacity: 1;
    filter: brightness(0) invert(1);
}

/* Form Labels */
.modal-body .form-label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

/* Enhanced Form Controls */
.modal-body .form-control,
.contact-form .form-control {
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 18px;
    font-size: 1rem;
    color: #2d3748;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.modal-body .form-control:focus,
.contact-form .form-control:focus {
    background: white;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
    outline: none;
}

.modal-body .form-control::placeholder,
.contact-form .form-control::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

/* Textarea Specific */
.modal-body textarea.form-control,
.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Form Spacing */
.modal-body .mb-3 {
    margin-bottom: 1.5rem !important;
}

/* Submit Button Enhancement */
.modal-body .btn-primary,
.contact-form .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.modal-body .btn-primary:hover,
.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #5568d3 0%, #6c3f94 100%);
}

.modal-body .btn-primary:active,
.contact-form .btn-primary:active {
    transform: translateY(0);
}

/* Required Asterisk */
.text-danger {
    color: #e53e3e !important;
}

/* Form Row Spacing */
.modal-body .row {
    margin-bottom: 0;
}

/* Alert Styles */
.modal-body .alert {
    border-radius: 12px;
    border: none;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.modal-body .alert-success {
    background: #f0fdf4;
    color: #166534;
    border-left: 4px solid #22c55e;
}

.modal-body .alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* Input Hover States */
.modal-body .form-control:hover,
.contact-form .form-control:hover {
    border-color: #cbd5e0;
}

/* Contact Section Form Enhancement */
.contact-section .contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   11. UTILITIES
   ========================================================================== */

.text-primary { color: #007bff !important; }
.bg-light { background-color: #f8f9fa !important; }
.py-5 { padding: 5rem 0 !important; }

/* ==========================================================================
   12. RESPONSIVE DESIGN
   ========================================================================== */

/* Large Desktops */
@media (max-width: 1400px) {
    .network-bg {
        width: 450px;
        height: 450px;
    }
}

/* Desktops */
@media (max-width: 1200px) {
    .hero-section {
        min-height: 65vh;
    }
    .animated-hero-text {
        font-size: 2.5rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-section {
        min-height: 60vh;
    }
    .network-bg {
        width: 350px;
        height: 350px;
    }
    .mega-menu-content {
        position: relative !important;
        padding: 20px 0;
    }
}

/* Mobile Landscape & Portrait */
@media (max-width: 768px) {
    .hero-section {
        min-height: 55vh;
    }
    .animated-hero-text {
        font-size: 1.8rem;
    }
    .network-bg {
        width: 280px;
        height: 280px;
        opacity: 0.7;
    }
    .hero-section::after {
        width: 280px;
        height: 280px;
    }
    .hero-logo-container {
        width: 260px;
        height: 260px;
    }
    .hero-join-button .btn {
        padding: 14px 35px;
        font-size: 1.1rem;
    }
    
    /* Enhanced Mobile Contact Form Styling */
    .modal-body {
        padding: 20px 15px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-body .form-control,
    .contact-form .form-control {
        padding: 14px 16px !important;
        font-size: 16px !important; /* Prevents iOS auto-zoom */
        background: #f8f9fa !important;
        border: 2px solid #e2e8f0 !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
    }
    
    .modal-body .form-control:focus,
    .contact-form .form-control:focus {
        background: white !important;
        border-color: #667eea !important;
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    }
    
    .contact-section .contact-form {
        padding: 25px 20px !important;
        background: white !important;
        border-radius: 15px !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Ensure textarea is properly styled in mobile */
    .contact-form textarea.form-control {
        min-height: 120px !important;
        resize: vertical;
    }
    
    /* Button styling in mobile */
    .contact-form .btn-primary,
    .modal-body .btn-primary {
        width: 100%;
        padding: 16px 30px !important;
        font-size: 1rem !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .hero-section {
        min-height: 50vh;
    }
    .animated-hero-text {
        font-size: 1.5rem;
    }
    .hero-logo-container {
        width: 200px;
        height: 200px;
        padding: 30px;
    }
    .hero-section::after {
        width: 220px;
        height: 220px;
    }
    .hero-join-button .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* Extra Small Mobile Form Adjustments */
    .contact-section .contact-form {
        padding: 20px 15px !important;
        margin: 0 -15px;
        border-radius: 10px !important;
    }
    
    .modal-body .form-control,
    .contact-form .form-control {
        padding: 12px 14px !important;
    }
}

/* ==========================================================================
   13. ANIMATIONS
   ========================================================================== */

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* ==========================================================================
   14. ACCESSIBILITY
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #007bff;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   15. COOKIE BANNER - Allow clicks to pass through to footer links beneath it
   ========================================================================== */
.cookie-consent-banner {
    pointer-events: none;
}
.cookie-consent-banner .cookie-banner-content {
    pointer-events: auto;
}