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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #282422;
    background-color: #FBF9F9;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 240px);
    max-width: 1200px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(251, 249, 249, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 19px 40px;
    height: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.header.scrolled .header-content {
    background: rgba(251, 249, 249, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* Header dark mode for white background sections */
.header.dark .header-content {
    background: rgba(40, 36, 34, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(40, 36, 34, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.header.dark.scrolled .header-content {
    background: rgba(40, 36, 34, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(40, 36, 34, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* Logo and nav text color for dark mode */
.header.dark .logo-text,
.header.dark .nav-link {
    color: #282422;
}

.header.dark .nav-link::after {
    background: #282422;
}

.header.dark .hamburger-line {
    background-color: #282422;
}

/* Header over service card - dark background with light text */
.header.over-service-card .header-content {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header.over-service-card.scrolled .header-content {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.header.over-service-card .logo-text,
.header.over-service-card .nav-link {
    color: #FBF9F9;
}

.header.over-service-card .nav-link::after {
    background: #FBF9F9;
}

.header.over-service-card .hamburger-line {
    background-color: #FBF9F9;
}

/* When menu is open, always use white hamburger lines */
.header.menu-open .hamburger-line {
    background-color: #FBF9F9 !important;
}

.logo-text {
    font-family: 'Futura', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.328125;
    letter-spacing: 0.1em;
    color: #FBF9F9;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.logo-text:hover {
    opacity: 1;
}

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

.nav-link {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.362;
    letter-spacing: 0.1em;
    color: #FBF9F9;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FBF9F9;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #FBF9F9;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Visual */
.mv {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('./assets/mv-bg.png') center/cover no-repeat;
    overflow: hidden;
}

.mv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.mv-content {
    text-align: center;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-title {
    font-family: 'Futura', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 80px;
    line-height: 1.328125;
    letter-spacing: 0.1em;
    color: #FBF9F9;
    opacity: 0;
    margin-bottom: 40px;
    transform: scale(0.95);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mv-title.title-fade-in {
    opacity: 0.8;
    transform: scale(1);
}

.mv-subtitle {
    font-family: 'Futura', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.328125;
    letter-spacing: 0.1em;
    color: #939393;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #FBF9F9, transparent);
    animation: pulse 2s ease-in-out infinite;
}

/* Section Titles */
.section-title {
    font-family: 'Futura', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.328125;
    letter-spacing: 0.1em;
    text-align: center;
    color: #282422;
    opacity: 0.8;
    margin-bottom: 80px;
    position: relative;
}

/* Company Section */
.company {
    padding: 200px 0 100px;
    background: #FBF9F9;
    position: relative;
}

.company-content {
    max-width: 842px;
    margin: 0 auto;
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.vision,
.mission {
    max-width: 800px;
    text-align: center;
}

.vm-title {
    font-family: 'Futura', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.328125;
    letter-spacing: 0.1em;
    color: #282422;
    opacity: 0.8;
    margin-bottom: 40px;
}

.vm-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.667;
    letter-spacing: 0.1em;
    color: #282422;
    margin-bottom: 40px;
}

.vm-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    color: #282422;
    text-align: center;
    max-width: 546px;
    margin: 0 auto;
}

.line {
    width: 100%;
    height: 1px;
    background: #CACACA;
    margin: 0 auto;
    animation: expandLine 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Company section lines with staggered animation */
.company .line:nth-child(1) { animation-delay: 0.1s; }
.company .line:nth-child(3) { animation-delay: 0.3s; }
.company .line:nth-child(5) { animation-delay: 0.5s; }

/* Service Section */
.service {
    padding: 120px 0;
    background: #FBF9F9;
}

.service .container {
    max-width: 1200px;
}

.service-card {
    position: relative;
    width: 100%;
    height: 321px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/service-bg.jpg') center/cover no-repeat;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-bg {
    transform: scale(1.1);
}

.service-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}

.service-title {
    font-family: 'Futura', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.328125;
    letter-spacing: 0.3em;
    text-align: center;
    color: #FBF9F9;
    opacity: 0.8;
    margin-bottom: 40px;
}

.coming-soon {
    padding: 8px 37px;
    border: 1px solid #939393;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.coming-soon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #FBF9F9;
}

.coming-soon span {
    font-family: 'Futura', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.328125;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 120px 0 120px;
    background: #FBF9F9;
}

.about .container {
    max-width: 1000px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-row {
    display: flex;
    align-items: flex-start;
    padding: 0;
    margin-bottom: 24px;
}



.info-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    color: #282422;
    min-width: 238px;
    padding-right: 20px;
}

.info-value {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    color: #282422;
    flex: 1;
}

.about .line {
    width: 100%;
    height: 0.25px;
    background: #939393;
    margin: 0 0 24px 0;
}



/* Footer */
.footer {
    background: #FBF9F9;
    padding: 120px 0 40px;
    color: #282422;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Futura', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.328125;
    letter-spacing: 0.1em;
    color: #282422;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-link {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.362;
    letter-spacing: 0.1em;
    color: #282422;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    position: relative;
}

.footer-link:hover {
    opacity: 1;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #282422;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.footer-line {
    width: 100%;
    height: 1px;
    background: #CACACA;
    margin-bottom: 40px;
    opacity: 0;
    animation: expandLine 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.copyright {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.362;
    letter-spacing: 0.1em;
    color: #282422;
    text-align: right;
    opacity: 0.8;
}

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

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

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

@keyframes expandLine {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 60px;
    }

    .header {
        width: calc(100% - 120px);
    }

    .mv-title {
        font-size: 64px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .company {
        padding: 120px 0 70px;
    }
    
    .service,
    .about {
        padding: 70px 0 90px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        width: calc(100% - 40px);
        top: 15px;
        transition: opacity 0.3s ease;
    }

    .header-content {
        padding: 15px 20px;
    }

    /* Hide header when menu is active, but keep hamburger visible */
    .header.menu-open .header-content {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
    }

    .header.menu-open .logo-text {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    /* Keep navigation visible when menu is active on mobile with high specificity */
    .header.menu-open .nav.active {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }

    /* Force initial hidden state for nav links in menu-open */
    .header.menu-open .nav.active .nav-link {
        color: #FBF9F9 !important;
        opacity: 0 !important;
        transform: translateY(30px) !important;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Animate to visible state with delays when show-links class is added */
    .header.menu-open .nav.active.show-links .nav-link {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    /* Staggered animation delays for nav links when menu is open */
    .header.menu-open .nav.active.show-links .nav-link:nth-child(1) {
        transition-delay: 0.2s;
    }
    .header.menu-open .nav.active.show-links .nav-link:nth-child(2) {
        transition-delay: 0.4s;
    }
    .header.menu-open .nav.active.show-links .nav-link:nth-child(3) {
        transition-delay: 0.6s;
    }

    /* Show hamburger, hide nav on mobile */
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    /* Keep hamburger visible when menu is open */
    .header.menu-open .hamburger {
        opacity: 1;
        visibility: visible;
    }

    /* Ensure hamburger lines are white when menu is open on mobile */
    .header.menu-open .hamburger-line {
        background-color: #FBF9F9 !important;
    }

    /* Hide desktop nav on mobile */
    .nav {
        display: none;
    }

    .nav.active {
        display: flex;
    }

    /* Menu overlay background */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(40, 36, 34, 0.95);
        backdrop-filter: blur(60px);
        -webkit-backdrop-filter: blur(60px);
        border-radius: 50%;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: scale(0);
        transform-origin: var(--menu-origin-x, 50%) var(--menu-origin-y, 50%);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        width: 200vmax;
        height: 200vmax;
        top: 50%;
        left: 50%;
        margin-top: -100vmax;
        margin-left: -100vmax;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        border-radius: 0%;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s, visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 24px;
        font-weight: 500;
        color: #FBF9F9;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Force initial hidden state for nav links */
    .nav.active .nav-link {
        opacity: 0 !important;
        transform: translateY(30px) !important;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Animate to visible state with delays */
    .nav.active.show-links .nav-link {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .nav.active.show-links .nav-link:nth-child(1) { 
        transition-delay: 0.2s;
    }
    .nav.active.show-links .nav-link:nth-child(2) { 
        transition-delay: 0.4s;
    }
    .nav.active.show-links .nav-link:nth-child(3) { 
        transition-delay: 0.6s;
    }

    /* Mobile menu text color - always light on dark background with high specificity */
    @media (max-width: 768px) {
        .nav.active .nav-link {
            color: #FBF9F9 !important;
        }
        
        /* Force initial hidden state for nav links on mobile */
        .header.menu-open .nav.active .nav-link {
            color: #FBF9F9 !important;
            opacity: 0 !important;
            transform: translateY(30px) !important;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Animate to visible state with delays when show-links class is added */
        .header.menu-open .nav.active.show-links .nav-link {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }
        
                 .header.menu-open .nav.active.show-links .nav-link:nth-child(1) {
             transition-delay: 0.2s;
         }
         .header.menu-open .nav.active.show-links .nav-link:nth-child(2) {
             transition-delay: 0.4s;
         }
         .header.menu-open .nav.active.show-links .nav-link:nth-child(3) {
             transition-delay: 0.6s;
         }
    }

    /* Reset MV to viewport height on mobile */
    .mv {
        height: 100vh;
        aspect-ratio: unset;
        max-height: unset;
    }

    .mv-title {
        font-size: 48px;
        margin-bottom: 24px;
    }

    .mv-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .company {
        padding: 140px 0 60px;
    }
    
    .service,
    .about {
        padding: 60px 0 80px;
    }

    .vision-mission {
        gap: 40px;
    }

    .vm-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .vm-subtitle {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .vm-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .vm-description br {
        display: none;
    }

    .break-mobile {
        display: block;
    }

    .service-card {
        height: 250px;
    }

    .service-content {
        padding: 60px 40px 40px;
        justify-content: flex-end;
    }

    .service-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .company .container,
    .about .container {
        max-width: 600px;
        padding: 0 40px;
    }

    .info-row {
        flex-direction: column;
        gap: 8px;
        padding: 16px 0;
    }

    .ceo-row {
        padding: 8px 0;
    }

    .info-label {
        min-width: auto;
        padding-right: 0;
        font-weight: 500;
        font-size: 14px;
    }

    .info-value {
        font-size: 16px;
    }

    .footer {
        padding: 90px 0 0;
    }

    .footer-content {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        font-size: 28px;
        order: 2;
    }

    .footer-nav {
        gap: 20px;
        order: 1;
    }

    .copyright {
        text-align: center;
        font-size: 12px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header {
        width: calc(100% - 32px);
    }

    .header-content {
        padding: 12px 16px;
    }

    /* Ensure hamburger button remains visible on smaller screens */
    .hamburger {
        z-index: 1001;
    }

    .header.menu-open .hamburger {
        opacity: 1;
        visibility: visible;
    }

    /* Ensure hamburger lines are white when menu is open on small mobile */
    .header.menu-open .hamburger-line {
        background-color: #FBF9F9 !important;
    }

    /* Reset MV to viewport height on small mobile */
    .mv {
        height: 100vh;
        aspect-ratio: unset;
        max-height: unset;
    }

    .mv-title {
        font-size: 36px;
    }

    .mv-subtitle {
        font-size: 13px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .company {
        padding: 120px 0 60px;
    }
    
    .service,
    .about {
        padding: 60px 0 80px;
    }

    .vm-title {
        font-size: 24px;
    }

    .vm-subtitle {
        font-size: 20px;
    }

    .vm-description {
        font-size: 13px;
    }

    .service-card {
        height: 200px;
    }

    .service-content {
        padding: 80px 20px 30px;
    }

    .service-title {
        font-size: 18px;
    }

    .company .container,
    .about .container {
        max-width: 480px;
        padding: 0 24px;
    }

    .footer {
        padding: 80px 0 0;
    }

    .footer-logo {
        font-size: 24px;
    }
}

/* Intersection Observer for scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service section fade-in animations */
.service-card.fade-in {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-title.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.service-title.fade-in.visible {
    opacity: 0.8;
    transform: translateY(0);
}

.coming-soon.fade-in {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.coming-soon.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* About section fade-in animations */
.about .info-row.fade-in {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about .info-row.fade-in.visible {
    opacity: 1;
    transform: translateX(0);
}

.about .line.fade-in {
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about .line.fade-in.visible {
    opacity: 1;
    transform: scaleX(1);
} 