/*
 * 全屏滚动样式
 * Fullpage Scroll Styles
 */

/* Fullpage Mode Body */
body.fullpage-mode {
    overflow: hidden;
    height: 100vh;
}

/* Transparent Header for Fullpage */
.header-transparent {
    background: transparent;
    box-shadow: none;
}

.header-transparent.scrolled,
.header-transparent.header-solid {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.header-transparent .nav-list a,
.header-transparent .menu-btn span {
    color: var(--white);
}

.header-transparent.header-solid .nav-list a,
.header-transparent.header-solid .menu-btn span {
    color: var(--text-color);
}

.header-transparent .lang-switch {
    border-color: rgba(255, 255, 255, 0.3);
}

.header-transparent .lang-switch a {
    color: rgba(255, 255, 255, 0.8);
}

.header-transparent .lang-switch a.active {
    color: var(--white);
}

.header-transparent.header-solid .lang-switch {
    border-color: var(--border-color);
}

.header-transparent.header-solid .lang-switch a {
    color: var(--text-muted);
}

.header-transparent.header-solid .lang-switch a.active {
    color: var(--primary-color);
}

.header-transparent .logo-img {
    filter: brightness(0) invert(1);
}

.header-transparent.header-solid .logo-img {
    filter: none;
}

/* Fullpage Container */
.fullpage-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Section Navigation */
.section-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--gold-color);
    transform: scale(1.2);
}

.nav-dot.active::before {
    opacity: 1;
}

.nav-dot span {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 0.8rem;
    color: var(--white);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 12px;
    border-radius: 4px;
}

.nav-dot:hover span {
    opacity: 1;
    right: 30px;
}

/* Light background sections - nav dots */
.fp-about .nav-dot,
.fp-business .nav-dot,
.fp-news .nav-dot {
    background: rgba(0, 0, 0, 0.2);
}

.fp-about .nav-dot span,
.fp-business .nav-dot span,
.fp-news .nav-dot span {
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.9);
}

/* Fullpage Sections */
.fp-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.8s;
    transform: translateY(50px);
    overflow: hidden;
}

.fp-section.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 10;
}

.fp-section.prev {
    transform: translateY(-100vh);
}

.fp-section.next {
    transform: translateY(100vh);
}

/* Section Inner - for content centering */
.fp-section-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 0 80px;
}

/* Section Peek - shows next section preview */
.fp-section-peek {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    pointer-events: none;
}

/* Banner Section */
.fp-banner {
    margin-top: 0;
}

.fp-banner .banner-slide {
    height: 100vh;
}

.fp-banner .banner-content {
    height: 100vh;
    padding-top: var(--header-height);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
    z-index: 20;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 0 auto 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: scrollArrow 2s infinite;
}

.scroll-hint span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollArrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* About Section Fullpage */
.fp-about {
    background: var(--bg-light);
}

.fp-about .about-grid {
    gap: 80px;
}

.fp-about .about-content {
    padding-right: 40px;
}

.fp-about .about-content .btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
}

/* About Stats */
.about-stats {
    display: flex;
    gap: 50px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-unit {
    font-size: 1.5rem;
    color: var(--gold-color);
    font-weight: 600;
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Business Section Fullpage */
.fp-business {
    background: var(--bg-light);
}

.fp-business .section-title {
    color: var(--text-color);
}

.fp-business .section-title-en {
    color: var(--text-muted);
}

.fp-business .business-grid {
    gap: 30px;
}

.fp-business .business-card {
    padding: 45px 30px;
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.fp-business .business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.fp-business .business-card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 20px 0 15px;
}

.fp-business .business-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Business Features List */
.business-features {
    list-style: none;
    margin: 20px 0 25px;
    padding: 0;
    text-align: left;
}

.business-features li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.business-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gold-color);
    border-radius: 50%;
}

/* Business Icon on white card */
.fp-business .business-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.fp-business .business-card:hover .business-icon {
    background: var(--gold-color);
    transform: scale(1.05);
}

.fp-business .btn-more {
    display: inline-block;
    padding: 10px 28px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fp-business .btn-more:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* News Section Fullpage */
.fp-news {
    background: var(--white);
}

/* Home news cards animation */
.fp-news .news-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fp-news .news-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.fp-news .news-category.industry {
    background: #2c5aa0;
}

.fp-news .no-news {
    text-align: center;
    color: var(--text-muted);
    padding: 60px 20px;
    grid-column: 1 / -1;
}

/* News Tabs */
.news-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.news-tab {
    padding: 10px 30px;
    font-size: 0.95rem;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-tab:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.news-tab.active {
    color: var(--white);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Contact Section Fullpage */
.fp-contact {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
}

.fp-contact .fp-section-inner {
    flex: 1;
    min-height: auto;
    padding-bottom: 30px;
    padding-top: 100px;
    display: flex;
    align-items: center;
}

/* New Contact Section Grid Layout */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-header-left {
    text-align: left;
}

.section-header-left .section-divider {
    margin: 20px 0 0 0;
}

/* Contact Left */
.contact-left {
    padding-right: 20px;
}

.contact-info-list {
    margin: 30px 0;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-row:last-child {
    border-bottom: none;
}

.contact-icon-sm {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-row .contact-text h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-info-row .contact-text p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.contact-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-actions .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
}

.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-gold-outline i {
    font-size: 1.1rem;
}

/* Contact Right */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-map-preview {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map-preview img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.map-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
}

.map-location i {
    color: var(--gold-color);
}

.map-link {
    padding: 8px 16px;
    background: var(--gold-color);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: var(--gold-light);
}

.contact-cta-box {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    color: var(--white);
}

.contact-cta-box h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.contact-cta-box p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* Legacy Contact Styles (for other pages) */
.contact-overview {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-text h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.contact-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    color: var(--white);
}

.contact-cta p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Footer in Fullpage */
.fp-footer {
    padding: 40px 0 0;
    margin-top: auto;
    flex-shrink: 0;
}

.fp-footer .footer-grid {
    padding-bottom: 30px;
}

.fp-footer .footer-bottom {
    padding: 15px 0;
}

/* Ensure app download button is visible in fullpage footer */
.fp-footer .footer-app-download {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fp-footer .app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.fp-footer .app-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

/* Responsive Fullpage */

/* Tablet Portrait (1024px width but tall screens like 1366px height) */
@media (max-width: 1024px) {
    .section-nav {
        right: 20px;
        gap: 15px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    /* About section - switch to single column on tablet */
    .fp-about .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fp-about .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Hide the gold border decoration on tablet */
    .fp-about .about-image::before {
        display: none;
    }

    .about-image::before {
        display: none;
    }

    .fp-about .about-content {
        padding-right: 0;
        text-align: center;
    }

    .fp-about .about-content h3 {
        text-align: center;
    }

    .fp-about .about-content p {
        text-align: left;
    }

    .about-stats {
        justify-content: center;
    }

    .about-features {
        justify-content: center;
    }

    /* Business section */
    .fp-business .business-grid {
        gap: 20px;
    }

    .fp-business .business-card {
        padding: 35px 25px;
    }

    .fp-business .business-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    /* Contact section */
    .contact-section-grid {
        gap: 40px;
    }

    .contact-map-preview img {
        height: 180px;
    }

    .contact-cta-box {
        padding: 25px;
    }

    .contact-cta-box h3 {
        font-size: 1.15rem;
    }
}

@media (max-width: 900px) {
    /* About section single column */
    .fp-about .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fp-about .about-content {
        padding-right: 0;
    }

    .fp-about .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Ensure gold border hidden */
    .fp-about .about-image::before,
    .about-image::before {
        display: none;
    }

    /* Stats inline on tablet */
    .about-stats {
        justify-content: center;
    }

    /* Contact section */
    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-left {
        padding-right: 0;
    }

    .section-header-left {
        text-align: center;
    }

    .section-header-left .section-divider {
        margin: 20px auto 0;
    }

    .contact-right {
        order: -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .contact-map-preview img {
        height: 200px;
    }

    .contact-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-nav {
        display: none;
    }

    body.fullpage-mode {
        overflow-y: auto;
        height: auto;
    }

    .fullpage-container {
        height: auto;
        overflow: visible;
    }

    .fp-section {
        position: relative;
        height: auto;
        min-height: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .fp-section-inner {
        min-height: auto;
        padding: 60px 0 50px;
    }

    .fp-banner {
        height: 100vh;
        min-height: 500px;
    }

    .fp-banner .banner-slide {
        height: 100vh;
        min-height: 500px;
    }

    .scroll-hint {
        display: none;
    }

    /* Header on mobile - always solid */
    .header-transparent {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
    }

    .header-transparent .nav-list a,
    .header-transparent .menu-btn span {
        color: var(--text-color);
    }

    .header-transparent .logo-img {
        filter: none;
    }

    .header-transparent .lang-switch {
        border-color: var(--border-color);
    }

    .header-transparent .lang-switch a {
        color: var(--text-muted);
    }

    .header-transparent .lang-switch a.active {
        color: var(--primary-color);
    }

    /* Stats horizontal */
    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .stat-item {
        flex: 0 0 auto;
        min-width: 100px;
    }

    /* Business grid */
    .fp-business .business-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fp-business .business-card {
        padding: 30px 25px;
    }

    /* News grid */
    .fp-news .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Contact section */
    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-right {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-actions .btn,
    .contact-actions .btn-gold-outline {
        text-align: center;
        justify-content: center;
    }

    .contact-map-preview img {
        height: 180px;
    }

    .contact-cta-box {
        padding: 20px;
    }

    .contact-cta-box h3 {
        font-size: 1.1rem;
    }

    .contact-cta-box p {
        font-size: 0.85rem;
    }

    /* Contact info rows */
    .contact-info-row {
        padding: 15px 0;
    }

    .contact-icon-sm {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-info-row .contact-text h4 {
        font-size: 0.8rem;
    }

    .contact-info-row .contact-text p {
        font-size: 0.9rem;
    }

    /* Footer in fullpage */
    .fp-footer {
        padding: 40px 0 0;
    }

    .fp-footer .footer-grid {
        padding-bottom: 25px;
    }

    .fp-footer .footer-bottom {
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .fp-section-inner {
        padding: 50px 0 40px;
    }

    .fp-banner {
        min-height: 450px;
    }

    .fp-banner .banner-slide {
        min-height: 450px;
    }

    /* Stats even smaller */
    .stat-number {
        font-size: 1.5rem;
    }

    .stat-unit {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-item {
        min-width: 80px;
    }

    /* Business cards compact */
    .fp-business .business-card {
        padding: 25px 20px;
    }

    .fp-business .business-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .fp-business .business-card h3 {
        font-size: 1.1rem;
        margin: 15px 0 10px;
    }

    .fp-business .business-card p {
        font-size: 0.85rem;
    }

    .business-features li {
        font-size: 0.8rem;
    }

    .fp-business .btn-more {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    /* News tabs */
    .news-tabs {
        gap: 10px;
        margin-bottom: 30px;
    }

    .news-tab {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    /* Contact compact */
    .contact-info-list {
        margin: 20px 0;
    }

    .contact-info-row {
        gap: 15px;
        padding: 12px 0;
    }

    .contact-icon-sm {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .contact-actions .btn,
    .contact-actions .btn-gold-outline {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .contact-map-preview img {
        height: 150px;
    }

    .contact-cta-box {
        padding: 18px;
    }

    .contact-cta-box h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .contact-cta-box p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    /* Footer compact */
    .fp-footer {
        padding: 30px 0 0;
    }
}

@media (max-width: 375px) {
    .fp-section-inner {
        padding: 40px 0 35px;
    }

    .fp-banner {
        min-height: 400px;
    }

    .fp-banner .banner-slide {
        min-height: 400px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-item {
        min-width: 70px;
    }

    .fp-business .business-card {
        padding: 20px 15px;
    }

    .fp-business .business-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .news-tab {
        padding: 6px 15px;
        font-size: 0.8rem;
    }

    .contact-icon-sm {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

/* Smooth section transitions */
.fp-section.slide-up {
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fp-section.slide-down {
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content animations when section becomes active */
.fp-section.active .section-header {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.fp-section.active .about-image {
    animation: fadeInLeft 0.6s ease 0.3s both;
}

.fp-section.active .about-content {
    animation: fadeInRight 0.6s ease 0.4s both;
}

.fp-section.active .business-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.fp-section.active .business-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.fp-section.active .business-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.5s both;
}

.fp-section.active .news-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.fp-section.active .news-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.fp-section.active .news-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.5s both;
}

.fp-section.active .contact-info-item {
    animation: fadeInUp 0.5s ease both;
}

.fp-section.active .contact-info-item:nth-child(1) { animation-delay: 0.2s; }
.fp-section.active .contact-info-item:nth-child(2) { animation-delay: 0.3s; }
.fp-section.active .contact-info-item:nth-child(3) { animation-delay: 0.4s; }
.fp-section.active .contact-info-item:nth-child(4) { animation-delay: 0.5s; }

.fp-section.active .contact-cta {
    animation: fadeInUp 0.6s ease 0.6s both;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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