/* Contact Section Styles */
.contact {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    opacity: 0.03;
    z-index: 0;
}

.contact-content {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 0 0 40%;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

.contact-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-text-info h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 5px;
}

.contact-text-info p, 
.contact-text-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text-info a:hover {
    color: var(--primary-color);
}

.contact-form {
    flex: 1;
    background: rgba(20, 20, 20, 0.8);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.form-group {
    margin-bottom: 30px;
    width: 100%;
}

.form-control {
    width: 100%;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    box-sizing: border-box;
    height: auto;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
    min-height: 180px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 10px;
    border-radius: 8px;
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-content {
        gap: 30px;
    }
    
    .contact-info {
        flex: 0 0 45%;
    }
}

@media (max-width: 992px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .contact-form {
        padding: 40px 30px;
        max-width: 100%;
    }
    
    .form-control {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    textarea.form-control {
        min-height: 160px;
    }
    
    .contact-form .btn {
        padding: 16px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-control {
        padding: 15px 18px;
    }
    
    textarea.form-control {
        min-height: 150px;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }
    
    .contact-info h2 {
        font-size: 1.6rem;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .contact-form .btn {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    textarea.form-control {
        min-height: 140px;
    }
}
