/* ===================================
   HERO SECTION STYLES
   =================================== */

.hero {
    position: relative;
    background-color: #1ba89c;
    /* Fallback teal */
    background-image: url('../assets/backgroundWOP.png');
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
    padding: var(--space-24) 0 var(--space-10);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Content */
.hero__content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-8);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Text */
.hero__text {
    color: var(--color-white);
    padding-right: var(--space-4);
}

.hero__title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    color: var(--color-white);
    margin-bottom: var(--space-10);
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.95;
    max-width: 500px;
}

.hero__cta .btn {
    padding: 18px 45px;
    font-size: 1.4rem;
    border-radius: 100px;
    background: linear-gradient(to right, #f37021, #ffb347);
    color: var(--color-white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero__cta .btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(to right, #ff8b3d, #ffc266);
    box-shadow: 0 15px 35px rgba(243, 112, 33, 0.4);
}

/* Hero Image Area */
.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__phone {
    width: 100%;
    max-width: 530px;
    transform: rotate(3deg);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
    margin-right: -10%;
    /* Slight offset to match design */
}

/* Hide the PC image from the previous generic design for now as it's not in the screenshot */
.hero__devices {
    display: none;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1280px) {
    .hero__title {
        font-size: 4rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding-top: var(--space-32);
        padding-bottom: var(--space-12);
    }

    .hero__title {
        font-size: 3rem;
    }

    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__image {
        margin-top: var(--space-12);
        display: flex;
        justify-content: center;
    }

    .hero__phone {
        width: 300px;
        left: 0;
    }

    .hero__image::before {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: var(--space-24);
    }

    .hero__title {
        font-size: 2.2rem;
        margin-bottom: var(--space-4);
    }

    .hero__subtitle {
        font-size: 1.1rem;
        margin: 0 auto var(--space-6);
        max-width: 90%;
    }

    .hero__phone {
        width: 100%;
        max-width: 280px;
        margin-right: 0;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.8rem;
    }

    .hero__phone {
        max-width: 240px;
    }
}