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

:root {
    --black: #0a0a0a;
    --white: #fafafa;
    --gray: #666666;
    --light-gray: #cccccc;
    --accent: #1a1a1a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--light-gray);
}

.nav-contact {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 15vw, 200px);
    line-height: 0.9;
    letter-spacing: 8px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 500;
    opacity: 0.8;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--white);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(20px); }
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* About Section */
.about {
    padding: 150px 0;
    background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1600&q=80');
    background-attachment: fixed;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.92);
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: 4px;
    margin-bottom: 50px;
    font-weight: 400;
}

.about-intro {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 40px;
    font-weight: 500;
}

.about-details p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--light-gray);
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info-block h3 {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-block p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--light-gray);
}

/* Services Section */
.services {
    padding: 150px 0;
    background-image: url('https://images.unsplash.com/photo-1621607512214-68297480165e?w=1600&q=80');
    background-attachment: fixed;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.94);
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-title {
    text-align: center;
    margin-bottom: 20px;
}

.services-instruction {
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 60px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-strip:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.service-strip.selected {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.service-strip-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.service-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    line-height: 1;
    opacity: 0.3;
    min-width: 40px;
}

.service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 400;
    min-width: 200px;
}

.service-description {
    font-size: 13px;
    line-height: 1.6;
    color: var(--light-gray);
    flex: 1;
}

.service-strip-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    min-width: 60px;
    text-align: right;
}

.service-selector {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.service-strip:hover .service-selector {
    border-color: rgba(255, 255, 255, 0.6);
}

.service-strip.selected .service-selector {
    border-color: var(--white);
    background: var(--white);
}

.service-strip.selected .service-selector::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--black);
    border-radius: 50%;
}

/* Portfolio Section */
.portfolio {
    padding: 150px 0;
    background-color: var(--black);
}

.portfolio-title {
    margin-bottom: 80px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2px;
    background: var(--black);
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: all 0.6s ease;
}

.portfolio-item:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

.portfolio-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    background: var(--black);
    padding: 8px 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-label {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Section */
.contact {
    padding: 150px 0;
    background-image: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1600&q=80');
    background-attachment: fixed;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.93);
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 60px;
    color: var(--light-gray);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-detail h3 {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-gray);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 18px 20px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input[readonly] {
    cursor: default;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.form-group input[readonly]:focus {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
    letter-spacing: 1px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23fafafa' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

.btn-submit {
    background: var(--white);
    color: var(--black);
    border: none;
    padding: 20px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.form-success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 2000;
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.form-success-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 50px;
    max-width: 480px;
    width: 90%;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.form-success-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-size: 12px;
}

.form-success-close {
    background: transparent;
    color: var(--white);
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.form-success-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    margin-bottom: 10px;
}

.form-success-message {
    font-size: 16px;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.form-success-details p {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    font-size: 14px;
}

.form-success-details span {
    color: var(--gray);
    letter-spacing: 1px;
}

.form-success-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--accent);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 400;
}

.footer-brand p,
.footer-contact p,
.footer-address p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--light-gray);
}

.footer-links h4,
.footer-contact h4,
.footer-address h4 {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-strip {
        padding: 20px 30px;
    }
    
    .service-strip-left {
        gap: 20px;
    }
    
    .service-title {
        min-width: 150px;
        font-size: 20px;
    }
}

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

    .nav {
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 11px;
    }

    .nav-contact {
        display: none;
    }

    .hero-title {
        font-size: clamp(60px, 12vw, 120px);
    }

    .section-title {
        font-size: clamp(40px, 10vw, 80px);
    }

    .about,
    .services,
    .portfolio,
    .contact {
        padding: 100px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
    }
    
    .service-strip-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }
    
    .service-title {
        min-width: auto;
        font-size: 18px;
    }
    
    .service-description {
        font-size: 12px;
    }
    
    .service-strip-right {
        width: 100%;
        justify-content: space-between;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 50px;
        letter-spacing: 4px;
    }
    
    .service-number {
        font-size: 24px;
    }
    
    .service-price {
        font-size: 28px;
    }
}
