:root {
  --primary-color: #806248;
  --gray: #fafafa;
  --light-gray: #e5e5e5;
  --medium-gray: #777777;
  --black-shade: #1e1e1e;
  --dark-black: #313131;
}



.contact-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background-color: white;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1),
    0px 6px 20px rgba(0, 0, 0, 0.1);
  margin-top: 55px;
  padding: 12px;
}

.contact-box2 {  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background-color: white;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1),
    0px 6px 20px rgba(0, 0, 0, 0.1);
  margin-top: 55px;
  padding: 12px;}


.get-touch-details {
/*   border: 1px solid var(--light-gray); */
  padding: 14px;
  margin-top: 10px;
  display: flex;
  gap: 46px;
}

.get-touch-details-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-no {
  display: flex;
  gap: 4px;
}

.contact-no .title-text {
  color: var(--primary-color);
}

.get-touch-details-box .label-text {
  color: var(--medium-gray);
  margin-top: 6px;
}

.meet-us {
  margin-top: 14px;
}

.meet-us-details {
  border: 1px solid var(--light-gray);
  padding: 14px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.map-img {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 768px) {
  .contact-box {
    grid-template-columns: 1fr;
    gap: 8px;
  }
	  .contact-box2 {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}



/* Add this to your contact.css file */
.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
}

.headline-text {
  margin-bottom: 6px;
}

.our-story-content {
  gap: 40px;
}

.who-we-box{
gap:40px;	
}

.design-card .headline-text {
  margin-top: 4px;
}

.design-content-box {
  margin: 4px 0 48px;
}

.cat-label-text{
	margin-top: 8px;
}

.show-tils {
;
    grid-template-columns: repeat(7, 1fr);
}

.tils-box .label-text {
    text-align: center;
    margin-top: 8px;
}

@media screen and (max-width:940px){
	.who-we-box{
gap:20px;	
}

}

@media screen and (max-width: 768px) {
    .map-container,
    .map-container iframe {
        min-height: 300px;
    }
	.our-story-content {
  gap: 20px;
}
}

/* Contact Expert Section Styles */
.contact-expert-section {
    background-color: #242424;
    color: #ffffff;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.contact-expert-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.contact-expert-image {
    width: 50%;
    position: relative;
}

.contact-expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 450px;
}

.contact-expert-content {
    width: 50%;
    background-color: #242424;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.contact-expert-form {
    padding: 0 30px;
    max-width: 590px;
    width: 100%;
    margin: 0;
}

.contact-subtitle {
    font-size: 14px;
    font-weight: normal;
    margin: 0 0 5px 0;
}

.contact-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 25px 0;
}

/* Form styling */
.wpcf7-form p {
    margin-bottom: 15px;
}

.wpcf7-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
}

.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-textarea {
    width: 100%;
    background-color: #333333;
    border: none;
    padding: 10px;
    color: #ffffff;
    border-radius: 3px;
}

.wpcf7-form .wpcf7-textarea {
    height: 120px;
    resize: none;
}

.wpcf7-form .form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.wpcf7-form .form-column {
    flex: 1;
}

.wpcf7-form .submit-button {
    width: 100%;
    background-color: #b17a30;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.wpcf7-form .submit-button:hover {
    background-color: #c48a40;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-expert-wrapper {
        flex-direction: column;
    }
    
    .contact-expert-image,
    .contact-expert-content {
        width: 100%;
    }
    
    .contact-expert-image img {
        min-height: 250px;
    }
    
    .contact-expert-content {
        padding: 30px 0;
    }
    
    .contact-expert-form {
        padding: 0 20px;
    }
}