/* Contact Page Modern Styles */

.contact-page {
    background-color: #fafafa;
}

body {
    background-image: none !important;
    background-color: #fafafa !important;
}

#header {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 5px 0;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-separator {
    width: 60px;
    height: 4px;
    background-color: #feb900;
    margin: 0 auto;
    border-radius: 2px;
}

/* Contact Info Items */
.contact .info-item {
    background: #fff;
    padding: 30px;
    height: 100%;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.contact .info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #feb900;
}

.contact .info-item i {
    font-size: 40px;
    color: #feb900;
    margin-bottom: 15px;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #fff9e6;
    border-radius: 50%;
}

.contact .info-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact .info-item p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

/* Contact Form Styling */
.php-email-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.php-email-form .form-group {
    margin-bottom: 20px;
}

.php-email-form .input-group-text {
    background: #fff9e6;
    border: 1px solid #eee;
    color: #feb900;
    border-right: none;
    border-radius: 8px 0 0 8px;
}

.php-email-form input,
.php-email-form textarea {
    border: 1px solid #eee;
    border-left: none;
    border-radius: 0 8px 8px 0 !important;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s;
}

.php-email-form input:focus,
.php-email-form textarea:focus {
    box-shadow: none;
    border-color: #feb900;
}

.php-email-form button[type="button"] {
    background: #feb900;
    border: 0;
    padding: 12px 40px;
    color: #000;
    transition: 0.4s;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 10px;
}

.php-email-form button[type="button"]:hover {
    background: #e0a300;
    color: #fff;
}

/* Google Map */
.contact iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

/* Responsive */
@media (max-width: 991px) {
    .section-title-main {
        font-size: 1.8rem;
    }
}