/* Design System & Custom Properties */
:root {
    --bg-main: #080b11;
    --bg-card: rgba(15, 23, 42, 0.65);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-card-hover: rgba(124, 58, 237, 0.4);
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --primary: #7c3aed;
    --primary-glow: rgba(124, 58, 237, 0.3);
    --secondary: #06b6d4;
    --secondary-glow: rgba(6, 182, 212, 0.3);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Glow Gradients */
.glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-1 {
    position: absolute;
    top: -10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(80px);
}

.glow-2 {
    position: absolute;
    top: 40%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    filter: blur(80px);
}

/* Typography & Global Elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.15;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

p {
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
}

.gradient-text {
    background: linear-gradient(135deg, #a78bfa 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #c084fc;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon svg {
    margin-right: 8px;
    transition: var(--transition-smooth);
}

.btn-icon:hover svg {
    transform: translateX(2px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(8, 11, 17, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-cta svg {
    margin-right: 8px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    z-index: 0;
}

.hero-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: contain;
    object-position: top;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

/* Features / Why Choose Us */
.features-section {
    padding: 80px 0;
}

.section-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-card-hover);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    margin-bottom: 24px;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.feature-card:nth-child(even) .feature-icon {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
    border-color: rgba(6, 182, 212, 0.2);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
}

/* Templates Section */
.templates-section {
    padding: 80px 0;
    position: relative;
}

.templates-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 100%;
    margin-bottom: 48px;
}

.category-filters {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.filter-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--text-primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.template-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.template-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-card-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-image-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.template-card:hover .card-image {
    transform: scale(1.08);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    gap: 12px;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.bg-fitness { background: rgba(239, 68, 68, 0.2); color: #f87171; border-color: rgba(239, 68, 68, 0.4); }
.bg-medical { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border-color: rgba(59, 130, 246, 0.4); }
.bg-dining { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border-color: rgba(245, 158, 11, 0.4); }
.bg-services { background: rgba(16, 185, 129, 0.2); color: #34d399; border-color: rgba(16, 185, 129, 0.4); }

.card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-body p {
    font-size: 0.9rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-actions {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 12px;
}

.card-disabled {
    opacity: 0.65;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, rgba(15, 23, 42, 0.3) 50%, var(--bg-main) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(6, 182, 212, 0.25) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
}

/* Onboarding Checklist Container */
.checklist-container {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
}

.checklist-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: var(--secondary);
}

.checklist-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checklist-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--secondary);
    cursor: not-allowed;
    margin-top: 2px;
}

.checklist-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.checklist-item strong {
    color: var(--text-primary);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.pricing-card.featured {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-card-hover);
}

.pricing-card.featured:hover {
    border-color: var(--secondary);
}

.pricing-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-badge.bg-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: #fff;
    border: none;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1;
}

.price .period {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.price-desc {
    font-size: 0.95rem;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 24px;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.price-features li svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.pricing-card.featured .price-features li svg {
    color: var(--primary);
}

.pricing-note {
    font-size: 0.95rem;
}

.font-bold {
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 32px;
}

.faq-card h4, .faq-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-card p {
    font-size: 0.95rem;
}

/* Contact & Enquiry Section */
.contact-section {
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--secondary);
}

.contact-detail-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-detail-item strong {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.whatsapp-banner {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 24px;
}

.whatsapp-banner p {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

/* Forms */
.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(12px);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(8, 11, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.form-status {
    margin-top: 16px;
    font-size: 0.9rem;
    text-align: center;
}

.form-status.success { color: #34d399; }
.form-status.error { color: #f87171; }

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .templates-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .category-filters {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 12px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        display: none; /* Dynamic slide toggled in JS */
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header.active .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        padding: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        gap: 20px;
        align-items: center;
    }
    
    .nav-cta {
        display: none;
    }
    
    .header.active .nav-cta {
        display: inline-flex;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card, .contact-form-container {
        padding: 32px 24px;
    }
    
    .templates-grid, .packages-grid, .portfolio-grid, .features-grid, .process-steps {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
        /* Hide scrollbar for a cleaner look */
        scrollbar-width: none;
    }
    .templates-grid::-webkit-scrollbar, .packages-grid::-webkit-scrollbar, .portfolio-grid::-webkit-scrollbar, .features-grid::-webkit-scrollbar, .process-steps::-webkit-scrollbar {
        display: none;
    }
    
    .templates-grid .template-card, .packages-grid .package-card, .portfolio-grid .portfolio-card, .features-grid .feature-card, .process-steps .step-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
}

/* Pricing Calculator Styling */
.calculator-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-top: 48px;
    align-items: start;
}

.calc-options {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.calc-group {
    margin-bottom: 28px;
}

.calc-group:last-child {
    margin-bottom: 0;
}

.calc-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

.radio-toggle {
    display: flex;
    background: rgba(8, 11, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 4px;
    gap: 4px;
}

.radio-toggle input[type="radio"] {
    display: none;
}

.radio-toggle label {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.radio-toggle input[type="radio"]:checked + label {
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.2);
}

.calc-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(8, 11, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(8, 11, 17, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.checkbox-item:hover {
    border-color: var(--border-card-hover);
    background: rgba(8, 11, 17, 0.6);
}

.checkbox-item input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-item label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.checkbox-item strong {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.checkbox-item span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.calc-summary {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(8, 11, 17, 0.8) 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.calc-summary h3 {
    font-size: 1.4rem;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.summary-line.hidden {
    display: none;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
    padding-top: 20px;
    margin-bottom: 32px;
}

.summary-total span:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-total span:last-child {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

/* Glassmorphic Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(50px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.toast-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Templates Page layout */
.catalog-section {
    padding: 120px 0 80px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.filter-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-filters {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-filter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.sidebar-filter-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.sidebar-filter-btn.active {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #c084fc;
}

.sidebar-filter-btn span {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 100px;
    color: var(--text-muted);
}

.sidebar-filter-btn.active span {
    background: rgba(124, 58, 237, 0.2);
    color: #c084fc;
}

/* Search Bar Component */
.search-wrapper {
    position: relative;
    max-width: 500px;
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* Empty State search */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 0;
    color: var(--text-secondary);
}

.empty-state svg {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

/* Responsive Calculator & Catalog */
@media (max-width: 991px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    
    .filter-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .sidebar-filters {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
    }
    
    .sidebar-filter-btn {
        flex-shrink: 0;
    }
}

/* Wizard Stepper Progress Bar */
.wizard-stepper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 40px 48px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.stepper-progress {
    position: absolute;
    top: 38px;
    left: 45px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    z-index: 0;
    transition: var(--transition-smooth);
}

/* Background stepper line fallback */
.wizard-stepper::after {
    content: '';
    position: absolute;
    top: 38px;
    left: 45px;
    right: 45px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
}

.step-node {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.step-node span {
    position: absolute;
    top: 48px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.step-node.active {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.step-node.active span {
    color: var(--text-primary);
}

/* Wizard Steps Display */
.wizard-step-pane {
    display: none;
    animation: wizardFadeIn 0.5s ease forwards;
}

.wizard-step-pane.active {
    display: block;
}

@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Selectable Options Card Grids */
.calc-grid-select {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.calc-grid-select.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.select-card {
    background: rgba(8, 11, 17, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.select-card:hover {
    border-color: var(--border-card-hover);
    background: rgba(8, 11, 17, 0.6);
}

.select-card.active {
    border-color: var(--secondary);
    background: rgba(6, 182, 212, 0.05);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

.card-emoji {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
}

.select-card h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.select-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    flex-grow: 1;
    margin-bottom: 12px;
}

.price-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(6, 182, 212, 0.15);
    padding: 4px 10px;
    border-radius: 100px;
}

.select-card.active .price-tag {
    background: var(--secondary);
    color: #080b11;
}

/* Color Picker Nodes */
.color-picker-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.color-node {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.color-node:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.color-node.active {
    transform: scale(1.15);
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.color-selected-text {
    display: block;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.color-selected-text strong {
    color: var(--text-primary);
}

/* Checkbox Toggle Form Overrides */
.logo-toggle-group label,
.content-toggle-group label,
.domain-toggle-group label,
.speed-toggle-group label {
    font-size: 0.85rem;
    padding: 12px;
}

/* Stepper Responsive Adjustments */
@media (max-width: 767px) {
    .wizard-stepper {
        padding: 20px 20px 40px;
    }
    
    .stepper-progress {
        left: 25px;
    }
    
    .wizard-stepper::after {
        left: 25px;
        right: 25px;
    }
    
    .step-node span {
        font-size: 0.65rem;
        top: 42px;
    }
    
    .calc-grid-select.columns-3 {
        grid-template-columns: 1fr;
    }
}

/* General hidden utility */
.hidden {
    display: none !important;
}

/* Premium Gradient Button */
.btn-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.6), 0 0 15px rgba(124, 58, 237, 0.4);
}

.btn-gradient:hover::after {
    opacity: 1;
}

/* Color Pickers & Preview Mockup */
.calc-color-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.calc-color-input::-webkit-color-swatch-wrapper {
    padding: 0;
}

.calc-color-input::-webkit-color-swatch {
    border: none;
    border-radius: 6px;
}

.calc-color-input:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Live Mockup Styling */
.color-mockup-wrapper {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
}

.live-mockup {
    background: #0b0f19;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #eab308; }
.mockup-dots span:nth-child(3) { background: #22c55e; }

.mockup-title-bar {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 16px;
    border-radius: 4px;
    flex-grow: 1;
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
}

.mockup-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.mockup-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 8px;
}

.mockup-logo {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--mockup-color);
    background: var(--mockup-color-grad, var(--mockup-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-smooth);
}

.mockup-links {
    display: flex;
    gap: 8px;
}

.mockup-links span {
    width: 24px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.mockup-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center;
    flex-grow: 1;
}

.mockup-hero-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-line {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.mockup-line.title {
    width: 85%;
    height: 10px;
    background: var(--mockup-color);
    background: var(--mockup-color-grad, var(--mockup-color));
    transition: var(--transition-smooth);
}

.mockup-line.subtitle {
    width: 60%;
}

.mockup-button {
    margin-top: 8px;
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 4px;
    background: var(--mockup-color);
    background: var(--mockup-color-grad, var(--mockup-color));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-smooth);
}

.mockup-hero-img {
    height: 80px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* Conditional Question Panels */
.conditional-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
    animation: wizardFadeIn 0.4s ease forwards;
}

.conditional-panel.hidden {
    display: none !important;
}

.form-group-sub {
    margin-bottom: 16px;
}

.form-group-sub:last-child {
    margin-bottom: 0;
}

.form-group-sub label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

/* Custom Quote CTA Banner Section */
.cta-banner-section {
    padding: 100px 0;
}

.cta-banner-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(8, 11, 17, 0.8) 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.cta-banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.25;
}

.cta-banner-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-banner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-mockup-icon {
    font-size: 6rem;
    filter: drop-shadow(0 10px 20px rgba(6, 182, 212, 0.3));
    animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 991px) {
    .cta-banner-card {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    
    .cta-banner-content h2 { 
        font-size: 2rem; 
    }
}

/* ==========================================================================
   PORTAL UPGRADES & PREMIUM AESTHETICS (PRICING, REVIEWS, PORTFOLIO, CHAT)
   ========================================================================== */

/* Floating WhatsApp Chat Widget */
.float-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: pulseWa 2s infinite;
}

.float-wa-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}

.float-wa-btn svg {
    width: 32px;
    height: 32px;
}

@keyframes pulseWa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Our Work / Portfolio Grid */
.portfolio-section {
    padding: 80px 0;
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-card-hover);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
}

.portfolio-visual {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 28px;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.portfolio-client {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.portfolio-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.portfolio-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.portfolio-link:hover {
    color: var(--secondary);
}

.portfolio-link svg {
    transition: transform 0.3s ease;
}

.portfolio-link:hover svg {
    transform: translateX(4px);
}

/* 3-Tier Visual Pricing Cards */
.packages-section {
    padding: 80px 0;
    position: relative;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.package-card.popular {
    border-color: rgba(6, 182, 212, 0.4);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(6, 182, 212, 0.05) 100%);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-card-hover);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
}

.package-card.popular:hover {
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.package-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.package-price {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
}

.package-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 6px;
}

.package-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.package-features li svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Play Store / Flipkart Style Reviews System */
.reviews-section {
    padding: 80px 0;
    position: relative;
}

.reviews-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
}

@media (max-width: 991px) {
    .reviews-container {
        grid-template-columns: 1fr;
    }
}

.rating-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.rating-summary {
    text-align: center;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
}

.rating-big-score {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    color: #fbbf24;
}

.rating-total-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

.bar-label {
    width: 45px;
    color: var(--text-secondary);
}

.bar-track {
    flex-grow: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #fbbf24;
    width: 0%;
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-percent {
    width: 35px;
    text-align: right;
    color: var(--text-muted);
}

.reviews-display-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reviews-list {
    max-height: 360px;
    overflow-y: auto;
    padding-right: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Custom Scrollbar for Reviews list */
.reviews-list::-webkit-scrollbar {
    width: 6px;
}
.reviews-list::-webkit-scrollbar-track {
    background: transparent;
}
.reviews-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    animation: wizardFadeIn 0.5s ease forwards;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.review-company {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.review-body {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Review Submission Form */
.review-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.stars-selector {
    display: flex;
    gap: 8px;
    color: #64748b;
    margin-bottom: 20px;
}

.star-input {
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.star-input.active, .star-input:hover {
    color: #fbbf24;
    transform: scale(1.1);
}

/* Ticket Support Section */
.support-section {
    padding: 80px 0;
    position: relative;
}

.support-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .support-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.support-ticket-form {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.ticket-ref-display {
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 8px;
    padding: 10px 16px;
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--secondary);
    display: inline-block;
    margin-bottom: 24px;
}

.support-desc-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ==========================================================================
   QUOTE WIZARD UPGRADES: TOGGLE CARDS & SECRET ADMIN PANEL
   ========================================================================== */

/* Premium Integration Toggle Cards */
.toggle-card {
    background: rgba(8, 11, 17, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    user-select: none;
    text-align: left;
}

.toggle-card:hover {
    border-color: var(--border-card-hover);
    background: rgba(8, 11, 17, 0.6);
}

.toggle-card.active {
    border-color: var(--secondary);
    background: rgba(6, 182, 212, 0.04);
    box-shadow: 0 0 22px rgba(6, 182, 212, 0.08);
}

.toggle-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
}

.toggle-switch-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-label-status {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.toggle-card.active .toggle-label-status {
    color: var(--secondary);
}

/* Premium Slider Styling */
.toggle-switch-ui {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
}

.toggle-switch-ui input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.1);
    transition: .3s;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 3px;
    background-color: #64748b;
    transition: .3s;
    border-radius: 50%;
}

.toggle-card.active .toggle-slider {
    background-color: rgba(6, 182, 212, 0.2);
    border-color: var(--secondary);
}

.toggle-card.active .toggle-slider:before {
    transform: translateX(16px);
    background-color: var(--secondary);
    box-shadow: 0 0 8px var(--secondary);
}

/* Secret Admin Modal styling */
.secret-admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 10, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.secret-admin-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.admin-modal-content {
    background: #0b0f19;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    width: 95%;
    max-width: 1200px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 30px rgba(6,182,212,0.15);
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.secret-admin-modal.show .admin-modal-content {
    transform: translateY(0);
}

.admin-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.admin-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.close-admin-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-admin-btn:hover {
    color: #f43f5e;
}

.admin-tab-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 6px 16px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.admin-tab-btn:hover {
    border-color: rgba(255,255,255,0.15);
    color: var(--text-primary);
}

.admin-tab-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #080b11;
    font-weight: 600;
}

/* Admin Lead Card UI */
.admin-lead-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition-smooth);
}

.admin-lead-card:hover {
    border-color: rgba(255,255,255,0.08);
}

.admin-lead-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-bottom: 8px;
}

.admin-lead-card-header h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.lead-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.lead-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.lead-details-grid div {
    display: flex;
    gap: 6px;
}

.lead-details-grid strong {
    color: var(--text-primary);
}

.lead-status-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    align-items: center;
}

.status-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.status-badge.pending { background: rgba(234, 179, 8, 0.15); color: #eab308; }
.status-badge.progress { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.status-badge.completed { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.status-badge.fake { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

.action-icon-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.action-icon-btn:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.06);
}

.action-icon-btn.btn-start:hover { border-color: #3b82f6; color: #3b82f6; }
.action-icon-btn.btn-complete:hover { border-color: #22c55e; color: #22c55e; }
.action-icon-btn.btn-cancel:hover { border-color: #ef4444; color: #ef4444; }
.action-icon-btn.btn-delete-perm:hover { background: #ef4444; border-color: #ef4444; color: #fff; }

.countdown-timer-ui {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.countdown-timer-ui.urgent { background: rgba(239, 68, 68, 0.12); color: #f43f5e; }
.countdown-timer-ui.warning { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.countdown-timer-ui.safe { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.countdown-timer-ui.missed { background: rgba(156, 163, 175, 0.15); color: #9ca3af; text-decoration: line-through; }



/* MARQUEE */
.marquee-section {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    background: rgba(5, 8, 22, 0.5);
    margin-bottom: 2rem;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 3rem;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.8;
}

/* CUSTOM CURSOR */


#cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    transition: transform 0.1s ease;
}
#cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, left 0.15s ease, top 0.15s ease;
    opacity: 0.5;
}
.cursor-hover #cursor {
    transform: translate(-50%, -50%) scale(1.5);
}
.cursor-hover #cursor-ring {
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

/* FOMO Popups */
#fomo-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.fomo-popup {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 14px 20px;
    padding-right: 36px; /* Space for close button */
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.05),
                0 0 20px rgba(124, 58, 237, 0.15);
    animation: slideInFomo 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; /* Spring physics */
    transform: translateX(-120%);
    max-width: 380px;
    pointer-events: auto;
    position: relative;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.fomo-popup:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 
                0 0 0 1px rgba(124, 58, 237, 0.2),
                0 0 30px rgba(124, 58, 237, 0.25);
}

.fomo-popup.hide {
    animation: slideOutFomo 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

.fomo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px; /* Premium rounded-square icon */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.fomo-popup:hover .fomo-icon {
    transform: scale(1.08) rotate(5deg);
}

/* Theme variations for icons */
.fomo-icon.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.fomo-icon.info {
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #06b6d4;
}

.fomo-icon.warning {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.fomo-icon.danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.fomo-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.fomo-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.fomo-time {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* Close Button styling */
.fomo-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    transition: var(--transition-smooth);
    opacity: 0.6;
}

.fomo-close:hover {
    opacity: 1;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

@keyframes slideInFomo {
    to { transform: translateX(0); }
}

@keyframes slideOutFomo {
    to { transform: translateX(-120%); opacity: 0; }
}

@media (max-width: 768px) {
    #fomo-container {
        bottom: 20px;
        left: 16px;
        right: 16px;
    }
    .fomo-popup {
        max-width: 100%;
        font-size: 0.84rem;
        padding-right: 32px;
    }
}
.action-icon-btn.btn-complete:hover { border-color: #22c55e; color: #22c55e; }
.action-icon-btn.btn-cancel:hover { border-color: #ef4444; color: #ef4444; }
.action-icon-btn.btn-delete-perm:hover { background: #ef4444; border-color: #ef4444; color: #fff; }

.countdown-timer-ui {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.countdown-timer-ui.urgent { background: rgba(239, 68, 68, 0.12); color: #f43f5e; }
.countdown-timer-ui.warning { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.countdown-timer-ui.safe { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.countdown-timer-ui.missed { background: rgba(156, 163, 175, 0.15); color: #9ca3af; text-decoration: line-through; }



/* MARQUEE */
.marquee-section {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    background: rgba(5, 8, 22, 0.5);
    margin-bottom: 2rem;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 3rem;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.8;
}

/* CUSTOM CURSOR */


#cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    transition: transform 0.1s ease;
}
#cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, left 0.15s ease, top 0.15s ease;
    opacity: 0.5;
}
.cursor-hover #cursor {
    transform: translate(-50%, -50%) scale(1.5);
}
.cursor-hover #cursor-ring {
    width: 50px;
    height: 50px;
    opacity: 0.8;
}


/* Social Media Icons */
.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
}

/* Luxury Golden UI */
.premium-golden-banner {
    background: linear-gradient(90deg, #8B6508, #FFD700, #FCE688, #FFD700, #8B6508);
    background-size: 300% auto;
    color: #000;
    text-align: center;
    padding: 12px 15px;
    font-size: 1.05rem;
    font-weight: 700;
    animation: goldShine 4s linear infinite;
    border-bottom: 2px solid #fff;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@keyframes goldShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.premium-timer {
    background: rgba(0, 0, 0, 0.85);
    color: #FFD700;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5) inset;
    border: 1px solid rgba(255, 215, 0, 0.5);
    animation: timerPulse 1.5s infinite;
}

@keyframes timerPulse {
    0% { box-shadow: 0 0 10px rgba(0,0,0,0.5) inset, 0 0 5px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 0 10px rgba(0,0,0,0.5) inset, 0 0 15px rgba(255, 215, 0, 0.8); }
    100% { box-shadow: 0 0 10px rgba(0,0,0,0.5) inset, 0 0 5px rgba(255, 215, 0, 0.2); }
}

.banner-subtext {
    font-weight: 600;
    opacity: 0.9;
}

.pricing-scarcity-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.5);
    padding: 12px 25px;
    border-radius: 12px;
    color: #FFD700;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
    margin-top: 25px;
    animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {
    0% { border-color: rgba(255, 215, 0, 0.3); box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); }
    50% { border-color: rgba(255, 215, 0, 0.8); box-shadow: 0 0 25px rgba(255, 215, 0, 0.3); }
    100% { border-color: rgba(255, 215, 0, 0.3); box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); }
}

.slashed-price {
    text-decoration: line-through !important;
    font-size: 1.1rem !important;
    color: #64748b !important;
    margin-right: 8px !important;
    font-weight: 500 !important;
}

.offer-price {
    color: #FFD700 !important;
    font-weight: 800 !important;
    font-size: 1.8rem !important;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3) !important;
}

.luxury-golden-card {
    border: 2px solid rgba(255, 215, 0, 0.4) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15), inset 0 0 10px rgba(255, 215, 0, 0.05) !important;
    position: relative;
    overflow: hidden;
}

.luxury-golden-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,215,0,0.1), transparent);
    transform: skewX(-20deg);
    animation: cardShine 3s infinite;
}

@keyframes cardShine {
    100% { left: 200%; }
}
