/* 
 * Aloqa (Contact) sahifasi custom styles
 * Icon'lar va tugma rangini to'q ko'kga o'zgartirish
 */

/* Icon'lar rangi va fon - to'q ko'k */
.contact .info i {
    color: #003366 !important; /* Icon to'q ko'k */
    background: rgba(1, 18, 71, 0.1) !important; /* Och to'q ko'k fon */
}

/* Icon hover - ochroq to'q ko'k */
.contact .info .email:hover i, 
.contact .info .address:hover i, 
.contact .info .phone:hover i {
    background: #003366 !important; /* To'q ko'k fon */
    color: #fff !important; /* Oq icon */
}

/* Social links hover */
.contact .info .social-links a:hover {
    background: #003366 !important; /* To'q ko'k */
    color: #fff !important;
}

/* Yuborish tugmasi - to'q ko'k */
.contact .php-email-form button[type=submit] {
    background: #003366 !important; /* To'q ko'k */
    border: 0 !important;
    padding: 12px 30px !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}

/* Tugma hover - ochroq to'q ko'k */
.contact .php-email-form button[type=submit]:hover {
    background: #004488 !important; /* Ochroq ko'k */
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(1, 18, 71, 0.3) !important;
}

/* Tugma active */
.contact .php-email-form button[type=submit]:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(1, 18, 71, 0.2) !important;
}

/* Form field focus - to'q ko'k border */
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #003366 !important;
    box-shadow: 0 0 0 0.2rem rgba(1, 18, 71, 0.15) !important;
}

