/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-image {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    object-fit: contain;
    filter: contrast(1.1) brightness(1.05);
}

.nav-logo-image:hover {
    transform: scale(1.1);
}

.nav-logo h2 {
    color: #6366f1;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6366f1;
}

.nav-cta {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Add padding to account for fixed header */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,1000 1000,0 1000,1000"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    word-spacing: -0.1em;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg);
}

.mockup-phone {
    width: 180px;
    height: 360px;
    background: #1f2937;
    border-radius: 25px;
    padding: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    position: relative;
}

.mockup-laptop {
    width: 300px;
    height: 200px;
    background: #374151;
    border-radius: 15px;
    padding: 15px;
    position: absolute;
    right: -100px;
    top: 50px;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 8px;
}

.hero-banner {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 1rem 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.banner-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1f2937;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Free Month Section */
.free-month-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
}

.free-month-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.free-month-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.free-month-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.free-month-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.free-month-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.feature-row i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: white;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.billing-label {
    font-weight: 600;
    color: #374151;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e5e7eb;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: #6366f1;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.save-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border-color: #6366f1;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.card-price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b7280;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: #1f2937;
}

.period {
    font-size: 1.2rem;
    color: #6b7280;
}

.annual-savings {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
}

.features-list {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.pricing-builder {
    display: grid;
    grid-template-columns: minmax(320px, 380px) 1fr;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.base-plan-card {
    background: linear-gradient(160deg, #eef2ff 0%, #e0e7ff 100%);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.35);
    color: #1f2937;
}

.base-plan-header h3 {
    font-size: 1.75rem;
    margin: 0.75rem 0;
    font-weight: 700;
}

.base-plan-header p {
    color: rgba(17, 24, 39, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.base-plan-badge {
    display: inline-block;
    background: rgba(79, 70, 229, 0.15);
    color: #4338ca;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.base-plan-price {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.75rem;
}

.price-label {
    font-weight: 600;
    color: rgba(17, 24, 39, 0.75);
    letter-spacing: 0.02em;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
}

.price-period {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(17, 24, 39, 0.7);
    margin-left: 0.25rem;
}

.base-plan-features {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.base-plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #1f2937;
}

.base-plan-features i {
    color: #10b981;
    font-size: 1rem;
}

.feature-toggle-panel {
    background: white;
    border-radius: 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    padding: 2.5rem;
}

.feature-toggle-panel h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.feature-panel-intro {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.65;
}

.feature-toggle-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-toggle {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
    background: #f9fafb;
    border-radius: 20px;
    padding: 1.5rem 1.75rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.feature-toggle:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.12);
    transform: translateY(-4px);
}

.feature-toggle.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(129, 140, 248, 0.08));
    border-color: rgba(79, 70, 229, 0.5);
}

.feature-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.35rem;
}

.feature-info p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.feature-price {
    font-weight: 600;
    color: #4338ca;
    background: rgba(79, 70, 229, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.9rem;
}

.feature-switch {
    position: relative;
    width: 50px;
    height: 28px;
}

.feature-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.feature-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d1d5db;
    transition: 0.3s;
    border-radius: 28px;
}

.feature-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.2);
}

.feature-switch input:checked + .feature-slider {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.feature-switch input:checked + .feature-slider:before {
    transform: translateX(22px);
}

.pricing-summary {
    background: white;
    border-radius: 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    padding: 2.75rem;
    display: grid;
    gap: 1.75rem;
}

.pricing-total {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.summary-label {
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.summary-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
}

.summary-amount .currency {
    font-size: 1.8rem;
    vertical-align: top;
    margin-right: 0.35rem;
    color: #6b7280;
}

.summary-period {
    font-size: 1rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

.summary-details {
    display: grid;
    gap: 1rem;
}

.summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    color: #374151;
}

.summary-line strong {
    font-size: 1.1rem;
    color: #1f2937;
}

.selected-features {
    background: #f9fafb;
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    border: 1px dashed #d1d5db;
}

.selected-features ul {
    list-style: disc;
    margin-left: 1.25rem;
    margin-top: 0.75rem;
    display: grid;
    gap: 0.5rem;
    color: #374151;
}

.selected-features p {
    margin-top: 0.75rem;
    color: #9ca3af;
    font-size: 0.95rem;
}

.summary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary-actions .btn-primary,
.summary-actions .btn-secondary {
    flex: 1;
    justify-content: center;
    min-width: 220px;
}

.website-only-plan {
    margin-top: 3rem;
}

.website-only-card {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: white;
    border-radius: 28px;
    padding: 2.5rem;
    display: grid;
    gap: 1.25rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.website-only-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.website-only-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
}

.website-only-card .btn-primary {
    justify-content: center;
    align-self: flex-start;
}

.website-only-card .btn-primary i {
    margin-left: 0.5rem;
}

@media (max-width: 1024px) {
    .pricing-builder {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .feature-toggle {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-controls {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .summary-actions {
        flex-direction: column;
    }

    .summary-actions .btn-primary,
    .summary-actions .btn-secondary {
        width: 100%;
    }
}

.pricing-card.popular .plan-btn {
    background: linear-gradient(135deg, #10b981, #059669);
}

.pricing-card.popular .plan-btn:hover {
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

/* Benefits Showcase Section */
.benefits-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.benefit-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.benefit-card:nth-child(even) .benefit-image {
    order: 2;
}

.benefit-card:nth-child(even) .benefit-content {
    order: 1;
}

.benefit-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.benefit-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-img {
    transform: scale(1.05);
}

.benefit-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-features {
    list-style: none;
    padding: 0;
}

.benefit-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #374151;
}

.benefit-features i {
    color: #10b981;
    font-size: 1.1rem;
    width: 20px;
}

.benefits-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefits-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #374151;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    cursor: pointer;
}

.contact-link:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    border-color: #6366f1;
}

.contact-link:hover i {
    color: white;
}

.contact-link small {
    font-size: 0.8rem;
    opacity: 0.8;
    font-style: italic;
}

.contact-link:hover small {
    opacity: 1;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #6366f1;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-menu .user-info {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Improve mobile navigation */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo h2 {
        font-size: 1.25rem;
    }
    
    .nav-logo-image {
        width: 32px;
        height: 32px;
    }
    
    .hero {
        padding-top: 100px; /* Extra padding for mobile */
        min-height: calc(100vh - 20px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem; /* Add more padding */
    }
    
    .hero-title {
        font-size: 2rem;
        word-spacing: -0.05em;
        letter-spacing: -0.01em;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .mockup-laptop {
        display: none;
    }
    
    .hero-mockup {
        transform: none;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .free-month-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    /* Benefits Showcase Mobile */
    .benefit-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .benefit-card:nth-child(even) .benefit-image {
        order: 1;
    }
    
    .benefit-card:nth-child(even) .benefit-content {
        order: 2;
    }
    
    .benefit-img {
        height: 250px;
    }
    
    .benefits-cta {
        padding: 2rem;
    }
    
    .benefits-cta h3 {
        font-size: 1.5rem;
    }
    
    /* Contact Links Mobile */
    .contact-link {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .contact-link small {
        font-size: 0.75rem;
    }
    
    /* Contact Section Mobile */
    .contact-content {
        padding: 0 1rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-info p {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .free-month-card h2 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 120px; /* Extra padding for very small screens */
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .free-month-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    /* Improve mobile text readability */
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Better mobile pricing cards */
    .pricing-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .card-price {
        margin-bottom: 1rem;
    }
    
    .hosting-fees {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    
    /* Smaller logo for very small screens */
    .nav-logo-image {
        width: 28px;
        height: 28px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Authentication Modal Styles */
.modal {
    display: none !important;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-modal {
    padding: 2rem;
    text-align: center;
}

.auth-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.auth-section {
    margin-bottom: 1.5rem;
}

.auth-label {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.phone-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
    min-width: 80px;
}

.country-selector:hover {
    border-color: #6366f1;
}

.phone-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.phone-input:focus {
    border-color: #6366f1;
}

/* Country Selection Dropdown Styles */
.country-selector-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #374151;
    min-width: 120px;
    justify-content: space-between;
}

.country-selector:hover {
    border-color: #6366f1;
}

.country-selector i {
    transition: transform 0.3s ease;
}

.country-selector.active i {
    transform: rotate(180deg);
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-height: 300px;
    overflow: hidden;
    display: none;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.country-dropdown.active {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.country-search {
    padding: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.country-search input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
}

.country-search input:focus {
    border-color: #6366f1;
}

.country-list {
    max-height: 200px;
    overflow-y: auto;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.country-item:hover {
    background-color: #f8fafc;
}

.country-item:last-child {
    border-bottom: none;
}

.country-flag {
    font-size: 1.2rem;
    min-width: 24px;
}

.country-name {
    flex: 1;
    font-size: 0.9rem;
    color: #374151;
}

.country-code {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.send-code-btn {
    width: 100%;
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.send-code-btn:hover {
    background: #4b5563;
}

.auth-divider {
    position: relative;
    margin: 1.5rem 0;
    text-align: center;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider span {
    background: white;
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.auth-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.email-btn {
    background: #1f2937;
    color: white;
}

.email-btn:hover {
    background: #111827;
}

.apple-btn {
    background: #1f2937;
    color: white;
}

.apple-btn:hover {
    background: #111827;
}

.google-btn {
    background: white;
    color: #1f2937;
    border: 1px solid #e5e7eb;
}

.google-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.auth-btn i {
    font-size: 1.1rem;
}

.auth-footer {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.legal-links {
    margin-top: 0.5rem;
}

.legal-link {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
}

.legal-link:hover {
    text-decoration: underline;
}

/* Email Sign In Modal Styles */
.email-signin-section {
    margin-top: 1.5rem;
}

.email-signin-section .form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.auth-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.auth-input:focus {
    outline: none;
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.signin-btn {
    width: 100%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.signin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.forgot-password-btn {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
    display: block;
    text-align: center;
}

.forgot-password-btn:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.back-to-auth-btn {
    background: none;
    border: 1px solid #d1d5db;
    color: #6b7280;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    width: fit-content;
}

.back-to-auth-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #374151;
}

/* Sign up button styles */
.signup-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.signup-btn i {
    font-size: 1.1rem;
}

/* Email Sign Up Modal Styles */
.email-signup-section {
    margin-top: 1.5rem;
}

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

.password-input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: color 0.3s ease;
    z-index: 10;
}

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

.password-requirements {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.requirement-text {
    color: #ef4444;
    font-size: 0.875rem;
    margin: 0;
}

/* Email Verification Modal Styles */
.email-verification-section {
    margin-top: 1.5rem;
}

.verify-email-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.verify-email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.resend-verification-btn {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
    display: block;
    text-align: center;
    width: 100%;
}

.resend-verification-btn:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.back-to-signup-btn {
    background: none;
    border: 1px solid #d1d5db;
    color: #6b7280;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    width: fit-content;
}

.back-to-signup-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #374151;
}

/* Phone Verification Modal */
.verification-section {
    margin-top: 1rem;
}

.verification-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.verification-input:focus {
    border-color: #6366f1;
}

.verify-btn {
    width: 100%;
    background: #6366f1;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
}

.verify-btn:hover {
    background: #5b21b6;
}

.resend-btn {
    background: transparent;
    color: #6366f1;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}

.resend-btn:hover {
    color: #5b21b6;
}

/* Dashboard Styles */
.dashboard {
    display: none !important;
    min-height: 100vh;
    background: #f8fafc;
}

.dashboard-header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.dashboard-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.logout-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
}

.dashboard-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 20px 2rem 20px; /* Increased top padding to account for fixed header */
    margin-top: 2rem; /* Additional margin to ensure content is below header */
}

/* Ensure dashboard content is below fixed header */
body.dashboard-page {
    padding-top: 0;
}

body.dashboard-page .dashboard-content {
    padding-top: 10rem; /* Extra padding for dashboard page */
}

/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    margin: 2rem 0;
}

.empty-state i {
    font-size: 3rem;
    color: #6366f1;
    margin-bottom: 1rem;
    display: block;
}

.empty-state h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.empty-state-info {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.empty-state-info p {
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.empty-state-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.empty-state-info li {
    color: #64748b;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.empty-state-info li:last-child {
    border-bottom: none;
}

.empty-state-info li:hover {
    color: #6366f1;
    transition: color 0.2s ease;
}

.dashboard-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.tab-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #6366f1;
    color: white;
}

.tab-btn:hover:not(.active) {
    background: #f3f4f6;
}

/* Tab Content */
.tab-content {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    margin-bottom: 1.5rem;
    color: #1f2937;
}

/* Apps List */
.apps-list {
    display: grid;
    gap: 1rem;
}

.app-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.app-card:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.app-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
}

.app-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-completed {
    background: #dcfce7;
    color: #166534;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-in-progress {
    background: #dbeafe;
    color: #1e40af;
}

.app-details {
    color: #6b7280;
    margin-bottom: 1rem;
}

.pricing-info-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1rem 0;
}

.pricing-info-card p {
    margin: 0.5rem 0;
    color: #1e40af;
    font-size: 0.95rem;
}

.price-highlight {
    color: #1e40af;
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-list-mini {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0 0 0;
}

.feature-list-mini li {
    color: #1e40af;
    font-size: 0.9rem;
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.feature-list-mini li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.feature-list-mini .more-features {
    color: #6b7280;
    font-style: italic;
    font-size: 0.85rem;
}

.feature-list-mini .more-features::before {
    content: '+';
    color: #6b7280;
}

.app-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.chat-btn {
    background: #6366f1;
    color: white;
}

.chat-btn:hover {
    background: #5b21b6;
}

.edit-btn {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.edit-btn:hover {
    background: #e5e7eb;
}

/* Create App Form */
.create-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.create-app-form {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section h3 {
    color: #1f2937;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.form-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #fafbfc;
    position: relative;
}

.radio-option:hover,
.checkbox-option:hover {
    border-color: #6366f1;
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.radio-option input,
.checkbox-option input {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.radio-custom,
.checkbox-custom {
    width: 28px;
    height: 28px;
    border: 3px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.checkbox-custom {
    border-radius: 8px;
}

.radio-option input:checked + .radio-custom,
.checkbox-option input:checked + .checkbox-custom {
    background: #6366f1;
    border-color: #6366f1;
}

.radio-option input:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.checkbox-option input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

/* Option Content Styling */
.option-content {
    flex: 1;
}

.option-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.option-price {
    font-size: 1rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.option-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Checkbox specific styling */
.checkbox-option {
    align-items: center;
}

.checkbox-option .option-content {
    margin-left: 0.5rem;
}

/* File Upload */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    font-weight: 500;
    color: #475569;
}

.file-upload-btn:hover {
    background: #f1f5f9;
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-1px);
}

/* Color Inputs */
.color-inputs {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.color-inputs input[type="color"] {
    width: 80px;
    height: 50px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-inputs input[type="color"]:hover {
    border-color: #6366f1;
    transform: scale(1.05);
}

/* Form Notes */
.form-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #6366f1;
}

/* Important Note Box */
.important-note {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #bae6fd;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1rem;
}

.note-box h4 {
    color: #1e40af;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.note-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.note-box li {
    margin-bottom: 0.75rem;
    color: #1e40af;
    line-height: 1.6;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
}

/* Status Progress Bar */
.status-progress {
    margin: 1rem 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.empty-state h3 {
    margin-bottom: 0.5rem;
    color: #374151;
}

/* Dashboard Pricing Builder Styles */
.pricing-builder-dashboard {
    display: grid;
    grid-template-columns: minmax(300px, 360px) 1fr;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.base-plan-card-dashboard {
    background: linear-gradient(160deg, #eef2ff 0%, #e0e7ff 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #1f2937;
}

.base-plan-card-dashboard h4 {
    font-size: 1.5rem;
    margin: 0.75rem 0;
    font-weight: 700;
}

.base-plan-card-dashboard p {
    color: rgba(17, 24, 39, 0.85);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.base-plan-card-dashboard .base-plan-features {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.base-plan-card-dashboard .base-plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #1f2937;
    font-size: 0.9rem;
}

.base-plan-card-dashboard .base-plan-features i {
    color: #10b981;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.feature-toggle-panel-dashboard {
    background: white;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    padding: 2rem;
}

.feature-toggle-panel-dashboard h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-toggle-panel-dashboard .feature-panel-intro {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-toggle-panel-dashboard .feature-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.35rem;
}

.feature-toggle-panel-dashboard .feature-info p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.9rem;
}

.pricing-summary-dashboard {
    background: white;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    padding: 2rem;
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

.pricing-total-dashboard {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.pricing-total-dashboard .summary-label {
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.pricing-total-dashboard .summary-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
}

.pricing-total-dashboard .summary-amount .currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 0.25rem;
    color: #6b7280;
}

.pricing-total-dashboard .summary-period {
    font-size: 0.9rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

.summary-details-dashboard {
    display: grid;
    gap: 1rem;
}

.summary-details-dashboard .summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #374151;
}

.summary-details-dashboard .summary-line strong {
    font-size: 1rem;
    color: #1f2937;
}

.selected-features-dashboard {
    background: #f9fafb;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    border: 1px dashed #d1d5db;
}

.selected-features-dashboard ul {
    list-style: disc;
    margin-left: 1.25rem;
    margin-top: 0.75rem;
    display: grid;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
}

.selected-features-dashboard p {
    margin-top: 0.75rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.website-only-card-dashboard {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: white;
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(99, 102, 241, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    margin-bottom: 2rem;
}

.website-only-card-dashboard.active {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 24px 60px rgba(16, 185, 129, 0.35);
    transform: translateY(-6px);
}

.website-only-card-dashboard h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.website-only-card-dashboard p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.website-only-card-dashboard ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin: 0 0 2rem 0;
    padding: 0;
}

.website-only-card-dashboard ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.website-only-card-dashboard ul li i {
    color: #10b981;
    font-size: 1rem;
}

.website-only-card-dashboard .website-only-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.website-only-card-dashboard .website-only-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(16, 185, 129, 0.35);
}

.website-only-card-dashboard .website-only-btn.selected {
    background: rgba(16, 185, 129, 0.18);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.6);
    box-shadow: 0 18px 45px rgba(52, 211, 153, 0.35);
}

.website-only-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.feature-toggle-panel-dashboard.disabled {
    opacity: 0.35;
    pointer-events: none;
    filter: grayscale(0.25);
    position: relative;
}

.feature-toggle-panel-dashboard.disabled::after {
    content: 'Website only mode active';
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    background: rgba(17, 24, 39, 0.92);
    color: #f9fafb;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.website-only-selected-banner {
    display: none;
    align-items: center;
    gap: 1rem;
    margin-top: 1.75rem;
    padding: 1.1rem 1.5rem;
    border-radius: 16px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.45);
    color: #064e3b;
}

.website-only-selected-banner.active {
    display: flex;
}

.website-only-selected-banner .banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #10b981;
}

.website-only-selected-banner .banner-content strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.website-only-selected-banner .banner-content p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(6, 78, 59, 0.8);
}

/* Responsive Design for Dashboard */
@media (max-width: 768px) {
    .dashboard-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-btn {
        text-align: center;
    }
    
    .create-app-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-section {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    
    .radio-group,
    .checkbox-group {
        gap: 0.75rem;
    }
    
    .radio-option,
    .checkbox-option {
        padding: 1rem;
    }
    
    .color-inputs {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .website-only-card-dashboard {
        margin-bottom: 2.5rem;
    }
    
    .pricing-builder-dashboard {
        grid-template-columns: 1fr;
    }
    
    .feature-toggle {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feature-controls {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
    
    .option-content {
        margin-left: 0.5rem;
    }
    
    .option-title {
        font-size: 1rem;
    }
    
    .option-price {
        font-size: 0.9rem;
    }
    
    .option-description {
        font-size: 0.85rem;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.loading-content {
    text-align: center;
    color: #6b7280;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

/* Dashboard Logo Link */
.dashboard-logo a {
    color: #6366f1;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.dashboard-logo a:hover {
    color: #5b21b6;
}

/* Admin Dashboard Styles */
.admin-dashboard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-header {
    text-align: center;
    margin-bottom: 3rem;
}

.admin-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.admin-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.admin-filters {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: end;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #6366f1;
}

.requests-list {
    display: grid;
    gap: 1.5rem;
}

.request-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.request-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.request-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.request-meta {
    color: #6b7280;
    font-size: 0.9rem;
    text-transform: capitalize;
}

.request-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-in-progress {
    background: #dbeafe;
    color: #1e40af;
}

.status-completed {
    background: #dcfce7;
    color: #166534;
}

.request-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-btn {
    background: #6366f1;
    color: white;
}

.chat-btn:hover {
    background: #5b21b6;
    transform: translateY(-1px);
}

.update-btn {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.update-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.request-details {
    margin-bottom: 1.5rem;
}

.detail-row {
    margin-bottom: 0.75rem;
    color: #6b7280;
    line-height: 1.5;
}

.detail-row strong {
    color: #374151;
    font-weight: 500;
}

.progress-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.request-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.last-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.last-message i {
    color: #6366f1;
}

.message-time {
    margin-left: auto;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Responsive Design for Admin Dashboard */
@media (max-width: 768px) {
    .admin-dashboard {
        padding: 1rem;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .admin-filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .request-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .request-status {
        align-items: flex-start;
        width: 100%;
    }
    
    .request-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .action-btn {
        flex: 1;
        justify-content: center;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* User Info in Navigation */
.nav-menu .user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.nav-menu .user-info span {
    color: #333;
    font-weight: 500;
}

/* Active navigation link */
.nav-link.active {
    color: #667eea;
    font-weight: 600;
}

/* Logout button styling */
.logout-btn {
    background: #ff4757;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.logout-btn:hover {
    background: #ff3742;
    transform: translateY(-1px);
}

/* Hamburger Menu Dropdown Styles */
.hamburger-dropdown {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.hamburger-dropdown.active {
    right: 0;
}

.dropdown-content {
    padding: 2rem 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dropdown-section {
    padding: 0 2rem;
    margin-bottom: 1.5rem;
}

.dropdown-section h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 0.25rem 0;
}

.dropdown-item:hover {
    background: #f3f4f6;
    color: #1f2937;
    transform: translateX(4px);
}

.dropdown-item i {
    width: 20px;
    margin-right: 0.75rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.dropdown-item span {
    font-weight: 500;
}

/* User Section */
.user-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: 0 0 1.5rem 0;
    border-radius: 0;
}

.user-info-header {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
}

.user-info-header .user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.user-details {
    flex: 1;
}

.user-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.user-email {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Action Buttons */
.dropdown-actions {
    margin-top: auto;
    padding: 1rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.dropdown-btn i {
    margin-right: 0.5rem;
}

.dropdown-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.dropdown-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.dropdown-btn.logout {
    background: #ef4444;
    color: white;
}

.dropdown-btn.logout:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* Overlay */
.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger-dropdown {
        width: 100%;
        right: -100%;
    }
    
    .dropdown-content {
        padding: 1.5rem 0;
    }
    
    .dropdown-section {
        padding: 0 1.5rem;
    }
    
    .dropdown-actions {
        padding: 1rem 1.5rem;
    }
    
    /* Add close button for mobile */
    .dropdown-content::before {
        content: '✕';
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 1.5rem;
        color: #666;
        cursor: pointer;
        z-index: 10001;
    }
    
    /* Improve mobile dropdown styling */
    .dropdown-item {
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-btn {
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex !important;
}

.modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    margin: 0;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body .form-group {
    margin-bottom: 1rem;
}

.modal-body .form-group:last-child {
    margin-bottom: 0;
}

.modal-body label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.modal-body input,
.modal-body select,
.modal-body textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modal-body textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

/* Update Modal Specific Styles */
.update-modal .modal-content {
    max-width: 600px;
}

.update-modal .form-group {
    display: flex;
    flex-direction: column;
}

.update-modal input[type="number"] {
    max-width: 100px;
}

/* Edit Modal Specific Styles */
.edit-modal .modal-content {
    max-width: 600px;
}

.edit-modal .form-group {
    display: flex;
    flex-direction: column;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
}

/* Image Upload Styles */
.file-upload-container {
    position: relative;
    margin-top: 0.5rem;
}

.file-upload-container input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
}

.file-upload-display {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.2s ease;
    background: #f9fafb;
}

.file-upload-display:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.file-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-upload-placeholder:hover {
    color: #3b82f6;
}

.file-upload-placeholder i {
    font-size: 2rem;
    color: #9ca3af;
}

.file-upload-placeholder p {
    margin: 0;
    font-weight: 500;
}

.file-upload-placeholder small {
    color: #9ca3af;
}

.file-upload-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.file-upload-preview img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.remove-logo-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.remove-logo-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Business Logo Styles */
.business-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    margin-right: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.clickable-logo {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.clickable-logo:hover {
    transform: scale(1.05);
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.app-title-container,
.request-title-container {
    display: flex;
    align-items: center;
}

.app-title-container .app-title,
.request-title-container h3 {
    margin: 0;
}

/* Brand Colors Display */
.color-preview {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-text {
    font-size: 0.9rem;
    color: #6b7280;
    margin-left: 4px;
}

/* Copy Success Animation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Color Input Container */
.color-input-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0.5rem;
}

.color-input-container input[type="color"] {
    width: 50px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.color-input-container input[type="color"]:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.color-value {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #6b7280;
    background: #f3f4f6;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    min-width: 100px;
    text-align: center;
}

/* Chat Modal Styles */
#chatModal {
    display: none !important;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

#chatModal.show {
    display: flex !important;
}

.chat-modal {
    max-width: 1000px;
    width: 98%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 12px 12px 0 0;
}

.chat-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chat-user-details h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1f2937;
}

.chat-user-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #f8fafc;
}

.message {
    display: flex;
    margin-bottom: 0.5rem;
}

.message-sent {
    justify-content: flex-end;
}

.message-received {
    justify-content: flex-start;
}

.message-content {
    max-width: 70%;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    position: relative;
}

.message-sent .message-content {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-received .message-content {
    background: white;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    border-bottom-left-radius: 4px;
}

.message-text {
    word-wrap: break-word;
    line-height: 1.4;
}

.message-image {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.message-image:hover {
    transform: scale(1.02);
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.chat-input-container {
    padding: 0.5rem;
    background: transparent;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    min-height: 70px;
    width: 100% !important;
    max-width: 100% !important;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    flex: 1;
    margin: 0;
}

.chat-input-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(139, 92, 246, 0.03));
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.chat-input-wrapper:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.12), 0 0 0 3px rgba(59, 130, 246, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.chat-input-wrapper:focus-within::before {
    opacity: 1;
}

.chat-attach-btn {
    background: rgba(248, 250, 252, 0.9);
    border: 2px solid #e2e8f0;
    color: #64748b;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.chat-attach-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.chat-attach-btn:hover {
    background: rgba(226, 232, 240, 0.9);
    color: #475569;
    border-color: #94a3b8;
    transform: scale(1.05);
}

.chat-attach-btn:hover::before {
    opacity: 1;
}

.chat-message-input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    color: #1f2937;
    font-family: inherit;
    line-height: 1.4;
    resize: none;
    min-height: 50px;
    max-height: 120px;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100% !important;
    font-weight: 500;
}

.chat-message-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
    font-style: italic;
}

/* Force full width input */
#chatMessageInput {
    width: 100% !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
}

.chat-send-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.chat-send-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-send-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.chat-send-btn:hover::before {
    opacity: 1;
}

.chat-send-btn:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(59, 130, 246, 0.2);
}

.chat-typing {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.typing-indicator::after {
    content: '...';
    animation: typing 1.5s infinite;
}

@keyframes typing {
    0%, 60%, 100% { opacity: 0; }
    30% { opacity: 1; }
}

/* Image Modal Styles */
.image-modal {
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.image-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.image-modal-body {
    padding: 1rem;
    text-align: center;
    background: #f8fafc;
}

/* Chat Button Notification Dot */
.chat-btn {
    position: relative;
}

.chat-notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
    z-index: 10;
}

.chat-notification-dot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    opacity: 0.3;
    animation: ping 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Responsive Chat Styles */
@media (max-width: 768px) {
    .chat-modal {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .message-image {
        max-width: 150px;
        max-height: 150px;
    }
    
    .chat-header {
        padding: 1rem;
    }
    
    .chat-messages {
        padding: 0.75rem;
    }
    
    .chat-input-container {
        padding: 0.5rem;
    }
    
    .chat-input-wrapper {
        gap: 0.5rem;
        padding: 0.5rem;
        min-height: 60px;
        border-radius: 16px;
    }
    
    .chat-attach-btn,
    .chat-send-btn {
        width: 45px;
        height: 45px;
        padding: 0.5rem;
        font-size: 1.2rem;
        border-radius: 10px;
    }
    
    .chat-message-input {
        font-size: 1.3rem;
        padding: 0.75rem 1rem;
    }
}

/* Activation Prompt Styles */
.activation-section {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border: 1px solid #6366f1;
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.activation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.activation-header h4 {
    margin: 0;
    color: #4338ca;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activation-status {
    background: #4338ca;
    color: white;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.activation-info {
    text-align: center;
    margin-bottom: 1rem;
}

.activation-text {
    color: #312e81;
    font-weight: 500;
    font-size: 0.95rem;
}

.activation-actions {
    margin-top: 1rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.purchase-plan-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.purchase-plan-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.purchase-plan-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.purchase-plan-btn.expired {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.purchase-plan-btn.expired:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Responsive Activation Styles */
@media (max-width: 768px) {
    .activation-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .activation-status {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .activation-header h4 {
        font-size: 1rem;
    }
    
    .purchase-plan-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* Page Container Styles */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
    min-height: calc(100vh - 80px);
    margin-top: 6rem; /* Add top margin to account for fixed header */
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Back Button Styles */
.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: #3b82f6;
}

/* Account Page Styles */
.account-content {
    display: grid;
    gap: 2rem;
}

.account-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #6b7280;
    font-size: 1rem;
}

.profile-card {
    display: grid;
    gap: 2rem;
}

.profile-avatar-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.change-avatar-btn {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.change-avatar-btn:hover {
    background: #e5e7eb;
}

.profile-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.btn-danger {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-danger:hover {
    background: #dc2626;
}

/* Security Card Styles */
.security-card {
    display: grid;
    gap: 1.5rem;
}

.security-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.security-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.security-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Actions Card Styles */
.actions-card {
    display: grid;
    gap: 1.5rem;
}

.action-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.action-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.action-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Billing Page Styles */
.billing-content {
    display: grid;
    gap: 2rem;
}

.billing-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.plan-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    border: 1px solid #bae6fd;
}

.plan-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.plan-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #1e40af;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.currency {
    font-size: 1.2rem;
    color: #1e40af;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
}

.period {
    color: #1e40af;
    font-size: 1.1rem;
}

.plan-status {
    text-align: right;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: #dcfce7;
    color: #166534;
}

.next-billing {
    color: #1e40af;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.plan-actions {
    display: flex;
    gap: 1rem;
}

.payment-methods {
    display: grid;
    gap: 1rem;
}

.payment-method-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: white;
}

.payment-method-card.primary {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.payment-method-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1.2rem;
}

.card-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.card-details p {
    color: #6b7280;
    font-size: 0.9rem;
}

.payment-method-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.primary-badge {
    background: #3b82f6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.add-payment-method-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.5rem;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    background: #f9fafb;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-payment-method-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #f0f9ff;
}

.billing-history {
    display: grid;
    gap: 1rem;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: white;
}

.history-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.history-info p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.history-date {
    color: #9ca3af;
    font-size: 0.8rem;
}

.history-amount {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.history-amount .amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.billing-info-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
}

.billing-form {
    display: grid;
    gap: 1.5rem;
}

/* Settings Page Styles */
.settings-content {
    display: grid;
    gap: 2rem;
}

.settings-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.settings-card {
    display: grid;
    gap: 1.5rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.setting-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.setting-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #3b82f6;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.setting-select {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    min-width: 150px;
}

/* Help Center Styles */
.help-content {
    display: grid;
    gap: 3rem;
}

.search-section {
    text-align: center;
    margin-bottom: 2rem;
}

.search-box {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-box i {
    color: #6b7280;
    margin-right: 0.75rem;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #1f2937;
}

.search-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    margin-left: 0.75rem;
}

.help-categories {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.help-categories h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-card:hover {
    background: #f0f9ff;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.popular-articles {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.popular-articles h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.articles-list {
    display: grid;
    gap: 1rem;
}

.article-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.article-item:hover {
    background: #f0f9ff;
    border-color: #3b82f6;
}

.article-icon {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
}

.article-content {
    flex: 1;
}

.article-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.article-content p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.article-category {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-article-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.read-article-btn:hover {
    background: #2563eb;
}

.faq-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.faq-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #f0f9ff;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.faq-question i {
    color: #6b7280;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}

.contact-support {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.support-card {
    text-align: center;
}

.support-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.support-card p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.support-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.support-option:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Legal Content Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.legal-section p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #374151;
    font-weight: 600;
}

.contact-info {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #374151;
}

/* Tutorial Styles */
.tutorials-content {
    display: grid;
    gap: 3rem;
}

.tutorials-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.tutorials-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tutorial-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.tutorial-card:hover {
    background: #f0f9ff;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.tutorial-card.featured {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-color: #3b82f6;
}

.tutorial-thumbnail {
    width: 100%;
    height: 120px;
    background: #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #6b7280;
    font-size: 2rem;
}

.tutorial-info {
    flex: 1;
    margin-bottom: 1rem;
}

.tutorial-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.tutorial-info p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.tutorial-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
}

.duration {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.level {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.play-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.play-btn:hover {
    background: #2563eb;
}

/* Documentation Styles */
.documentation-content {
    display: grid;
    gap: 3rem;
}

.doc-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.doc-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.doc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.doc-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.doc-card:hover {
    background: #f0f9ff;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.doc-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.doc-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.doc-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.doc-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.doc-link:hover {
    color: #2563eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-container {
        padding: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .plan-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .categories-grid,
    .tutorial-grid,
    .doc-cards {
        grid-template-columns: 1fr;
    }
    
    .support-options {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-content {
        padding: 2rem;
    }
}

/* Responsive logo styles */
@media (max-width: 768px) {
    .business-logo {
        width: 32px;
        height: 32px;
        margin-right: 0.5rem;
    }
    
    .file-upload-preview img {
        max-width: 80px;
        max-height: 80px;
    }
    
    .color-preview {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
}

/* Payment and Subscription Modals */
.purchase-modal, .subscription-modal {
    max-width: 600px;
    width: 90%;
}

.billing-options {
    margin: 2rem 0;
}

.billing-toggle {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.billing-option {
    flex: 1;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.billing-option:hover {
    border-color: #6366f1;
    background: #f8fafc;
}

.billing-option.selected {
    border-color: #6366f1;
    background: #f0f4ff;
}

.billing-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.billing-content {
    text-align: center;
}

.billing-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.billing-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.billing-savings {
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 600;
    background: #ecfdf5;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

.plan-features {
    margin: 2rem 0;
}

.plan-features h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.payment-note {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    color: #6b7280;
    font-size: 0.9rem;
}

.payment-note i {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Subscription Management Styles */
.subscription-overview {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.subscription-overview h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.current-plan-highlight {
    margin-bottom: 1.5rem;
}

.plan-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.plan-badge i {
    font-size: 1.1rem;
}

.plan-name {
    font-weight: 700;
    color: #1f2937;
}

.amount {
    font-weight: 700;
    color: #10b981;
    font-size: 1.1rem;
}

.subscription-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-item label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.detail-item span {
    font-weight: 600;
    color: #1f2937;
}

.status-active {
    color: #10b981 !important;
    background: #ecfdf5;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    display: inline-block;
}

.subscription-actions {
    margin: 2rem 0;
}

.subscription-actions h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-warning {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-warning:hover {
    background: #d97706;
    transform: translateY(-1px);
}

.subscription-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.subscription-note p {
    color: #92400e;
    margin: 0;
    font-size: 0.9rem;
}

.subscription-note i {
    color: #f59e0b;
    margin-right: 0.5rem;
}

/* Subscription Section in App Cards */
.subscription-section {
    background: #ffffff;
    color: #1f2937;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    border: 2px solid #10b981;
    border-left: 6px solid #10b981;
}

.subscription-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.subscription-header h4 {
    color: #1f2937;
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.subscription-status {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.subscription-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.subscription-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.subscription-text, .subscription-next {
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 500;
}

.manage-subscription-btn {
    background: #10b981;
    color: white;
    border: 2px solid #10b981;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.manage-subscription-btn:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
}

/* Check Status Button */
.check-status-btn {
    background: #6366f1;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.check-status-btn:hover {
    background: #4f46e5;
    transform: translateY(-1px);
}

.check-status-btn i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.activation-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Mobile responsive styles for payment modals */
@media (max-width: 768px) {
    .billing-toggle {
        flex-direction: column;
    }
    
    .subscription-details {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .subscription-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .activation-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .check-status-btn {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* Plan Change Modal */
.plan-change-modal {
    max-width: 700px;
    width: 95%;
}

.current-plan-info {
    background: #f0f4ff;
    border: 2px solid #6366f1;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.current-plan-info h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.current-plan-info p {
    color: #6b7280;
    margin: 0;
    font-size: 1rem;
}

.plan-options {
    margin: 2rem 0;
}

.plan-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.plan-option {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.plan-option:hover {
    border-color: #6366f1;
    background: #f8fafc;
}

.plan-option.selected {
    border-color: #6366f1;
    background: #f0f4ff;
}

.plan-option.current-plan {
    border-color: #10b981;
    background: #ecfdf5;
}

.plan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.current-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plan-pricing {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.monthly-price, .yearly-price {
    font-weight: 500;
}

.plan-change-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.plan-change-note p {
    color: #92400e;
    margin: 0;
    font-size: 0.9rem;
}

.plan-change-note i {
    color: #f59e0b;
    margin-right: 0.5rem;
}

/* Mobile responsive for plan change modal */
@media (max-width: 768px) {
    .plan-selection {
        gap: 0.75rem;
    }
    
    .plan-option {
        padding: 1rem;
    }
    
    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .plan-pricing {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Plan Change Contact Modal Styles */
.plan-change-modal .modal-content {
    max-width: 500px;
    width: 90%;
}

.contact-info {
    text-align: center;
    padding: 20px 0;
}

.contact-icon {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 20px;
}

.contact-info h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.contact-method i {
    font-size: 24px;
    color: #007bff;
    width: 30px;
    text-align: center;
}

.contact-method div {
    flex: 1;
}

.contact-method strong {
    display: block;
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-method p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.contact-note {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.contact-note p {
    margin: 0;
    color: #1976d2;
    font-size: 14px;
    line-height: 1.5;
}

.contact-note i {
    color: #1976d2;
    margin-right: 8px;
}

/* Plan Change Contact Modal Footer */
.plan-change-modal .modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.plan-change-modal .modal-footer .btn-primary {
    flex: 1;
    min-width: 120px;
}

@media (max-width: 768px) {
    .contact-details {
        gap: 15px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-method i {
        font-size: 20px;
    }
}

/* Billing Page Styles */
.stripe-info-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stripe-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stripe-info i {
    font-size: 32px;
    color: #635bff;
}

.stripe-details h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 16px;
}

.stripe-details p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.history-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.history-placeholder i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 16px;
}

.history-placeholder h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 18px;
}

.history-placeholder p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.status-badge.inactive {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-badge.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Admin Subscription Status Styles */
.subscription-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    border-left: 4px solid #007bff;
}

.subscription-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscription-status.active {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.subscription-status.inactive {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.subscription-status.pending {
    background: #ede9fe;
    color: #5b21b6;
    border: 1px solid #ddd6fe;
}

.subscription-details {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.subscription-details > div {
    background: white;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.subscription-details strong {
    color: #495057;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.subscription-details p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

/* Admin Plan Modal Styles */
.admin-plan-modal .modal-content {
    max-width: 700px;
    width: 95%;
}

.admin-plan-info {
    display: grid;
    gap: 25px;
}

.user-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #007bff;
}

.user-info h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.user-info p {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
}

.user-info strong {
    color: #333;
    font-weight: 600;
}

.plan-selection h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.plan-options {
    display: grid;
    gap: 15px;
}

.plan-option {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.plan-option:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.plan-option.selected {
    border-color: #007bff;
    background: #f8f9ff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.plan-option.current-plan {
    border-color: #28a745;
    background: #f8fff9;
}

.plan-option.current-plan::before {
    content: 'Current';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.plan-header h5 {
    margin: 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.current-badge {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-pricing {
    display: flex;
    gap: 15px;
}

.plan-pricing label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-pricing label:hover {
    border-color: #007bff;
    background: #f8f9ff;
}

.plan-pricing label.selected {
    border-color: #007bff;
    background: #f8f9ff;
}

.plan-pricing input[type="radio"] {
    margin: 0;
}

.plan-pricing span {
    font-size: 14px;
    color: #333;
}

.admin-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.action-option {
    flex: 1;
}

.action-option button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-option .btn-secondary {
    background: #6c757d;
    color: white;
}

.action-option .btn-secondary:hover {
    background: #5a6268;
}

.action-option .btn-warning {
    background: #ffc107;
    color: #212529;
}

.action-option .btn-warning:hover {
    background: #e0a800;
}

.admin-note {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.admin-note p {
    margin: 0;
    color: #1976d2;
    font-size: 14px;
    line-height: 1.5;
}

.admin-note i {
    color: #1976d2;
    margin-right: 8px;
}

/* Admin Plan Button */
.plan-btn {
    background: #17a2b8 !important;
    color: white !important;
}

.plan-btn:hover {
    background: #138496 !important;
}

/* Responsive Design for Admin Plan Modal */
@media (max-width: 768px) {
    .admin-plan-modal .modal-content {
        width: 98%;
        margin: 10px;
    }
    
    .subscription-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .plan-pricing {
        flex-direction: column;
        gap: 10px;
    }
    
    .admin-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
