/* Professional Theme Variables */
:root {
    --primary-color: #ff5c35;
    /* Brand Orange - Action Color */
    --secondary-color: #0e1d34;
    /* Corporate Blue - Headers/Text */
    --light-bg: #f8f9fa;
    /* Light Grey Background */
    --white: #ffffff;
    --text-body: #444444;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    line-height: 1.2;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-center {
    text-align: center;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #e04a25;
    border-color: #e04a25;
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
}

.btn-light:hover {
    background-color: #f1f1f1;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 15px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(255, 92, 53, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Abstract Hero Graphics */
.hero-shape {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 29, 52, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    position: relative;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse-soft 5s infinite ease-in-out;
}

.main-icon {
    font-size: 120px;
    color: var(--secondary-color);
    opacity: 0.1;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--secondary-color);
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: 0;
    animation-delay: 2s;
}

.floating-card i {
    color: var(--primary-color);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Features Grid */
.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-header p {
    color: #777;
    margin-bottom: 50px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 92, 53, 0.2);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(14, 29, 52, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
}

/* Two Column Layouts */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.align-center {
    align-items: center;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

.subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.check-list {
    margin: 20px 0;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-weight: 500;
}

.check-list i {
    color: var(--primary-color);
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-arrow:hover {
    gap: 12px;
}

.placeholder-box {
    background: var(--white);
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.icon-xxl {
    font-size: 80px;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background: var(--secondary-color);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #050b14;
    color: #adb5bd;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.logo-footer {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-links h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
}

.footer-legal-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        height: calc(100vh - 70px);
        padding: 40px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

/* --- Polished Pricing Cards --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: flex-start;
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    border: 1px solid #eef2f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-top-bar {
    height: 6px;
    background: #eef2f6;
    width: 100%;
}

.pricing-card.popular {
    border: 1px solid rgba(255, 92, 53, 0.3);
    box-shadow: 0 10px 40px rgba(255, 92, 53, 0.08);
    transform: scale(1.02);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-bar {
    background: var(--primary-color);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    padding: 30px 30px 10px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.pricing-body {
    padding: 20px 30px 40px;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.price .currency {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-top: -15px;
    font-weight: 500;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.price .period {
    color: #999;
    align-self: flex-end;
    margin-bottom: 5px;
    margin-left: 5px;
    font-weight: 400;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f7fa;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-features li i {
    color: #28a745;
    margin-top: 4px;
    font-size: 0.9rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* --- Polished Comparison Table --- */
.pricing-table-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
}

.table-container {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 700px;
}

.pricing-table th,
.pricing-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f4f8;
}

.pricing-table th {
    background: var(--white);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.pricing-table th.feature-col,
.pricing-table td:first-child {
    text-align: left;
    width: 35%;
    font-weight: 500;
    color: var(--secondary-color);
}

.pricing-table th.highlight {
    color: var(--primary-color);
}

.section-row td {
    background-color: #f8f9fa;
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 12px 20px;
    text-align: left;
}

.pricing-table tbody tr:hover td:not(.section-row td) {
    background-color: #fafbfc;
}

.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

.text-muted {
    color: #cbd5e1;
}

/* Product Card Styling (Re-adding lost styles) */
.product-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-icon-header {
    height: 120px;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary-color);
    border-bottom: 1px solid #eee;
}

.product-icon-header.ai-icon {
    background: linear-gradient(135deg, rgba(255, 92, 53, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    color: var(--primary-color);
}

.product-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.product-content p {
    flex-grow: 1;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-link:hover {
    gap: 12px;
}

/* Category Headers */
#enterprise,
#ai-social,
#business {
    scroll-margin-top: 100px;
}

/* --- Auth Pages --- */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    width: 100%;
    max-width: 900px;
    min-height: 600px;
}

.auth-left {
    flex: 1;
    background-color: var(--secondary-color);
    background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    /* Professional office placeholder */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: white;
}

.register-bg {
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    /* Meeting placeholder */
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(14, 29, 52, 0.3) 0%, rgba(14, 29, 52, 0.9) 100%);
    z-index: 1;
}

.auth-content {
    position: relative;
    z-index: 2;
}

.auth-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.auth-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-form-box {
    width: 100%;
    max-width: 350px;
}

.auth-logo {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 30px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 92, 53, 0.1);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.divider span {
    padding: 0 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}

.font-bold {
    font-weight: 600;
}

.justify-between {
    justify-content: space-between;
}

.mt-4 {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        max-width: 500px;
    }

    .auth-left {
        display: none;
        /* Hide image on mobile for simpler auth */
    }

    .auth-right {
        padding: 30px;
    }
}

/* --- Dashboard --- */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: var(--white);
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.sidebar-header {
    padding: 25px;
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-menu {
    padding: 20px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    color: #666;
    font-weight: 500;
    transition: 0.2s;
}

.sidebar-menu li a:hover,
.sidebar-menu li.active a {
    color: var(--primary-color);
    background: rgba(255, 92, 53, 0.05);
    border-right: 3px solid var(--primary-color);
}

.sidebar-menu li.bottom-link {
    margin-top: auto;
}

.main-content {
    flex: 1;
    margin-left: 260px;
    /* Width of sidebar */
    padding: 0;
}

.dashboard-header {
    background: var(--white);
    padding: 20px 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 99;
}

.dashboard-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.user-info .name {
    font-weight: 600;
    font-size: 0.95rem;
}

.user-info .role {
    font-size: 0.8rem;
    color: #999;
}

.content-container {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.app-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid transparent;
    transition: 0.3s;
}

.app-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.app-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 29, 52, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.app-details {
    margin-bottom: 20px;
    flex: 1;
}

.app-details h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.badge-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-status.active {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.text-small {
    font-size: 0.85rem;
    color: #999;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Utility classes for new pages */
.p-4 {
    padding: 1.5rem;
}

.bg-white {
    background-color: var(--white);
}

.rounded {
    border-radius: 0.25rem;
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.border {
    border: 1px solid #dee2e6;
}

.border-light {
    border-color: #f8f9fa !important;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
}

.w-50 {
    width: 50%;
}

.rounded-pill {
    border-radius: 50rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.overflow-hidden {
    overflow: hidden;
}

/* Support Ticket Styles */
.ticket-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-open {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-progress {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.status-closed {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* Settings Tabs */
.settings-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}

.settings-tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: 0.2s;
}

.settings-tab:hover {
    color: var(--primary-color);
}

.settings-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Chatbot Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 5px 20px rgba(255, 92, 53, 0.4);
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow 0.3s;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 92, 53, 0.5);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    background: var(--secondary-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.chat-close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.8;
    transition: 0.2s;
}

.chat-close-btn:hover {
    opacity: 1;
}

.chat-body {
    flex: 1;
    padding: 20px;
    background: #f8f9fa;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    max-width: 80%;
    line-height: 1.4;
}

.bot-message {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.user-message {
    background: var(--primary-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    box-shadow: 0 2px 5px rgba(255, 92, 53, 0.2);
}

.chat-footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f1f3f5;
    padding: 5px 10px;
    border-radius: 25px;
}

#chat-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px;
    outline: none;
    font-family: inherit;
}

.icon-btn {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 16px;
    /* Reduced from 18px to fit better */
    padding: 5px;
    transition: 0.2s;
    border-radius: 50%;
    /* Make hover circular */
}

.icon-btn:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.05);
    /* Subtle background on hover */
}

.send-btn {
    color: var(--primary-color);
    margin-left: 5px;
    /* Add some space */
}

.send-btn:hover {
    transform: translateX(2px);
    /* Subtle push effect */
}

/* Typing Indicator Animation */
.typing-indicator::after {
    content: '...';
    display: inline-block;
    width: 20px;
    animation: typing 1.5s infinite;
    text-align: left;
}

@keyframes typing {
    0% {
        content: '';
    }

    25% {
        content: '.';
    }

    50% {
        content: '..';
    }

    75% {
        content: '...';
    }
}

/*app-store card*/
.app-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

.app-card .d-flex.w-100.gap-2 {
    margin-top: auto;
    padding-top: 15px;
}

/* Ensure consistent icon and text area */
.app-icon {
    flex-shrink: 0;
}

.app-card h3,
.app-card h4 {
    margin-top: 10px;
}