/* --- Global Resets & Fonts --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #d1e4ed; /* Light Blue Sky */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
}

/* --- Main Layout Container --- */
.container {
    width: 100%;
    max-width: 1100px;
    min-height: 600px;
    background: #ffffff;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
}

/* --- The Stylized Orange Background --- */
.orange-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-color: #f7941d;
    /* This creates the slanted "ground" effect from the image */
    clip-path: polygon(0 20%, 100% 65%, 100% 100%, 0% 100%);
    z-index: 1;
}

.content {
    display: flex;
    width: 100%;
    z-index: 2; /* Sits above the orange background */
    padding: 60px;
    align-items: center;
}

/* --- Text Section (Right Side) --- */
.text-section {
    flex: 1;
    text-align: right;
    order: 2;
    animation: fadeInRight 1s ease-out;
}

.text-section::before {
    content: "";
    display: block;
    width: 50px;
    height: 5px;
    background: #f7941d;
    margin-left: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.text-section h1 {
    color: #f7941d;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.text-section h1 span {
    font-size: 0.6em;
    color: #2d3436;
    font-weight: 600;
    display: block;
    letter-spacing: 3px;
    margin-top: 5px;
}

.text-section p {
    color: #636e72;
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 450px;
    margin-left: auto;
}

/* --- Attractive Button --- */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #f7941d 0%, #e67e22 100%);
    color: white;
    padding: 16px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.2px;
    box-shadow: 0 10px 20px rgba(247, 148, 29, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(247, 148, 29, 0.4);
}

/* --- Illustration Section (Left Side) --- */
.illustration-section {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 4s ease-in-out infinite;
}

.monitor {
    width: 340px;
    height: 240px;
    background: #2d3436;
    border-radius: 15px;
    padding: 12px;
    position: relative;
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.screen {
    background: #fdfdfd;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.mountain-graphic {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 65%;
    background: #a02b5d; /* Dark Magenta from image */
    clip-path: polygon(0 100%, 20% 40%, 45% 75%, 85% 15%, 100% 60%, 100% 100%);
}

/* Simplified Crane Graphics */
.crane {
    position: absolute;
    background: #f7941d;
    opacity: 0.8;
}
.crane-v { width: 6px; height: 200px; left: 40px; bottom: 50px; }
.crane-h { width: 100px; height: 6px; left: 40px; bottom: 250px; }

/* --- Responsiveness --- */

@media (max-width: 850px) {
    .container {
        flex-direction: column;
        height: auto;
        padding-bottom: 60px;
    }

    .content {
        flex-direction: column;
        padding: 40px 20px;
    }

    .text-section {
        order: 1;
        text-align: center;
        margin-bottom: 50px;
    }

    .text-section::before {
        margin: 0 auto 20px auto;
    }

    .text-section p {
        margin: 0 auto 30px auto;
    }

    .illustration-section {
        order: 2;
        width: 100%;
    }

    .monitor {
        width: 280px;
        height: 200px;
    }

    .orange-bg {
        height: 30%;
        clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
    }
}

/* --- Animations --- */
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
