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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at top left, #ff6bd61f, transparent 25%),
        radial-gradient(circle at bottom right, #9d4dff1f, transparent 25%),
        #f8edf5;
    overflow-x: hidden;
    padding-bottom: 90px;
    animation: bgMove 10s infinite alternate;
}

@keyframes bgMove {

    0% {
        background-position: left top, right bottom;
    }

    100% {
        background-position: right top, left bottom;
    }

}

img {
    max-width: 100%;
    display: block;
}

.glass {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-card {
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.premium-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pink-btn {
    background: linear-gradient(to right, #d85bbd, #cb63d4);
    color: #fff;
    border-radius: 14px;
    padding: 14px 24px;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(255, 105, 180, 0.35),
        0 0 40px rgba(203, 99, 212, 0.25);
}

.pink-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transition: 0.8s;
}

.pink-btn:hover::before {
    left: 100%;
}

.pink-btn:hover {
    transform: translateY(-3px) scale(1.03);
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 75px;
    z-index: 999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.08);
}

.bottom-nav a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #d46ac7;
    font-size: 22px;
    transition: 0.3s;
}

.bottom-nav a:hover {
    transform: translateY(-5px);
}

.bottom-nav .active {
    background: #d86bc9;
    color: #fff;
}

.exclusive-card {
    min-width: 220px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.4s;
}

.exclusive-card:hover {
    transform: translateY(-12px);
}

.blur-img {
    filter: blur(8px);
    transition: 0.5s ease;
}

.exclusive-card:hover .blur-img {
    filter: blur(2px);
    transform: scale(1.08);
}

.top-menu {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 10;
    color: #fff;
    font-size: 15px;
}

.top-menu div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.install-btn {
    position: absolute;
    right: 18px;
    top: 18px;
    background: #d96bc8;
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    z-index: 10;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {

    0% {
        box-shadow: 0 0 0 rgba(216, 107, 201, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(216, 107, 201, 0.7);
    }

    100% {
        box-shadow: 0 0 0 rgba(216, 107, 201, 0.4);
    }

}

.social-btn {
    border: 1px solid #e5c9dd;
    border-radius: 22px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #d96bc8;
    background: #fff;
    transition: 0.3s;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

.hero-img {
    animation: zoomHero 10s infinite alternate;
}

@keyframes zoomHero {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}

.title-glow {
    text-shadow:
        0 0 10px rgba(255, 105, 180, 0.4),
        0 0 20px rgba(255, 105, 180, 0.3);
}

/* =========================================
       RESPONSIVE
    ========================================= */

@media screen and (max-width:1400px) {

    .hero-img {
        height: 520px !important;
    }

}

@media screen and (max-width:1200px) {

    h1 {
        font-size: 4rem !important;
    }

    h2 {
        font-size: 2.5rem !important;
    }

}

@media screen and (max-width:1024px) {

    h1 {
        font-size: 3.2rem !important;
    }

    h2 {
        font-size: 2.2rem !important;
    }

    .hero-img {
        height: 500px !important;
    }

    .exclusive-card {
        min-width: 200px;
    }

}

@media screen and (max-width:768px) {

    section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    p {
        font-size: 15px !important;
    }

    .hero-img {
        height: 440px !important;
    }

    .top-menu {
        gap: 20px;
        font-size: 12px;
    }

    .top-menu i {
        font-size: 20px !important;
    }

    .install-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .exclusive-card {
        min-width: 180px;
    }

    .pink-btn {
        width: 100%;
    }

    .bottom-nav {
        height: 70px;
    }

}

@media screen and (max-width:576px) {

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .hero-img {
        height: 380px !important;
    }

    .top-menu {
        gap: 14px;
        font-size: 11px;
    }

    .install-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .exclusive-card {
        min-width: 160px;
    }

    .social-btn span {
        font-size: 18px !important;
    }

}

@media screen and (max-width:420px) {

    h1 {
        font-size: 1.8rem !important;
    }

    .hero-img {
        height: 340px !important;
    }

    .top-menu {
        gap: 10px;
    }

    .top-menu span {
        font-size: 10px;
    }

    .exclusive-card {
        min-width: 145px;
    }

}

/* =========================
   MINI SUBSCRIPTIONS
========================= */
/* 
.mini-subscriptions {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 18px;

    padding: 20px;

}

.mini-card {

    position: relative;

    overflow: hidden;

    padding: 24px;

    border-radius: 26px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.04));

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.4s ease;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);

}

.mini-card::before {

    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.1),
            transparent);

    opacity: 0;

    transition: 0.4s;

}

.mini-card:hover {

    transform:
        translateY(-8px) scale(1.02);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15);

}

.mini-card:hover::before {
    opacity: 1;
}

.mini-icon {

    width: 68px;

    height: 68px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 28px;

    margin-bottom: 20px;

    animation: floating 4s infinite ease-in-out;

} */

/* =========================
   MINI SUBSCRIPTIONS
========================= */

.mini-subscriptions {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    padding: 18px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

}

.mini-subscriptions::-webkit-scrollbar {
    display: none;
}

/* CARD */

.mini-card {

    min-width: 0;

    width: 100%;

    position: relative;

    overflow: hidden;

    padding: 22px;

    border-radius: 26px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.08));

    backdrop-filter: blur(22px);

    border: 1px solid rgba(255, 255, 255, 0.12);

    transition: .4s ease;

    box-shadow:
        0 10px 30px rgba(255, 105, 180, 0.08);

    scroll-snap-align: start;

}

.mini-card:hover {

    transform:
        translateY(-6px) scale(1.02);

    box-shadow:
        0 18px 45px rgba(255, 105, 180, 0.15);

}

/* ICON */

.mini-icon {

    width: 58px;

    height: 58px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 24px;

    margin-bottom: 16px;

    animation: floating 4s infinite ease-in-out;

}

.pink-bg {
    background: linear-gradient(to right, #ff4db8, #d946ef);
}

.purple-bg {
    background: linear-gradient(to right, #9333ea, #ec4899);
}

.red-bg {
    background: linear-gradient(to right, #ff3b6b, #ff4db8);
}

/* HEADING */

.gray-heading,
.gradient-text,
.mini-card h3 {

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 8px;

    background:
        linear-gradient(to right,
            #ff4db8,
            #c44dff);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    line-height: 1.3;

}

/* PARAGRAPH */

.theme-text,
.dark-text,
.mini-card p {

    color: #7b4b8f;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.5;

    margin-bottom: 18px;

    opacity: .95;

}

/* PRICE */

.mini-price {

    font-size: 28px;

    font-weight: 700;

    background:
        linear-gradient(to right,
            #ff4db8,
            #c44dff);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

/* BOTTOM */

.mini-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

}

/* BUTTON */

.unlock-all-btn {

    border: none;

    background:
        linear-gradient(to right,
            #ff4db8,
            #c44dff);

    color: #fff;

    padding: 12px 16px;

    border-radius: 14px;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: .4s;

    box-shadow:
        0 10px 30px rgba(255, 105, 180, 0.25);

    white-space: nowrap;

}

.unlock-all-btn:hover {

    transform:
        translateY(-2px) scale(1.03);

    box-shadow:
        0 18px 40px rgba(255, 105, 180, 0.35);

}

/* FLOAT */

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =========================
   TABLET VIEW
   2 CARDS
========================= */

@media(max-width:992px) {

    .mini-subscriptions {

        grid-template-columns:
            repeat(2, minmax(280px, 1fr));

        overflow-x: auto;

    }

}

/* =========================
   MOBILE VIEW
   1 CARD + SCROLL
========================= */

@media(max-width:576px) {

    .mini-subscriptions {

        display: flex;

        gap: 14px;

        padding: 14px;

        overflow-x: auto;

    }

    .mini-card {

        min-width: 85%;

        flex: 0 0 auto;

        padding: 18px;

        border-radius: 22px;

    }

    .mini-card h3 {

        font-size: 18px;

    }

    .mini-card p {

        font-size: 12px;

    }

    .mini-price {

        font-size: 22px;

    }

    .unlock-all-btn {

        padding: 10px 12px;

        font-size: 11px;

        border-radius: 12px;

    }

}

/* EXTRA SMALL */

@media(max-width:380px) {

    .mini-card {
        min-width: 92%;
    }

}

/* =========================
   MOBILE HALF SIDE CARD VIEW
========================= */

@media(max-width:576px) {

    .mini-subscriptions {

        display: flex;

        gap: 14px;

        padding: 14px;

        overflow-x: auto;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;

    }

    .mini-subscriptions::-webkit-scrollbar {
        display: none;
    }

    /* HALF SIDE CARD */

    .mini-card {

        min-width: 82%;

        flex: 0 0 auto;

        scroll-snap-align: start;

        padding: 18px;

        border-radius: 22px;

    }

    /* LAST CARD HALF SHOW */

    .mini-subscriptions::after {

        content: '';

        min-width: 40px;

        height: 1px;

        flex: 0 0 auto;

    }

    .mini-card h3 {

        font-size: 18px;

    }

    .mini-card p {

        font-size: 12px;

    }

    .mini-price {

        font-size: 22px;

    }

    .unlock-all-btn {

        padding: 10px 12px;

        font-size: 11px;

        border-radius: 12px;

    }

}

.pink-bg {
    background: linear-gradient(to right, #ff4db8, #d946ef);
}

.purple-bg {
    background: linear-gradient(to right, #9333ea, #ec4899);
}

.red-bg {
    background: linear-gradient(to right, #ff3b6b, #ff4db8);
}

.mini-card h3 {

    font-size: 26px;

    color: #fff;

    margin-bottom: 10px;

}

.mini-card p {

    color: rgba(255, 255, 255, 0.7);

    line-height: 1.6;

    margin-bottom: 20px;

    font-size: 14px;

}

.mini-price {

    font-size: 34px;

    font-weight: 700;

    color: #fff;

    margin-bottom: 20px;

}

.mini-btn {

    width: 100%;

    border: none;

    background:
        linear-gradient(to right,
            #ff4db8,
            #c44dff);

    color: #fff;

    padding: 13px;

    border-radius: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.4s;

    box-shadow:
        0 10px 30px rgba(255, 105, 180, 0.25);

}

.mini-btn:hover {

    transform:
        translateY(-2px) scale(1.03);

    box-shadow:
        0 15px 40px rgba(255, 105, 180, 0.4);

}

/* FLOAT */

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* MOBILE */

@media(max-width:576px) {

    .mini-subscriptions {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .mini-card {
        padding: 22px;
    }

    .mini-card h3 {
        font-size: 22px;
    }

    .mini-price {
        font-size: 28px;
    }

}

/* DARK TEXT */

.dark-text {

    color: #1f1f1f;

    font-weight: 500;

}

/* OFFER BADGE */

.offer-badge {

    position: absolute;

    top: 18px;

    right: 18px;

    background:
        linear-gradient(to right,
            #ff4d6d,
            #ff758f);

    color: #fff;

    font-size: 11px;

    font-weight: 700;

    padding: 8px 12px;

    border-radius: 30px;

    box-shadow:
        0 8px 20px rgba(255, 77, 109, 0.35);

    animation: pulseBadge 2s infinite;

}

/* OFFER TIME */

.offer-time {

    margin-bottom: 18px;

    color: #ff4db8;

    font-size: 13px;

    font-weight: 600;

    background:
        rgba(255, 255, 255, 0.12);

    padding: 10px 14px;

    border-radius: 14px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    display: inline-flex;

    align-items: center;

    gap: 6px;

}

/* OLD PRICE */

.old-price {

    color: #666;

    font-size: 14px;

    text-decoration: line-through;

    margin-bottom: 4px;

}

/* ANIMATION */

@keyframes pulseBadge {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }

}

/* MOBILE */

@media(max-width:576px) {

    .offer-badge {

        top: 14px;

        right: 14px;

        font-size: 10px;

        padding: 7px 10px;

    }

    .offer-time {

        font-size: 11px;

        padding: 8px 12px;

    }

    .old-price {

        font-size: 12px;

    }

}

/* DARK TEXT */

.dark-text {

    color: #1f1f1f;

    font-weight: 500;

}

/* OFFER BADGE */

.offer-badge {

    position: absolute;

    top: 18px;

    right: 18px;

    background:
        linear-gradient(to right,
            #ff4d6d,
            #ff758f);

    color: #fff;

    font-size: 11px;

    font-weight: 700;

    padding: 8px 12px;

    border-radius: 30px;

    box-shadow:
        0 8px 20px rgba(255, 77, 109, 0.35);

    animation: pulseBadge 2s infinite;

}

/* OFFER TIME */

.offer-time {

    margin-bottom: 18px;

    color: #ff4db8;

    font-size: 13px;

    font-weight: 600;

    background:
        rgba(255, 255, 255, 0.12);

    padding: 10px 14px;

    border-radius: 14px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    display: inline-flex;

    align-items: center;

    gap: 6px;

}

/* OLD PRICE */

.old-price {

    color: #666;

    font-size: 14px;

    text-decoration: line-through;

    margin-bottom: 4px;

}

/* ANIMATION */

@keyframes pulseBadge {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }

}

/* MOBILE */

@media(max-width:576px) {

    .offer-badge {

        top: 14px;

        right: 14px;

        font-size: 10px;

        padding: 7px 10px;

    }

    .offer-time {

        font-size: 11px;

        padding: 8px 12px;

    }

    .old-price {

        font-size: 12px;

    }

}

/* exclusives */
/* =========================
   EXCLUSIVES
========================= */

.exclusive-scroll {

    display: flex;

    gap: 16px;

    overflow-x: auto;

    padding-bottom: 8px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

}

.exclusive-scroll::-webkit-scrollbar {
    display: none;
}

/* CARD */

.exclusive-card {

    min-width: 260px;

    flex: 0 0 auto;

    scroll-snap-align: start;

    border-radius: 28px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.05));

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);

    transition: 0.4s ease;

}

.exclusive-card:hover {

    transform:
        translateY(-8px) scale(1.02);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15);

}

/* TOP */

.exclusive-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 10px;

    padding: 18px;

}

.exclusive-title {

    font-size: 22px;

    font-weight: 700;

    background:
        linear-gradient(to right,
            #ff4db8,
            #c44dff);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.exclusive-desc {

    color: #111;

    font-size: 13px;

    margin-top: 4px;

    font-weight: 500;

}

/* BADGES */

.exclusive-badge {

    padding: 7px 12px;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 700;

    color: #fff;

}

.pink-badge {
    background: linear-gradient(to right, #ff4db8, #ff70c9);
}

.purple-badge {
    background: linear-gradient(to right, #9333ea, #d946ef);
}

.yellow-badge {
    background: linear-gradient(to right, #f59e0b, #fbbf24);
}

.red-badge {
    background: linear-gradient(to right, #ff3b6b, #ff4db8);
}

/* IMAGE */

.exclusive-img-box {

    position: relative;

    overflow: hidden;

}

.exclusive-img {

    width: 100%;

    height: 320px;

    object-fit: cover;

    filter: blur(8px);

    transition: 0.5s ease;

}

.exclusive-card:hover .exclusive-img {

    filter: blur(2px);

    transform: scale(1.08);

}

/* OVERLAY */

.exclusive-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.2);

    display: flex;

    align-items: center;

    justify-content: center;

}

.exclusive-icon {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(20px);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 36px;

}

/* BUTTON AREA */

.exclusive-bottom {

    padding: 18px;

}

/* BUTTON */

.exclusive-btn {

    width: 100%;

    border: none;

    background:
        linear-gradient(to right,
            #ff4db8,
            #c44dff);

    color: #fff;

    padding: 14px 18px;

    border-radius: 16px;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.4s;

    box-shadow:
        0 10px 30px rgba(255, 105, 180, 0.25);

}

.exclusive-btn:hover {

    transform:
        translateY(-2px) scale(1.03);

    box-shadow:
        0 18px 40px rgba(255, 105, 180, 0.35);

}

/* FLOAT */

.floating {
    animation: floating 4s infinite ease-in-out;
}

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* MOBILE */

@media(max-width:576px) {

    .exclusive-scroll {
        gap: 12px;
    }

    .exclusive-card {
        min-width: 210px;
        border-radius: 22px;
    }

    .exclusive-title {
        font-size: 18px;
    }

    .exclusive-desc {
        font-size: 12px;
    }

    .exclusive-img {
        height: 250px;
    }

    .exclusive-icon {

        width: 70px;

        height: 70px;

        font-size: 28px;

    }

    .exclusive-btn {

        padding: 12px 14px;

        font-size: 12px;

        border-radius: 12px;

    }

}

/* model unlock */
/* =========================
   PLAN MODAL
========================= */

.plan-modal {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

}

.plan-modal.active {
    display: flex;
}

/* OVERLAY */

.plan-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.7);

    backdrop-filter: blur(8px);

}

/* BOX */

.plan-box {

    position: relative;

    width: 100%;

    max-width: 430px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.04));

    backdrop-filter: blur(25px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 30px;

    padding: 28px;

    z-index: 2;

    animation: popupShow .4s ease;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3);

}

@keyframes popupShow {

    from {
        transform: translateY(40px) scale(.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

}

/* CLOSE */

.close-plan {

    position: absolute;

    top: 16px;

    right: 16px;

    width: 40px;

    height: 40px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: #fff;

    cursor: pointer;

    font-size: 18px;

}

/* TITLE */

.plan-title {

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 10px;

    background:
        linear-gradient(to right,
            #ff4db8,
            #c44dff);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.plan-subtitle {

    color: #ddd;

    margin-bottom: 25px;

    font-size: 15px;

}

/* PLAN ITEM */

.plan-item {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 20px;

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.08);

    margin-bottom: 16px;

    transition: .4s;

}

.plan-item:hover {

    transform: translateY(-4px);

    background:
        rgba(255, 255, 255, 0.1);

}

.active-plan {

    border:
        1px solid #ff4db8;

    box-shadow:
        0 10px 30px rgba(255, 77, 184, 0.2);

}

/* TAG */

.plan-tag {

    position: absolute;

    top: -10px;

    right: 16px;

    background:
        linear-gradient(to right,
            #ff4db8,
            #c44dff);

    color: #fff;

    font-size: 10px;

    font-weight: 700;

    padding: 6px 10px;

    border-radius: 30px;

}

/* TEXT */

.plan-left h3 {

    color: #fff;

    font-size: 20px;

    margin-bottom: 6px;

}

.plan-left p {

    color: #bbb;

    font-size: 13px;

}

.plan-right {

    text-align: right;

}

.plan-right span {

    display: block;

    color: #fff;

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 10px;

}

/* BUTTON */

.plan-btn {

    border: none;

    background:
        linear-gradient(to right,
            #ff4db8,
            #c44dff);

    color: #fff;

    padding: 11px 16px;

    border-radius: 12px;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: .4s;

}

.plan-btn:hover {

    transform:
        translateY(-2px) scale(1.03);

}

/* MOBILE */

@media(max-width:576px) {

    .plan-box {

        padding: 22px;

        border-radius: 24px;

    }

    .plan-title {
        font-size: 26px;
    }

    .plan-item {

        flex-direction: column;

        align-items: flex-start;

    }

    .plan-right {

        width: 100%;

        text-align: left;

    }

    .plan-btn {
        width: 100%;
    }

}

/* UNLOCK ALL BUTTON */

.unlock-all-btn {

    width: 100%;

    margin-top: 14px;

    border: none;

    background:
        linear-gradient(to right,
            #ff4db8,
            #c44dff);

    color: #fff;

    padding: 16px 16px;

    border-radius: 14px;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: .4s;

    box-shadow:
        0 10px 30px rgba(255, 105, 180, 0.25);

}

.unlock-all-btn:hover {

    transform:
        translateY(-2px) scale(1.02);

    box-shadow:
        0 18px 40px rgba(255, 105, 180, 0.35);

}

/* LARGE CHAT BUTTON */

.large-chat-btn {

    padding: 18px 34px;

    font-size: 18px;

    font-weight: 700;

    border-radius: 18px;

    min-width: 190px;

    box-shadow:
        0 14px 40px rgba(255, 105, 180, 0.3);

}

.large-chat-btn:hover {

    transform:
        translateY(-4px) scale(1.05);

    box-shadow:
        0 22px 50px rgba(255, 105, 180, 0.4);

}

/* MOBILE */

@media(max-width:576px) {

    .large-chat-btn {

        padding: 16px 26px;

        font-size: 16px;

        min-width: 160px;

        border-radius: 16px;

    }

}

/* UNLOCK ALL BUTTON */

.pink-btn {

    padding: 12px 20px;

}

/* MOBILE VIEW */

@media(max-width:576px) {

    .pink-btn {

        padding: 10px 14px;

        font-size: 12px;

        border-radius: 12px;

        width: auto;

        min-width: auto;

    }

}

/* =========================
   SOCIAL SECTION
========================= */

.social-section {

    position: relative;

}

/* HEADING */

.social-heading-wrap {

    margin-bottom: 24px;

}

.social-heading {

    font-size: 42px;

    font-weight: 300;

    background:
        linear-gradient(to right,
            #ff4db8,
            #c44dff);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    margin-bottom: 8px;

}

.social-subtitle {

    color: #7b4b8f;

    font-size: 15px;

    font-weight: 500;

}

/* GRID */

.social-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}

/* CARD */

.social-card {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 22px;

    border-radius: 26px;

    text-decoration: none;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.08));

    backdrop-filter: blur(22px);

    border: 1px solid rgba(255, 255, 255, 0.12);

    transition: .4s ease;

    box-shadow:
        0 10px 30px rgba(255, 105, 180, 0.08);

}

.social-card:hover {

    transform:
        translateY(-6px) scale(1.02);

    box-shadow:
        0 18px 45px rgba(255, 105, 180, 0.15);

}

/* ICON */

.social-icon {

    width: 62px;

    height: 62px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 28px;

    flex-shrink: 0;

    animation: floating 4s infinite ease-in-out;

}

/* COLORS */

.instagram-card .social-icon {
    background: linear-gradient(to right, #ff4db8, #d946ef);
}

.telegram-card .social-icon {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
}

.whatsapp-card .social-icon {
    background: linear-gradient(to right, #10b981, #22c55e);
}

/* CONTENT */

.social-content {
    flex: 1;
}

.social-content h3 {

    font-size: 22px;

    font-weight: 700;

    color: #4b5563;

    margin-bottom: 4px;

}

.social-content p {

    color: #7b4b8f;

    font-size: 14px;

    line-height: 1.5;

}

/* ARROW */

.social-arrow {

    width: 42px;

    height: 42px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255, 255, 255, 0.12);

    color: #ff4db8;

    font-size: 16px;

    transition: .4s;

}

.social-card:hover .social-arrow {

    transform:
        rotate(45deg) scale(1.08);

}

/* FLOAT */

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =========================
   TABLET
========================= */

@media(max-width:992px) {

    .social-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:576px) {

    .social-heading-wrap {
        text-align: center;
    }

    .social-heading {

        font-size: 30px;

    }

    .social-subtitle {

        font-size: 13px;

    }

    .social-grid {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 24px;
        padding-bottom: 4px;
    }

    .social-card {
        width: auto;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        min-width: auto;
    }

    .social-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        font-size: 28px;
        margin: 0;
    }

    .social-content,
    .social-arrow {
        display: none;
    }

}