/* Contact Specific Styles */
:root {
    --primary: #D97706;
    --dark-card: #161616;
    --dark-bg: #0F0F0F;
    --border-glass: rgba(255, 255, 255, 0.05);
}

.contact-header {
    padding: 140px 0 60px;
    text-align: center;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 950;
    margin-bottom: 20px;
}

.contact-title span {
    color: var(--primary);
}

.contact-info-grid {
    margin: 60px 0;
}

.contact-info-card-p {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 35px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card-p:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: rgba(217, 119, 6, 0.02);
}

.contact-icon {
    width: 65px;
    height: 65px;
    background: rgba(217, 119, 6, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 25px;
}

.contact-info-card-p h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.contact-info-card-p p {
    color: #A3A3A3;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.contact-form-section {
    background: var(--dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 35px;
    padding: 50px;
    margin-bottom: 100px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.form-label {
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: 16px !important;
    padding: 15px 20px !important;
    color: #fff !important;
}

.btn-send-p {
    background: var(--primary);
    color: #000;
    width: 100%;
    padding: 18px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 1.2rem;
    border: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-send-p:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
    background: #B45309;
}

.social-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon-box:hover {
    transform: translateY(-5px);
    background: var(--primary);
    color: #000;
}
