:root {
    --primary-color: #140f46;
    --secondary-color: #d63a1f;
    --text-color: #333;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #140f46, #1a1a5e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #333;
    text-decoration: none;
}

.social-link i {
    font-size: 24px;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.social-link.whatsapp:hover {
    border-color: #25D366;
    background: #25D366;
    color: white;
}

.social-link.telegram:hover {
    border-color: #0088cc;
    background: #0088cc;
    color: white;
}

.social-link.instagram:hover {
    border-color: #E4405F;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-link.facebook:hover {
    border-color: #1877F2;
    background: #1877F2;
    color: white;
}

.social-link.twitter:hover {
    border-color: #1DA1F2;
    background: #1DA1F2;
    color: white;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 250px 0 100px;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
}

.hero-description {
    color: #140F46CC;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
}

.card {
    border-radius: 15px;
}

.btn-primary {
    background: var(--secondary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 15, 70, 0.4);
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(20, 15, 70, 0.25);
}

.message {
    margin-bottom: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .social-links {
        margin-top: 30px;
    }
    
    .hero-section {
        padding: 150px 0 50px;
    }
}