/* Section */
.premium-section {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    padding: 50px 250px;
    gap: 10px;
    width: 100%;
    height: auto;
    background: #0f0f0f;
    position: relative;
}

/* Row */
.premium-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    width: 940px;
    height: auto;
}

/* Left Column */
.premium-left {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 458px;
    height: auto;
}

/* Headings */
.premium-headings {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.first-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.title {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
    color: #ffffff;
    margin: 0;
}
.description {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #808080;
    margin: 0;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}
.feature-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

/* Download App */
.download-app {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 263px;
    position: relative; /* ensure above background glow */
    z-index: 1;
}
.download-title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}
.app-badges1 {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
/* Normalize badge base to match markup (.app-badge) */
.app-badge {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10px;
    background: #141414;
    border: 1px solid #242424;
}
.google-play {
    width: 135px;
    height: 40px;
    border-radius: 5px;
}
.app-store {
    width: 120px;
    height: 40px;
    border-radius: 7px;
}
.badge .logo {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    display: flex;
}
.badge .small-text {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #ffffff;
}
.badge .large-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}

/* Right Column */
.premium-right {
    width: 458px;
    height: 443px;
    background: linear-gradient(270deg, rgba(15, 15, 15, 0) 50%, #0f0f0f 100%),
        url("../../images/pic5.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

/* Logo container */
.badge-logo {
    position: relative;
    width: 24px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.badge-logo svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Layered vector gradients */

/* Badge text */
.badge-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}
.badge-text .small-text {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    color: #ffffff;
}
.badge-text .large-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}

.app-badge.app-store {
    position: relative;
    width: 130px;
    height: 40px;
    background: #141414;
    border: 1px solid #242424;
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    box-sizing: border-box;
}
/* Ensure Google Play badge gets same base look */
.app-badge.google-play {
    background: #141414;
    border: 1px solid #242424;
    box-sizing: border-box;
}

/* Apple logo */
.badge-logo.apple-logo {
    width: 18px;
    height: 22px;
    margin-right: 8px;
    border-radius: 3px; /* slight rounding to mimic Apple logo shape */
    position: relative;
}

/* Badge text */
.badge-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.badge-text .small-text {
    font-family: "Inter", sans-serif;
    font-size: 9px;
    color: #ffffff;
}

.badge-text .large-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}

/* Responsive Styles */
/* ===== Responsive Styles ===== */
@media (max-width: 968px) {
    .premium-section {
        padding: 40px 20px;
        height: auto;
        align-items: center;
        text-align: center;
    }

    .premium-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: auto;
        gap: 40px;
    }

    /* Make the image appear first */
    .premium-right {
        order: 1; /* image comes first */
        width: 100%;
        height: 300px;
        border-radius: 10px;
        background-position: center;
        background-size: cover;
    }

    .premium-left {
        order: 2; /* content comes after image */
        align-items: center;
        width: 100%;
        height: auto;
        gap: 32px;
    }

    .premium-headings {
        align-items: center;
        text-align: center;
    }

    .title {
        font-size: 28px;
        line-height: 36px;
    }

    .description {
        font-size: 15px;
        line-height: 22px;
        max-width: 90%;
    }

    .features-list {
        align-items: start;
    }

    .feature {
        justify-content: center;
        text-align: center;
    }

    .download-app {
        align-items: center;
        text-align: center;
    }

    .app-badges1 {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 24px;
        line-height: 32px;
    }

    .description {
        font-size: 14px;
    }

    .download-title {
        font-size: 15px;
    }

    .google-play,
    .app-store {
        width: 130px;
        height: 38px;
    }
}

@media (min-width: 1441px) {
    .premium-section {
        height: 700px;
    }
    .premium-row {
        width: 100%;
    }

    .premium-left {
        width: 50%;
    }
    .premium-right {
        width: 50%;
    }

    .title {
        font-size: 64px;
        line-height: 72px;
    }

    .subtitle,
    .download-title {
        font-size: 18px;
    }

    .description {
        font-size: 18px;
        line-height: 28px;
    }
}
