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

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #000000 0%, #001a33 45%, #0d5587 100%);
    color: #ffffff;
}

.page-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.content-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3vh 5vw 8vh;
    gap: 3vw;
    overflow: hidden;
}

/* LEFT SIDE */
.left-side {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 500;
    color: #2196F3;
    margin-bottom: clamp(30px, 5vh, 70px);
    letter-spacing: -0.5px;
}

.main-heading {
    font-size: clamp(36px, 5.5vw, 82px);
    font-weight: 300;
    color: #ffffff;
    margin-bottom: clamp(25px, 4vh, 50px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.description {
    font-size: clamp(16px, 2vw, 28px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: clamp(40px, 8vh, 100px);
}

.opening-date {
    font-size: clamp(20px, 2.2vw, 32px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.opening-date sup {
    font-size: 0.65em;
    vertical-align: super;
}

/* RIGHT SIDE */
.right-side {
    flex: 0 0 52%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2vw;
}

.growth-frame {
    width: clamp(300px, 35vw, 550px);
    height: clamp(300px, 35vw, 550px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 48% 52% 54% 46% / 45% 48% 52% 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.growth-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.growth-img {
    width: 150%;
    height: 150%;
    object-fit: cover;
    object-position: center 45%;
    transform: translateX(-5%);
}

/* FOOTER */
.footer-contact {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(18px, 2.5vh, 32px) 5vw;
    flex-shrink: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.5vw, 22px);
}

.icon-circle {
    width: clamp(45px, 4vw, 58px);
    height: clamp(45px, 4vw, 58px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle svg {
    width: clamp(20px, 1.8vw, 26px);
    height: clamp(20px, 1.8vw, 26px);
}

.email-circle {
    background-color: #2196F3;
}

.phone-circle {
    background-color: #5C7CFA;
}

.contact-link {
    font-size: clamp(16px, 1.8vw, 26px);
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.contact-link:hover {
    opacity: 0.8;
}

/* TABLET RESPONSIVE */
@media (max-width: 1024px) {
    .content-section {
        padding: 3vh 4vw 6vh;
        gap: 2vw;
    }

    .left-side {
        flex: 0 0 50%;
    }

    .right-side {
        flex: 0 0 50%;
        padding-right: 0;
    }

    .growth-img {
        width: 190%;
        height: 190%;
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    html, body {
        overflow-y: auto;
    }

    .page-container {
        height: auto;
        min-height: 100vh;
    }

    .content-section {
        flex-direction: column;
        padding: 4vh 6vw 5vh;
        gap: 4vh;
    }

    .left-side {
        flex: none;
        width: 100%;
    }

    .right-side {
        flex: none;
        width: 100%;
        justify-content: center;
        padding-right: 0;
    }

    .logo-text {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .main-heading {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .description {
        font-size: 18px;
        margin-bottom: 50px;
    }

    .opening-date {
        font-size: 22px;
    }

    .growth-frame {
        width: 70vw;
        height: 70vw;
        max-width: 400px;
        max-height: 400px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 20px;
        padding: 20px 6vw;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .content-section {
        padding: 3vh 5vw 4vh;
    }

    .logo-text {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .main-heading {
        font-size: 34px;
        margin-bottom: 25px;
    }

    .description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .opening-date {
        font-size: 19px;
    }

    .growth-frame {
        width: 80vw;
        height: 80vw;
        max-width: 320px;
        max-height: 320px;
    }

    .icon-circle {
        width: 42px;
        height: 42px;
    }

    .icon-circle svg {
        width: 18px;
        height: 18px;
    }

    .contact-link {
        font-size: 15px;
    }
}

/* LANDSCAPE MODE FOR MOBILE */
@media (max-height: 600px) and (orientation: landscape) {
    html, body {
        overflow-y: auto;
    }

    .page-container {
        height: auto;
    }

    .content-section {
        flex-direction: row;
        padding: 3vh 4vw;
    }

    .logo-text {
        margin-bottom: 20px;
    }

    .description {
        margin-bottom: 30px;
    }
}
