/* Contact Page Styles */
.page-title {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    background-color: #f5f5f5;
    margin-bottom: 0;
}

.page-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-title .content-box {
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

.page-title h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bread-crumb {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bread-crumb li {
    color: #fff;
    font-size: 18px;
    margin: 0 5px;
}

.bread-crumb li a {
    color: #fff;
    transition: all 0.3s ease;
}

.bread-crumb li a:hover {
    color: #009bb3;
}

.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.contact-info .sec-title {
    margin-bottom: 30px;
}

.contact-info .sec-title h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 0;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-list .icon-box {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-list .icon-box i {
    font-size: 20px;
    color: #0066cc;
}

.contact-info-list .text {
    flex: 1;
}

.contact-info-list .text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-info-list .text p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-info-list .text a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-list .text a:hover {
    color: #0066cc;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.contact-form .sec-title {
    margin-bottom: 30px;
}

.contact-form .sec-title h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0066cc;
    outline: none;
}

.contact-form .theme-btn {
    background: #0066cc;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .theme-btn:hover {
    background: #0052a3;
}

.map-section {
    padding: 0;
    margin: 0;
}

.map-outer {
    margin: 0;
}

.map-outer iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .page-title {
        padding: 60px 0;
    }
    
    .page-title h1 {
        font-size: 36px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info,
    .contact-form {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .page-title {
        padding: 40px 0;
    }
    
    .page-title h1 {
        font-size: 28px;
    }
    
    .bread-crumb li {
        font-size: 16px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .contact-info-list .icon-box {
        width: 40px;
        height: 40px;
    }
    
    .contact-info-list .icon-box i {
        font-size: 16px;
    }
    
    .contact-info-list .text h4 {
        font-size: 16px;
    }
    
    .contact-form .theme-btn {
        width: 100%;
    }
}

/* Form Messages */
#form-messages {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

#form-messages.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#form-messages.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
} 