* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    html {
        scroll-snap-type: y proximity;
    }
    
    .slide, .hero {
        scroll-snap-align: start;
        min-height: -webkit-fill-available;
    }
    
    body {
        -webkit-overflow-scrolling: touch;
    }
}

body {
    background-color: #0b0812;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    line-height: 1.6;
}

.navbar {
    background-color: #1a1525;
    padding: 1rem 0;
    border-bottom: 1px solid #2d2540;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: #c022b9;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #b0a8b9;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 15px 20px;
    position: relative;
    box-sizing: border-box;
}

.scroll-hint {
    position: fixed;
    bottom: 50px;
    left: 30px;
    color: #6b6280;
    font-size: 0.9rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scroll-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(3px);
    }
}

.pagination-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.dot {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #3d3555;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dot:hover {
    background-color: #6b6280;
}

.dot.active {
    background-color: #b0a8b9;
    transform: scale(1.2);
}

.slide {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 15px 20px;
    scroll-snap-align: start;
    box-sizing: border-box;
}

#slide-1 {
    scroll-snap-align: start;
    padding-top: 80px;
}

.section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 2s ease-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1000px;
    width: 100%;
}

.service-card {
    background: transparent;
    border: 1px solid #3d3555;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: cardFloat 3s ease-in-out infinite;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.4s; }
.service-card:nth-child(4) { animation-delay: 0.6s; }
.service-card:nth-child(5) { animation-delay: 0.8s; }
.service-card:nth-child(6) { animation-delay: 1s; }

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-8px);
        opacity: 0.9;
    }
}

.service-card:hover {
    border-color: #6b6280;
    transform: translateY(-5px);
}

.service-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero-image {
        width: 200px;
        height: 200px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-top: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 5px;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0 5px;
    }
    
    .about-layout {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .about-image {
        width: 200px;
        height: 250px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .pagination-dots {
        right: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .scroll-hint {
        left: 10px;
        bottom: 20px;
        font-size: 0.8rem;
    }
    
    .process-image {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .contact-image-container {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .contact-image {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 0 5px;
    }
    
    .service-card {
        min-height: 100px;
        padding: 15px;
    }
    
    .service-icon {
        font-size: 1.5rem;
    }
    
    .service-text {
        font-size: 0.85rem;
    }
    
    .review-card {
        min-height: 100px;
        padding: 15px;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    animation: fadeInDown 2s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll.hero-content {
    animation: fadeInDown 2s ease-out forwards;
}

.animate-on-scroll.section-title {
    animation: fadeInDown 2s ease-out forwards;
}

.animate-on-scroll.about-content {
    animation: fadeInUp 2s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll.service-card {
    animation: cardFloat 3s ease-in-out infinite;
}

.about-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    width: 100%;
    padding: 0 20px;
}

.about-image {
    width: 300px;
    height: 400px;
    border-radius: 24px;
    object-fit: cover;
    flex-shrink: 0;
    animation: slideInLeft 2s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-content {
    max-width: 700px;
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 10px;
}

.about-name {
    color: #c022b9;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.about-text {
    color: #c4bccf;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 30px;
    background-color: #ff0000;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.05);
    background-color: #cc0000;
}

.social-icon {
    font-size: 1rem;
}

.social-text {
    font-weight: 500;
}

.process-image {
    max-width: 800px;
    width: 100%;
    border-radius: 16px;
    margin-top: 30px;
    animation: fadeInUp 2s ease-out;
}

.contact-image {
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
    margin-top: 60px;
    animation: fadeInUp 2s ease-out;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
    width: 100%;
    max-width: 400px;
}

.contact-link {
    display: block;
    padding: 15px 20px;
    background: transparent;
    border: 1px solid #3d3555;
    border-radius: 30px;
    color: #c4bccf;
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: #1a1525;
    border-color: #6b6280;
    color: #ffffff;
}

.contact-image-container {
    position: relative;
    display: inline-block;
    margin-top: 60px;
    pointer-events: auto;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    pointer-events: none;
}

.image-overlay a {
    pointer-events: auto;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 8px 16px;
    background: rgba(0,0,0,0.5);
    border-radius: 20px;
}

.image-overlay a:hover {
    opacity: 0.8;
}

.contact-image-container {
    position: relative;
    display: inline-block;
    margin-top: 60px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.image-overlay a {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.image-overlay a:hover {
    opacity: 0.8;
}

.image-link-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 60px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.image-overlay p {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.footer-content {
    margin-top: 60px;
    text-align: center;
}

.copyright {
    color: #6b6280;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-link {
    color: #c4bccf;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    width: 100%;
    margin-top: 30px;
}

.review-card {
    background: transparent;
    border: 1px solid #3d3555;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card:hover {
    border-color: #6b6280;
    transform: translateY(-5px);
}

.review-content {
    width: 100%;
}

.review-author {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.review-text {
    color: #c4bccf;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.hero-text {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image {
    width: 350px;
    height: 350px;
    border-radius: 24px;
    object-fit: cover;
    animation: slideInRight 2s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    color: #c4bccf;
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-image {
        width: 280px;
        height: 280px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .scroll-hint {
        font-size: 0.8rem;
    }
    
    .pagination-dots {
        right: 15px;
        gap: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}