/* Contact Page Styles */
.contact-details {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-block {
    margin-bottom: 30px;
}

.contact-info-block .inner-box {
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-block .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-info-block .icon-box {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, #fb7405 0%, #ff9040 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-info-block .inner-box:hover .icon-box {
    transform: rotate(360deg);
}

.contact-info-block h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-info-block .text {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.contact-info-block .text a {
    color: #fb7405;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-block .text a:hover {
    color: #ff9040;
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-section .sec-title {
    margin-bottom: 40px;
}

.contact-section .sec-title .sub-title {
    color: #fb7405;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.contact-section .sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    color: #333333;
    background: #ffffff;
    transition: all 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #fb7405;
    outline: none;
    box-shadow: 0 0 10px rgba(251, 116, 5, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background: linear-gradient(135deg, #fb7405 0%, #ff9040 100%);
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 116, 5, 0.3);
}
