@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

:root {
    --font-family: 'Poppins', sans-serif;
    /* Main brand purple */
    --primary: #581c87;
    --primary-2: #6b21a8;
    --primary-hover: #4338ca;
    --primary-light: #eef2ff;
    --primary-gradient: linear-gradient(135deg, #581c87 0%, #6b21a8 100%);
    /* BACKGROUND COLORS */
    --bg-primary: #eeebf8;
    --bg-dark: #291b4b;
    --bg-overlay: rgba(88, 28, 135, 0.5);
    /* TEXT COLORS */
    --text-primary: #16141c;
    --text-black: #000000;
    --text-secondary: #4f555f;
    --navbar-height: 80px;
    --sb-width: 260px;
    --sb-bg: #291e3b;
    --sb-border: rgba(255, 255, 255, .08);
    --sb-z: 1045;
    --sb-ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --topbar-height: 60px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 18px;
}

.non-auth {
    padding-top: var(--navbar-height);
    min-height: calc(100vh - var(--navbar-height));
}

a {
    text-decoration: none;
    color: inherit;
}

.hidden {
    display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

/* Base Button Primary Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(0deg, #480389 5%, #a855f7 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 4px 12px rgba(56, 54, 54, 0.2);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(163, 65, 254, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Navbar Wrapper & Main Containers */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: var(--navbar-height);
    z-index: 200;
    background: transparent;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(130, 91, 243, 0.08);
    box-shadow: 0 4px 30px rgba(99, 67, 252, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dynamic scrolling class injected via JS */
.navbar.scrolled {
    background: transparent;
    box-shadow: 0 10px 40px rgba(99, 67, 252, 0.05);
    padding: 0.25rem 0;
  	backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 3.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Left Side: Logo Branding */
.nav-brand {
    display: flex;
    position: relative;
    align-items: center;
    text-decoration: none;
    z-index: 200;
}

.nav-logo-img {
    height: 2.25rem;
    /* Scales perfectly for high-res logo graphics */
    width: auto;
    display: block;
}

/* Center Section: Navigation Links Architecture */
.nav-menu-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0.6rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #645f88;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium SaaS Hover Styles */
.nav-link:hover {
    color: #6343fc;
    transform: translateY(-1px);
}

/* Active State Tracker Visual */
.nav-link.active {
    color: #6343fc;
    font-weight: 700;
}

/* Right Side: High-Conversion CTA */
.nav-action-zone {
    display: flex;
    align-items: center;
}

.btn-signup-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #785dfa 0%, #6343fc 50%, #4f2cf5 100%);
    background-size: 200% auto;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(99, 67, 252, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-signup-premium:hover {
    background-position: right center;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(99, 67, 252, 0.26);
}

.btn-signup-premium:active {
    transform: translateY(1px);
}

/* Mobile Hamburger Menu Interface Trigger */
.mobile-menu-trigger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 1.5rem;
    height: 1.15rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.mobile-menu-trigger span {
    width: 100%;
    height: 2px;
    background-color: #181236;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
}

/* Structural Adjustments for Target Responsive Layouts */
@media (max-width: 991.98px) {
    .mobile-menu-trigger {
        display: flex;
        margin-left: 1.25rem;
    }

    /* Hamburger Transformation Configurations when Mobile Drawer Activates */
    .mobile-menu-trigger.is-active span:nth-child(1) {
        transform: rotate(45deg) translateY(-2px);
    }

    .mobile-menu-trigger.is-active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-trigger.is-active span:nth-child(3) {
        transform: rotate(-45deg) translateY(2px);
    }

    /* Off-Canvas Glassmorphic Drawer Configuration */

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: transparent;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -10px 0 40px rgba(24, 18, 54, 0.05);
        border-left: 1px solid rgba(130, 91, 243, 0.08);
        padding: 6.5rem 1.5rem 2.5rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 201;
    }

    .nav-menu-wrapper.is-active {
        right: 0;
    }

    .nav-links-list {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 0.85rem 1.2rem;
        font-size: 1.05rem;
        width: 100%;
    }
}

@media (max-width: 479.98px) {
    .nav-container {
        padding: 0 1rem;
    }

    .btn-signup-premium {
        padding: 0.6rem 1.2rem;
        font-size: 0.88rem;
    }
}

/* Container styling */
.badge-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 9999px;
    background-color: #f6ebfd;
    color: #7103cb;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #b390d7;
    margin-bottom: 24px;
}

/* The dot wrapper */
.dot-wrapper {
    position: relative;
    display: flex;
    height: 8px;
    width: 8px;
}

/* The animated pulse ring */
.pulse-ring {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: #ce97f6;
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* The solid center dot */
.dot-center {
    position: relative;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #7125eb;
}

/* Keyframe for the pulse effect */
@keyframes ping {

    75%,
    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

/* title style */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-200) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(168, 85, 247, 0.1);
}

/*=========================================
   Hero Section
  ========================================*/

#hero_section {
    padding: 30px 0;
    background-image: url(https://assets.smmcute.com/bg3.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

#hero_section h1 {
    font-size: 2rem;
    margin: 0px 0;
    color: var(--text-black);
}

#hero_section p {
    color: var(--text-primary);
    margin-top: 10px;
}

.hero_image {
    text-align: right;
    position: relative;
    z-index: 2;
}

.hero_image img {
    max-width: 100%;
    height: auto;
}

/* Login Form Styling */
.login-form {
    width: 70%;
}

.form-group {
    margin-bottom: 20px;
}

.login-form .form-label {
    display: block;
    font-weight: 500;
    color: #040010;
    margin-bottom: 8px;
    font-size: 14px;
}

.login-form .form-control {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    font-size: 14px;
    border: 2px solid #7808f0d3;
    border-radius: 8px;
    transition: all 0.5s ease;
}

.login-form .form-control:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.1);
    outline: none;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper .form-control {
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 0;
    top: 0;
    height: 48px;
    width: 48px;
    border: none;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #a855f7;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #a855f7;
}

.checkbox-label {
    font-size: 14px;
    color: #0b0417;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.checkbox-forget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
}

.forget-label {
    font-size: 14px;
    color: #b506b5;
}

.signup-text {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #2c3037;
}

.signup-text a {
    color: #a855f7;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.signup-text a:hover {
    color: #9333ea;
    text-decoration: none;
}

/*=========================================
   Statistic styling
  ========================================*/
#statistics {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(217, 70, 239, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.statistic {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(250, 245, 255, 0.6) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.statistic-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0;
    transition: all 0.4s ease;
    font-family: 'Poppins', sans-serif;
}

.statistic-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto; /* centers the box itself within the text-center parent */
    position: relative;
}

/* ========================================
   OUR SERVICES - PLATFORM SECTION
   ======================================== */

#our_services {
    background: url(https://assets.smmcute.com/bg11.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(168, 85, 247, 0.2);
    width: 150px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(250, 245, 255, 0.6) 100%);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.platform-btn:hover {
    transform: translateY(-2px) scale(1);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 245, 255, 0.8) 100%);
}

.platform-btn.active {
    border-color: #a855f7;
    background: linear-gradient(135deg, #a955f789 0%, #7c3aed86 100%);
}

.platform-btn.active .platform-icon {
    color: white;
}

.platform-btn.active .platform-name {
    color: white;
    font-weight: 700;
}

.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.platform-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-800);
    transition: all 0.4s ease;
    text-align: center;
    line-height: 1.2;
}

/* Services Details Card */
.services-details-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 245, 255, 0.8) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(10px);
    animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.services-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.services-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    flex-shrink: 0;
}

.services-title-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin: 0 0 10px 0;
    font-family: 'Poppins', sans-serif;
}

.services-title-section p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin: 0;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    padding: 10px 12px;
    gap: 12px;
    border-radius: 10px;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.08);
    transform: translateX(5px);
}

.service-check {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    font-weight: bold;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.service-info h5 {
    margin: 0 0 3px 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.service-info p {
    margin: 5px;
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.3;
}

.btn-get-started {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
}

.btn-get-started:active {
    transform: translateY(-1px);
}

/* ========================================
   NEWBIE GUIDE - CUSTOM STYLING ONLY
   ======================================== */

#newbie_guide {
    position: relative;
    background-image: url('https://assets.smmcute.com/bg1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.guide-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Glass Card */
.glass-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 24px !important;
    padding: 0.2rem 1.5rem;
    padding-top: 1.2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.2) !important;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3), rgba(217, 70, 239, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-300), var(--accent-600));
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    padding: 1.5px;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    transform: translateY(-12px);
    border-color: rgba(147, 51, 234, 0.4) !important;
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 0 40px rgba(147, 51, 234, 0.15) !important;
}

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

.glass-card:hover::after {
    opacity: 1;
}

.glass-card:hover .step-number-bg {
    opacity: 0.15;
    top: -20px;
    right: -20px;
}

/* Step Number Background */
.step-number-bg {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 140px;
    font-weight: 900;
    opacity: 0.08;
    color: var(--primary-100);
    user-select: none;
    pointer-events: none;
    transition: all 0.4s ease;
    transform: rotate(-15deg);
    z-index: 0;
}

/* Step Number */
.step-number {
    color: var(--primary-100) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    display: block !important;
    margin-bottom: 12px;
}

.step-number::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-800), transparent);
    border-radius: 2px;
    margin-top: -1px;
}

/* Step Icon */
.step-icon {
    font-size: 2.5rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(217, 70, 239, 0.25)) !important;
    border: 1.5px solid rgba(168, 85, 247, 0.3) !important;
    border-radius: 16px;
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.15);
    transition: all 0.3s ease;
}

.glass-card:nth-child(1) .step-icon {
    animation-delay: 0s;
}

.glass-card:nth-child(2) .step-icon {
    animation-delay: 0.1s;
}

.glass-card:nth-child(3) .step-icon {
    animation-delay: 0.2s;
}

.glass-card:nth-child(4) .step-icon {
    animation-delay: 0.3s;
}

.glass-card:nth-child(5) .step-icon {
    animation-delay: 0.4s;
}

.glass-card:nth-child(6) .step-icon {
    animation-delay: 0.5s;
}

@keyframes float {

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

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

.glass-card:hover .step-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.35), rgba(217, 70, 239, 0.35)) !important;
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.25);
}

/* Step Description */
.step-description {
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Mini Dashboard */
.mini-dashboard {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(217, 70, 239, 0.08)) !important;
    border-radius: 14px;
    padding: 8px !important;
    margin: 12px 0;
    border: 1px solid rgba(168, 85, 247, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.glass-card:hover .mini-dashboard {
    border-color: rgba(168, 85, 247, 0.3) !important;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(217, 70, 239, 0.12)) !important;
}

/* ========================================
WHY SMM-CUTE SECTION STYLES
======================================== */

#why_smmcute {
    background: linear-gradient(135deg, rgba(169, 85, 247, 0.192) 0%, rgba(216, 70, 239, 0.062) 100%);
    position: relative;
    overflow: hidden;
}

#why_smmcute h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 20px;
}

#why_smmcute p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.why_img img {
    max-width: 100%;
    height: auto;
}

.why-features {
    display: flex;
    flex-direction: column;

}

/* ========================================
BENEFITS SECTION STYLES
======================================== */
.bg-light-gradient {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.03) 0%, rgba(217, 70, 239, 0.03) 100%);
}

.benefit-item {
    background: white;
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.1);
    transform: translateX(5px);
}

.benefit-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    border-radius: 10px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* ========================================
REVIEWS CAROUSEL SECTION
======================================== */

#reviws {
    padding: 30px 0;
    background-color: var(--primary);
    background-image: url(https://assets.smmcute.com/bg15.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}


.reviews-section-carousel {
    background: #0f172a;
    padding: 40px 20px;
    overflow: hidden;
    position: relative;
}

.container-carousel {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.reviews-header-carousel {
    text-align: center;
    margin-bottom: 25px;
}

.header-badge-carousel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    padding: 10px 16px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #c084fc;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-icon {
    font-size: 1.2rem;
}

.reviews-header-carousel h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.reviews-header-carousel p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-top: 12px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    perspective: 1200px;
}

/* Carousel Navigation Buttons */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e2e8f0;
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #a855f7;
    color: white;
    border-color: #a855f7;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.reviews-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Review Card */
.review-card-carousel {
    position: absolute;
    width: 450px;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    border-radius: 20px;
    padding: 2px;
    pointer-events: none;
}

.card-content-carousel {
    background: #1e293b;
    border-radius: 18px;
    padding: 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Card Header */
.card-header-carousel {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.reviewer-info-carousel {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.avatar-carousel {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.reviewer-name-carousel {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
}

.reviewer-country {
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 2px;
}

.stars-carousel {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Service Badge */
.service-badge {
    display: inline-block;
    color: white;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Review Quote */
.review-quote-carousel {
    color: #cbd5e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
    font-weight: 500;
}

/* Progress Indicators */
.progress-indicators {
    display: flex;
    gap: 6px;
    margin-top: 16px;
    justify-content: flex-start;
}

.progress-indicators .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #64748b;
    transition: all 0.3s ease;
}

.progress-indicators .dot.active {
    width: 24px;
    background: #ffffff;
}

/* Carousel Stats */
.carousel-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    padding: 28px;
}

.stat-item-carousel {
    text-align: center;
}

.stat-value-carousel {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
}

.stat-label-carousel {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(148, 163, 184, 0.2);
}

/* ========================================
PAYMENT METHODS SECTION STYLES
======================================== */

.payment-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.payment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.header {
    text-align: center;
    margin-bottom: 60px;
}

.badge {
    display: inline-block;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #c084fc;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7, #7c3aed, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}

.header p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Carousel Wrapper with Fade Edges */
.carousel-wrapper {
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0.8) 50%, transparent 100%);
}

.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(248, 250, 252, 0.8) 50%, #f8fafc 100%);
}

/* Infinite Scroll Track */
.carousel-track {
    display: flex;
    gap: 24px;
    width: fit-content;
    animation: scroll 25s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-304px * 9));
    }
}

/* Payment Card */
.payment-card {
    flex: 0 0 280px;
    width: 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border: 1.5px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.payment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.payment-card:hover::before {
    opacity: 1;
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.payment-card:hover {
    transform: translateY(-12px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15);
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.payment-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.icon-wrapper img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.payment-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
    transition: color 0.3s;
}

.payment-card:hover h3 {
    color: #a855f7;
}

.payment-card p {
    font-size: 1rem;
    color: #64748b;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.tag-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tag {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #7c3aed;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.payment-card:hover .tag {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.6), rgba(124, 58, 237, 0.6));
    border-color: rgba(168, 85, 247, 0.9);
    color: white;
    transform: scale(1.05);
}

.tag-icon {
    font-size: 1.1rem;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 35px;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.04), rgba(124, 58, 237, 0.04));
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #475569;
    font-weight: 600;
}

.trust-icon {
    font-size: 1.5rem;
}

/* ========================================
FAQ SECTION STYLES
======================================== */
.faq-item {
    background: white;
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-weight: 600;
}

.faq-question:hover {
    background: rgba(168, 85, 247, 0.05);
}

.faq-question.active {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(217, 70, 239, 0.1) 100%);
    color: #a855f7;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    background: rgba(168, 85, 247, 0.05);
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    color: var(--gray-700);
    line-height: 1.6;
}

.faq-answer.d-none {
    display: none;
}


/* ── Outer wrapper ── */
.userArea {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── Sidebar ──
   Fixed, full height, slides in from left */
.userSidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sb-width);
    height: 100vh;
    background: var(--sb-bg);
    border-right: 1px solid var(--sb-border);
    z-index: var(--sb-z);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    color: #fff;
    transform: translateX(-100%);
    transition: transform var(--sb-ease);
}

.userArea.open .userSidebar {
    transform: translateX(0);
}

/* ── Main wrapper (topbar + content together) ──
   On desktop this shifts right to make room for sidebar */
.userMain {
    position: relative;
    min-height: 100vh;
    margin-left: 0;
    transition: margin-left var(--sb-ease);
}

.userArea.open .userMain {
    margin-left: var(--sb-width);
}

/* ── Topbar ──
   Sits inside userMain so it naturally stays to the right.
   Sidebar overlaps it on the left — topbar is BELOW sidebar in z-index */
.userHeader {
    position: sticky;
    top: 0;
    height: var(--topbar-height);
    z-index: calc(var(--sb-z) - 2);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.25rem;
    background: var(--sb-bg);
    border-bottom: 1px solid var(--sb-border);
    color: #fff;
}

.userHeader .page-title {
    flex: 1;
}

.userHeader .page-title h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.userHeader-right {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-left: auto;
}

.header-balance {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
    padding: .35rem .9rem;
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
}

.header-balance i {
    font-size: .78rem;
    opacity: .8;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
    padding: .35rem .9rem;
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background .2s;
}

.header-btn:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.header-btn::after {
    display: inline-block !important;
    margin-left: .4rem;
    vertical-align: middle;
    opacity: .7;
}

.header-btn i {
    font-size: .95rem;
}

.header-dropdown {
    border-radius: 12px;
    border: 1px solid #ede0ff;
    box-shadow: 0 8px 30px rgba(91, 33, 182, .15);
    padding: .4rem;
    min-width: 160px;
    position: absolute !important;
    z-index: 1050 !important;
    background: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.userHeader .dropdown {
    position: relative;
}

.header-dropdown .dropdown-item {
    border-radius: 8px;
    font-size: .83rem;
    padding: .45rem .8rem;
    color: #3d1470;
    font-weight: 500;
}

.header-dropdown .dropdown-item:hover {
    background: #f5f0ff;
    color: #7c3aed;
}

/* ── Page content ── */
.userContent {
    padding: 1.5rem;
    min-height: calc(100vh - var(--topbar-height));
    background: rgb(250, 246, 255);
}

/* ── Backdrop ── */
.sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: calc(var(--sb-z) - 1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sidebar-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

/* ── Toggle button ── */
.sidebar-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.2s;
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, .1);
}

.sidebar-toggle__bar {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
}

/* Hamburger → X */
.userArea.open .sidebar-toggle .sidebar-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.userArea.open .sidebar-toggle .sidebar-toggle__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.userArea.open .sidebar-toggle .sidebar-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Sidebar inner styles ── */
.webLogo {
    margin-bottom: 16px;
}

.webLogo img {
    max-height: 40px;
}

.userProfile {
    padding: 10px 0;
    border-top: 1px solid #2d1b50;
    border-bottom: 1px solid #2d1b50;
    margin-bottom: 12px;
}

.userDetails {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 6px 0;
}

.userDetails img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
}

.userDetails p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.userBal {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(130, 99, 241, 0.3);
}

.balLeft {
    flex: 1;
}

.balLeft span {
    font-size: .6rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .1em;
    display: block;
}

.balLeft p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.balLeft a {
    font-size: 1.25rem;
    color: #00ff40;
    text-decoration: none;
    font-weight: 600;
}

.balAdd {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: .85rem;
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: 0 0 12px rgba(139, 92, 246, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .2s, box-shadow .2s;
}

.balAdd:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 0 20px rgba(139, 92, 246, .8);
}

/* ── Nav links ── */
.sidebarMenu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebarMenu .menuItems {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebarMenu .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    transition: background .2s, color .2s;
}

.sidebarMenu .nav-link:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.sidebarMenu .nav-link.active {
    background: rgba(99, 102, 241, .3);
    color: #fff;
}

/* Desktop ≥ 992px: sidebar always open */
@media (min-width: 992px) {
    .userSidebar {
        transform: translateX(0);
    }

    .userMain {
        margin-left: var(--sb-width);
    }

    .sidebar-backdrop {
        display: none !important;
    }

    /* Manual close on desktop */
    .userArea.closed .userSidebar {
        transform: translateX(-100%);
    }

    .userArea.closed .userMain {
        margin-left: 0;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
    .userSidebar {
        width: 280px;
    }

    .userArea.open .userMain {
        margin-left: 0 !important;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .userSidebar {
        width: min(280px, 85vw);
    }

    .userArea.open .userMain {
        margin-left: 0 !important;
    }

    body.userArea.open {
        overflow: hidden;
    }
}

@media (prefers-reduced-motion: reduce) {

    .userSidebar,
    .userMain,
    .sidebar-backdrop,
    .sidebar-toggle__bar {
        transition: none;
    }
}

/* ========================================
SERVICES PAGE STYLES
======================================== */

.cd-wrap { 
    position: relative; 
    display: inline-block; 
}

.cd-btn {
  background: #7c3aed;
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  transition: background .15s;
}
.cd-btn:hover, .cd-btn:focus { 
    background: #6d28d9; 
    color: #fff; 
    outline: none; 
    box-shadow: none; 
}

.cd-caret {
  font-size: .55rem;
  opacity: .8;
  transition: transform .2s;
  display: inline-block;
}

.cd-wrap.cd-open .cd-caret { 
    transform: rotate(180deg); 
}

.cd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 9999;
  min-width: 185px;
  max-height: 300px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 5px 0;
  background: #fff;
  border: 1px solid rgba(124,58,237,.15);
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(124,58,237,.15);
}
@keyframes cdIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cd-menu .dropdown-item {
  padding: 9px 16px;
  font-size: .875rem;
  color: #374151;
  transition: background .1s, color .1s;
}
.cd-menu .dropdown-item:hover { 
    background: #f5f3ff; 
    color: #7c3aed; 
}
.cd-menu .dropdown-item:active { 
    background: #ede9fe; 
    color: #6d28d9; 
}

/* ── Search ── */
.cd-search {
  border: 1.5px solid #e5e7eb;
  border-right: none;
  border-radius: 8px 0 0 8px !important;
  font-size: .875rem;
}
.cd-search:focus { 
    border-color: #7c3aed; 
    box-shadow: 0 0 0 3px rgba(124,58,237,.1); 
}
.cd-search-btn {
  background: #7c3aed;
  color: #fff;
  border: 1.5px solid #7c3aed;
  border-radius: 0 8px 8px 0 !important;
  transition: background .15s;
}
.cd-search-btn:hover { 
    background: #6d28d9; 
    border-color: #6d28d9; 
    color: #fff; 
}