/* =============================================
   UzRetro.uz — Custom CSS
   ============================================= */

:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card2: #1a1a1a;
    --border: #2a2a2a;
    --text-muted: #888;
}

* { box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: #e0e0e0;
    overflow-x: hidden;
}

/* -------- NAVBAR -------- */
#mainNav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    padding: 12px 0;
}
#mainNav.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0,123,255,0.1);
}
.navbar-brand .brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}
.brand-dot { color: var(--primary); }
.nav-link { 
    font-weight: 600; 
    color: #ffffff !important; 
    font-size: 0.98rem;
    transition: all 0.2s ease;
    opacity: 0.95;
}
.nav-link:hover { 
    color: #38bdf8 !important; 
    opacity: 1;
}

/* -------- BUTTONS -------- */
.btn-glow {
    box-shadow: 0 0 20px rgba(0,123,255,0.4);
    transition: all 0.3s ease;
    font-weight: 600;
}
.btn-glow:hover {
    box-shadow: 0 0 30px rgba(0,123,255,0.7);
    transform: translateY(-2px);
}
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
}

/* -------- FLASH MESSAGES -------- */
.flash-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

/* -------- HERO -------- */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1b2a 50%, #0a0a1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,123,255,0.15) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top: 100px; }
.hero-badge .badge { font-size: 0.88rem; font-weight: 600; background: rgba(0,123,255,0.2) !important; border: 1px solid rgba(0,123,255,0.5); color: #6cb2ff; }
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.text-gradient {
    background: linear-gradient(90deg, #007bff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle { font-size: 1.15rem; color: #cbd5e1; font-weight: 500; line-height: 1.65; max-width: 620px; margin-bottom: 2rem; }

.stat-item { text-align: center; }
.stat-num { display: block; font-size: 1.9rem; font-weight: 800; color: var(--primary); }
.stat-label { display: block; font-size: 0.78rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.8px; }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #444;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }

/* -------- SECTIONS -------- */
.section-dark { background: var(--bg-card); }
.section-darker { background: #0d0d0d; }
.py-6 { padding-top: 80px; padding-bottom: 80px; }

.section-badge {
    display: inline-block;
    background: rgba(0,123,255,0.1);
    color: var(--primary);
    border: 1px solid rgba(0,123,255,0.3);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.section-subtitle { color: #f1f5f9; font-size: 1.05rem; opacity: 0.9; }

/* Global text-muted override for dark theme */
.text-muted {
    color: #cbd5e1 !important;
}

/* -------- SERVICE CARDS -------- */
.service-card {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    border-color: rgba(0,123,255,0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,123,255,0.1);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,123,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.service-card h5 { color: #fff; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: #888; font-size: 0.9rem; margin-bottom: 15px; }
.service-badge {
    display: inline-block;
    background: rgba(0,123,255,0.15);
    color: #6cb2ff;
    border-radius: 50px;
    padding: 2px 12px;
    font-size: 0.75rem;
    font-weight: 600;
}
.service-badge.popular { background: rgba(40,167,69,0.15); color: #5cb85c; }

/* -------- HOW IT WORKS -------- */
.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0,123,255,0.1);
    border: 2px solid rgba(0,123,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto;
}

/* -------- REVIEWS -------- */
.review-card {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
}
.review-card p { color: #aaa; font-style: italic; }

/* -------- CTA -------- */
.cta-section {
    background: linear-gradient(135deg, #003d7a, #007bff, #003d7a);
    background-size: 200% 200%;
    animation: gradient-shift 6s ease infinite;
}
@keyframes gradient-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* -------- ORDER FORM -------- */
.page-header {
    background: linear-gradient(to bottom, #0d1b2a, #0a0a0a);
    border-bottom: 1px solid var(--border);
}
.order-form-card {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}
.form-section-title {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.form-control-dark {
    background: #111 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    border-radius: 10px;
}
.form-control-dark:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.15) !important;
}
.service-option { cursor: pointer; display: block; }
.service-option input { display: none; }
.service-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 10px;
    background: #111;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    transition: all 0.2s;
    font-size: 0.85rem;
    color: #888;
}
.service-option-content i { font-size: 1.5rem; color: #444; }
.service-option-content:hover { border-color: rgba(0,123,255,0.4); color: #aaa; }
.service-option-content.selected {
    border-color: var(--primary);
    background: rgba(0,123,255,0.1);
    color: #fff;
}
.service-option-content.selected i { color: var(--primary); }

.info-sidebar {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

/* -------- SUCCESS PAGE -------- */
.success-card {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 50px 40px;
}
.success-icon { font-size: 5rem; margin-bottom: 20px; animation: bounce 1s ease; }
.order-info-box {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}

/* -------- FOOTER -------- */
.footer-dark {
    background: #060606;
    border-top: 1px solid var(--border);
}
.footer-dark p,
.footer-dark li,
.footer-dark a,
.footer-dark small {
    color: #f1f5f9 !important;
    font-size: 0.95rem;
    line-height: 1.8;
}
.footer-dark h4,
.footer-dark h6 {
    color: #ffffff !important;
    font-weight: 700;
}
.footer-dark a:hover {
    color: #38bdf8 !important;
}
.footer-dark .border-secondary {
    border-color: #27272a !important;
}


/* -------- ENHANCED ANIMATIONS -------- */

/* Navbar brand shimmer */
.navbar-brand .brand-text {
    position: relative;
    background: linear-gradient(90deg, #fff 40%, #38bdf8 50%, #fff 60%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}
.brand-dot {
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary) !important;
}

/* Enhanced service card hover */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-card:hover {
    border-color: rgba(0,123,255,0.6);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,123,255,0.15);
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

/* Enhanced review card hover */
.review-card {
    transition: all 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,123,255,0.4);
    box-shadow: 0 15px 35px rgba(0,123,255,0.1);
}

/* Step circle pulse on hover */
.step-circle {
    transition: all 0.3s ease;
}
.step-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(0,123,255,0.4);
    background: rgba(0,123,255,0.2);
}

/* Service option selection pulse animation */
.service-option-content {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-option-content.selected {
    animation: selectPulse 0.4s ease;
    border-color: var(--primary);
    background: rgba(0,123,255,0.1);
    color: #fff;
    box-shadow: 0 0 20px rgba(0,123,255,0.3);
}
@keyframes selectPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Enhanced button glow pulse */
.btn-glow {
    animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0,123,255,0.4); }
    50% { box-shadow: 0 0 35px rgba(0,123,255,0.7), 0 0 60px rgba(0,123,255,0.2); }
}

/* Text gradient animation */
.text-gradient {
    background-size: 200% auto;
    animation: textGradient 4s linear infinite;
}
@keyframes textGradient {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Hero section floating particles effect */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

/* Info sidebar smooth appearance */
.info-sidebar {
    transition: all 0.3s ease;
}
.info-sidebar:hover {
    border-color: rgba(0,123,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Page header subtle animation */
.page-header h1 {
    animation: fadeInDown 0.6s ease;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator enhanced */
.scroll-indicator {
    animation: bounce 2s infinite, fadeInOut 2s ease-in-out infinite;
}
@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* -------- FLOATING TELEGRAM BUTTON -------- */
.floating-telegram {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0088cc, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.5);
    transition: all 0.3s ease;
}
.floating-telegram:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.7);
    color: #fff;
}
.floating-telegram-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 136, 204, 0.4);
    animation: telegramPulse 2s ease-in-out infinite;
    pointer-events: none;
}
@keyframes telegramPulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* -------- PRICE CALCULATOR -------- */
.price-calculator {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 123, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    transition: all 0.4s ease;
}
.price-calculator.has-price {
    border-color: rgba(0, 123, 255, 0.6);
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.15);
}
.price-calculator h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.9rem;
}
.price-row .label { color: #aaa; }
.price-row .value { color: #fff; font-weight: 600; }
.price-row.discount .value { color: #ff6b6b; }
.price-row.total {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 1.1rem;
}
.price-row.total .value {
    color: #00d4ff;
    font-weight: 800;
    font-size: 1.2rem;
}
.price-savings {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 10px;
    text-align: center;
    color: #5cb85c;
    font-weight: 600;
    font-size: 0.85rem;
    animation: fadeInUp 0.3s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -------- GALLERY -------- */
.gallery-card {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 123, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.15);
}
.gallery-before-after {
    display: flex;
    position: relative;
}
.gallery-before, .gallery-after {
    flex: 1;
    padding: 30px 20px;
    text-align: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.gallery-before {
    background: rgba(255, 107, 107, 0.05);
    border-right: 1px solid var(--border);
}
.gallery-after {
    background: rgba(0, 212, 255, 0.05);
}
.gallery-before-after .arrow-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}
.gallery-card-body {
    padding: 20px;
}
.gallery-card-body h5 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 5px; }
.gallery-card-body p { color: #888; font-size: 0.85rem; margin: 0; }
.gallery-icon-large {
    font-size: 2.5rem;
    margin-bottom: 8px;
}
.gallery-stats {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
.gallery-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #666;
}
.gallery-stat i { color: var(--primary); }

/* Tariff selector for order page */
.tariff-option { cursor: pointer; display: block; }
.tariff-option input { display: none; }
.tariff-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #111;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #888;
}
.tariff-option-content:hover { border-color: rgba(0,123,255,0.4); color: #aaa; }
.tariff-option-content.selected {
    border-color: var(--primary);
    background: rgba(0,123,255,0.1);
    color: #fff;
    box-shadow: 0 0 20px rgba(0,123,255,0.2);
}
.tariff-option-content .tariff-name { font-weight: 600; flex: 1; }
.tariff-option-content .tariff-price { color: var(--primary); font-weight: 700; }

/* -------- TESTIMONIALS COMPACT -------- */
.testimonial-card-compact {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.testimonial-card-compact:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 123, 255, 0.5);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
}
.t-compact-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.t-compact-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.t-compact-info {
    line-height: 1.2;
}
.t-compact-name {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0;
}
.t-compact-loc {
    color: #888;
    font-size: 0.72rem;
}
.t-compact-stars {
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.t-compact-text {
    color: #cbd5e1;
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 12px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 52px;
}
.t-compact-img-wrap {
    position: relative;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    margin-bottom: 12px;
    background: #000;
}
.t-compact-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}
.t-compact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.t-compact-img-wrap:hover .t-compact-overlay {
    opacity: 1;
}
.t-compact-img-wrap:hover img {
    transform: scale(1.05);
}
.t-compact-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.t-compact-footer .badge {
    font-size: 0.72rem;
    font-weight: 500;
}

/* Modal for review zoom */
.review-modal-content {
    background: #141414;
    border: 1px solid var(--border);
    border-radius: 16px;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .order-form-card { padding: 24px; }
    .success-card { padding: 30px 20px; }
    .py-6 { padding-top: 50px; padding-bottom: 50px; }
    .btn-glow { animation: none; box-shadow: 0 0 15px rgba(0,123,255,0.3); }
    .floating-telegram { width: 52px; height: 52px; font-size: 1.5rem; bottom: 20px; right: 20px; }
    .gallery-before-after { flex-direction: column; }
    .gallery-before { border-right: none; border-bottom: 1px solid var(--border); }
    .gallery-before-after .arrow-divider { top: auto; bottom: -20px; left: 50%; transform: translateX(-50%) rotate(90deg); }
    .testimonial-card-compact { margin-bottom: 8px; }
}

/* =============================================
   THEME TOGGLE BUTTON (KUNDUZGI / KECHKI REJIM)
   ============================================= */
.theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    outline: none;
}
.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(0, 123, 255, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.25);
    color: #fff;
}
.theme-toggle-btn i {
    font-size: 0.95rem;
    transition: transform 0.4s ease;
}
.theme-toggle-btn:hover i {
    transform: rotate(20deg) scale(1.1);
}

/* Kechki (Dark) rejimda: Quyoshcha ko'rinadi (Kunduzgiga o'tish taklifi) */
.theme-icon-sun {
    color: #fbbf24;
    display: inline-block;
}
.theme-icon-moon {
    display: none;
}

/* =============================================
   KUNDUZGI REJIM (LIGHT MODE) STILLARI
   ============================================= */
[data-theme="light"] {
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --bg-card2: #f1f5f9;
    --border: #e2e8f0;
}

[data-theme="light"] body {
    background: #f8fafc;
    color: #334155;
}

/* Navbar */
[data-theme="light"] #mainNav {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .navbar-brand .brand-text {
    color: #0f172a;
    background: linear-gradient(90deg, #0f172a 40%, #007bff 50%, #0f172a 60%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
}
[data-theme="light"] .nav-link {
    color: #1e293b !important;
    font-weight: 600;
}
[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
    color: #007bff !important;
}
[data-theme="light"] .navbar-toggler {
    border-color: #cbd5e1;
}
[data-theme="light"] .navbar-toggler-icon {
    filter: invert(0.85);
}

/* Theme Toggle Button in Light Mode */
[data-theme="light"] .theme-toggle-btn {
    border: 1px solid #cbd5e1;
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 600;
}
[data-theme="light"] .theme-toggle-btn:hover {
    background: #e2e8f0;
    border-color: #007bff;
    color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
}
[data-theme="light"] .theme-icon-sun {
    display: none;
}
[data-theme="light"] .theme-icon-moon {
    display: inline-block;
    color: #3b82f6;
}

/* Typography & Sarlavhalar (High Contrast & Clear) */
[data-theme="light"] p {
    color: #334155;
    font-weight: 500;
}
[data-theme="light"] .text-white {
    color: #0f172a !important;
}
[data-theme="light"] h1, 
[data-theme="light"] h2, 
[data-theme="light"] h3, 
[data-theme="light"] h4, 
[data-theme="light"] h5, 
[data-theme="light"] h6 {
    color: #0f172a;
    font-weight: 700;
}
[data-theme="light"] .text-muted {
    color: #475569 !important;
    font-weight: 500;
}
[data-theme="light"] .text-light {
    color: #1e293b !important;
}
[data-theme="light"] .section-title {
    color: #0f172a;
    font-weight: 800;
}
[data-theme="light"] .section-subtitle {
    color: #475569;
    font-weight: 500;
    font-size: 1.05rem;
}
[data-theme="light"] .service-features li,
[data-theme="light"] .price-features li {
    color: #0f172a !important;
    font-weight: 500;
}
[data-theme="light"] .price-section-label {
    color: #475569 !important;
    font-weight: 600;
}
[data-theme="light"] .border-secondary {
    border-color: #e2e8f0 !important;
}

/* Bo'limlar foni */
[data-theme="light"] .section-dark {
    background: #ffffff;
}
[data-theme="light"] .section-darker {
    background: #f8fafc;
}
[data-theme="light"] .page-header {
    background: linear-gradient(to bottom, #edf2f7, #f8fafc);
    border-bottom: 1px solid #e2e8f0;
}

/* Hero Section */
[data-theme="light"] .hero-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 50%, #f8fafc 100%);
}
[data-theme="light"] .hero-section::before {
    background: radial-gradient(circle, rgba(0,123,255,0.08) 0%, transparent 70%);
}
[data-theme="light"] .hero-section::after {
    background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 70%);
}
[data-theme="light"] .hero-overlay {
    background: linear-gradient(to right, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.3) 100%);
}
[data-theme="light"] .hero-title {
    color: #0f172a;
    font-weight: 800;
}
[data-theme="light"] .hero-subtitle {
    color: #334155 !important;
    font-weight: 500;
    font-size: 1.15rem;
    line-height: 1.65;
}
[data-theme="light"] .hero-badge .badge {
    background: rgba(0,123,255,0.12) !important;
    border: 1px solid rgba(0,123,255,0.35);
    color: #0056b3 !important;
    font-weight: 600;
    font-size: 0.88rem;
}
[data-theme="light"] .stat-num {
    color: #007bff !important;
    font-weight: 800;
}
[data-theme="light"] .stat-label {
    color: #475569 !important;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
}

/* Kartalar */
[data-theme="light"] .service-card,
[data-theme="light"] .review-card,
[data-theme="light"] .info-sidebar,
[data-theme="light"] .order-form-card,
[data-theme="light"] .success-card,
[data-theme="light"] .price-card,
[data-theme="light"] .contact-card-row,
[data-theme="light"] .directions-box,
[data-theme="light"] .service-visual,
[data-theme="light"] .faq-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .service-card:hover,
[data-theme="light"] .review-card:hover,
[data-theme="light"] .price-card:hover {
    border-color: rgba(0, 123, 255, 0.4) !important;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.1);
}
[data-theme="light"] .service-card h5,
[data-theme="light"] .review-card h5,
[data-theme="light"] .faq-question {
    color: #0f172a;
}
[data-theme="light"] .service-card p,
[data-theme="light"] .review-card p,
[data-theme="light"] .faq-answer {
    color: #475569;
}
[data-theme="light"] .step-circle {
    background: rgba(0, 123, 255, 0.08);
    border-color: rgba(0, 123, 255, 0.3);
    color: #007bff;
}

/* Mijozlar fikri (Testimonials Compact) */
[data-theme="light"] .testimonial-card-compact {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .t-compact-name {
    color: #0f172a;
}
[data-theme="light"] .t-compact-text {
    color: #334155;
}
[data-theme="light"] .t-compact-img-wrap {
    border-color: #e2e8f0;
    background: #f1f5f9;
}
[data-theme="light"] .review-modal-content {
    background: #ffffff;
    border-color: #e2e8f0;
}
[data-theme="light"] .review-modal-content .modal-title {
    color: #0f172a !important;
}
[data-theme="light"] .review-modal-content .btn-close {
    filter: none;
}


/* Buyurtma formasi va maydonlar */
[data-theme="light"] .form-control-dark {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
}
[data-theme="light"] .form-control-dark:focus {
    border-color: #007bff !important;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15) !important;
}
[data-theme="light"] .form-label {
    color: #1e293b !important;
}
[data-theme="light"] .form-section-title {
    color: #0f172a;
    border-bottom: 1px solid #e2e8f0;
}
[data-theme="light"] .service-option-content,
[data-theme="light"] .tariff-option-content {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #475569;
}
[data-theme="light"] .service-option-content:hover,
[data-theme="light"] .tariff-option-content:hover {
    border-color: rgba(0, 123, 255, 0.4);
    color: #0f172a;
}
[data-theme="light"] .service-option-content.selected,
[data-theme="light"] .tariff-option-content.selected {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.06);
    color: #007bff;
}
[data-theme="light"] .price-calculator {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.06), rgba(0, 212, 255, 0.03));
    border-color: rgba(0, 123, 255, 0.25);
}
[data-theme="light"] .price-calculator h6 {
    color: #0f172a;
}
[data-theme="light"] .price-row .label {
    color: #64748b;
}
[data-theme="light"] .price-row .value {
    color: #0f172a;
}
[data-theme="light"] .price-row.total {
    border-top: 1px solid #e2e8f0;
}
[data-theme="light"] .price-row.total .value {
    color: #007bff;
}
[data-theme="light"] .order-info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

/* Pricing Page Elements */
[data-theme="light"] .price-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
[data-theme="light"] .price-name {
    color: #0f172a;
}
[data-theme="light"] .price-amount {
    color: #007bff;
}
[data-theme="light"] .price-period {
    color: #64748b;
}
[data-theme="light"] .price-body {
    background: #ffffff;
}
[data-theme="light"] .price-features li {
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}
[data-theme="light"] .price-footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
[data-theme="light"] .price-popular {
    border-color: #007bff !important;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.12) !important;
}
[data-theme="light"] .price-popular .price-header {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.08), rgba(0, 212, 255, 0.08));
}
[data-theme="light"] .price-note {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
}

/* Contact Page Elements */
[data-theme="light"] .contact-label {
    color: #64748b;
}
[data-theme="light"] .contact-value {
    color: #0f172a;
}
[data-theme="light"] .direction-item {
    color: #334155;
}

/* Buttons in Light Mode */
[data-theme="light"] .btn-outline-light {
    color: #0f172a !important;
    border: 1.5px solid #cbd5e1 !important;
    background: #ffffff !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .btn-outline-light:hover {
    background: #0f172a !important;
    color: #ffffff !important;
    border-color: #0f172a !important;
}

/* Footer in Light Mode */
[data-theme="light"] .footer-dark {
    background: #0f172a;
    border-top: 1px solid #1e293b;
}
[data-theme="light"] .footer-dark p,
[data-theme="light"] .footer-dark li,
[data-theme="light"] .footer-dark a,
[data-theme="light"] .footer-dark small {
    color: #e2e8f0 !important;
}
[data-theme="light"] .footer-dark h4,
[data-theme="light"] .footer-dark h6 {
    color: #ffffff !important;
}
[data-theme="light"] .footer-dark .border-secondary {
    border-color: #1e293b !important;
}


