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

html,
body {
    height: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.bg {
    position: relative;
    width: 100vw;
    height: 100vh;
    padding: 4rem 5rem;
    overflow: hidden;
}

/* Blurred copy of the image filling the whole outer area */
.bg::before {
    content: "";
    position: absolute;
    inset: -20px;
    background-image: url('banber-1.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    z-index: 0;
}

/* Semi-transparent tint over the blurred image */
.bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #0946346a;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    background-image: url('banber-1.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    border-radius: 50px;
    overflow: hidden;
    text-align: center;
    padding: 0 1.5rem;
}

.container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.215);
    border-radius: 50px;
}

/* Everything inside needs to sit above the ::before overlay */
.container>* {
    position: relative;
    z-index: 1;
}

/* Logo */
.logo {
    width: 130px;
    filter: brightness(0) invert(1);
}

/* Badge */
.badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 200px;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    background: rgba(59, 59, 59, 0.1);
    backdrop-filter: blur(5px);
}

/* Heading */
.container h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.container h1 br {
    display: none;
}

/* Contact pill */
.contact-pill {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.75rem;
}

.contact-pill__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-pill__text {
    text-align: left;
}

.contact-pill__label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.contact-pill__number {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
}

/* Social icons */
.social-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.social-row a {
    text-decoration: none;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.95rem;
    transition: background 0.2s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    .bg {
        padding: 3.5rem 4.5rem;
    }

    .logo {
        width: 120px;
    }

    .badge {
        font-size: 0.8rem;
        margin-bottom: 1.8rem;
    }

    .container h1 {
        font-size: 4.5rem;
        margin-bottom: 1.8rem;
    }

    .social-row {
        margin-top: 1.8rem;
    }

    .social-icon {
        width: 2.3rem;
        height: 2.3rem;
        font-size: 0.9rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1229px) {
    .bg {
        padding: 3rem 4rem;
    }

    .logo {
        width: 110px;
    }

    .badge {
        font-size: 0.75rem;
        margin-bottom: 1.6rem;
    }

    .container h1 {
        font-size: 4rem;
        margin-bottom: 1.6rem;
    }

    .social-row {
        margin-top: 1.6rem;
    }

    .social-icon {
        width: 2.1rem;
        height: 2.1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .container {
        border-radius: 30px;
        padding: 0 1rem;
    }

    .bg {
        padding: 1.3rem;
    }

    .logo {
        margin-top: -2rem;
    }

    .container h1 {
        font-size: 2.75rem;
        margin-bottom: 1.3rem;
    }

    .container h1 br {
        display: block;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.45rem 1rem;
    }

    .contact-pill__number {
        font-size: 1rem;
    }
}