:root {
    /* Core Colors */
    --primary-color: #1E293B;
    --primary-dark: #0f172a;
    --secondary-color: #f9820e;
    --accent-color: #f9820e;
    --success-color: #22C55E;
    --error-color: #EF4444;
    --disabled-color: #CBD5E1;

    /* Text Colors */
    --text-color: #1E293B;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --text-primary: #1E293B;
    --text-on-primary: #1E293B;
    --text-dark: #1E293B;
    --text-light: #F8FAFC;

    /* Backgrounds */
    --background-color: #F8FAFC;
    --background: var(--background-color);
    --background-alt: var(--primary-color);
    --header-background: #ffffff;
    --footer-background: #F1F5F9;
    --card-bg: rgba(255, 255, 255, 0.98);
    --card-background: var(--card-bg);
    --input-background: rgba(255, 255, 255, 0.95);
    --hover-background: rgba(228, 168, 83, 0.1);
    --disabled-background: #F1F5F9;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    --gradient-hover: var(--gradient-primary);
    --gradient-text: linear-gradient(135deg, var(--text-color) 0%, var(--text-secondary) 100%);

    /* RGB */
    --primary-rgb-values: 30, 41, 59;

    /* Border */
    --border-color: rgba(30, 41, 59, 0.2);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

    /* Transforms */
    --transform-hover: translateY(-5px);
    --transform-hover-sm: translateY(-2px);
    --transform-scale: scale(1.1);

    /* Transitions */
    --transition-base: all 0.3s ease;

    /* Focus */
    --focus-ring: 0 0 0 3px rgba(228, 168, 83, 0.4);

    /* Social Media Colors */
    --twitter-color: #1DA1F2;
    --linkedin-color: #0077B5;
    --facebook-color: #1877F2;
    --whatsapp-color: #25D366;

    /* Bootstrap Compat */
    --bs-primary: #4361ee;
    --bs-primary-dark: #3a56d4;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;

    /* Utility */
    --white: #ffffff;
}

[data-theme="dark"] {
    /* Core Colors */
    --primary-color: #F1F5F9;
    --primary-dark: #E2E8F0;
    --secondary-color: #F4B864;
    --accent-color: #F4B864;
    --success-color: #4ADE80;
    --error-color: #FCA5A5;
    --disabled-color: #94A3B8;

    /* Text */
    --text-color: #F8FAFC;
    --text-secondary: #E2E8F0;
    --text-muted: #CBD5E1;
    --text-primary: #F8FAFC;
    --text-on-primary: #1E293B;
    --text-dark: #1E293B;
    --text-light: #F8FAFC;

    /* Backgrounds */
    --background-color: #1E293B;
    --background: #1E293B;
    --background-alt: #475569;
    --header-background: #1E293B;
    --footer-background: #1E293B;
    --card-bg: #293549;
    --card-background: var(--card-bg);
    --input-background: #293549;
    --hover-background: rgba(244, 184, 100, 0.2);
    --disabled-background: #475569;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    --gradient-secondary: linear-gradient(135deg, #F4B864 0%, #F9CB95 100%);
    --gradient-hover: linear-gradient(135deg, #E2E8F0 0%, #F1F5F9 100%);
    --gradient-text: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);

    /* Border */
    --border-color: rgba(255, 255, 255, 0.25);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
}

body {
    background-color: var(--background-color);
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    color: var(--text-color);
    transition: all 0.3s ease;
    overflow-x: hidden;
    width: 100%;
}

.choices__inner {
    border-radius: 12px !important;
    min-height: 50px !important;
    background-color: var(--input-background) !important;
    border: 1px solid var(--border-color) !important;
}

a { text-decoration: none; cursor:pointer}


[data-theme="dark"] .dropzone-upload-wrapper {
    color: var(--text-color) !important;
}

[data-theme="dark"] small {
    color: var(--text-color) !important;
}

[data-theme="dark"] .choices__inner {
    background-color: var(--input-background) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-color) !important;
    border-radius: 12px !important;
    min-height: 50px !important;
}

[data-theme="dark"] .choices__list--dropdown,
[data-theme="dark"] .choices__list[aria-expanded] {
    background-color: var(--card-background) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-color) !important;
}

[data-theme="dark"] .choices__item--selectable.is-highlighted {
    background-color: var(--hover-background) !important;
    color: var(--text-color) !important;
}


/* Header Styles */
.main-header {
    background: var(--header-background);
    padding: 0.4rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-note, .header-tagline {
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(90deg, #ff6f61, #ffb88c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    margin: 0;
    padding: 0;
    animation: typing 3s steps(30, end) forwards;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.header-note, .header-tagline {
    font-weight: 700;
    font-size: 1.22rem;
}
.header-tagline {
    font-weight: 500;
    font-size: 1.1rem;
}

.title-underline {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    margin-top: 0.5rem;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.header-tagline:hover {
    transform: scale(1.05);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .header-tagline {
        font-size: 1rem;
    }
}

[data-theme="light"] .main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .logo i {
    color: var(--primary-color);
}

[data-theme="light"] .logo-text {
    color: var(--primary-color);
}

[data-theme="light"] .main-nav a {
    color: var(--text-color);
}

[data-theme="light"] .main-nav a:hover {
    color: var(--secondary-color);
    background: var(--hover-background);
}

[data-theme="light"] .main-nav a.active {
    color: var(--secondary-color);
    background: var(--hover-background);
}

[data-theme="light"] .btn-outline-light {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

[data-theme="light"] .btn-outline-light:hover {
    background: var(--primary-color);
    color: var(--white);
}

[data-theme="light"] .theme-toggle , [data-theme="light"] .user-profile{
    color: var(--primary-color);
    background: rgba(30, 41, 59, 0.05);
}

[data-theme="light"] .theme-toggle:hover , [data-theme="light"] .user-profile:hover {
    background: rgba(30, 41, 59, 0.1);
    color: var(--secondary-color);
}


.text-muted {
    --bs-text-opacity: 1;
    color: var(--primary-color) !important;
}

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



.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    text-decoration: none;
}



.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
}

.main-nav a.active {
    color: var(--secondary-color);
    background: rgba(228, 168, 83, 0.1);
    font-weight: 600;
}

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

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

.btn-org {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 168, 83, 0.2);
}

.user-profile::after {
    display: none !important;
}
.theme-toggle,
.user-profile {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    overflow: hidden;
}

.theme-toggle:hover,
.user-profile:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.theme-toggle i,
.user-profile i {
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.user-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.dropdown-menu {
    background-color:  var(--background-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px   var(--border-color)
}

 .dropdown-menu .dropdown-item {
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
    background-color:   var(--background-color);
    color: var(--text-primary);
}

.dropdown-divider {
    border-color: var(--border-color);
}
/* Responsive Header */
@media (max-width: 1200px) {
    .main-nav ul {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .header-left {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .header-buttons {
        gap: 0.5rem;
    }

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

    .theme-toggle , .user-profile{
        width: 36px;
        height: 36px;
    }
}

/* Footer Styles */
.main-footer {
    background: var(--footer-background);
    color: var(--text-color);
    padding: 2rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.brand-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--input-background);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.links-section h5,
.newsletter-section h5 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.links-section h5::after,
.newsletter-section h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--text-color);
    transform: translateX(5px);
}

.newsletter-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form .form-control {
    background: var(--input-background);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.8rem 1rem;
    border-radius: 5px;
}

.newsletter-form .form-control::placeholder {
    color: var(--text-secondary);
}

.newsletter-form .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: var(--secondary-color);
    color: var(--primary-color);
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 168, 83, 0.3);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--text-color);
}

.separator {
    color: var(--border-color);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    width: 100%;
    margin-top: 1.5rem;
}

.newsletter-form input {
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    background: var(--input-background);
    color: var(--text-color);
    flex: 1;
    min-width: 0;
}


#country_code {
    border-top-left-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.newsletter-form button {
    padding: 15px 24px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #F4B864;
}

/* Responsive Footer - Large Screens */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 3rem;
    }
}

/* Responsive Footer - Medium Screens */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }

    .brand-section {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-section {
        min-width: 200px;
    }
}

/* Responsive Footer - Small Screens */
@media (max-width: 768px) {
    .main-footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .brand-section {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-section h5 {
        text-align: center;
    }

    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section p {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input {
        border-radius: 8px;
        border: 1px solid var(--border-color);
        text-align: center;
    }

    .newsletter-form button {
        width: 100%;
        border-radius: 8px;
    }

    .footer-bottom {
        margin-top: 2.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
    }
}

/* Responsive Footer - Extra Small Screens */
@media (max-width: 480px) {
    .main-footer {
        padding: 2.5rem 1rem 1rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-logo span {
        font-size: 1.25rem;
    }

    .footer-section h5 {
        font-size: 1.125rem;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom-links a {
        display: block;
        padding: 0.5rem;
    }
}

/* Theme Toggle */
[data-theme="dark"] .login-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

[data-theme="dark"] .btn-outline-light {
    color: #f1f5f9;
    border-color: #334155;
}

[data-theme="dark"] .btn-outline-light:hover {
    background: #334155;
    color: #f1f5f9;
}

[data-theme="dark"] .login-form-container {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

/* Main Container Layout */
.main-container {
    display: flex;
    min-height: calc(100vh - 70px);
    gap: 2rem;
    padding: 1rem;
    margin: 0;
    box-sizing: border-box;
}

/* Sidebar Styles */
.sidebar {
    width: 300px;
    min-width: 300px;
    background: var(--card-background);
    padding: 2rem 1rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.nav-item {
    margin-bottom: 1rem;
    position: relative;
}

.nav-item a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item.active a {
    color: var(--text-color);
    background: var(--input-background);
}

.nav-item i:first-child {
    margin-right: 0.75rem;
    font-size: 1.25rem;
    min-width: 24px;
}

.status-icon {
    margin-left: auto;
    opacity: 0;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.nav-item.completed .status-icon {
    opacity: 1;
}

.nav-item.completed a {
    color: var(--text-color);
}

.nav-item:hover a {
    color: var(--text-color);
    background: var(--input-background);
}

/* Main Content Styles */
.main-content {
    flex: 1;
    width: 100%;
    max-width: 100%;
    background: var(--card-background);
    padding: 2rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    margin: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Form Styles */
.form-label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.form-control {
    background: var(--input-background);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-select {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0.78rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--input-background);
    color: var(--text-color);
    cursor: pointer;
}

.form-check {
    padding: 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check:hover {
    background: var(--input-background);
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 1rem;
    cursor: pointer;
}

.form-check-label {
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
}

.form-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    width: 100%;
}

.form-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    min-width: fit-content;
}

.form-button-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.form-button-secondary {
    background: var(--input-background);
    color: var(--text-color);
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: row !important;
        justify-content: space-between;
        gap: 0.75rem;
        width: 100%;
    }

    .form-button {
        flex: 0 1 auto;
        min-width: auto;
        padding: 0.875rem 1.25rem;
    }

    .register-form .form-actions {
        flex-direction: row !important;
    }

    .register-form .btn {
        width: auto !important;
    }
}

/* Upload Area Styles */
.upload-area {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: var(--secondary-color);
    background: rgba(228, 168, 83, 0.05);
}

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

.upload-preview {
    text-align: center;
}

.upload-preview img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* Input Group Styles */
.input-group .form-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Textarea Styles */
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Review Content Styles */
.review-content {
    background: var(--input-background);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.review-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.review-value {
    color: var(--text-color);
    font-weight: 600;
}

/* Form Select Styles */
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

[data-theme="dark"] .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
}

/* File Input Styles */
input[type="file"] {
    padding: 0.5rem;
}

input[type="file"]::-webkit-file-upload-button {
    background: var(--secondary-gradient);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    margin-right: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        padding: 0.5rem;
    }

    .sidebar {
        width: 100%;
        display: none;
    }

    .sidebar.show {
        display: block;
    }

    .main-content {
        padding: 1rem;
    }

    .content-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
    }

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

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .col-md-6 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .form-control, .form-select {
        width: 100%;
        max-width: 100%;
    }

    .input-group {
        width: 100%;
    }

    .input-group .form-select {
        max-width: 100px;
    }

    .upload-area {
        padding: 1rem;
    }

    .review-content {
        padding: 1rem;
    }

    .review-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Login Page Styles */
.login-container {
    display: flex;
    min-height: 100vh;
}

.login-banner {
    flex: 1;
    background: linear-gradient(135deg, #1A1F2D 0%, #2A3142 50%, #f9820e 100%);
    color: white;
    padding: 3rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.login-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(228, 168, 83, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(26, 31, 45, 0.15) 0%, transparent 50%);
    animation: bannerGlow 8s ease-in-out infinite alternate;
}

@keyframes bannerGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}


.banner-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.login-content {
    flex: 1;
    background: var(--background-color);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

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

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

.login-header .logo i {
    font-size: 1.75rem;
    color: var(--secondary-color);
}

.login-header .logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.login-form-container {
    max-width: 470px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
}

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

.content-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

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

.login-form .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}


.login-form .btn-outline-secondary {
    border: none;
    background: none;
    color: var(--text-secondary);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-check {
    margin: 0;
    padding: 0;
}

.form-check-input {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    cursor: pointer;
}

.form-check-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.forgot-link {
    font-size: 0.875rem;
    color: var(--secondary-color);
    text-decoration: none;
}

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

.btn-primary {
    width: 100%;
    padding: 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--secondary-gradient);
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
}

.social-login {
    text-align: center;
}

.social-login p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    position: relative;
}

.social-login p::before,
.social-login p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: var(--border-color);
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--input-background);
    color: var(--text-color);
}

.btn-social:hover {
    background: var(--card-background);
    border-color: var(--secondary-color);
}

.btn-social i {
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .login-banner {
        padding: 2rem;
        text-align: center;
    }

    .banner-content {
        margin: 0 auto;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .login-content {
        padding: 1.5rem;
    }

    .login-form-container {
        padding: 1rem;
    }

    .social-buttons {
        flex-direction: column;
    }
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 70px);
    padding: 2rem;
    background: var(--card-background);
}

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

.content-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.content-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.mt-5.text-center {
    margin-top: 2rem !important;
}

.mt-5.text-center p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Responsive adjustments for login form */
@media (max-width: 768px) {
    .login-form {
        max-width: 100%;
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .main-content {
        padding: 1rem;
    }
}

/* Registration Form Specific Styles */
.register-form .main-content {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.5rem;
    width: 100%;
}

.register-form #multiStepForm {
    width: 100%;
}

.register-form .form-step {
    width: 100%;
}

.register-form .content-header {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    width: 100%;
}

.register-form .step-indicator {
    background: var(--input-background);
    padding: 0.75rem 1.5rem;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    margin-left: auto;
}

.register-form .btn-primary {
    width: auto;
}

.register-form .form-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}



/* Login Form Specific Styles */
.login-form .main-content {
    align-items: center;
    justify-content: center;
}

.login-form .content-header {
    text-align: center;
}


.login-form .btn-outline-secondary:hover {
    color: var(--secondary-color);
}

.login-form .btn-outline-secondary:focus {
    box-shadow: none;
    outline: none;
}

.login-form .btn-outline-secondary i {
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .register-form .content-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .register-form .step-indicator {
        margin-left: 0;
        margin-top: 1rem;
    }

    .register-form .form-actions {
        flex-direction: column;
        width: 100%;
    }

    .register-form .btn {
        width: 100%;
    }
}

/* Login Form Styles */
.login-form {
    max-width: 400px;
    margin: 0 auto;
}

.login-form .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}



.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-check {
    margin: 0;
    padding: 0;
}

.form-check-input {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    cursor: pointer;
}

.form-check-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.forgot-link {
    font-size: 0.875rem;
    color: var(--secondary-color);
    text-decoration: none;
}

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

.btn-primary {
    width: 100%;
    padding: 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--secondary-gradient);
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
}

.btn-primary:hover {
    background: #F4B864;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
    color: #ffffff;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover {
    color: #1E293B;
    background-color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .btn-outline-light {
    color: #F4B864;
    border-color: #F4B864;
}

[data-theme="dark"] .btn-outline-light:hover {
    color: #1E293B;
    background-color: #F4B864;
    border-color: #F4B864;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(228, 168, 83, 0.1);
    color: var(--secondary-color);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--card-background);
    padding: 1rem;
    border-radius: 16px;
    margin: 0 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-nav.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(228, 168, 83, 0.1);
    color: var(--secondary-color);
}

.mobile-nav a.active {
    background: rgba(228, 168, 83, 0.1);
    color: var(--secondary-color);
}

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

/* Responsive Header */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .header-left {
        gap: 1rem;
    }

    .header-buttons {
        display: none;
    }

    .header-right {
        gap: 0.5rem;
    }

    .theme-toggle, .user-profile {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 0.75rem 1rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .mobile-nav {
        top: 60px;
    }
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }

    .brand-section {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-section {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .brand-section {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-section h5 {
        text-align: center;
    }

    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section p {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input {
        border-radius: 8px;
        border: 1px solid var(--border-color);
        text-align: center;
    }

    .newsletter-form button {
        width: 100%;
        border-radius: 8px;
    }

    .footer-bottom {
        margin-top: 2.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
    }
}

/* Form Buttons */
.form-button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-button i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-button-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(228, 168, 83, 0.2);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 168, 83, 0.3);
    background: #F4B864;
}

.form-button-secondary {
    background: var(--background-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-button-secondary:hover {
    background: var(--card-background);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Button Styles */
[data-theme="dark"] .form-button-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(228, 168, 83, 0.3);
}

[data-theme="dark"] .form-button-primary:hover {
    background: #F4B864;
    box-shadow: 0 6px 20px rgba(228, 168, 83, 0.4);
}

[data-theme="dark"] .form-button-secondary {
    background: var(--card-background);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .form-button-secondary:hover {
    background: var(--input-background);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.form-button-success {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 50%, #15803D 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.form-button-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, #16A34A 0%, #15803D 50%, #22C55E 100%);
}

.form-button-success:hover i {
    transform: scale(1.1);
}

/* Form Step Transitions */


.form-step.active {
    display: block;
}

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

/* Form Navigation */
.form-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    width: 100%;
}

.form-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    min-width: fit-content;
}

.form-button-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.form-button-secondary {
    background: var(--input-background);
    color: var(--text-color);
}

.form-button-success {
    background: #22C55E;
    color: white;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Podcasts Page Styles */
.podcasts-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.podcasts-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 900;

}

.podcasts-header p {

    position: relative;
    display: inline-block;
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title h2,
.section-title h3 {
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
}


/* Theme specific section title styles */
[data-theme="light"] .section-title h2,
[data-theme="light"] .section-title h3 {
    color: var(--text-primary);
}

[data-theme="light"] .section-title i {
    color: var(--primary-color);
}

[data-theme="dark"] .section-title h2,
[data-theme="dark"] .section-title h3 {
    color: var(--primary-color);
}

[data-theme="dark"] .section-title i {
    color: var(--accent-color);
}

/* Responsive section title styles */
@media (max-width: 768px) {
    .section-title {
        margin-bottom: 2rem;
    }

    .section-title i {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .section-title h2,
    .section-title h3 {
        font-size: 1.75rem;
    }

    .title-underline {
        width: 60px;
    }
}

@media (max-width: 576px) {
    .section-title i {
        font-size: 1.5rem;
    }

    .section-title h2,
    .section-title h3 {
        font-size: 1.5rem;
    }

    .title-underline {
        width: 50px;
        height: 3px;
    }
}



.podcasts-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.podcast-card {
    background: var(--card-background);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.podcast-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.podcast-content {
    padding: 1.5rem;
}

.podcast-content h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.podcast-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.podcast-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.podcast-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.podcast-meta i {
    color: var(--secondary-color);
}

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

.podcast-actions .btn {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.95rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

/* Dark Mode Podcast Styles */
[data-theme="dark"] .podcast-card {
    background: var(--card-background);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .podcast-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .btn-outline {
    border-color: var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .btn-outline:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Responsive Podcast Styles */
@media (max-width: 768px) {
    .podcasts-container {
        padding: 3rem 1.5rem;
    }

    .podcasts-header h1 {
        font-size: 2rem;
    }

    .podcasts-grid {
        grid-template-columns: 1fr;
    }

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

    .podcast-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .podcasts-container {
        padding: 2rem 1rem;
    }

    .podcasts-header h1 {
        font-size: 1.75rem;
    }

    .podcast-image {
        height: 180px;
    }

    .podcast-content {
        padding: 1.25rem;
    }
}

.btn-primary {
    color: #ffffff;
    background-color: #f9820e;
    border-color: #f9820e;
}

.btn-primary:hover {
    background-color: #F4B864;
    border-color: #F4B864;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
    color: #ffffff;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover {
    color: #1E293B;
    background-color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .btn-outline-light {
    color: #F4B864;
    border-color: #F4B864;
}

[data-theme="dark"] .btn-outline-light:hover {
    color: #1E293B;
    background-color: #F4B864;
    border-color: #F4B864;
}

.required::after {
    content: ' *';
    color: red;
}


/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    list-style: none;
}

.page-item {
    display: flex;
    align-items: center;
}

.page-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}
.form-step { display: none; }
.form-step.active { display: block; }
.custom-swal {
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.custom-swal-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.custom-swal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 168, 83, 0.3);
    background: #F4B864;
}
swal2-icon {
    background: transparent !important;
    border: none !important;
}

.swal2-success-ring {
    background: transparent !important;
}

.swal2-success-circular-line-left,
.swal2-success-circular-line-right {
    background-color: transparent !important;
}

.swal2-icon-content {
    color: var(--success-color) !important;
}

#global-loader{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    background: rgba(255,255,255,0.9);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.btn-gradient-primary {
    background: linear-gradient(90deg, #007bff 0%, #00c6ff 100%);
    color: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,123,255,0.4);
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease;
    display: inline-block;
}
.btn-gradient-primary:hover {
    background: linear-gradient(90deg, #0056b3 0%, #009ecf 100%);
    color: white;
}
.btn-gradient-secondary {
    background: linear-gradient(90deg, #ff7e00 0%, #ffb347 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-gradient-secondary:hover {
    background: linear-gradient(90deg, #cc6500 0%, #e68a00 100%);
    color: white;
}



 .concierge-alert-sticky {
     position: sticky;
     top: 94px;
     left: 0;
     right: 0;
     width: 100vw;
     z-index: 500;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0.5rem 1rem;
     background: linear-gradient(135deg, #47494e 0%, #f9820e 100%);
     color: #F8FAFC;
     box-shadow: 0 2px 8px rgba(30, 41, 59, 0.07);
     font-weight: 600;
     font-size: 1.05rem;
     transition: all 0.3s;
     opacity: 0.95;

 }

.concierge-alert-sticky span {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    max-width: 100%;
}

.concierge-alert-sticky a {
    color: #F8FAFC;
    background: #f9820e;
    padding: 0.3em 0.9em;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    transition: background 0.2s;
    white-space: nowrap;
}

.concierge-alert-sticky a:hover {
    background: #1E293B;
}

.concierge-alert-sticky button {
    background: none;
    border: none;
    color: #F8FAFC;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
    position: absolute;
    top: 8px;
    right: 12px;
    margin: 0;
}

.concierge-alert-sticky button:hover {
    opacity: 1;
}



.concierge-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
    box-sizing: border-box;
}

.concierge-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    background: #fff;
    color: #222;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    border: none;
    box-sizing: border-box;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.3s;
}

.concierge-modal-content .card-title {

    margin: 0;
}
.concierge-modal-content::-webkit-scrollbar {
    width: 6px;
}

.concierge-modal-content::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.concierge-modal-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.concierge-modal-content::-webkit-scrollbar-thumb:hover
{
    background: #94a3b8;
}

.concierge-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #f9820e;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 2;
}

.concierge-modal-close:hover {
    opacity: 1;
}


.concierge-modal-horizontal {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    height: auto;
    min-height: auto;
    padding: 0 2rem;
}

.concierge-modal-info {
    width: 100%;
    max-width: none;
    min-width: 0;
    background: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 1rem;
}

.concierge-modal-title {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #f9820e;
    letter-spacing: -1px;
    text-shadow: 0 2px 12px rgba(249, 130, 14, 0.08);
}

.concierge-modal-subtitle {
    color: #475569;
    font-size: clamp(0.9rem, 2.5vw, 1.05rem);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.concierge-modal-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #64748b;
    font-size: clamp(0.9rem, 2.2vw, 1.01rem);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.concierge-modal-benefits li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
    font-size: inherit;
}

.concierge-modal-benefits i {
    font-size: 1.1em;
    opacity: 0.85;
    flex-shrink: 0;
}

/* ===== PLANS CONTAINER ===== */
.concierge-plans-row-horizontal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
    padding: 0 2rem;
    box-sizing: border-box;
}

.plan-badge i {
    font-size: 1.1em;
    margin-right: 0.4em;
    opacity: 0.8;
}

.plan-badge span {
    margin-left: 0.3em;
    font-size: 1.1em;
}

.trial-badge {
    background: #f0f9ff;
    color: #0369a1;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin: 0.5rem 0;
}

/* ===== PLAN FEATURES ===== */
.concierge-modal-content  .plan-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    width: 100%;
    font-size: clamp(0.85rem, 2.2vw, 0.98rem);
    color: #334155;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 250px;
    scrollbar-width: thin;
    scrollbar-color: #f9820e #f3f4f6;
}

.concierge-modal-content  .plan-features::-webkit-scrollbar {
    width: 6px;
    background: #f3f4f6;
    border-radius: 8px;
}

.concierge-modal-content  .plan-features::-webkit-scrollbar-thumb {
    background: #f9820e;
    border-radius: 8px;
}

.concierge-modal-content  .plan-features li {
    margin-bottom: 0.8em;
    font-size: inherit;
    color: #475569;
    line-height: 1.5;
}

.concierge-modal-content  .plan-features .feature-title {
    font-weight: 700;
    color: #222;
    margin-bottom: 0.2em;
    line-height: 1.3;
}

/* ===== DARK THEME ===== */
[data-theme="dark"] .concierge-modal-content {
    background: #23272f;
    color: #f8fafc;
}

[data-theme="dark"]  .concierge-modal-content  .plan-features li {
    color: #cbd5e1;
}

[data-theme="dark"]  .concierge-modal-content  .plan-features .feature-title {
    color: #f8fafc;
}

[data-theme="dark"] .trial-badge {
    background: #1e3a8a;
    color: #93c5fd;
}

[data-theme="dark"] .concierge-modal-subtitle {
    color: #cbd5e1;
}

[data-theme="dark"] .concierge-modal-benefits {
    color: #94a3b8;
}



/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.concierge-modal-content .trial-badge {
    display: inline-block;
    background: linear-gradient(90deg, #f9820e, #f59e0b);
    color: #fff;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    animation: pulse 1.5s infinite ease-in-out;
}

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

.concierge-modal-content .plan-card {
    border: 2px dashed;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color);
    border-radius: 16px;
    background-color: var(--card-bg);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    z-index: 1;
}

.concierge-modal-content .plan-card:hover {
    transform: scale(1.03);
    z-index: 10;
    box-shadow: var(--shadow-lg);
    border: 3px solid;
    border-color: var(--accent-color);

}

.concierge-modal-content .feature-title {
    color: var(--primary-color);
}




.concierge-modal-content .plan-card  .concierge-modal-content  .plan-features {
    min-height: 150px;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}


.concierge-modal-content .plan-summary {
    font-size: 0.85rem;
}

/* Desktop */
@media (min-width: 1024px) {
    .concierge-plans-row-horizontal {
        gap: 2.5rem;
    }

    .concierge-modal-content  .plan-features {
        max-height: 300px;
    }

    .concierge-modal-horizontal {
        gap: 4rem;
        padding: 3rem;
        height: 100vh !important;
        width: 100% !important;
    }

    .concierge-modal-content {
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
    }

    #concierge-modal {
        width: 100vw !important;
        height: 100vh !important;
    }
}


@media (max-width: 768px) {
    .concierge-modal-content .plan-card,
    .concierge-modal-content
    .card-header-section h5 {
        font-size: 1.8rem;
    }


    .concierge-alert-sticky {
        font-size: 0.92rem;
        padding: 0.5rem 0.7rem;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .concierge-modal-horizontal {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
        height: 100vh;
        width: 100%;
        padding: 0 2rem;
    }

    .concierge-modal-content {
        padding: 0;
        align-items: flex-start;
        justify-content: flex-start;
        overflow: hidden;
    }

    .concierge-modal-info {
        flex: 1;
        max-width: 400px;
        text-align: left;
        margin-bottom: 0;
        margin-top: 40px;
    }

    .concierge-plans-row-horizontal {
        flex: 2;
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }

    .concierge-modal-benefits {
        align-items: flex-start;
    }

    .concierge-modal-benefits li {
        justify-content: flex-start;
    }

}


@media (max-width: 576px) {
    .plan-card {
        padding: 1rem;
    }


    .plan-select-button {
        font-size: 14px;
        padding: 10px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .concierge-modal-content {
        padding: 1.5rem 1rem;
        max-width: 100%;
        max-height: none;
        margin: 0.5rem auto;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .concierge-modal-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 1.8rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {


    .concierge-modal-horizontal {
        padding: 1rem;
        gap: 0rem;
        flex-direction: column;
        height: 100vh;
        width: 100%;
    }

    .concierge-modal-content {
        padding: 0;
        align-items: flex-start;
        justify-content: flex-start;
        background: #fff;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }


    .concierge-modal-content  .plan-features {
        max-height: 180px;
        overflow-y: auto;
    }

    .concierge-modal-content .discount-plan {
        font-size: 13px;
    }

    .concierge-modal-content .trial-badge {
        font-size: 12px;
    }

    .concierge-alert-sticky {
        top: 105px;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .concierge-plans-row-horizontal {
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .concierge-modal-content {
        padding: 0;
        background: #fff;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .concierge-modal-horizontal {
        height: 100vh;
        padding: 0.5rem;
    }

    .concierge-modal-content  .plan-features {
        max-height: 150px;
        font-size: 0.8rem;
        overflow-y: auto;
    }

}
.plan-select-button:disabled {
    background-color: #cbd5e1 !important;
    color: #94a3b8 !important;
    border-color: #cbd5e1 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    transition: all 0.2s ease-in-out;
}

.plan-select-button:disabled .loader {
    display: inline-block !important;
}

.swal2-container {
    z-index: 9999 !important;
}
