/* CarterPi Solutions - Dark Theme */

/* 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: #e2e8f0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(59, 130, 246, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #94a3b8;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
    border-radius: 1px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #3b82f6;
    transition: 0.3s;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #cbd5e1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.btn-secondary {
    background: linear-gradient(135deg, #374151, #4b5563, #6b7280);
    color: white;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4b5563, #6b7280, #9ca3af);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(156, 163, 175, 0.4);
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #1d4ed8, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.6);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.service-card p {
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    text-align: left;
    color: #cbd5e1;
}

.service-card li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card li::before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

/* Sections */
section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}

/* Services Preview Section */
.services-preview {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
}

/* About Section */
.about-preview {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.about-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.about-card:hover::before {
    opacity: 1;
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.about-card h3 {
    color: #3b82f6;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.about-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.why-choose {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.why-choose h3 {
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.5);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.benefit-item h4 {
    color: #3b82f6;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.about-buttons {
    text-align: center;
    margin-top: 40px;
}

.about-buttons .btn {
    margin: 0 10px;
    display: inline-block;
}

/* Terms of Service Page Styles */
.terms-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.terms-section {
    max-width: 900px;
    margin: 0 auto 40px;
    color: #cbd5e1;
    line-height: 1.8;
}

.terms-section h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.terms-section p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.terms-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-section li {
    margin-bottom: 8px;
    color: #cbd5e1;
}

.terms-section strong {
    color: #3b82f6;
    font-weight: 600;
}

.terms-section:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #0f0f0f);
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #1d4ed8, transparent);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

.footer-section p,
.footer-section li {
    color: #cbd5e1;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #cbd5e1;
}

/* Portal Styles */
.portal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    min-height: 100vh;
    padding-top: 120px;
}

.login-form {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(59, 130, 246, 0.2);
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.login-form h2 {
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.login-form p {
    color: #cbd5e1;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e2e8f0;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    background: rgba(26, 26, 26, 0.9);
}

.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    background: rgba(26, 26, 26, 0.9);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: flex-end;
}

.form-actions .btn {
    min-width: 120px;
}

/* Dashboard Styles */
.order-status {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(59, 130, 246, 0.2);
    margin-bottom: 30px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.chat-container {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 16px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(59, 130, 246, 0.2);
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.chat-header {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 20px;
    background: rgba(15, 15, 15, 0.9);
}

.message {
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 12px;
    max-width: 80%;
}

.message.admin {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    margin-left: auto;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.message.customer {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #e2e8f0;
}

.chat-input {
    display: flex;
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-top: 1px solid rgba(59, 130, 246, 0.3);
}

.chat-input input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    margin-right: 10px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
}

.chat-input button {
    padding: 15px 25px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

/* Status Badges */
.status-badge {
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(29, 78, 216, 0.3));
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.status-completed {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(22, 163, 74, 0.3));
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        border-bottom: 1px solid rgba(59, 130, 246, 0.3);
        z-index: 2000;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 20px;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.about-content {
    animation: fadeInUp 0.6s ease;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .btn {
        display: none;
    }
} 

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '▼';
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.dropdown-menu a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Customer Data Section Styles */
#customer-data-section {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dashboard Styles */
.dashboard-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px 0;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.6), rgba(10, 10, 10, 0.6));
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Profile Icon Styles */
.profile-icon-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.profile-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.profile-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.4);
}

.profile-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-header {
    padding: 20px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.profile-info h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.profile-info p {
    color: #cbd5e1;
    margin: 0;
    font-size: 12px;
}

.profile-menu {
    padding: 10px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.menu-item:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.menu-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.menu-divider {
    height: 1px;
    background: rgba(59, 130, 246, 0.2);
    margin: 8px 0;
}

/* Data Section Styles */
.data-section-header {
    text-align: center;
    margin-bottom: 25px;
}

.data-container {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.data-card {
    background: rgba(26, 26, 26, 0.6);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-label {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 12px;
}

.info-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
}

.privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(59, 130, 246, 0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 20px;
}

.notice-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.notice-content h5 {
    color: #3b82f6;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.notice-content p {
    color: #cbd5e1;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.hide-data-button {
    background: linear-gradient(145deg, #6b7280, #4b5563);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
}

.hide-data-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px 0;
}

.orders-section {
    margin: 30px 0;
}

.chat-section {
    margin: 30px 0;
}

.logout-section {
    text-align: center;
    margin: 25px 0;
    padding: 15px 0;
}

/* Enhanced Chat Container */
.chat-container {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
    padding: 20px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
}

.chat-header h3 {
    color: #3b82f6;
    margin-bottom: 3px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Enhanced Orders Container */
.orders-container {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    padding: 25px;
    min-height: 150px;
}

/* Admin Dashboard Styles */
.admin-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.6), rgba(10, 10, 10, 0.6));
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.admin-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.card-header {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
    padding: 25px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    color: #3b82f6;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.card-content {
    padding: 25px;
    min-height: 300px;
}

.admin-chat-section {
    margin: 50px 0;
}

/* Mobile responsive dropdown */
@media (max-width: 768px) {
    .dropdown {
        position: relative;
    }
    
    /* Disable hover effects on mobile */
    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(10, 10, 10, 0.9);
        border: 1px solid rgba(59, 130, 246, 0.2);
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 10px 0;
        margin-top: 10px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease-out;
    }
    
    .dropdown-toggle::after {
        display: none;
    }
    
    .dropdown-menu a {
        padding: 8px 15px;
        font-size: 14px;
        color: #cbd5e1;
        border-left: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        color: #3b82f6;
        border-left-color: #3b82f6;
        background: rgba(59, 130, 246, 0.1);
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
} 