:root {
    /* Kokand Telecom Corporate Colors (Cyan & Yellow) */
    --brand-red: #12AEE4; /* Retained CSS variable name to modify entire site theme easily */
    --brand-red-hover: #37C2F2;
    --brand-dark-red: #088AB8;
    
    --bg-darker: #050505;
    --bg-dark: #121212;
    --bg-card: #1C1C1E;
    --bg-card-hover: #2A2A2D;
    
    --text-white: #FFFFFF;
    --text-muted: #A1A1AA;
    --text-dark: #18181B;
    
    --border-color: rgba(255, 255, 255, 0.1);
    
    --gradient-red: linear-gradient(135deg, #12AEE4 0%, #088AB8 100%);
    --gradient-dark: linear-gradient(180deg, rgba(18,18,18,0) 0%, #050505 100%);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.3);
    --shadow-lg: 0 20px 40px rgba(18, 174, 228, 0.15);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-darker);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-name, .hero-title, .section-title {
    font-family: var(--font-heading);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--brand-cyan);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-red);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--brand-red);
}

.text-green { color: #10B981; }
.text-red { color: #EF4444; }
.text-center { text-align: center; }

/* Top Bar */
.top-bar {
    background-color: var(--brand-red);
    color: var(--text-white);
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-contacts, .top-links {
    display: flex;
    gap: 20px;
}
.top-contacts a:hover, .top-links a:hover {
    opacity: 0.8;
}

/* Navbar */
.navbar {
    background: rgba(10, 10, 12, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 8, 0.85);
    box-shadow: 0 4px 30px rgba(0,0,0,0.8);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    font-size: 28px;
    color: var(--brand-red);
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}
.brand-sub {
    font-size: 11px;
    font-family: var(--font-body);
    color: var(--brand-red);
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
}
.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    color: var(--text-muted);
}
.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background-color: var(--brand-red);
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-action {
    display: flex;
    align-items: center;
    gap: 15px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--brand-red);
    color: white;
}
.btn-primary:hover {
    background: var(--brand-red-hover);
    box-shadow: 0 0 15px rgba(18, 174, 228, 0.4);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border-color: var(--brand-red);
    color: var(--text-white);
}
.btn-outline:hover {
    background: var(--brand-red);
    color: white;
}
.btn-outline-dark {
    background: transparent;
    border-color: var(--border-color);
    color: white;
}
.btn-outline-dark:hover {
    border-color: var(--brand-red);
}
.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}
.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(18,174,228,0.2) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(200,30,50,0.15) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: bgMove 12s ease-in-out infinite alternate;
    z-index: -2;
}

@keyframes bgMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PGRlZnM+PHBhdHRlcm4gaWQ9InBhdHRlcm4iIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTTAgNDBoNDBWMEgwem0yMCAwYTIwIDIwIDAgMTAwLTQwIDIwIDIwIDAgMDAwIDQweiIgZmlsbD0icmdiYSgxMDAsMTAwLDEwMCwwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==') repeat;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(18, 174, 228, 0.1);
    color: var(--brand-red);
    border: 1px solid rgba(18, 174, 228, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
}
.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}
.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Speed Mockup */
.speed-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}
.speed-card::before {
    content:'';
    position:absolute; top:-1px; left:-1px; right:-1px; height: 3px;
    background: var(--gradient-red);
    border-radius: 12px 12px 0 0;
}
.speed-header {
    display: flex;
    justify-content: center;
    font-weight: 500;
    margin-bottom: 30px;
}
.speed-display {
    text-align: center;
    margin-bottom: 40px;
}
.speed-value {
    font-size: 5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
    color: var(--text-white);
}
.speed-unit {
    display: block;
    font-size: 1.2rem;
    color: var(--brand-red);
    font-weight: 700;
}
.bar-group { margin-bottom: 20px; }
.bar-title { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px;}
.progress-wrap {
    width: 100%; height: 8px;
    background: #2A2A2D;
    border-radius: 4px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    border-radius: 4px;
    background: var(--gradient-red);
    width: 0%;
    transition: width 2s cubic-bezier(0.1, 0.8, 0.2, 1);
}
.progress-bar.download { width: 95%; }
.progress-bar.upload { width: 88%; }
.ping-rate {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
}

/* Sections */
.services, .tariffs {
    padding: 100px 0;
    position: relative;
}
.services { background-color: var(--bg-dark); }
.tariffs { background-color: var(--bg-darker); }

.section-title-wrap {
    margin-bottom: 60px;
}
.section-title-wrap.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sub-heading {
    color: var(--brand-red);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
    font-weight: 800;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.feature-card {
    background: rgba(30, 30, 35, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px 30px;
    border-radius: 12px;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(18, 174, 228, 0.5);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.icon-box {
    width: 60px; height: 60px;
    background: rgba(18, 174, 228, 0.1);
    color: var(--brand-red);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}
.feature-card:hover .icon-box {
    background: var(--brand-red);
    color: white;
}
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Tariffs */
.tariff-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    background: var(--bg-card);
    padding: 6px;
    border-radius: 8px;
    width: max-content;
    margin-inline: auto;
}
.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.toggle-btn.active {
    background: var(--brand-red);
    color: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.pricing-card {
    background: rgba(30, 30, 35, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

@keyframes borderGlowCyan {
    0% { box-shadow: 0 10px 40px rgba(18,174,228,0.1), inset 0 0 5px rgba(18,174,228,0.1); }
    100% { box-shadow: 0 10px 50px rgba(18,174,228,0.4), inset 0 0 20px rgba(18,174,228,0.3); }
}

@keyframes borderGlowYellow {
    0% { box-shadow: 0 10px 40px rgba(255,236,0,0.1), inset 0 0 5px rgba(255,236,0,0.1); }
    100% { box-shadow: 0 10px 50px rgba(255,236,0,0.3), inset 0 0 20px rgba(255,236,0,0.2); }
}

.pricing-card.popular {
    transform: scale(1.05);
    background: rgba(40, 40, 48, 0.5);
    border: 2px solid var(--brand-cyan);
    animation: borderGlowCyan 2s infinite alternate;
    z-index: 2;
}
.pricing-card.premium {
    border: 2px solid var(--brand-yellow);
    animation: borderGlowYellow 2s infinite alternate;
}
.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--brand-cyan);
    animation-play-state: paused;
}
.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.06);
    border-color: var(--brand-cyan);
}
.popular-tag {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-red);
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}
.card-top { margin-bottom: 30px; text-align: center; }
.card-top h4 { font-size: 1.5rem; color: var(--text-muted); margin-bottom: 10px; }
.price .amount { font-size: 2.8rem; font-weight: 800; color: white; line-height: 1; }
.price .period { display: block; color: var(--text-muted); font-size: 0.9rem; margin-top: 5px; }

.speed-box {
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
}
.speed-box .val { font-size: 2rem; font-weight: 800; font-family: var(--font-heading); color: var(--brand-red); }

.tariff-list {
    margin-bottom: 40px;
    flex: 1;
}
.tariff-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.tariff-list li.disabled { opacity: 0.4; }

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-red);
}
.cta-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.cta-content h2 { font-size: 2.5rem; margin-bottom: 20px; color: white; }
.cta-content p { color: rgba(255,255,255,0.9); font-size: 1.1rem; }
.cta-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
}
.cta-form input {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
}
.cta-form input:focus {
    outline: none;
    border-color: var(--brand-red);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}
.brand-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 20px 0;
    max-width: 300px;
}
.socials { display: flex; gap: 15px; }
.socials a {
    width: 40px; height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--text-muted);
}
.socials a:hover {
    background: var(--brand-red);
    color: white;
    border-color: var(--brand-red);
}
.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); font-size: 0.95rem; }
.footer-links a:hover { color: var(--brand-red); padding-left: 5px; }
.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.footer-contact i { color: var(--brand-red); margin-top: 5px; }
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animation Classes */
.reveal, .reveal-up, .reveal-right {
    opacity: 0;
    visibility: hidden;
}
.reveal.active {
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.8s ease-out forwards;
}
.reveal-up.active {
    opacity: 1;
    visibility: visible;
    animation: slideUp 0.8s ease-out forwards;
}
.reveal-right.active {
    opacity: 1;
    visibility: visible;
    animation: slideRight 0.8s ease-out forwards;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { margin-inline: auto; }
    .hero-buttons { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-cards { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card:hover { transform: translateY(-5px); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Base mobile styles, sidebar not complete here but functional */
@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-links, .nav-action .btn { display: none; }
    .menu-toggle { display: block; }
    .pricing-cards { grid-template-columns: 1fr; }
    .cta-box { grid-template-columns: 1fr; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .coverage-box { grid-template-columns: 1fr !important; }
    .reviews-grid { grid-template-columns: 1fr !important; }
    .news-grid { grid-template-columns: 1fr !important; }
    .payment-logos { flex-wrap: wrap; }
}

/* Enhancements Styles */
.lang-switch {
    display: flex; gap: 10px; border-right: 1px solid rgba(255,255,255,0.2); padding-right: 15px; margin-right: 5px;
}
.lang-switch a { font-weight: 500; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.lang-switch a.active, .lang-switch a:hover { color: white; }

.mobile-lang {
    justify-content: center;
    margin-top: 40px;
    border: none;
    padding: 0;
    gap: 25px;
}
.mobile-lang a {
    font-size: 1.2rem;
}

/* Payment */
.payment { padding: 60px 0; background: var(--bg-dark); }
.payment-logos {
    display: flex; justify-content: center; gap: 30px; margin-top: 30px;
}
.pay-logo {
    background: var(--bg-card); padding: 15px 30px; border-radius: 8px; border: 1px solid var(--border-color);
    font-size: 1.2rem; font-weight: 600; font-family: var(--font-heading); display: flex; align-items: center; gap: 10px;
    transition: var(--transition); color: var(--text-muted);
}
.pay-logo:hover {
    color: white; border-color: var(--brand-red); transform: translateY(-5px); box-shadow: var(--shadow-sm);
}

/* About Us */
.about-us { padding: 80px 0; background: var(--bg-darker); }
.about-box {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 40px; margin: 0 auto; max-width: 900px;
}
.about-content p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 25px; text-align: justify; }
.about-content p:last-child { margin-bottom: 0; }

/* Testimonials */
.testimonials { padding: 80px 0; background: var(--bg-dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card {
    background: var(--bg-card); padding: 30px; border-radius: 12px; border: 1px solid var(--border-color);
    position: relative; transition: var(--transition);
}
.review-card:hover { transform: translateY(-5px); border-color: rgba(18, 174, 228, 0.4); }
.stars { color: #FBBF24; margin-bottom: 15px; font-size: 1.1rem; }
.review-text { font-size: 1rem; color: var(--text-muted); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.reviewer { font-weight: 600; color: white; }

/* FAQ Section */
.faq-section { padding: 80px 0; background: var(--bg-dark); }
.faq-accordion { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active { border-color: var(--brand-red); box-shadow: 0 5px 20px rgba(18, 174, 228, 0.15); }
.faq-btn {
    width: 100%; text-align: left; padding: 25px 30px;
    background: transparent; border: none; color: white;
    font-size: 1.15rem; font-weight: 600; font-family: var(--font-heading);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    transition: var(--transition);
}
.faq-btn i { color: var(--brand-red); transition: transform 0.3s ease; }
.faq-item.active .faq-btn i { transform: rotate(180deg); }
.faq-item:hover .faq-btn { color: var(--brand-red); }
.faq-content {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0,0,0,0.2); padding: 0 30px;
}
.faq-item.active .faq-content { max-height: 1000px; padding: 0 30px 30px; }
.faq-content p { color: var(--text-muted); line-height: 1.7; margin-bottom: 15px; font-size: 0.95rem; }
.faq-content ul { color: var(--text-muted); margin-bottom: 15px; padding-left: 20px; }
.faq-content ul li { margin-bottom: 10px; font-size: 0.95rem; list-style-type: disc; }
.faq-content h5 { color: white; margin: 20px 0 10px; font-size: 1.05rem; }

/* News */
.news { padding: 80px 0; background: var(--bg-darker); }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.news-card {
    background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-color);
    transition: var(--transition); display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-5px); border-color: var(--brand-red); }
.news-img { height: 200px; width: 100%; position: relative; }
.news-date {
    position: absolute; top: 15px; left: 15px; background: rgba(0,0,0,0.6); padding: 5px 15px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600; border: 1px solid var(--border-color); color: white;
}
.news-content { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.news-content h3 { font-size: 1.4rem; margin-bottom: 15px; }
.news-content p { color: var(--text-muted); margin-bottom: 25px; font-size: 0.95rem; line-height: 1.6; flex: 1; }
.read-more { color: var(--brand-red); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.read-more:hover { color: white; }

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-darker);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader-content {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: pulse 1.5s infinite alternate ease-in-out;
}
.preloader-logo {
    width: 70px;
    height: 70px;
}

/* ---------------------------------
   PREMIUM ENHANCEMENTS
------------------------------------ */

/* Custom Cursor */
body {
    cursor: none; /* Hide default cursor */
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-cyan);
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(18, 174, 228, 0.8);
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(18, 174, 228, 0.5);
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

/* Hover effects for cursor */
a:hover ~ .cursor-outline,
button:hover ~ .cursor-outline,
.clickable:hover ~ .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(18, 174, 228, 0.1);
    border-color: rgba(18, 174, 228, 0.8);
}

/* Text Carousel */
.text-carousel {
    display: inline-block;
    position: relative;
    vertical-align: top;
    height: 1.2em;
    min-width: 260px;
    text-align: left;
}
.carousel-word {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    color: var(--brand-cyan);
    white-space: nowrap;
}
.carousel-word.active {
    opacity: 1;
    transform: translateY(0);
}
.carousel-word.exit {
    opacity: 0;
    transform: translateY(-20px);
}

.preloader-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; filter: drop-shadow(0 0 10px rgba(18,174,228,0.2)); }
    100% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 30px rgba(18,174,228,0.6)); }
}

/* Floating Telegram Button */
.floating-telegram {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #0088cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulseTelegram 2s infinite;
}
.floating-telegram:hover {
    transform: scale(1.1) translateY(-5px);
    background: #0077b5;
    color: white;
    animation-play-state: paused;
}
@keyframes pulseTelegram {
    0% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 136, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0); }
}

@media (max-width: 768px) {
    .floating-telegram {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

.cabinet-icon-mob {
    display: none;
    color: white;
    font-size: 22px;
    margin-right: 18px;
    transition: var(--transition);
}
.cabinet-icon-mob:hover { color: var(--brand-red); }
@media (max-width: 768px) {
    .cabinet-icon-mob { display: block; }
    .nav-action .nav-cab-btn { display: none; }
}

/* Scroll Enhancements */
html { scroll-behavior: smooth !important; }
section { scroll-margin-top: 85px !important; }

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--brand-red);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: white;
    color: var(--brand-red);
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
