@charset "utf-8";
/* CSS Document */
.contact-banner-area{
    width:100%;
    height: 100%;
    background-image: url('../images/static/banner/services_banner.webp');
    background-size: cover;        
    background-position: center;   
    background-repeat: no-repeat;  
    padding: 50px 0 290px 0;
}
.contact-banner-text1{
    text-align: center;
    font-family: 'DM Serif Text', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
    margin-top: 40px;
    color: #010101;
}
.contact-banner-text2{
     text-align: center;
     text-transform: uppercase;
     font-weight: 750;
     font-size: 72px;
     color: #010101;
}
.light-txt{
    font-weight: 300;
}
.blue-txt{
   color: #121BE2; 
}
.contact-content{
    width:80%;
    margin: 10px auto;
    text-align: center;
    font-size: 14px;
    color: #010101;
    line-height: 1.3;
}
#contact-page .contactArea{
    margin-top:-340px;
}
.contactArea .contactArea-containside{
    padding:50px 30px;
	box-sizing: border-box;
}
.black-txt{
    color: #010101;
    font-weight: 800;
}
.conFromAdd-head{
    font-size: 34px;
    font-weight: 700;
    color:#fff;
}
.conFromAdd-subhead{
   font-size: 14px;
    font-weight: 400;
    color:#fff; 
    margin-top: -20px;
}
#contact-page .contactArea .stats-container{
    padding:0px;
    margin-top: 50px;
}
.contactArea .contactArea-formside{
    bottom:0px;
	margin-top:50px;
}
.contactArea-formside .request-header{
    font-family: "Inter", Arial, sans-serif;
    font-weight: 700;
}

/* Container for whole contact section */
.contact-form-container {
   width:100%;
}

/* Contact info bar (email + phone) */
.contact-form-container .page-container{
    padding: 10px 0 30px 0;
}
.contact-bar {
  display: flex;
  gap: 2rem;
}



.contact-bar .contact-item a {
  text-decoration: none;
  color: inherit;
}
.contact-bar .contact-item:last-child {
    margin-right: 0px;
}
#attachFields {
    color: #010101;
    background: #EEEEEE;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: 1px solid #ddd;
    position: relative;
}

/* Grid for map cards */
.maps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.map-card {
  width: 100%;
  /* no float */
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  float:left;
  margin-right:30px;
}
.map-card:last-child {
    margin-right: 0px;
}

.map-card iframe {
  width: 100%;
  height: 400px;
  border: none;
  flex-shrink: 0;
}

.map-label {
  text-align: center;
  padding: 12px 0;
  font-weight: bold;
  background-color: #fff;
}
@media (max-width: 1120px) {
	.contact-banner-text2 {
    	font-size: 50px;
	}
	.contactArea-subtitle {
    	font-size: 14px;
	}
	#contact-page .contactArea {
    	margin-top: -310px;
	}
	.contactArea-head {
    	font-size: 22px;
	}
	.contactArea-head2 {
    	font-size: 30px;
    	max-width: 250px;
	}
	#contact-page .contactArea .stats-container {
    	grid-template-columns: repeat(1, 1fr);
    	gap: 10px;
	}
	.conFromAdd-head {
    	font-size: 28px;
	}

}
@media (max-width: 1024px) {
	.contact-form-container .page-container{
    	display: grid;
    	grid-template-columns: 1fr;
    	padding: 10px 0 30px 0;
    	gap: 30px;
	}
	.maps-grid .page-container{
    	display: grid;
    	grid-template-columns: 1fr 1fr;
    	gap: 30px;
	}
	.map-card{
    	width: 100%;
    	margin-right: 0;
	}
}
/* Responsive */
@media (max-width: 768px) {
  .contact-bar {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .maps-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 640px) {
	.maps-grid .page-container {
        grid-template-columns: 1fr;
        gap: 30px;
    	padding: 0 16px;
    }
	.contact-form-container .page-container {
        display: grid;
        grid-template-columns: 1fr;
        padding: 10px 16px 30px 16px;
        gap: 30px;
    }
	.contact-bar .contact-item {
    	margin-right: 0;
	}
	.contact-bar .contact-item img{
    	width: 60px;
	}
	.contact-bar .contact-item a{
    	font-size: 22px;
	}
}