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

body {
    font-family: 'Rethink Sans', sans-serif;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 50%, #FF5B00 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Top Banner */
.top-banner {
    width: 100%;
    height: 32px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-banner p {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: #FFFFFF;
}

/* Header */
.header {
    width: 100%;
    height: 124px;
    background: #FFFFFF;
}

.header-container {
    max-width: 1728px;
    height: 100%;
    margin: 0 auto;
    padding: 0 151px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 68px;
    width: auto;
}

.btn-coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 213px;
    height: 71px;
    background: #2E2A27;
    border-radius: 194px;
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
    color: #FFF6E9;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-coming-soon:hover {
    background: #3d3833;
}

/* Hero Section */
.hero {
    position: relative;
    max-width: 1728px;
    margin: 0 auto;
    min-height: calc(100vh - 156px);
    padding: 0 151px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 700;
    font-size: 100px;
    line-height: 100px;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.hero-subtitle {
    font-weight: 400;
    font-size: 27px;
    line-height: 35px;
    color: #FFFFFF;
    margin-bottom: 60px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 87px;
    background: #212121;
    border-radius: 43.5px;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-contact:hover {
    background: #333333;
}

/* Hero Image */
.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 821px;
    height: 812px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .header-container,
    .hero {
        padding: 0 80px;
    }

    .hero h1 {
        font-size: 80px;
        line-height: 80px;
    }

    .hero-image {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 1024px) {
    .header-container,
    .hero {
        padding: 0 40px;
    }

    .hero h1 {
        font-size: 60px;
        line-height: 60px;
    }

    .hero-subtitle {
        font-size: 22px;
        line-height: 30px;
    }

    .hero-image {
        width: 450px;
        height: 450px;
        opacity: 0.7;
    }
}

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

    .logo img {
        height: 50px;
    }

    .btn-coming-soon {
        width: 150px;
        height: 50px;
        font-size: 14px;
    }

    .hero {
        padding: 60px 20px;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 40px;
    }

    .btn-contact {
        height: 60px;
        padding: 0 30px;
        font-size: 15px;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
        top: auto;
        margin-top: 40px;
        opacity: 0.8;
    }
}

@media (max-width: 480px) {
    .top-banner p {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 44px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
}
