/*
:root {
  --primary-color: #99734f;
  --secondary-color: #39312e;
  --dark-beige: #765334;
   --dark-beige1: #624028;
  --light-bg: #efefef;
  --text-dark: #333333;
  --text-light-grey: #5E5B5B;
  --text-light: #ffffff;
      --white: #fff;
}

* {
  margin: 0;
  padding: 0;
}
body{
    background: var(--light-bg);
}

h1, h2, h3, h4, h5, h6{
  font-family: "Figtree", sans-serif;
}

body, p, a, span, li{
    font-family: 'Noto Sans Arabic', sans-serif;
}
*/


.contactmain-section {
    max-width: 1200px;
    height: 100vh;
    margin: 70px auto;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
contactcolumn {
  flex: 1 1 49.8%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid #adadad;
}
.contactcolumn.contactleft {
  flex: 0 0 60%;
}

.contactcolumn.contactright {
  flex: 0 0 39.9%;
}
@media (min-width: 992px) and (max-width: 1199px){
.contactmain-section {
    max-width: 960px;
    }
}

/* Responsive for tablets and mobile */
@media (max-width: 991px) {
  .contactmain-section {
    flex-direction: column;
    height: auto;
    max-width: 768px;
  }
  .contactcolumn {
    flex: 1 1 100%;
    height: 100vh;
  }
}






/* left columns start*/
.contactleft {
  background: var(--white);
  justify-content: center;
}
.contacticontext{
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 40px 40px 10px 40px;
    color: var(--secondary-color);
}
.contacticontext svg{
    width: 35px;
}
.contacticontext p{
    font-family: 'Sofadi One', sans-serif !important;
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color) !important;
    margin: 0 !important;
}
.contactleft h4{
    margin: 0px 45px;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.285;
}
.contactleft h4 span{
    color: var(--primary-color);  
}
.contactleft p{
    margin: 15px 45px;
    color: var(--text-light-grey);
}

.contactmain-section1 {
    max-width: 470px;
    height: auto;
    margin: 0px 16px 0px 45px;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0px;
}
.contactcolumns {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.contactmain-section1 h4{
    margin: 0px 2px;
    font-size: 18px;
    font-weight:bold;
    line-height: 1.7;
}
.contactmain-section1 a{
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
}
.contactmain-section1 a:hover{
    color: #1947CD;
}
@media (max-width:500px) {
.contactright1{
    margin-top: 20px;
}
}

.contactmain-section1 .contactspecial__icon-box {
    width: 52px;
    height: 52px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--primary-color);
    transition: all 500ms ease;
}
.contactmain-section1 .contactspecial__icon-box__icon {
    display: inline-flex;
    font-size: 25px;
    color: var(--light-bg);
}
.contactmain-section1 .contactspecial__icon-box::after {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 15.5px 0 15.5px 16px;
    border-color: transparent transparent transparent var(--secondary-color);
    transition: all 500ms ease;
}

.contactmain-section1 .contactcolumns:hover .contactspecial__icon-box{
    background-color: var(--secondary-color);
}
.contactmain-section1 .columns:hover .contactspecial__icon-box__icon{
    color: var(--primary-color);
}
.contactmain-section1 .contactcolumns:hover .contactspecial__icon-box::after{
    border-color: transparent transparent transparent var(--primary-color);
}

.contactleft p.contactstay{
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
    margin: 10px 40px;
}
.contactsocialicons{
    margin: 0px 40px 40px 40px;
    display: flex;
    gap: 5px;
}
.contactsocialicons .contacticonbox {
  background: var(--secondary-color);
  width: 30px;
  height: 30px;
  border-radius: 25px;
  text-align: center;
  align-content: center;
  transition: background 0.5s ease;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contactsocialicons .contacticonbox:hover {
  background: var(--primary-color);
}

.contacticonbox i {
  font-size: 14px;
  color: var(--primary-color);
  margin-top: 2px;
}

.contacticonbox:hover i {
  animation: iconPopBack 0.3s ease forwards;
  color: var(--light-bg);
}

@keyframes iconPopBack {
    0% {
        transform: translateY(160%);
        opacity: 0;
    }
    70% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/* left columns end*/







/* right columns start*/
.contactright {
  background: var(--white);
  align-items: center;
  border-left: 1px solid #adadad6f;
  padding-bottom: 50px;
}
.contactbox {
    position: relative;
    background-color: var(--primary-color); 
    padding: 30px 0px; 
    width: 100%; 
    text-align: center;
    color: var(--light-bg) !important;
    margin-bottom: 60px;
}
.contactbox::before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    left: 50%;
    bottom: -44px;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 44px 30.5px 0 30.5px;
    border-color: var(--secondary-color) transparent transparent transparent;
}
.contactbox h1{
    font-size: 30px;
}


.contactcontainer{
    width:90%;
    adding: 5%;
    position: relative;
    margin-left: 7.5%;
}
.contactcontainer label{
    display:block;
    margin-top:12px;
}
.contactcontainer input, .contactcontainer textarea{
    width:95%;
    padding:12px;
    margin-top:6px;
    border:1px solid #adadad;
    border-radius:4px;
    background: #f9f9f9;
}

.contactcontainer .contacterror{
    color:#c0392b;
    font-size:0.9em;
    margin-top:4px;
}
.contactcontainer .contactsuccess{
    background:#e7c5a683;
    padding:10px;
    border:1px solid #99734f;
    color: #99734f;
    border-radius:4px;
}
.contactcontainer button{
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 10px 20px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--light-bg);
    border-radius: 4px;
    font-size: 16px;
    margin-top: 30px;
    width: 95%;
}

.contactcontainer button:hover {
  background-color: var(--dark-beige1);
}

.contactcontainer button:after {
 content: "";
 background: var(--primary-color);
 position: absolute;
 z-index: -1;
 left: 3%;
 right: 3%;
 top: 0;
 bottom: 0;
 transform: skewX(-45deg) scale(0, 1);
 transition: all 0.5s;
}

.contactcontainer button:hover:after {
 transform: skewX(-45deg) scale(1, 1);
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}

.contactloader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    display: none;
    z-index: 10;
}

    .contactspinner {
      border: 5px solid #f3f3f3;
      border-top: 5px solid var(--primary-color);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      animation: spin 1s linear infinite;
      margin-bottom: 10px;
    }
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    .contactloader-text {
      font-weight: bold;
      color: var(--primary-color);
    }
    /* right columns end*/








.contactour-stores {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
}
.contactour-stores h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 10px;
}
.contactour-stores p {
  color: #555;
  margin-bottom: 10px;
  font-size: 1rem;
}

/* ===== GRID SETUP ===== */
.contactshops {
  display: grid;
  gap: 25px;
  justify-content: center;
}

/* ✅ Desktop (≥1190px): 5 per row (20%) */
@media (min-width: 1100px) {
  .contactshops {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 550px) and (max-width: 1099px) {
  .contactshops {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ✅ Mobile (<600px): 1 per row (100%) */
@media (max-width: 599px) {
  contactshops {
    grid-template-columns: 1fr;
  }
}
/* ✅ Tablet (600px–1000px): 2 per row (50%) */


/* ===== SHOP BOX STYLE ===== */
.contactshop {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  border: 1px solid #eee;
  flex-direction: column;
  justify-content: space-between;
  height: 410px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contactshop:hover {
  transform: translateY(-7px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.contactshop h5 {
  color: var(--dark-beige1);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.contactshop p {
  color: #444;
  font-size: 12px;
  flex-grow: 1;
  text-transform: lowercase;
}

.contactshop iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
  margin-top: auto;
}
.contactmap-btn{
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 10px 20px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--light-bg);
    border-radius: 4px;
    font-size: 16px;
    margin-top: 30px;
}

.contactmap-btn:hover {
  background-color: var(--dark-beige1);
}

.contactmap-btn:after {
 content: "";
 background: var(--primary-color);
 position: absolute;
 z-index: -1;
 left: 3%;
 right: 3%;
 top: 0;
 bottom: 0;
 transform: skewX(-45deg) scale(0, 1);
 transition: all 0.5s;
}

.contactmap-btn:hover:after {
 transform: skewX(-45deg) scale(1, 1);
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}
