/*
 * SuperSocialPanel - Complete Dark & Light Theme CSS
 * This single file contains BOTH dark and light themes
 * Theme switching handled by body class: .darkBG or .lightBG
 */

/* ========================================
   GLOBAL STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ========================================
   DARK THEME - Default
   ======================================== */

body.darkBG,
.darkBG {
    background: #0a0a0a;
    color: #ffffff;
}

.darkColor {
    background: #1a1a1a;
}

.lightGrayBG {
    background: #2a2a2a !important;
    border: 1px solid #3a3a3a !important;
}

.white {
    color: #ffffff !important;
}

.textColor {
    color: #a0a0a0 !important;
}

.darkBG .btn-primary {
    background: #FFCE2E;
    color: #000;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.darkBG .btn-primary:hover {
    background: #ffd84d;
    transform: translateY(-2px);
}

.darkBG .btn-danger {
    background: #ff4444;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
}

/* ========================================
   LIGHT THEME
   ======================================== */

body.lightBG,
.lightBG {
    background: #f5f5f5;
    color: #333333;
}

.lightBG .darkColor {
    background: #ffffff;
}

.lightBG .lightGrayBG {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
}

.lightBG .white {
    color: #333333 !important;
}

.lightBG .textColor {
    color: #666666 !important;
}

.lightBG .darkBG {
    background: #ffffff;
}

.lightBG .btn-primary {
    background: #FFCE2E;
    color: #000;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.D-top-section {
    background: transparent;
    padding: 20px 0;
    border-bottom: 1px solid #2a2a2a;
}

.lightBG .D-top-section {
    border-bottom: 1px solid #e0e0e0;
}

.main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.d-logo img {
    height: 45px;
}

.d-navigation-area ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.d-navigation-area ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.d-navigation-area ul li a:hover,
.d-navigation-area ul li a.active {
    color: #FFCE2E;
}

.lightBG .d-navigation-area ul li a {
    color: #666666;
}

.d-user-login-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.d-user-login {
    display: flex;
    gap: 15px;
}

/* Theme Toggle Switch */
.d-round-switch,
.m-round-switch {
    position: relative;
}

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

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

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

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

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

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

.slider .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    transition: opacity 0.3s;
}

.slider .icon.left {
    left: 8px;
    color: #FFCE2E;
}

.slider .icon.right {
    right: 8px;
    color: #666;
}

input:checked + .slider .icon.left {
    opacity: 0.3;
}

input:checked + .slider .icon.right {
    opacity: 1;
    color: #000;
}

/* Mobile Header */
.d-mobile-top-section {
    display: none;
    background: transparent;
    padding: 15px 0;
    border-bottom: 1px solid #2a2a2a;
}

.lightBG .d-mobile-top-section {
    border-bottom: 1px solid #e0e0e0;
}

.d-mobile-top-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-navigation-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-barIcon {
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
}

.lightBG .nav-barIcon {
    color: #333333;
}

/* Mobile Sidebar */
.navigation-sidebar-area {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #1a1a1a;
    transition: left 0.3s ease;
    z-index: 9999;
    padding: 20px;
}

.lightBG .navigation-sidebar-area {
    background: #ffffff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.navigation-sidebar-area.active {
    left: 0;
}

.sidebar-close {
    text-align: right;
    margin-bottom: 20px;
}

.close-icon {
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
}

.lightBG .close-icon {
    color: #333333;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav ul li {
    margin-bottom: 15px;
}

.sidebar-nav ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.sidebar-nav ul li a:hover,
.sidebar-nav ul li a.active {
    background: #2a2a2a;
    color: #FFCE2E;
}

.lightBG .sidebar-nav ul li a {
    color: #666666;
}

.lightBG .sidebar-nav ul li a:hover {
    background: #f5f5f5;
}

/* ========================================
   HERO/LOGIN SECTION
   ======================================== */

.dark-hero-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.lightBG .dark-hero-section {
    background: #f5f5f5;
}

.dark-header-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.dark-header-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.dark-header-button .btn {
    padding: 15px 40px;
    font-size: 18px;
}

/* Login Form */
.login-contact-form-area {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.lightBG .login-contact-form-area {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.login-contact-form-intro {
    text-align: center;
    margin-bottom: 30px;
}

.login-contact-form-intro h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.login-contact-form-row {
    margin-bottom: 20px;
}

.login-contact-form-row input[type="text"],
.login-contact-form-row input[type="email"],
.login-contact-form-row input[type="password"] {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #3a3a3a;
    background: #2a2a2a;
    color: #ffffff;
    font-size: 16px;
}

.lightBG .login-contact-form-row input {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #333333;
}

.login-conscent {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.login-contact-form-row input[type="submit"] {
    width: 100%;
    padding: 15px;
    background: #FFCE2E;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.login-contact-form-row input[type="submit"]:hover {
    background: #ffd84d;
    transform: translateY(-2px);
}

/* Social Login Buttons */
.login-contact-form-apps-area {
    margin-top: 30px;
}

.login-contact-form-apps-divder {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.login-contact-form-apps-divder h2 {
    display: inline-block;
    padding: 0 20px;
    background: #1a1a1a;
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: #666666;
}

.lightBG .login-contact-form-apps-divder h2 {
    background: #ffffff;
}

.login-contact-form-apps-divder:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #2a2a2a;
}

.lightBG .login-contact-form-apps-divder:before {
    background: #e0e0e0;
}

.login-contact-form-apps-button {
    display: flex;
    gap: 15px;
}

.login-contact-form-apps-button button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.googleIcon {
    background: #ffffff;
    color: #333333;
}

.fbIcon {
    background: #1877f2;
    color: #ffffff;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.dark-why-choose-box-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.lightBG .dark-why-choose-box-section {
    background: #ffffff;
}

.dark-whychoose-list {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.lightBG .dark-whychoose-list {
    background: #f5f5f5;
}

.dark-whychoose-list-box {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.dark-whychoose-iconbox {
    text-align: center;
}

.dark-whychoose-icon {
    margin-bottom: 15px;
}

.dark-whychoose-icon img {
    width: 60px;
    height: 60px;
}

.dark-whychoose-iconbox-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #FFCE2E;
}

.dark-whychoose-intro {
    text-align: center;
    margin-bottom: 50px;
}

.dark-whychoose-intro h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.dark-whychoose-intro p {
    font-size: 18px;
    color: #a0a0a0;
}

.whychoose-detail-box {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    transition: transform 0.3s;
}

.whychoose-detail-box:hover {
    transform: translateY(-5px);
}

.lightBG .whychoose-detail-box {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.detail-box-icon img {
    width: 80px;
    height: 80px;
}

.detail-box-content h1 {
    font-size: 24px;
    margin-bottom: 15px;
}

.detail-box-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* ========================================
   DASHBOARD LAYOUT
   ======================================== */

.dark-dashboard-section {
    background: #0a0a0a;
    min-height: 100vh;
}

.lightBG .dark-dashboard-section {
    background: #f5f5f5;
}

.dark-main-wrapper {
    display: flex;
}

.dark-dashboard-navigation-sidebar {
    width: 280px;
    background: #1a1a1a;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 30px 20px;
    overflow-y: auto;
}

.lightBG .dark-dashboard-navigation-sidebar {
    background: #ffffff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
}

.dark-dashboard-logo {
    margin-bottom: 40px;
    text-align: center;
}

.dark-dashboard-logo img {
    max-width: 150px;
}

.dark-dashboard-menu ul {
    list-style: none;
}

.dark-dashboard-menu ul li {
    margin-bottom: 10px;
}

.dark-dashboard-menu ul li a {
    display: block;
    padding: 12px 20px;
    color: #a0a0a0;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.dark-dashboard-menu ul li a:hover,
.dark-dashboard-menu ul li.active a {
    background: #2a2a2a;
    color: #FFCE2E;
}

.lightBG .dark-dashboard-menu ul li a {
    color: #666666;
}

.lightBG .dark-dashboard-menu ul li a:hover {
    background: #f5f5f5;
}

.dark-dashboard-main-container {
    margin-left: 280px;
    width: calc(100% - 280px);
    padding: 20px;
}

.dark-top-area {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lightBG .dark-top-area {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dark-top-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

.dark-price-dropdown select {
    background: #2a2a2a;
    color: #FFCE2E;
    border: 1px solid #3a3a3a;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.lightBG .dark-price-dropdown select {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #FFCE2E;
}

.dark-user-profile-dropdown {
    position: relative;
}

.dark-user-profile-box {
    cursor: pointer;
}

.dark-user-profile-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dark-user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFCE2E;
}

.dark-user-profile-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-top: 10px;
}

.dark-user-profile-box.active .dark-user-profile-nav {
    display: block;
}

.lightBG .dark-user-profile-nav {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dark-user-profile-nav ul {
    list-style: none;
}

.dark-user-profile-nav ul li a {
    display: block;
    padding: 10px 20px;
    color: #a0a0a0;
    text-decoration: none;
}

.dark-user-profile-nav ul li a:hover {
    background: #2a2a2a;
    color: #FFCE2E;
}

.lightBG .dark-user-profile-nav ul li a {
    color: #666666;
}

.lightBG .dark-user-profile-nav ul li a:hover {
    background: #f5f5f5;
}

/* Dashboard Breadcrumb */
.dark-breadcrumb-section {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.lightBG .dark-breadcrumb-section {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Dashboard Overview */
.dark-overview-section {
    margin-bottom: 30px;
}

.dark-overview-box-outline {
    margin-bottom: 20px;
}

.dark-overview-box {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.lightBG .dark-overview-box {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dark-overview-icon img {
    width: 60px;
    height: 60px;
}

.dark-overview-content h2 {
    font-size: 14px;
    margin-bottom: 10px;
}

.dark-overview-content h1 {
    font-size: 32px;
    color: #FFCE2E;
}

/* Dashboard User Data */
.dark-dashboard-user-data {
    margin-bottom: 30px;
}

.dark-user-info {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.lightBG .dark-user-info {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dark-user-label h1 {
    font-size: 14px;
    margin-bottom: 15px;
}

.dark-user-entry {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dark-user-entry img {
    width: 40px;
    height: 40px;
}

.dark-user-entry h3 {
    font-size: 18px;
}

/* Dashboard Mobile Navigation */
.dark-dashboard-mobile-navigation {
    display: none;
    background: #1a1a1a;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.lightBG .dark-dashboard-mobile-navigation {
    background: #ffffff;
}

.dark-dashboard-mobile-menu {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.dark-dashboard-mobile-menu ul {
    display: flex;
    list-style: none;
    gap: 15px;
    white-space: nowrap;
}

.dark-dashboard-mobile-menu ul li a {
    display: block;
    padding: 10px 20px;
    background: #2a2a2a;
    color: #a0a0a0;
    text-decoration: none;
    border-radius: 8px;
}

.dark-dashboard-mobile-menu ul li.active a {
    background: #FFCE2E;
    color: #000;
}

/* Footer */
.sub-footer-section {
    padding: 40px 0;
    border-top: 1px solid #2a2a2a;
    margin-top: 80px;
}

.lightBG .sub-footer-section {
    border-top: 1px solid #e0e0e0;
}

.footer-d-logo img {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-d-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer-d-nav ul li a {
    color: #a0a0a0;
    text-decoration: none;
}

.footer-d-socail ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .dark-dashboard-navigation-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .dark-dashboard-main-container {
        margin-left: 0;
        width: 100%;
    }

    .dark-dashboard-mobile-navigation {
        display: block;
    }
}

@media (max-width: 768px) {
    .D-top-section {
        display: none;
    }

    .d-mobile-top-section {
        display: block;
    }

    .dark-header-content h1 {
        font-size: 28px;
    }

    .dark-whychoose-list-box {
        flex-direction: column;
    }

    .whychoose-detail-box {
        flex-direction: column;
    }

    .footer-d-nav ul {
        flex-wrap: wrap;
    }
}

/* Utility Classes */
.ptb {
    padding: 80px 0;
}

.pb-2 {
    padding-bottom: 20px;
}

.mb-4 {
    margin-bottom: 30px;
}

.mb-5 {
    margin-bottom: 50px;
}

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

.mt-3 {
    margin-top: 20px;
}

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

.overflow-hidden {
    overflow: hidden;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-danger {
    background: #ff4444;
    color: #ffffff;
}

.alert-success {
    background: #00C851;
    color: #ffffff;
}
