/* page header  */
.page-header {
  /* background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%); */
  background-image: url(../allfiximages/NewCharacter/teamban.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: repeat;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.805);
    padding: 150px 0 80px 0;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--golden);
}
/* ==========================================
   Contact Page
   ========================================== */

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
   grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
    /* margin-top: 50px; */
    justify-content: center;
    margin:40px 30px;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--golden);
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 30px;
    color: var(--golden);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--dark-gray);
}

.contact-item a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--golden);
}

.quick-contact {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-whatsapp,
.btn-call {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

.btn-call {
    background: var(--yellow);
    color: var(--black);
}

.btn-call:hover {
    background: var(--golden);
    transform: translateY(-2px);
}

.contact-social {
    margin-top: 30px;
}

.contact-social h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--golden);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--yellow);
    color: var(--black);
    transform: scale(1.1);
}

.map-section {
    background: var(--gray);
}

.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width:500px){
    .contact-grid{
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}