/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary: #00b4d8;
    --primary-dark: #0096c7;
    --secondary: #03045e;
    --accent: #ffb703;
    --text-dark: #1e2a3a;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gradient-1: linear-gradient(135deg, #00b4d8 0%, #03045e 100%);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --border-radius: 16px;
    --transition: all 0.3s ease;
    --card-bg: #ffffff;
    --border-color: #e9ecef;
    --bg-primary: #ffffff;
}

[data-theme="dark"] {
    --primary: #00b4d8;
    --secondary: #00b4d8;
    --text-dark: #ffffff;
    --text-light: #a0a0a0;
    --white: #1a1a2e;
    --light-bg: #16213e;
    --card-bg: #1e1e3a;
    --border-color: #2d2d4a;
    --bg-primary: #1a1a2e;
}

[data-theme="dark"] .logo {
    color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    transition: var(--transition);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== TYPOGRAPHY ==================== */
.gradient-text {
    background: linear-gradient(135deg, #00b4d8 0%, #03045e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    padding: 6px 16px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-top: 14px;
    color: var(--secondary);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    margin: 15px auto 0;
    border-radius: 3px;
}

/* ==================== BUTTONS ==================== */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ==================== LOADER ==================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 45px;
    height: 45px;
    border: 4px solid rgba(0,180,216,0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    margin-top: 15px;
    color: var(--primary);
    font-size: 14px;
}

/* ==================== PROGRESS BAR ==================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-1);
    z-index: 1001;
    transition: width 0.1s;
}

/* ==================== HEADER ==================== */
header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

[data-theme="dark"] header {
    background: rgba(26,26,46,0.95);
}

header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.8), rgba(0, 180, 216, 0.7));
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-item {
    text-align: center;
    padding: 12px 24px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    min-width: 130px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffb703;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.9;
    color: white;
}

/* ==================== WEATHER WIDGET ==================== */
.weather-widget {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    justify-content: center;
}

.weather-city-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
}

.city-select {
    background: transparent;
    border: none;
    color: white !important;
    font-size: 12px;
    font-weight: 500;
    outline: none;
}

.city-select option {
    background: var(--secondary);
    color: white;
}

.weather-city-selector i {
    font-size: 11px;
    color: #ffb703;
}

.weather-widget > i:first-of-type {
    font-size: 22px;
    color: #ffb703;
}

.weather-info .temp {
    font-size: 16px;
    font-weight: 700;
    color: white !important;
}

.weather-info .condition {
    font-size: 10px;
    color: rgba(255,255,255,0.85) !important;
}

.irrigation-recommendation {
    padding-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.2);
    font-size: 11px;
    color: white !important;
}

.irrigation-recommendation i {
    color: var(--primary);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 70px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 26px;
    color: var(--primary);
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--secondary);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.85rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.stat-circle {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

/* Cards / Products */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.card-img {
    position: relative;
    height: 180px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,180,216,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.card:hover .card-overlay {
    opacity: 1;
}

.ar-view-btn {
    background: white;
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    font-size: 12px;
}

.card-content {
    padding: 20px;
}

.card-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.card-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.product-rating {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 12px;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.compare-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 12px;
}

/* Calculator */
.calculator-wrapper {
    max-width: 480px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.calc-group {
    margin-bottom: 15px;
}

.calc-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 13px;
    color: var(--secondary);
}

.calc-group input,
.calc-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-primary);
    color: var(--text-dark);
    font-size: 14px;
}

.calc-result {
    text-align: center;
    margin-top: 15px;
    padding: 12px;
    background: rgba(0,180,216,0.1);
    border-radius: 10px;
}

.calc-result span {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Price Table */
.price-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    font-size: 13px;
    min-width: 500px;
}

.price-table th {
    background: var(--gradient-1);
    color: white;
    padding: 12px 15px;
    text-align: left;
}

.price-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.price-cell {
    color: var(--primary);
    font-weight: 700;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--light-bg);
    border-radius: 10px;
    margin-top: 15px;
    font-size: 12px;
    color: var(--text-light);
}

/* FAQ */
.faq-grid {
    max-width: 650px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 0.95rem;
    color: var(--secondary);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 0.85rem;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding: 0 15px 15px 15px;
    max-height: 200px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin: 10px 0 15px;
    color: var(--secondary);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.contact-details {
    margin: 20px 0;
}

.contact-detail-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(0,180,216,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 16px;
    color: var(--primary);
}

.contact-detail-item h4 {
    font-size: 0.85rem;
    color: var(--secondary);
}

.contact-detail-item p {
    color: var(--text-light);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 12px;
    color: var(--secondary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-primary);
    color: var(--text-dark);
    font-size: 14px;
}

/* Newsletter */
.newsletter {
    padding: 40px 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
}

.newsletter-wrapper i {
    font-size: 32px;
}

.newsletter-wrapper h3 {
    font-size: 1.4rem;
    margin: 8px 0;
}

.newsletter-wrapper p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 18px;
}

.newsletter-form {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    outline: none;
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 35px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-partner-img {
    max-width: 110px;
    height: auto;
    margin-top: 10px;
    background: white;
    padding: 6px;
    border-radius: 8px;
}

.footer-links ul, .footer-hours ul {
    list-style: none;
}

.footer-links ul li, .footer-hours ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 12px;
}

.footer-hours ul li {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 11px;
    opacity: 0.7;
}

/* Fixed Elements (Chat, Theme, Top Button) */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    left: 15px;
    width: 42px;
    height: 42px;
    background: var(--gradient-1);
    border-radius: 50%;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 990;
    box-shadow: var(--shadow-md);
}

.back-to-top {
    position: fixed;
    bottom: 70px;
    right: 15px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 990;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.progress-ring {
    position: relative;
    width: 45px;
    height: 45px;
}

.progress-ring svg {
    transform: rotate(-90deg);
}

.progress-ring i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 14px;
}

.chat-toggle {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 990;
}

.chat-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: white;
    font-size: 8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-widget {
    position: fixed;
    bottom: 70px;
    right: 15px;
    width: 310px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

.chat-widget.active {
    display: flex;
}

.chat-header {
    background: var(--gradient-1);
    color: white;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.chat-messages {
    height: 250px;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message-content {
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.message.bot .message-content { background: var(--light-bg); color: var(--text-dark); }
.message.user .message-content { background: var(--primary); color: white; }

.chat-input {
    display: flex;
    padding: 8px;
    border-top: 1px solid var(--border-color);
    gap: 6px;
}

.chat-input input {
    flex: 1;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 12px;
    background: var(--bg-primary);
    color: var(--text-dark);
}

.chat-input button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: white;
    cursor: pointer;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: var(--secondary);
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    z-index: 1000;
}

.cookie-consent p {
    font-size: 10px;
    margin: 0;
}

.cookie-consent button {
    background: var(--primary);
    border: none;
    padding: 5px 12px;
    border-radius: 15px;
    color: white;
    font-size: 10px;
    white-space: nowrap;
}

/* ==================== MEDIA QUERIES (RESPONSIVE) ==================== */

@media (max-width: 992px) {
    .hero h1 { font-size: 2.5rem; }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .footer-hours ul li { justify-content: center; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }

    /* Navigatsiya menyusi mobil holatda */
    nav {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: var(--card-bg);
        transition: var(--transition);
        z-index: 999;
    }

    nav.active { left: 0; }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 18px;
    }

    /* MOBIL EKRANDA BUYURTMA TUGMASI MOZLASHTIRILDI */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .header-actions .btn-primary {
        display: inline-flex !important;
        padding: 7px 14px;
        font-size: 12px;
        border-radius: 20px;
        white-space: nowrap;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        width: 100%;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat-item {
        flex: 1;
        min-width: 100px;
        padding: 8px;
    }

    .stat-number { font-size: 1.3rem; }

    .weather-widget {
        flex-direction: column;
        width: 100%;
        border-radius: 16px;
        padding: 12px;
    }

    .irrigation-recommendation {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-left: 0;
        padding-top: 6px;
    }

    .section { padding: 45px 0; }
    .section-title { font-size: 1.7rem; }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .chat-widget {
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .logo-img { height: 35px; }
    
    /* Juda kichik ekranlarda ham tugma mos ko'rinishi uchun */
    .header-actions .btn-primary {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 0.8rem; }
    .about-stats { grid-template-columns: 1fr; }
}
