/* =========================================
   CONTACT PAGE EXCLUSIVE CSS
   ========================================= */

/* Top Banner */
.chairy-page-banner {
    background: #2c3e50;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-bottom: 5px solid #f39c12;
}
.chairy-banner-title { font-size: 3.5rem; margin-bottom: 10px; font-family: 'Montserrat', sans-serif; text-transform: uppercase; font-weight: 800; }
.chairy-banner-subtitle { color: #f39c12; font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Main Section */
.chairy-contact-section { padding: 80px 0; background: #f9f9f9; }
.chairy-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }

/* Left Side: Info Box */
.chairy-contact-heading { font-size: 2.5rem; color: #2c3e50; margin-bottom: 20px; font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.2; text-transform: uppercase; }
.chairy-contact-text { color: #666; font-size: 1.1rem; margin-bottom: 40px; line-height: 1.7; }
.chairy-info-box { display: flex; flex-direction: column; gap: 30px; }
.chairy-info-item { display: flex; align-items: flex-start; gap: 20px; }
.chairy-info-icon {
    font-size: 1.8rem; background: #ffffff; width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; box-shadow: 0 5px 15px rgba(0,0,0,0.08); border: 2px solid #f39c12;
}
.chairy-info-item h4 { color: #2c3e50; font-size: 1.1rem; margin-bottom: 5px; font-weight: 700; text-transform: uppercase;}
.chairy-info-item p, .chairy-info-item a { color: #555; font-size: 1rem; text-decoration: none; line-height: 1.6; margin: 0; transition: 0.3s; }
.chairy-info-item a:hover { color: #f39c12; }

/* Right Side: Contact Form */
.chairy-contact-form-wrapper {
    background: #ffffff; padding: 40px; border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-top: 5px solid #f39c12;
}
.chairy-form-group { margin-bottom: 20px; }
.chairy-form-group label { display: block; margin-bottom: 8px; color: #2c3e50; font-weight: 700; font-size: 0.95rem; }
.chairy-contact-form input, .chairy-contact-form textarea {
    width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px;
    font-family: 'Open Sans', sans-serif; font-size: 1rem; transition: all 0.3s ease; background: #fdfdfd;
}
.chairy-contact-form input:focus, .chairy-contact-form textarea:focus {
    outline: none; border-color: #f39c12; box-shadow: 0 0 8px rgba(243, 156, 18, 0.2); background: #fff;
}
.chairy-submit-btn {
    background: #f39c12; color: #fff; border: none; padding: 15px 30px;
    font-size: 1.1rem; font-weight: bold; text-transform: uppercase; border-radius: 50px;
    cursor: pointer; width: 100%; transition: 0.3s; margin-top: 10px;
}
.chairy-submit-btn:hover { background: #2c3e50; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* =========================================
   MOBILE RESPONSIVENESS (< 991px)
   ========================================= */
@media (max-width: 991px) {
    .chairy-contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .chairy-contact-form-wrapper { padding: 30px 20px; }
    .chairy-page-banner { padding: 60px 0; }
    .chairy-banner-title { font-size: 2.8rem; }
}

@media (max-width: 480px) {
    .chairy-banner-title { font-size: 2.2rem; }
    .chairy-contact-heading { font-size: 1.8rem; }
}