/* Custom Apps Premium Style System */

:root {
    /* Color Palette */
    --color-bg: #0b0b0f;
    --color-bg-card: rgba(20, 20, 28, 0.65);
    --color-bg-nav: rgba(11, 11, 15, 0.75);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(0, 206, 209, 0.3);
    
    --color-text-primary: #f3f4f6;
    --color-text-secondary: #9ca3af;
    --color-text-muted: #6b7280;
    
    /* Neon Accents */
    --color-accent-purple: #8a2be2;
    --color-accent-cyan: #00ced1;
    --color-accent-blue: #1e90ff;
    --color-accent-green: #14a800; /* Upwork Green */
    
    --gradient-primary: linear-gradient(135deg, var(--color-accent-purple) 0%, var(--color-accent-cyan) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-cyan) 100%);
    --gradient-text: linear-gradient(135deg, #a78bfa 0%, #22d3ee 50%, #60a5fa 100%);
    --gradient-card-border: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(0, 206, 209, 0.2) 100%);
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.7);
    --shadow-glow-cyan: 0 0 20px rgba(0, 206, 209, 0.25);
    --shadow-glow-purple: 0 0 20px rgba(138, 43, 226, 0.25);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: #22222f;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-cyan);
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

/* Common Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-accent-cyan);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.5);
    background: linear-gradient(135deg, var(--color-accent-cyan) 0%, var(--color-accent-purple) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent-cyan);
    box-shadow: 0 0 10px rgba(0, 206, 209, 0.2);
    color: var(--color-accent-cyan);
}

/* Main Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    background-color: var(--color-bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.main-header.scrolled .header-container {
    padding: 0.5rem 2rem;
}

/* Logo Design */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-svg {
    filter: drop-shadow(0 2px 8px rgba(0, 206, 209, 0.2));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
}

.logo-text-accent {
    color: var(--color-accent-cyan);
}

/* Logo SVG Animation */
.logo-wrapper:hover .logo-path {
    animation: strokePulse 1.5s ease-in-out infinite alternate;
}

.logo-wrapper:hover .logo-dot {
    animation: dotPulse 1s infinite alternate;
}

@keyframes strokePulse {
    0% { filter: drop-shadow(0 0 2px rgba(138, 43, 226, 0.4)); }
    100% { filter: drop-shadow(0 0 10px rgba(0, 206, 209, 0.8)); }
}

@keyframes dotPulse {
    0% { transform: scale(1); fill: #00ced1; }
    100% { transform: scale(1.3); fill: #fff; }
}

/* Primary Navigation */
.primary-navigation {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.25rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--color-text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 10rem 0 6rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background-glow {
    position: absolute;
    top: -15%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.12) 0%, rgba(0, 206, 209, 0.08) 50%, transparent 100%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--color-border);
}

.badge-upwork {
    background: rgba(20, 168, 0, 0.07);
    border-color: rgba(20, 168, 0, 0.25);
    color: #a6f59d;
}

.badge-claris {
    background: rgba(0, 206, 209, 0.07);
    border-color: rgba(0, 206, 209, 0.25);
    color: #a5f3fc;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual SVG Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    position: relative;
}

.visual-svg {
    overflow: visible;
}

/* Keyframe Animations for SVG Nodes */
.node-floating {
    animation: floatAnimation 6s ease-in-out infinite alternate;
}

.node-floating-delayed {
    animation: floatAnimation 6s ease-in-out infinite alternate;
    animation-delay: -3s;
}

@keyframes floatAnimation {
    0% { transform: translate(0px, 0px); }
    100% { transform: translate(8px, -10px); }
}

.pulse-ring {
    transform-origin: center;
    animation: pulseAnimation 3s ease-out infinite;
}

@keyframes pulseAnimation {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Cable Pulse Animation (Data packets flowing) */
.cable-pulse {
    stroke-dasharray: 20 120;
    stroke-dashoffset: 0;
    animation: dataFlow 5s linear infinite;
}

.cable-1 { animation-delay: 0s; }
.cable-2 { animation-delay: 1.25s; }
.cable-3 { animation-delay: 2.5s; }
.cable-4 { animation-delay: 3.75s; }

@keyframes dataFlow {
    to {
        stroke-dashoffset: -140;
    }
}

/* Services Section */
.services-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, #0d0d12 50%, var(--color-bg) 100%);
    position: relative;
}

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

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-icon {
    width: 28px;
    height: 28px;
}

.purple-glow {
    background: rgba(138, 43, 226, 0.1);
    color: #a78bfa;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.15);
}

.cyan-glow {
    background: rgba(0, 206, 209, 0.1);
    color: #22d3ee;
    box-shadow: 0 0 15px rgba(0, 206, 209, 0.15);
}

.blue-glow {
    background: rgba(30, 144, 255, 0.1);
    color: #60a5fa;
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.15);
}

.green-glow {
    background: rgba(20, 168, 0, 0.1);
    color: #4ade80;
    box-shadow: 0 0 15px rgba(20, 168, 0, 0.15);
}

.service-card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About & Certificate Section */
.about-section {
    padding: 7rem 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: center;
}

.about-description {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 2.5rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    border-radius: 16px;
    transition: var(--transition-fast);
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Certificate Layout styles */
.about-visual {
    display: flex;
    justify-content: center;
}

.certificate-container {
    width: 100%;
    max-width: 440px;
    perspective: 1000px;
}

.certificate-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.certificate-card:hover {
    transform: rotateY(-3deg) rotateX(3deg) translateY(-5px);
    border-color: var(--color-border-hover);
}

.certificate-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 206, 209, 0.1);
    color: var(--color-accent-cyan);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 206, 209, 0.2);
}

.certificate-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #fff;
    padding: 10px;
}

.certificate-caption {
    text-align: left;
}

.certificate-caption strong {
    display: block;
    color: var(--color-text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.certificate-caption span {
    display: block;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials-section {
    padding: 7rem 0;
    background-color: #0d0d12;
}

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

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 2.25rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(20, 20, 28, 0.85);
}

.stars {
    color: #fbc02d;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--color-text-secondary);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.25rem;
}

.client-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-primary);
}

.client-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.15rem;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
}

.contact-box {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
    border: 1px solid var(--color-border);
    border-radius: 32px;
    padding: 4.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-box-glow {
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-lead {
    color: var(--color-text-secondary);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 3.5rem auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    padding: 2.25rem;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--color-text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.contact-card .btn {
    width: 100%;
}

/* Footer Section */
.main-footer {
    background-color: #050508;
    border-top: 1px solid var(--color-border);
    padding: 5rem 0 3rem 0;
    color: var(--color-text-secondary);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    display: block;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
    display: block;
}

.footer-nav {
    display: flex;
    gap: 3rem;
}

.footer-nav a {
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--color-text-primary);
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Mobile responsive styles */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-visual {
        order: 2;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .contact-box {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content h2 {
        font-size: 2.2rem;
    }
    
    /* Responsive Header & Hamburger Navigation */
    .mobile-nav-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .hamburger {
        display: block;
        position: relative;
        width: 20px;
        height: 2px;
        background-color: var(--color-text-primary);
        transition: background-color var(--transition-fast);
    }
    
    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--color-text-primary);
        transition: transform var(--transition-fast), top var(--transition-fast);
    }
    
    .hamburger::before { top: -6px; }
    .hamburger::after { top: 6px; }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger {
        background-color: transparent;
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }
    
    .primary-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background-color: rgba(11, 11, 15, 0.98);
        border-left: 1px solid var(--color-border);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 8rem 2.5rem 3rem 2.5rem;
        transition: right var(--transition-normal);
        z-index: 999;
        display: block;
    }
    
    .primary-navigation.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.25rem;
        display: block;
    }
    
    .header-cta {
        display: none; /* Hide in header, present in hero anyway */
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Intersection Observer Scroll Reveal States */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
