/* AdAstra Digital Marketing - Main Styles */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #0a0a0a;
}

/* Scroll Performance Fixes */
html {
    scroll-behavior: smooth;
}

/* Network Canvas Background */
.network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Floating Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Ensure content appears above canvas */
.header, .hero, .stats, .services, .services-detail, .values, .software, .team, .contact, .faq, .footer, .process, .cta-section {
    position: relative;
    z-index: 2;
    transform: translateZ(0);
}

.testimonials-section {
    position: relative;
    z-index: 2;
    background: #f8f9fa;
    padding: 80px 0;
    transform: translateZ(0);
}

.stats {
    position: relative;
    z-index: 2;
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0.6;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Button Animations */
.cta-button, .hero-cta, .service-cta, .submit-btn, .large-cta, .secondary-cta {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button::before, .hero-cta::before, .service-cta::before, .submit-btn::before, .large-cta::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: left 0.5s;
}

.cta-button:hover::before, .hero-cta:hover::before, .service-cta:hover::before, .submit-btn:hover::before, .large-cta:hover::before {
    left: 100%;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-container, .stats-container, .services-container, .values-container {
    animation: fadeInUp 1s ease-out;
}

/* Floating Elements in Hero */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: floatUpDown 6s ease-in-out infinite;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    animation: floatUpDown 4s ease-in-out infinite reverse;
}

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

/* Header */
.header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    text-decoration: none;
    margin-right: auto;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 20px !important;
    width: auto;
    max-width: 150px !important;
}

.logo .highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 auto;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #667eea;
}

.nav-menu a.active {
    color: #667eea;
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    margin-left: auto;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Hero Section with Split Layout */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transform: none !important;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
    animation: textGlow 2s ease-in-out infinite alternate;
    line-height: 1.2;
}

@keyframes textGlow {
    from { text-shadow: 0 0 10px rgba(76, 175, 80, 0.3); }
    to { text-shadow: 0 0 20px rgba(76, 175, 80, 0.6), 0 0 30px rgba(76, 175, 80, 0.4); }
}

.hero-content .highlight {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    text-align: left;
}

.hero-cta {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    margin-bottom: 3rem;
}

.hero-cta:hover {
    transform: translateY(-3px);
}

/* Calendly Widget Styling - Both Hero and CTA */
.hero-calendly {
    background: transparent;
    border-radius: 15px;
    overflow: hidden !important;
    box-shadow: none !important;
    height: 950px !important;
    min-height: 950px !important;
    max-height: 950px !important;
    position: relative;
    z-index: 1;
    padding: 0 !important;
    margin: 0 !important;
}

.calendly-embed-container {
    background: transparent;
    border-radius: 15px;
    overflow: hidden !important;
    box-shadow: none !important;
    height: 950px !important;
    min-height: 950px !important;
    max-height: 950px !important;
    position: relative;
    z-index: 1;
    padding: 0 !important;
    margin: 0 auto !important;
}

/* Hide Calendly scrollbar and remove all padding */
.calendly-inline-widget {
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: 950px !important;
    min-height: 950px !important;
    box-shadow: none !important;
}

.calendly-inline-widget iframe {
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    width: 100% !important;
    height: 950px !important;
    min-height: 950px !important;
    box-shadow: none !important;
}

/* Remove Calendly's internal padding and shadows */
.calendly-inline-widget *,
.calendly-inline-widget * > * {
    box-shadow: none !important;
}

/* Target Calendly's wrapper divs */
.calendly-inline-widget > div,
.calendly-inline-widget > div > div {
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

/* Hide scrollbars completely */
.calendly-inline-widget::-webkit-scrollbar,
.calendly-inline-widget iframe::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.calendly-inline-widget,
.calendly-inline-widget iframe {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    align-items: center;
    justify-content: flex-start;
}

.client-logo {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.client-logo img {
    max-width: 80px;
    max-height: 35px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.client-logo:hover img {
    opacity: 1;
}

/* Stats Section - styles only, positioning defined above */
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #667eea, #764ba2, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    margin-bottom: 0.5rem;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    background: #0a0a0a;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
    animation: ripple 0.6s ease-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

@keyframes ripple {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.service-card.coaching {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

.service-card.extension {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    font-weight: bold;
}

.service-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.service-cta {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-cta:hover {
    background: white;
    color: #2c3e50;
}

.service-footer {
    margin-top: 2rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Services Detail Section */
.services-detail {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-detail {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.service-detail.software .service-icon-large {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

.service-detail.extension .service-icon-large {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
}

.service-header h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.service-subtitle {
    font-size: 1rem;
    color: #667eea;
    font-weight: 600;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.feature-item h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.feature-item p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Values Section */
.values {
    background: #f8f9fa;
    padding: 80px 0;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}

.value-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Software Section */
.software {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.software-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.software h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.software .highlight {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.software p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.dashboard {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 800px;
    color: #333;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: slideInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.dashboard-title {
    font-weight: bold;
    color: #667eea;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
}

/* Team Section */
.team {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.team-values {
    text-align: left;
    max-width: 400px;
    margin: 2rem auto;
}

.team-values li {
    margin-bottom: 0.5rem;
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}

.team-values li:before {
    content: "-";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact .highlight {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.9);
    color: #333;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Process Section */
.process {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-step h3 {
    margin: 1rem 0;
    font-size: 1.3rem;
}

.process-step p {
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-section .highlight {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.large-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    margin-right: 1rem;
}

.large-cta:hover {
    transform: translateY(-3px);
}

.secondary-cta {
    background: transparent;
    color: #667eea;
    padding: 1.5rem 3rem;
    border: 2px solid #667eea;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.secondary-cta:hover {
    background: #667eea;
    color: white;
}

/* FAQ Section */
.faq {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 1.5rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: #2c3e50;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.faq-answer.active {
    max-height: 200px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #4CAF50;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
}

/* Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .network-canvas,
    .particles-container {
        display: none;
    }
}