/* Restokita Dashboard CSS */

/* 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: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Header */
.header {
    background: white;
    color: #0047AB;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-button {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-button:hover {
    background: rgba(0, 71, 171, 0.1);
    transform: scale(1.05);
}

.header-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.header-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0047AB;
}

.header-nav {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    color: #0047AB;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    border-radius: 8px;
}

.nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0047AB;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-btn:hover::after {
    width: 80%;
}

.nav-btn:hover {
    background: rgba(0, 71, 171, 0.1);
    transform: translateY(-1px);
}

.nav-btn.active {
    background: rgba(0, 71, 171, 0.15);
}

.nav-btn.active::after {
    width: 80%;
}

.reload-btn {
    font-size: 1.2rem;
    padding: 0.75rem;
    min-width: 44px;
    border-radius: 50%;
}

.reload-btn:hover {
    background: rgba(0, 71, 171, 0.2);
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px - 200px); /* Account for header and footer */
}

.content-section {
    display: none;
    padding: 2rem;
}

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

/* Dashboard Container */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Hero Section */
.hero-section {
    margin-bottom: 4rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 400px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1f2937;
}

.text-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0047AB;
}

.text-medium {
    font-size: 1.5rem;
    font-weight: 500;
    color: #4b5563;
}

.text-small {
    font-size: 1.2rem;
    font-weight: 400;
    color: #6b7280;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    line-height: 1.6;
}

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

.restaurant-illustration {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dashboard-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.dashboard-image {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

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

.illustration-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Features Section */
.features-section {
    margin-top: 4rem;
}

.features-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0rem;
}

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

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

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

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

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

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

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #60a5fa;
}

.social-icon {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0 2rem;
    border-top: 1px solid #374151;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* ========================================
   Hamburger Menu & Mobile Drawer
   ======================================== */

/* Hamburger Button */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #0047AB;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    opacity: 0.8;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: auto;
    max-height: 100vh;
    background: white;
    z-index: 1003;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease, border-radius 0.3s ease;
    overflow-y: auto;
    flex-direction: column;
    border-radius: 16px 0 0 16px;
}

.mobile-menu-drawer.active {
    display: flex;
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 48px;
}

.mobile-header-user-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    display: none;
    padding-left: 0;
}

.mobile-header-signin-btn {
    background: transparent;
    border: none;
    color: #0047AB;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem 0.5rem 0;
    border-radius: 6px;
}

.mobile-header-signin-btn:hover {
    background: #eff6ff;
}

.mobile-header-signin-btn svg {
    flex-shrink: 0;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    padding: 0.4rem;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s ease;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    flex-shrink: 0;
    margin-right: 0;
}

.mobile-menu-close:hover {
    background: #e5e7eb;
    color: #1f2937;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-menu-item {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    text-align: left;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-item:hover {
    background: #f3f4f6;
    color: #0047AB;
}

.mobile-menu-item.active {
    background: #eff6ff;
    color: #0047AB;
    font-weight: 600;
    border-left: 3px solid #0047AB;
}

.mobile-menu-item svg {
    flex-shrink: 0;
}

/* Mobile Menu Divider */
.mobile-menu-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0.5rem 0;
}

/* Mobile Menu User Section */
.mobile-menu-user-section {
    padding: 0;
    border-top: none;
}

.mobile-menu-user-section .mobile-menu-item {
    border-top: none;
    border-radius: 0;
    padding: 1rem 1.5rem;
}

.mobile-user-name {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.mobile-menu-action {
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 1rem 1.5rem;
    width: 100%;
}

.mobile-menu-action:hover {
    background: #f3f4f6;
}

.mobile-menu-logout {
    color: #1f2937;
    border: none;
}

.mobile-menu-logout:hover {
    background: #f3f4f6;
    color: #1f2937;
}

/* Responsive Design */
/* Larger tablets: iPad, iPad Pro, Nexus 10 */
@media (max-width: 1024px) {
    .header-content {
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .header-left {
        flex-shrink: 0;
    }

    .header-logo {
        height: 32px;
        max-width: 100px;
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
        flex: 1;
    }

    .header-right {
        flex-shrink: 0;
    }

    .nav-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-top: 60px;
    }

    .header {
        padding: 0.5rem 0;
    }

    .header-content {
        flex-direction: row;
        gap: 0.75rem;
        padding: 0.5rem 1rem;
        justify-content: space-between;
    }

    .header-left {
        width: auto;
        justify-content: flex-start;
    }

    /* Hide desktop navigation on mobile */
    .header-nav {
        display: none;
    }

    /* Hide desktop user info on mobile - use !important to override inline styles */
    .header-right #user-info,
    .header-right #signin-btn {
        display: none !important;
    }

    /* Show hamburger button on mobile */
    .hamburger-btn {
        display: flex;
    }

    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .text-large {
        font-size: 2.5rem;
    }
    
    .text-medium {
        font-size: 1.2rem;
    }
    
    .text-small {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .section-container h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .text-large {
        font-size: 2rem;
    }

    .features-title {
        font-size: 1.8rem;
    }

    .section-container {
        padding: 1.5rem 0.75rem;
    }

    .section-container h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-item {
        padding: 1rem;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature-text h4 {
        font-size: 1.3rem;
    }

    .feature-text p {
        font-size: 0.95rem;
    }

    .point span:last-child {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

/* Modern Guide Content Styles */

/* Hero Description and CTA */
.hero-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 1rem 0;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-primary {
    background: linear-gradient(135deg, #0047AB 0%, #003366 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 71, 171, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 71, 171, 0.4);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0047AB 0%, #003366 100%);
    border-radius: 2px;
}

/* Enhanced Features Section - Alternating Layout */
.features-section {
    margin: 4rem 0;
}

.features-alternating {
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Zigzag layout - even features have text on left, odd features have image on left */
.feature-item:nth-child(even) {
    flex-direction: row-reverse !important;
}

.feature-illustration {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* removed illustration-container wrapper and background */

.feature-image {
    max-width: 320px;
    max-height: 320px;
    width: auto;
    height: auto;
    display: block;
}

/* removed illustration-bg */

.feature-text {
    flex: 1;
    padding: 0.5rem;
}

.feature-text h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.125rem 0;
}

.point-icon {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0047AB 0%, #003366 100%);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.point span:last-child {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}



/* CTA Section */
.cta-section {
    margin: 4rem 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-btn {
    background: linear-gradient(135deg, #0047AB 0%, #003366 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 71, 171, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 71, 171, 0.4);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .feature-item,
    .feature-item:nth-child(even),
    .feature-item:nth-child(odd) {
        flex-direction: column !important;
        gap: 1.5rem;
        margin-bottom: 3rem;
        text-align: center;
        padding: 1.5rem;
    }

    .feature-illustration {
        flex: none;
        order: -1;
    }

    .feature-image { max-width: 280px; max-height: 280px; }

    .feature-text {
        padding: 0.5rem 0;
    }

    .feature-text h4 {
        font-size: 1.5rem;
    }

    .feature-text p {
        font-size: 1rem;
    }

    .point {
        justify-content: center;
    }

    .point span:last-child {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Pricing Section Styles */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.full {
    border-color: #0047AB;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.pricing-badge {
    display: inline-block;
    background: #0047AB;
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.pricing-features h4:first-child {
    margin-top: 0;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #475569;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.cross-icon {
    color: #ef4444;
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta .cta-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #e2e8f0;
    color: #475569;
}

.pricing-cta .cta-btn:hover {
    background: #cbd5e1;
    transform: translateY(-2px);
}

.pricing-cta .cta-btn.primary {
    background: #3b82f6;
    color: white;
}

.pricing-cta .cta-btn.primary:hover {
    background: #2563eb;
}

/* Hide pricing tab buttons */
.pricing-cta {
    display: none;
}

/* Responsive pricing */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }
}

/* Help Section Styles */
.help-btn {
    background: linear-gradient(135deg, #0047AB 0%, #003366 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 71, 171, 0.3);
    margin-top: 2rem;
}

.help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 71, 171, 0.4);
}

/* Help Dropdown Styles */
.help-dropdown-container {
    position: relative;
}

.help-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    z-index: 1001;
    margin-top: 0.5rem;
    border: 1px solid #e2e8f0;
    animation: dropdownSlideIn 0.2s ease-out;
}

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

.help-dropdown-item {
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 500;
}

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

.help-dropdown-item:hover {
    background: #f8fafc;
    color: #0047AB;
}

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

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #e2e8f0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px 16px 0 0;
}

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

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

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

.help-category {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.help-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.help-category p {
    color: #64748b;
    font-size: 1rem;
}

.help-content {
    padding: 2rem;
}

.help-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.back-btn {
    background: #f1f5f9;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: #475569;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.help-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.faq-answer {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Troubleshooting Styles */
.troubleshooting-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.troubleshooting-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.troubleshooting-problem {
    font-size: 1.1rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.troubleshooting-solution {
    font-size: 1rem;
    color: #059669;
    line-height: 1.6;
}

/* Contact Styles */
.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-channel {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0047AB 0%, #003366 100%);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-text {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
}

/* Responsive help section */
@media (max-width: 768px) {
    .help-dropdown {
        position: fixed;
        top: 80px;
        left: 1rem;
        right: 1rem;
        min-width: auto;
        margin-top: 0;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .help-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .help-category {
        padding: 1.5rem;
    }
    
    .help-content {
        padding: 1.5rem;
    }
    
    .help-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .help-header h3 {
        font-size: 1.5rem;
    }
}

/* Tentang Kami Section Styles */
#about-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Intro Section */
.about-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.about-subtitle {
    font-size: 1.3rem;
    color: #0047AB;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Mission & Vision Section */
.about-mission {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.about-mission h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.mission-box,
.vision-box {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #0047AB;
}

.mission-box h4,
.vision-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0047AB;
    margin-bottom: 1rem;
}

.mission-box p,
.vision-box p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Story Section */
.about-story {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.about-story h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.about-story p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Differences Section */
.about-difference {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.about-difference h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2.5rem;
    text-align: center;
}

.differences-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.difference-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.difference-item:hover {
    border-color: #0047AB;
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.1);
}

.difference-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.difference-item p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Values Section */
.about-values {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.about-values h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.value-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #0047AB;
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.1);
    background: white;
}

.value-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.value-item p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* CTA Section */
.about-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    margin-bottom: 2rem;
}

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

.about-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles for About Section */
@media (max-width: 768px) {
    #about-content {
        padding: 1rem;
    }

    .about-intro h2 {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-mission h3,
    .about-story h3,
    .about-difference h3,
    .about-values h3,
    .about-cta h3 {
        font-size: 1.6rem;
    }

    .about-story p {
        text-align: left;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-cta {
        padding: 2rem 1.5rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .about-cta-buttons .cta-btn {
        width: 100%;
    }
}

/* Fitur Section Styles */
#features-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Features Intro */
.features-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.features-subtitle {
    font-size: 1.3rem;
    color: #0047AB;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.features-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Highlight Cards */
.feature-highlight {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.feature-highlight:hover {
    box-shadow: 0 8px 24px rgba(0, 71, 171, 0.12);
    border-color: #0047AB;
}

/* Alternating layout */
.feature-layout-right {
    flex-direction: row;
}

.feature-layout-left {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-description {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-benefits li {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-impact {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0047AB;
}

.feature-impact strong {
    font-size: 1rem;
    color: #1e40af;
    line-height: 1.6;
}

/* Feature Images */
.feature-images {
    flex: 0 0 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Multiple Screenshots Layout */
.multiple-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.multiple-screenshots .feature-screenshot {
    width: 100%;
}

/* Custom Financial Reports Layout - 2 images on top (half width each), 1 full width bottom */
.financial-reports-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.financial-reports-layout .feature-screenshot:nth-child(1),
.financial-reports-layout .feature-screenshot:nth-child(2) {
    width: 100%;
}

.financial-reports-layout .feature-screenshot:nth-child(3) {
    grid-column: 1 / -1;
    width: 100%;
}

/* Features CTA */
.features-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

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

.features-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.features-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles for Features Section */
@media (max-width: 968px) {
    .feature-highlight {
        flex-direction: column !important;
        gap: 2rem;
        padding: 2rem;
    }

    .feature-images {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

    .multiple-screenshots {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #features-content {
        padding: 1rem;
    }

    .features-intro h2 {
        font-size: 2rem;
    }

    .features-subtitle {
        font-size: 1.1rem;
    }

    .features-description {
        font-size: 1rem;
    }

    .feature-highlight {
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .feature-content h3 {
        font-size: 1.3rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    .feature-benefits li {
        font-size: 0.95rem;
    }

    .feature-impact strong {
        font-size: 0.95rem;
    }

    .features-cta {
        padding: 2rem 1.5rem;
    }

    .features-cta h3 {
        font-size: 1.6rem;
    }

    .features-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .features-cta-buttons .cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    #features-content {
        padding: 0.75rem;
    }

    .features-intro h2 {
        font-size: 1.6rem;
    }

    .features-subtitle {
        font-size: 1rem;
    }

    .feature-highlight {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .feature-content h3 {
        font-size: 1.2rem;
    }

    .feature-description {
        font-size: 0.95rem;
    }

    .feature-benefits li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }

    .feature-impact {
        padding: 0.75rem 1rem;
    }

    .feature-impact strong {
        font-size: 0.9rem;
    }

    .features-cta {
        padding: 1.5rem 1rem;
    }

    .features-cta h3 {
        font-size: 1.4rem;
    }

    .features-cta p {
        font-size: 0.95rem;
    }
}

/* ========================================
   Authentication Styles
   ======================================== */

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* User Info Display */
.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 8px;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1f2937;
}

.btn-logout {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-logout:hover {
    color: #ef4444;
    border-color: #ef4444;
    background: #fef2f2;
}

/* Change Password Button */
.btn-change-password {
    padding: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
}

.btn-change-password:hover {
    color: #0047AB;
    border-color: #0047AB;
    background: #eff6ff;
    transform: scale(1.05);
}

.btn-change-password svg {
    transition: transform 0.2s ease;
}

.btn-change-password:hover svg {
    transform: rotate(45deg);
}

/* Sign In Button */
.btn-signin {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    background: #0047AB;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-signin:hover {
    background: #003580;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.2);
}

/* Auth Modal */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

.auth-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Content */
.modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

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

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

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}

/* Modal Body */
.modal-body {
    padding: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}

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

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: #1f2937;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #0047AB;
    box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

/* Password Input Container */
.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container input {
    width: 100%;
    padding-right: 3rem; /* Make room for the eye icon */
}

.toggle-password {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password:hover {
    color: #0047AB;
}

.toggle-password:focus {
    outline: none;
}

.toggle-password svg {
    display: block;
    width: 20px;
    height: 20px;
}

/* Error and Success Messages */
.error-message,
.success-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: none;
}

.error-message {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.success-message {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #86efac;
    font-weight: 500;
}

.error-message.show,
.success-message.show {
    display: block;
}

/* Primary Button */
.btn-primary {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: #0047AB;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover:not(:disabled) {
    background: #003580;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.3);
}

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

.loading-spinner {
    font-size: 0.9rem;
    color: white;
}

/* Modal Footer */
.modal-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.modal-footer p {
    font-size: 0.9rem;
    color: #6b7280;
}

.modal-footer a {
    color: #0047AB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.modal-footer a:hover {
    color: #003580;
    text-decoration: underline;
}

/* Responsive Design for Auth Components */
@media (max-width: 768px) {
    .header-right {
        gap: 0.5rem;
    }

    .user-info {
        padding: 0.4rem 0.75rem;
    }

    .user-name {
        font-size: 0.85rem;
    }

    .btn-logout {
        padding: 0.35rem 0.6rem;
        font-size: 0.8rem;
    }

    .btn-signin {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .modal-content {
        width: 95%;
        max-width: 100%;
    }

    .modal-header {
        padding: 1.25rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .form-group input {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   Floating Live Chat Button
   ======================================== */

.floating-chat-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #0047AB;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 71, 171, 0.3);
    transition: all 0.3s ease;
    z-index: 1500;
    font-weight: 500;
    font-size: 0.95rem;
}

.floating-chat-btn:hover {
    background: #003580;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 71, 171, 0.4);
}

.floating-chat-btn .chat-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.floating-chat-btn .chat-text {
    white-space: nowrap;
}

/* Mobile: Show only icon */
@media (max-width: 768px) {
    .floating-chat-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.85rem;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }

    .floating-chat-btn .chat-text {
        display: none;
    }

    .floating-chat-btn .chat-icon {
        font-size: 1.5rem;
    }
}

/* ========================================
   Clickable Contact Channels
   ======================================== */

.contact-channel-link,
.contact-channel-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-channel-link:hover,
.contact-channel-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.15);
    border-color: #0047AB;
}

.contact-channel-link {
    background: white;
}

.contact-channel-link:hover {
    background: #f8fafc;
}

.contact-channel-clickable {
    position: relative;
}

.contact-channel-clickable .click-hint {
    display: block;
    font-size: 0.75rem;
    color: #0047AB;
    font-weight: 500;
    margin-top: 0.25rem;
}

.contact-channel-clickable:hover .click-hint {
    color: #003580;
}

/* ========================================
   Toast Notifications
   ======================================== */

.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 300px;
    text-align: center;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-success {
    border-left: 4px solid #10b981;
    color: #065f46;
}

.toast-error {
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

/* Mobile toast adjustments */
@media (max-width: 768px) {
    .toast-notification {
        bottom: 1rem;
        min-width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
    }
}
