* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sunflower', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-container {
    text-align: center;
    opacity: 0;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: -2px;
    margin: 0;
}

.brand-name {
    color: #ff6b6b;
    position: relative;
    display: inline-block;
}

.domain {
    color: #4ecdc4;
}


.services {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(50px);
    width: 100%;
    max-width: 1200px;
    padding: 0 50px;
    opacity: 0;
    transition: all 1s ease-out;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    width: 100%;
}

.service-item {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 200;
    margin-bottom: 15px;
    color: #ff6b6b;
    position: relative;
    display: inline-block;
}

.service-item h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    transition: width 0.8s ease;
}

.service-item.visible h2::after {
    width: 100%;
}

.service-item {
    cursor: pointer;
}

.service-item p {
    font-size: 1rem;
    font-weight: 300;
    color: #cccccc;
    line-height: 1.5;
    max-width: 500px;
}

.service-page {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: #0a0a0a;
    z-index: 1000;
    transition: right 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-page.active {
    right: 0;
}

.service-page-content {
    padding: 80px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.back-arrow {
    position: absolute;
    top: 40px;
    left: 40px;
    background: none;
    border: none;
    color: #ff6b6b;
    font-size: 2rem;
    padding: 10px;
    cursor: none !important;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.back-arrow:hover {
    opacity: 1;
    transform: translateX(-5px);
}

.service-details {
    max-width: 800px;
    margin: 100px auto 0;
    text-align: center;
}

.service-details h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: #ff6b6b;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.service-details p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
    font-weight: 300;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 107, 107, 0.6), 0 0 40px rgba(255, 107, 107, 0.3);
    }
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-6px) rotate(45deg);
    }
    60% {
        transform: translateY(-3px) rotate(45deg);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 50px 20px;
    }
    
    .service-item {
        margin-bottom: 60px;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
}

.custom-cursor.hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
}

@media (hover: hover) and (pointer: fine) {
    .custom-cursor {
        opacity: 1;
    }
    
    * {
        cursor: none !important;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .service-item h2 {
        font-size: 2rem;
    }
    
    .service-item p {
        font-size: 1rem;
    }
    
    .custom-cursor {
        display: none;
    }
}