/* Light Blue Dashboard CSS - Based on Flatlogic application.css */
:root {
    --primary-color: #2477FF;
    --secondary-color: #4179CF;
    --success-color: #2D8515;
    --danger-color: #d04f4f;
    --warning-color: #E49400;
    --info-color: #4179CF;
    --light-color: #F7FAFC;
    --dark-color: #535C63;
    
    --sidebar-width: 220px;
    --topbar-height: 60px;
    
    --text-primary: #f8f8f8;
    --text-secondary: #d2d2d2;
    --border-color: rgba(51, 51, 51, 0.3);
    
    --sidebar-bg: transparent;
    /*--sidebar-hover: rgba(0, 0, 0, 0.07);
    --sidebar-active: rgba(0, 0, 0, 0.07);*/
    --sidebar-hover: #FF6600;
    --sidebar-active: #FF6600;
    
    /*--widget-bg: rgba(51, 51, 51, 0.425);*/
    --widget-bg: #14141ef2;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-primary);
    background-color: #535C63;
    padding-bottom: 100px;
}

/* ===== LANDING PAGE ===== */
.landing-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow-x: hidden;
    padding-bottom: 0;
}

.landing-topbar {
    background: rgba(10, 10, 10, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
}

.landing-topbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 30px rgba(255, 102, 0, 0.2);
    padding: 12px 0;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

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

.landing-logo {
    color: white;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.landing-logo:hover {
    transform: scale(1.05);
}

.landing-logo i {
    font-size: 32px;
    color: #ff6600;
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.5));
}

.topbar-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6600, #ffa500);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ff6600;
}

.nav-link:hover::after {
    width: 100%;
}

.language-selector {
    padding: 10px 16px;
    background: rgba(255, 102, 0, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 102, 0, 0.3);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.language-selector:hover {
    background: rgba(255, 102, 0, 0.2);
    border-color: #ff6600;
}

.btn-login {
    padding: 12px 28px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
    background: linear-gradient(135deg, #ff8800 0%, #ffaa00 100%);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    padding: 100px 32px 10px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ff6600, #ff8800);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ffaa00, #ffcc00);
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6600, #cc5500);
    top: 50%;
    right: 5%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

.hero-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px 60px;
    align-items: start;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 102, 0, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    color: #ffaa00;
    font-size: 16px;
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.gradient-text {
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 50%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.3));
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
    color: #e0e0e0;
}

.hero-subtitle p {
    margin-bottom: 12px;
}

.hero-subtitle p:last-child {
    margin-bottom: 0;
}

.hero-subtitle br {
    display: block;
    content: "";
    margin-top: 8px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 0px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 102, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(255, 102, 0, 0.15);
    border-color: rgba(255, 102, 0, 0.4);
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 28px;
    color: #ff6600;
    min-width: 40px;
    text-align: center;
}

.stat-icon i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.stat-info {
    text-align: left;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6600, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.3));
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
    color: #d0d0d0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease 0.8s both;
    margin-bottom: 0;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    animation: fadeInRight 1s ease 0.4s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slider-container {
    background: rgba(20, 20, 20, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 102, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.15), transparent 60%);
    pointer-events: none;
}

.slider-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
    height: 100%;
    position: relative;
    z-index: 1;
}

.slide-icon {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #ff6600, #ff8800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    margin-bottom: 12px;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.slide-icon.has-image {
    width: 100%;
    height: 180px;
    background: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slide-icon .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Animation removed for cleaner look */

.slide-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.slide-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.slide-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

.slide-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #ff6600, #ff8800);
    color: white;
    font-size: 10px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
    margin-top: 4px;
    align-self: flex-start;
}

.slider-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: all;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 102, 0, 0.6);
    color: #ff6600;
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    position: absolute;
    top: 198px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
    pointer-events: all;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dot.active {
    background: #ff6600;
    border-color: #ff6600;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.4);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.landing-page .btn {
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.landing-page .btn-primary {
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.landing-page .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.landing-page .btn-primary:hover::before {
    left: 100%;
}

.landing-page .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.6);
    background: linear-gradient(135deg, #ff7700 0%, #ff9900 100%);
}

.landing-page .btn-glass {
    background: rgba(255, 102, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 102, 0, 0.5);
}

.landing-page .btn-glass:hover {
    background: rgba(255, 102, 0, 0.25);
    border-color: #ff6600;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.pulse-animation {
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 102, 0, 0.6);
    }
}

.landing-page .btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

.landing-page .btn-block {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-icon {
    font-size: 24px;
    color: #ff6600;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6600, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.3));
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
    color: #d0d0d0;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 102, 0, 0.5), transparent);
}

/* Features Section */
.features-section {
    padding: 100px 32px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.landing-features-section {
    padding: 40px 32px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.lang_selector_options {
    background: rgba(69, 69, 69, 0.498) !important;
    border: 1px solid rgba(255, 102, 0, 0.3) !important;
    color: white !important;
}

.landing-section-header {
    text-align: center;
    margin-bottom: 0px !important;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.5), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 102, 0, 0.15);
    border: 1px solid rgba(255, 102, 0, 0.4);
    border-radius: 50px;
    color: #ff6600;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px 30px;
    border-radius: 20px;
    background: rgba(20, 20, 20, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 170, 0, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.card-animated {
    animation: fadeInScale 0.6s ease both;
}

.card-animated:nth-child(1) { animation-delay: 0.1s; }
.card-animated:nth-child(2) { animation-delay: 0.2s; }
.card-animated:nth-child(3) { animation-delay: 0.3s; }
.card-animated:nth-child(4) { animation-delay: 0.4s; }
.card-animated:nth-child(5) { animation-delay: 0.5s; }
.card-animated:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 102, 0, 0.6);
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.3);
}

.feature-icon-wrapper {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.feature-image {
    width: 100%;
    max-width: 100%;
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.orange-gradient {
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.yellow-gradient {
    background: linear-gradient(135deg, #ffaa00 0%, #ffcc00 100%);
    box-shadow: 0 10px 30px rgba(255, 170, 0, 0.4);
}

.red-gradient {
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.4);
}

.orange-alt-gradient {
    background: linear-gradient(135deg, #ff8800 0%, #ffaa00 100%);
    box-shadow: 0 10px 30px rgba(255, 136, 0, 0.4);
}

.dark-gradient {
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
    border: 2px solid #ff6600;
}

.yellow-alt-gradient {
    background: linear-gradient(135deg, #ffcc00 0%, #ffdd00 100%);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.4);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.feature-card > p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.feature-list li i {
    color: #ffaa00;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-link {
    color: #ffaa00;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: #ff6600;
    border-bottom-color: #ff6600;
}

/* ===== LOGIN PAGE ===== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #535C63;
    padding: 20px;
}

.login-card {
    background: var(--widget-bg);
    border-radius: 3px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 50px 40px;
    width: 100%;
    max-width: 450px;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h2 {
    font-size: 28px;
    color: #f8f8f8;
    margin-bottom: 10px;
    font-weight: 300;
}

.login-header p {
    color: #d2d2d2;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #f8f8f8;
    font-weight: 300;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
    background-color: #fff;
    color: #333;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: inset 0 0 3px rgba(36, 119, 255, 0.3);
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #f8f8f8;
}

.form-check input {
    margin-right: 8px;
}

.form-check label {
    color: #f8f8f8;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #005bf0;
}

.btn-primary:active,
.btn-primary:focus {
    background: #004dcc;
}

.login-footer {
    margin-top: 20px;
    text-align: center;
}

.login-footer a {
    color: #a4c6ff;
    text-decoration: none;
}

.login-footer a:hover {
    color: #5797ff;
}

.login-footer .language-selector {
    padding: 8px 15px;
    background: #14141ef2;
    border: 1px solid var(--border-color);
    color: #f8f8f8;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

/* Demo credentials box  */
.mt-3 {
    margin-top: 1rem;
}

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

.demo-credentials {
    padding: 15px;
    background: rgba(36, 119, 255, 0.1);
    border-radius: 3px;
    font-size: 12px;
    color: #f8f8f8;
    border: 1px solid rgba(36, 119, 255, 0.3);
}

.demo-credentials strong {
    color: #f8f8f8;
}

.demo-credentials code {
    background: #14141ef2;
    padding: 2px 6px;
    border-radius: 3px;
    color: #2477FF;
    font-family: monospace;
}

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

.alert-danger {
    background: rgba(242, 99, 73, 0.29);
    color: #f8f8f8;
    border: 1px solid rgba(239, 58, 25, 0.29);
}

.alert-success {
    background: rgba(214, 233, 198, 0.28);
    color: #f8f8f8;
    border: 1px solid rgba(188, 219, 161, 0.28);
}

/* ===== DASHBOARD LAYOUT ===== */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    /*width: 220px;*/
    max-width: 240px;
    background: #14141ef2; /*transparent;*/
    position: fixed;
    height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 999;
    margin: 0;
    padding: 10px 0;
    color: #ffffff;
    font-weight: 300;
    left: 25px;
    top: 80px;
    transition: transform 0.3s ease, opacity 0.3s ease;
        border-radius: 6px !important;
}

/* Sidebar collapsed state */
.sidebar.collapsed {
    transform: translateX(-280px);
    opacity: 0;
    pointer-events: none;
}

/* Custom scrollbar for webkit browsers */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sidebar-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-logo {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.03);
}
/*
.menu-item {
    position: relative;
    list-style: none;
    margin-bottom: 2px;
}*/

.menu-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
    position: relative;
    border-left: 3px solid transparent;
}

.menu-link:hover {
    background: rgba(255, 102, 0, 0.2);
    border-left-color: #FF6600;
    text-decoration: none;
    color: #ffffff;
}

.menu-link.active,
.menu-item.active > .menu-link {
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.65), rgba(255, 102, 0, 0.1));
    border-left-color: #FF6600;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
}

.menu-link i {
    width: 20px;
    margin-right: 10px;
    font-size: 14px;
    opacity: 0.7;
    text-align: center;
    flex-shrink: 0;
}

.menu-text {
    flex: 1;
}

.badge {
    border-radius: 10px;
    /*padding: 2px 8px;
    font-size: 11px;*/
    font-weight: 600;
    margin-left: 5px;
}

.badge-primary {
    background: var(--primary-color);
    color: white;
}

.badge-success {
    background: var(--success-color);
    color: white;
}

/*.badge-warning {
    background: var(--warning-color);
    color: white;
}*/

.badge-warning {
    background: rgba(240, 173, 78, 0.3);
    color: #f0ad4e;
    border: 1px solid rgba(240, 173, 78, 0.5);
}

.badge-danger {
    background: var(--danger-color);
    color: white;
}

.submenu-icon {
    width: auto !important;
    margin-right: 0 !important;
    margin-left: 5px;
    opacity: 0.5 !important;
    font-size: 12px !important;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.has-submenu.open > .menu-link > .submenu-icon {
    transform: rotate(180deg);
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.has-submenu.open > .submenu {
    max-height: 1000px !important;
    opacity: 1 !important;
}

.submenu .menu-item {
    margin-bottom: 0;
}

.submenu .menu-link {
    padding: 8px 20px;
    padding-left: 50px;
    font-size: 12px;
}

.submenu .submenu .menu-link {
    padding-left: 70px;
}

.menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 20px;
    list-style: none;
}

.main-content {
    margin-left: 245px;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: margin-left 0.3s ease;
}

/* Main content when sidebar collapsed */
.main-content.expanded {
    margin-left: 0px;
}


.topbar {
    height: var(--topbar-height);
    background: var(--widget-bg);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px !important;
    position: sticky;
    top: 10px;
    z-index: 998;
    border-radius: 6px;
    margin: 0 2.5641%;
    margin-left: 0px;
    margin-right: 20px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-title {
    font-size: 22px;
    font-weight: 300;
    color: var(--text-primary);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-dropdown {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: #14141ef2;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-primary);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
    color: var(--text-primary);
}

.user-menu:hover {
    background: rgba(0, 0, 0, 0.07);
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.content-wrapper {
    padding: 25px 2.5641%;
    padding-top: 20px !important;
    flex: 1;
    position: relative;
    max-width: none;
    width: auto;
}

.page-header {
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.breadcrumb {
    display: flex;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.card {
    background: var(--widget-bg);
    border-radius: 3px;
    padding: 12px 17px;
    color: var(--text-primary);
    margin-bottom: 30px;
    position: relative;
}

.card-header {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--widget-bg);
    border-radius: 3px;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
}

.stat-card.success {
    border-left-color: var(--success-color);
}

.stat-card.warning {
    border-left-color: var(--warning-color);
}

.stat-card.danger {
    border-left-color: var(--danger-color);
}

.stat-value {
    font-size: 32px;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Landing Page Mobile */
    .landing-topbar .topbar-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex !important;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        padding: 10px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 20px;
    }

    .hero-section {
        padding: 120px 20px 60px;
        min-height: 0;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-title {
        font-size: 36px !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .slider-container {
        padding: 20px 15px;
    }

    .slider-wrapper {
        height: 240px;
    }

    .slide-icon {
        width: 100%;
        height: 140px;
        font-size: 50px;
        margin-bottom: 10px;
    }
    
    .slide-icon.has-image {
        width: 100%;
        height: 140px;
    }

    .slide-text-wrapper {
        gap: 5px;
    }

    .slide-content h3 {
        font-size: 16px;
    }

    .slide-content p {
        font-size: 12px;
    }

    .shape {
        width: 200px !important;
        height: 200px !important;
    }

    .features-section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 32px !important;
    }

    .section-subtitle {
        font-size: 16px !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .login-modal {
        width: 95%;
        margin: 20px;
        border-radius: 16px;
    }

    .login-modal-header {
        padding: 40px 24px 20px;
    }

    .login-modal-form {
        padding: 0 24px 40px;
    }

    .modal-body {
        padding: 20px;
    }

    /* Dashboard Mobile */
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        margin: 90px 5%;
        width: 90%;
        padding: 0;
        border-radius: 6px !important;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    body {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mt-3 {
    margin-top: 1rem;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 300;
    transition: all 0.3s;
}

/* Sidebar toggle button */
#sidebarToggle {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 999;
}

#sidebarToggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

#sidebarToggle i {
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #1a5acc;
}

.btn-secondary {
    background: #666;
    color: white;
}

.btn-secondary:hover {
    background: #4d4d4d;
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #1e590e;
}

.btn-danger {
    /*background: var(--danger-color);
    color: white;*/
    background: rgba(192, 26, 54, 0.156) !important;
    color: #c01a36ff !important;
    border: 1px solid rgba(192, 26, 54, 0.599) !important;
}

.btn-danger:hover {
    background: rgba(192, 26, 54, 0.536) !important;
    color: white !important;
}

.btn-sm :hover {
    background: #2477ff7a !important;
    color: white !important;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.table th {
    background: #14141ef2;
    font-weight: 300;
    color: var(--text-primary);
}

.badge {
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

.badge-primary {
    background: rgba(36, 119, 255, 0.2);
    color: #2477FF;
}

.badge-success {
    background: rgba(45, 133, 21, 0.2);
    color: #6de74b;
}

.badge-danger {
    background: rgba(208, 79, 79, 0.2);
    color: #d04f4f;
}

/* ===== LOGO ===== #14141ef2 */
.logo {
    position: fixed;
    left: 25px;
    top: 10px;/*17px;*/
    width: 240px;
    z-index: 1001;
    padding: 5px 20px;
    background: #14141ef2;
    border-radius: 6px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Logo collapsed state - hide it when sidebar is collapsed */
body:has(.sidebar.collapsed) .logo {
    transform: translateX(-280px);
    opacity: 0;
    pointer-events: none;
}

.logo a {
    color: #ffffff;
    text-decoration: none;
    font-weight: normal;
    display: block;
    text-align: center;
}

.logo strong {
    color: #ffffff;
    font-size: 18px;
}

.logo .app-logo {
    max-height: 50px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ===== LINKS ===== */
a {
    color: #a4c6ff;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #FF6600;
    text-decoration: underline;
}

/* ===== WIDGET CONTROLS ===== */
.widget-controls {
    position: absolute;
    top: 12px;
    right: 17px;
    font-size: 12px;
    word-spacing: 1px;
}

.widget-controls > a,
.widget-controls > span {
    padding: 1px 4px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.15s ease-in-out;
}

.widget-controls > a:hover {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

/* ===== INPUTS ===== */
input[type=search],
input.search {
    padding-left: 26px;
    background-color: #fff;
}

input[type=search].input-transparent,
input.search.input-transparent {
    border: none;
    color: #f8f8f8;
    background: rgba(51, 51, 51, 0.425);
}

input[type=search].input-transparent::placeholder,
input.search.input-transparent::placeholder {
    color: rgba(238, 238, 238, 0.76);
}

/* ===== LANDING PAGE FOOTER ===== */
.landing-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 32px 24px;
    position: relative;
    overflow: hidden;
}

.landing-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.8), transparent);
}

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

.footer-column {
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 28px;
    color: #ff6600;
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.5));
}

.footer-column h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #ff6600, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6600, #ffaa00);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::before {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 102, 0, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== LOGIN MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.modal-overlay.active {
    display: flex;
}

.login-modal {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.98));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 102, 0, 0.4);
    border-radius: 24px;
    width: 90%;
    max-width: 460px;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 30px 90px rgba(255, 102, 0, 0.3);
    overflow: hidden;
}

.login-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.15), transparent 70%);
    pointer-events: none;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 102, 0, 0.15);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 102, 0, 0.3);
    color: #ff6600;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 102, 0, 0.3);
    transform: rotate(90deg);
    border-color: #ff6600;
}

.login-modal-header {
    padding: 50px 40px 30px;
    text-align: center;
    position: relative;
}

.login-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6600, #ff8800);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
}

.login-modal-header h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.login-modal-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 0;
}

.login-modal-form {
    padding: 0 40px 50px;
    position: relative;
}

.login-modal-form .form-group {
    margin-bottom: 24px;
}

.login-modal-form .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-modal-form .form-label i {
    color: #ff6600;
    font-size: 16px;
}

.login-modal-form .form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 102, 0, 0.05);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    transition: all 0.3s;
}

.login-modal-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.login-modal-form .form-control:focus {
    outline: none;
    background: rgba(255, 102, 0, 0.1);
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

.login-modal-form .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.login-modal-form .form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ff6600;
}

.login-modal-form .form-check label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    cursor: pointer;
}

.login-modal-form .btn-block {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6600, #ff8800);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.login-modal-form .btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.6);
    background: linear-gradient(135deg, #ff7700, #ff9900);
}

/* Contact Modal */
.contact-modal {
    max-width: 600px;
    width: 90%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

.contact-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #ff9900, #ff6600);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

.contact-modal-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), transparent);
}

.contact-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff6600, #ff9900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    animation: pulse 2s infinite;
}

.contact-modal-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

.contact-modal-header p {
    color: #999;
    font-size: 15px;
    margin: 0;
}

.contact-modal-form {
    padding: 0 30px 30px;
}

.contact-modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-modal-form .form-group {
    margin-bottom: 20px;
}

.contact-modal-form .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-modal-form .form-label i {
    color: #ff6600;
    font-size: 14px;
}

.contact-modal-form .form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 14px;
    transition: all 0.3s;
}

.contact-modal-form .form-control:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.contact-modal-form .form-control::placeholder {
    color: #666;
}

.contact-modal-form textarea.form-control {
    resize: vertical;
    font-family: inherit;
    min-height: 100px;
}

.contact-modal-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.contact-modal-form .form-check input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ff6600;
}

.contact-modal-form .form-check label {
    color: #e0e0e0;
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}

.contact-modal-form .form-message {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: none;
    animation: slideDown 0.3s ease;
}

.contact-modal-form .form-message.success {
    display: block;
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #28a745;
}

.contact-modal-form .form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #dc3545;
}

.contact-modal-form .btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6600, #ff9900);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
}

.contact-modal-form .btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.6);
}

.contact-modal-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-modal-form .btn-submit.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-modal-form .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-modal-body {
    padding: 0 30px 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
    background: rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.3);
    transform: translateX(5px);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6600, #ff9900);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.contact-info h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 8px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info a:hover {
    color: #ff6600;
    transform: translateX(5px);
}

.contact-info p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 102, 0, 0.6);
    }
}

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

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.modal-body {
    padding: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(51, 51, 51, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(51, 51, 51, 0.8);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

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

/* ===== HEADINGS ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    color: var(--text-primary);
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
    color: #d2d2d2;
    font-weight: 300;
}

