@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #ffd700;
    --primary-gradient: linear-gradient(135deg, #ffd700, #daa520);
    --secondary-color: #0a192f;
    --accent-color: #c0c0c0;
    --text-color: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Shop / Premium Theme Variables */
    --gold-primary: #ffd700;
    --gold-gradient: linear-gradient(135deg, #ffd700, #daa520);
    --dark-bg: #0a192f;
    --tabs-bg: #0d213d;
}

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

body {
    font-family: 'Hind Siliguri', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: #0b0e11;
    background: radial-gradient(circle at 0% 0%, #161a2e 0%, #0b0e11 100%);
    color: white;
    line-height: 1.6;
    padding-top: 75px; 
}

@media (max-width: 767px) {
    body { padding-top: 70px; }
}

/* Header & Navigation */
header {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
    transition: var(--transition);
}

.logo-icon:hover {
    transform: rotate(15deg) scale(1.1);
}

/* Search Bar Styles */
.search-container {
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
}

.search-container form {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
}

.search-container form:hover,
.search-container form:focus-within {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.search-container input {
    width: 100%;
    padding: 0.6rem 1rem;
    background: transparent;
    border: none;
    color: white;
    outline: none;
    font-size: 0.9rem;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-container button {
    background: transparent;
    border: none;
    padding: 0 1rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.search-container button:hover {
    transform: scale(1.1);
}

/* Tabs Bar Styles */
.tabs-bar {
    background-color: transparent;
    position: sticky;
    top: 75px;
    z-index: 998; 
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .tabs-bar { top: 70px; }
}

.tabs-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.tabs-group {
    display: inline-flex;
    background-color: var(--tabs-bg);
    padding: 5px;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.tab-item {
    padding: 0.6rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none !important;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.tab-item:hover {
    color: var(--gold-primary);
}

.tab-item.active {
    background: var(--gold-gradient);
    color: var(--dark-bg) !important;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

@media (max-width: 576px) {
    .tab-item {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
}

/* Shop specific styles */
.app-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.sidebar-link:hover, .sidebar-link.active {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.sidebar-link i { margin-right: 15px; font-size: 1.2rem; }

@media (max-width: 991px) { 
    .sidebar-col { display: none; } 
}

.sidebar-col {
    position: sticky;
    top: 80px;
    height: fit-content;
    z-index: 100;
}

.order-form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
}

.form-control, .form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fe2c55' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.form-select option {
    background-color: #0a192f;
    color: #fff;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #2ecc71;
    box-shadow: 0 0 0 0.25rem rgba(254, 44, 85, 0.15);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.form-label {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500;
}

.text-tiktok-sm {
    color: #25f4ee;
    font-size: 0.8rem;
}

.btn-tiktok {
    background: linear-gradient(135deg, #2ecc71 0%, #ee1d52 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 12px;
    padding: 15px;
    transition: 0.3s;
}

.btn-tiktok:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(254, 44, 85, 0.3);
    color: white;
}

/* Capsule Tabs Style */
.tabs-btn-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 30px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.nav-pills {
    display: flex;
    gap: 0;
    width: 100%;
}

.nav-pills .nav-item {
    flex: 1;
}

.nav-pills .nav-link {
    width: 100%;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding: 12px 15px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.nav-pills .nav-link.active {
    background: #2ecc71;
    color: white;
    box-shadow: 0 8px 20px rgba(254, 44, 85, 0.3);
}

/* Budget Counter Styling */
.budget-counter {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    width: 100%;
    overflow: hidden;
}

.counter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 10px;
    width: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: rgba(254, 44, 85, 0.2);
    color: #2ecc71;
}

.budget-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 10px;
    outline: none;
    width: 100%;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 3rem 0;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(254, 44, 85, 0.15) 0%, rgba(37, 244, 238, 0.05) 50%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

.hero-slogan {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 40%, #2ecc71 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 5px;
}

@media (max-width: 768px) {
    .hero-slogan { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.8rem; letter-spacing: 3px; }
}

/* FAQ & Custom Accordion */
.custom-accordion .accordion-item {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: #2ecc71 !important;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 0;
    border-radius: 12px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.faq-item:has(.accordion-button:not(.collapsed)) {
    border-left: 4px solid #2ecc71 !important;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(254, 44, 85, 0.3);
}

.stars {
    color: #ffc107;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.avatar-sm {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    font-weight: bold;
}

.bg-tiktok {
    background: linear-gradient(45deg, #2ecc71, #25f4ee);
}

/* Footer Styles */
footer {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-social-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.contact-item {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--gold-gradient);
    color: #0a192f;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Floating WhatsApp Button (Old Style for User Folder) */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: whatsappPulseOld 2s infinite;
}

@keyframes whatsappPulseOld {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); transform: scale(1); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); transform: scale(1.05); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); transform: scale(1); }
}

/* Premium WhatsApp Button (For Shop & Landing) - Professional Design */
.whatsapp-premium {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(18, 140, 126, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: whatsappPulsePremium 2s infinite;
}

.whatsapp-premium:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(18, 140, 126, 0.4);
    background: linear-gradient(135deg, #2ae06d 0%, #14a090 100%);
    color: #ffffff !important;
}

.whatsapp-premium i {
    font-size: 1.6rem;
    color: #ffffff; /* Reverted to white for professional look */
}

@keyframes whatsappPulsePremium {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-premium {
        bottom: 25px;
        right: 25px;
        padding: 10px 20px;
        width: auto;
        height: auto;
        justify-content: center;
        border-radius: 50px;
        font-size: 0.95rem;
    }
    
    .whatsapp-premium span {
        display: inline-block; /* Keeping text visible on mobile for clarity */
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #0d213d;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* Hamburger Menu Mobile Styles */
nav#nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #0a192f;
    transition: 0.3s ease;
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

nav#nav-menu.active {
    right: 0;
}

.nav-close {
    position: absolute;
    top: 0.8rem;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffd700;
    font-size: 1.2rem;
}

nav ul {
    list-style: none;
    padding: 80px 0 0 0;
    margin: 0;
}

nav ul li a {
    display: block;
    padding: 1.2rem 2rem;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

nav ul li a:hover {
    background: #ffd700;
    color: #0a192f !important;
    padding-left: 2.5rem;
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    color: #ffd700;
    font-size: 1.3rem;
}
