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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

.page-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #000;
}

/* Background Flower */
.flower-background {
    position: absolute;
    width: 775px;
    height: 822px;
    left: 672px;
    top: 49px;
    transform: translateX(-50%);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.flower-background img {
    width: 113.96%;
    height: 107.39%;
    position: absolute;
    left: -4.65%;
    top: -3.26%;
    max-width: none;
}

/* Main App Container */
.app-container {
    position: absolute;
    width: 1344px;
    height: 2345.3px;
    left: 0;
    top: 0;
    background-color: #000;
    overflow: hidden;
    z-index: 1;
}

/* Header */
.header {
    position: absolute;
    left: 32px;
    top: 0;
    width: 1280px;
    height: 211.797px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 48px;
}

.heading-1 p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 32px;
    line-height: 62.4px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    width: 1217px;
    position: absolute;
    left: 640.09px;
    transform: translateX(-50%);
}

.paragraph p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.9px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    white-space: pre;
    position: absolute;
    left: 640.02px;
    top: 0.5px;
    transform: translateX(-50%);
}

/* Navigation Buttons */
.nav-buttons {
    position: absolute;
    left: 424.4px;
    top: 307.8px;
    width: 495.195px;
    height: 50px;
    display: flex;
    gap: 24px;
}

.nav-button {
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 2.4px;
    padding: 0 33px;
    cursor: pointer;
    box-shadow: 0px 8px 32px 0px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 8px 32px 0px rgba(255, 255, 255, 0.2);
}

/* Work Heading */
.work-heading {
    position: absolute;
    left: 629.93px;
    top: 421.8px;
    width: 84.133px;
    height: 30px;
}

.work-heading p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 6px;
    color: #fff;
    white-space: pre;
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: absolute;
    left: 224px;
    top: 499.8px;
    width: 896px;
    height: 936px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 24px;
    padding: 24px;
}

.carousel-container {
    width: 848px;
    height: 888px;
    position: relative;
    overflow: hidden;
}

/* Slides Container */
.slides-container {
    position: absolute;
    width: 848px;
    height: 848px;
    top: 0;
    left: -848px;
    display: flex;
    transition: left 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.slide {
    position: absolute;
    width: 848px;
    height: 848px;
    border-radius: 16px;
    flex-shrink: 0;
}

.slide:nth-child(1) { left: 0; }
.slide:nth-child(2) { left: 872px; }
.slide:nth-child(3) { left: 1744px; }
.slide:nth-child(4) { left: 2616px; }
.slide:nth-child(5) { left: 3488px; }

.slide-inner {
    width: 846px;
    height: 846px;
    position: absolute;
    left: 1px;
    top: 1px;
    border-radius: inherit;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 8px 32px 0px rgba(255, 255, 255, 0.15),
                0px 1px 0px 0px inset rgba(255, 255, 255, 0.2);
}

.slide-image {
    position: relative;
    width: 846px;
    height: 846px;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.slide-overlay {
    position: absolute;
    width: 846px;
    height: 846px;
    left: 0;
    top: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.2) 50%, 
        rgba(0, 0, 0, 0) 100%);
    opacity: 0.7;
}

.slide-content {
    position: absolute;
    left: 1px;
    top: 702px;
    width: 846px;
    height: 145px;
    padding: 33px 32px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 3.2px;
    color: #fff;
    white-space: pre;
}

.slide-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
}

/* Pagination */
.pagination {
    position: absolute;
    top: 880px;
    left: 0;
    width: 848px;
    height: 8px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.pagination-dot {
    height: 8px;
    width: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pagination-dot.active {
    width: 32px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 0px 16px 0px rgba(255, 255, 255, 0.5);
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Contact Form */
.contact-form-wrapper {
    position: absolute;
    left: 336px;
    top: 1531.8px;
    width: 672px;
    height: 562.5px;
    padding: 41px 41px 1px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 8px 32px 0px rgba(255, 255, 255, 0.15),
                0px 1px 0px 0px inset rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-form-wrapper h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 28px;
    line-height: 42px;
    letter-spacing: 5.6px;
    color: #fff;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 16px 24px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 1.6px;
    width: 100%;
}

.form-input {
    height: 58px;
}

.form-textarea {
    height: 154px;
    resize: none;
    letter-spacing: 0.8px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.form-submit {
    height: 58px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 2.4px;
    cursor: pointer;
    box-shadow: 0px 8px 32px 0px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 8px 32px 0px rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    position: absolute;
    left: 96px;
    top: 2190.3px;
    width: 1152px;
    height: 155px;
    padding-top: 49px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.footer-nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 1.4px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 1);
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .app-container {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .flower-background {
        left: 50%;
    }
}
