/* ============================================
   SAMIR MOHAMED - AI & CLOUD CONSULTANT
   Styles matching original design language
   ============================================ */

/* CSS Variables */
:root {
    --primary-green: #2D9D5F;
    --primary-green-hover: #248C52;
    --dark-bg: #1a1a2e;
    --darker-bg: #0f0f1a;
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
    --text-muted: #6b7280;
    --border-light: #e5e7eb;
    --section-padding: 80px 0;
    --container-width: 1200px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: #ffffff;
    overflow-x: hidden;
}

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

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


ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

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

.text-white {
    color: var(--text-light);
}

.text-muted {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    gap: 8px;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-green-hover);
    transform: translateY(-2px);
}


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

.btn-outline:hover {
    background: var(--primary-green);
    color: white;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--dark-bg);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all var(--transition-medium);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}


.logo svg, .logo img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 200px;
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    margin-top: 15px;
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.nav-links .dropdown-menu a:hover {
    background: #f8f9fa;
}


/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d4d4d 0%, #1a5f5f 40%, #2d9d5f 100%);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 80px);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-image img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: white;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content .subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero-content .highlight {
    color: #7dd3a8;
    font-weight: 600;
}

.hero-content p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.hero-content .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding);
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}


.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, 
        #0d5d5d 0%, 
        #1a6b6b 30%, 
        #2d9d5f 100%);
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/marble-texture.png') center/cover;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.blog-section .container {
    position: relative;
    z-index: 1;
}

.blog-section h2 {
    color: white;
    text-align: left;
    margin-bottom: 30px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform var(--transition-medium);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    height: 160px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.blog-card-content {
    padding: 20px;
}

.blog-card h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card .date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION (Let's Talk)
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/marble-texture.png') center/cover;
    opacity: 0.1;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ============================================
   FROM STAGE TO ENTERPRISE SECTION
   ============================================ */
.stage-section {
    padding: var(--section-padding);
    background: #f8f9fa;
}

.stage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.stage-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.stage-text h2 {
    margin-bottom: 20px;
}

.stage-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.stage-text ul {
    margin-bottom: 20px;
}

.stage-text li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.stage-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
}

.stage-text li strong {
    color: var(--text-dark);
}

/* ============================================
   SPEAKING JOURNEY SECTION
   ============================================ */
.speaking-journey {
    padding: 80px 0;
    background: linear-gradient(180deg, #0d4d4d 0%, #1a5f5f 100%);
    position: relative;
}

.speaking-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/world-map.png') center/contain no-repeat;
    opacity: 0.1;
}

.speaking-journey .container {
    position: relative;
    z-index: 1;
}

.speaking-journey h2 {
    color: white;
    margin-bottom: 30px;
}


/* ============================================
   CONFERENCE PASSION SECTION
   ============================================ */
.conferences-passion {
    padding: var(--section-padding);
    text-align: center;
}

.conferences-passion h2 {
    margin-bottom: 16px;
}

.conferences-passion .subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.conference-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.conference-logo-item {
    text-align: center;
}

.conference-logo-item img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
    filter: grayscale(0);
}

.conference-logo-item h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.conference-logo-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   SPEAKING GALLERY
   ============================================ */
.speaking-gallery {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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


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

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.gallery-item .overlay h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a5f5f 0%, #2d9d5f 100%);
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/marble-texture.png') center/cover;
    opacity: 0.1;
}

.newsletter .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text {
    color: white;
}

.newsletter-text h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.newsletter-text p {
    opacity: 0.9;
}

.newsletter-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.newsletter-form input,
.newsletter-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 0.95rem;
    margin-bottom: 16px;
}


.newsletter-form input:focus,
.newsletter-form select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.newsletter-form .btn {
    width: 100%;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.about-text .role {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--text-dark);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image .name-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--primary-green);
}

/* Community logos */
.community-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}


.community-logos img {
    height: 40px;
    width: auto;
    filter: grayscale(0);
}

/* ============================================
   WORKSHOP SECTION
   ============================================ */
.workshop-section {
    padding: var(--section-padding);
    background: #ffffff;
}

.workshop-section h2 {
    margin-bottom: 16px;
}

.workshop-section .intro {
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 40px;
}

.workshop-accordion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: white;
    cursor: pointer;
    font-weight: 600;
    transition: background var(--transition-fast);
}

.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-header .icon {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 300;
}

.accordion-content {
    padding: 0 24px 20px;
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}

.workshop-links {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.workshop-links a {
    color: var(--primary-green);
    font-weight: 500;
}


.workshop-links a:hover {
    text-decoration: underline;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
    padding: var(--section-padding);
    background: #f8f9fa;
}

.partners-section h2 {
    margin-bottom: 16px;
}

.partners-section .intro {
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 40px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 45px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.partner-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partner-categories {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.partner-category svg {
    width: 48px;
    height: 48px;
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.partner-category span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.partner-category:hover svg {
    opacity: 1;
    transform: translateY(-2px);
}

.partner-category:hover span {
    color: var(--primary-green);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0d4d4d 0%, #1a5f5f 100%);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/marble-texture.png') center/cover;
    opacity: 0.15;
}

.video-section .container {
    position: relative;
    z-index: 1;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}


.video-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-section h3 {
    color: white;
    text-align: center;
    margin-bottom: 8px;
}

.video-section p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 20px;
}

.video-section .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: white;
}

.video-section .social-links a {
    opacity: 0.8;
}

.video-section .social-links a:hover {
    opacity: 1;
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #1a5f5f 0%, #2d9d5f 100%);
    position: relative;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/marble-texture.png') center/cover;
    opacity: 0.1;
}

.instagram-section .container {
    position: relative;
    z-index: 1;
}


.instagram-section h3 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.instagram-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.instagram-post img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.instagram-post .caption {
    padding: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   LEGAL PAGES (Privacy, Imprint)
   ============================================ */
.legal-page {
    padding: 140px 0 80px;
    min-height: calc(100vh - 200px);
}

.legal-page h1 {
    margin-bottom: 30px;
    color: var(--text-dark);
}

.legal-page h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.legal-page p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.legal-page p strong {
    color: var(--text-dark);
}

.legal-page a {
    color: var(--primary-green);
}

.legal-page a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    background: white;
    border-top: 1px solid var(--border-light);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo svg, .footer-logo img {
    height: 30px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 24px;
}

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

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
}


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

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.footer-social a:hover {
    color: var(--primary-green);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding-top: 80px;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-image {
        padding: 40px 20px 20px;
    }
    
    .hero-image img {
        max-height: 50vh;
    }
    
    .hero-content {
        padding: 30px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .blog-grid,
    .stage-content,
    .newsletter .container,
    .about-content,
    .workshop-accordion {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .conference-logos {
        gap: 30px;
    }
    
    .partner-logos {
        gap: 30px;
    }
}

/* Mobile Nav Open State */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    gap: 16px;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
