/* Start custom CSS for html, class: .elementor-element-ffe5107 *//* style.css */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#f8f6f3;
  font-family:'Inter', sans-serif;
  color:#5f5148;
}

.contact-section{
  width:100%;
  padding:80px 6%;
}

.container{
  display:flex;
  justify-content:space-between;
  gap:80px;
  align-items:flex-start;
}

/* LEFT SIDE */

.left-content{
  flex:1;
}

.sub-heading{
  letter-spacing:6px;
  color:#c79c49;
  font-size:14px;
  font-weight:500;
}

.left-content h1{
  font-family:'Cormorant Garamond', serif;
  font-size:72px;
  line-height:1.1;
  margin-top:20px;
  color:#241915;
  font-weight:600;
}

.line{
  width:95px;
  height:3px;
  background:#c79c49;
  margin:35px 0;
}

.description{
  font-size:22px;
  line-height:1.9;
  max-width:650px;
  color:#77675c;
  margin-bottom:70px;
}

/* Contact Info */

.contact-info{
  display:flex;
  flex-direction:column;
  gap:45px;
}

.info-box{
  display:flex;
  align-items:flex-start;
  gap:22px;
}

.icon{
  width:56px;
  height:56px;
  min-width:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  background:#fff;
  color:#111;
  transition:0.4s ease;
  cursor:pointer;
  box-shadow:0 2px 12px rgba(0,0,0,0.05);
}

/* Hover Effect */

.icon:hover{
  background:#0f5123;
  color:#fff;
  transform:translateY(-4px) scale(1.08);
}

.text h3{
  font-family:'Cormorant Garamond', serif;
  font-size:28px;
  color:#241915;
  margin-bottom:8px;
}

.text p{
  font-size:18px;
  line-height:1.7;
  color:#77675c;
}

/* FORM CARD */

.form-card{
  width:100%;
  max-width:620px;
  background:#f8f6f3;
  border:1px solid #e6ddd3;
  padding:55px;
}

.form-card h2{
  font-family:'Cormorant Garamond', serif;
  font-size:56px;
  line-height:1.1;
  color:#241915;
  margin-bottom:18px;
}

.form-card p{
  font-size:20px;
  line-height:1.7;
  color:#77675c;
  margin-bottom:35px;
}

/* Form */

form{
  display:flex;
  flex-direction:column;
  gap:24px;
}

input,
select{
  width:100%;
  height:82px;
  padding:0 30px;
  border:1px solid #ddd2c7;
  background:transparent;
  font-size:20px;
  color:#241915;
  outline:none;
  transition:0.3s ease;
}

input:focus,
select:focus{
  border-color:#0f5123;
}

button{
  width:100%;
  height:84px;
  border:none;
  background:#0f5123;
  color:#fff;
  font-size:18px;
  letter-spacing:3px;
  cursor:pointer;
  transition:0.4s ease;
  margin-top:10px;
}

button:hover{
  background:#1a6a34;
  transform:translateY(-2px);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media(max-width:1100px){

  .container{
    flex-direction:column;
    gap:60px;
  }

  .form-card{
    max-width:100%;
  }

  .left-content h1{
    font-size:60px;
  }

}

@media(max-width:768px){

  .contact-section{
    padding:60px 20px;
  }

  .left-content h1{
    font-size:48px;
  }

  .description{
    font-size:18px;
    line-height:1.8;
  }

  .form-card{
    padding:35px 25px;
  }

  .form-card h2{
    font-size:42px;
  }

  input,
  select,
  button{
    height:68px;
    font-size:17px;
  }

  .text h3{
    font-size:24px;
  }

  .text p{
    font-size:16px;
  }

}

@media(max-width:480px){

  .left-content h1{
    font-size:40px;
  }

  .form-card h2{
    font-size:34px;
  }

  .description{
    font-size:16px;
  }

  .sub-heading{
    letter-spacing:4px;
    font-size:12px;
  }

  .icon{
    width:48px;
    height:48px;
    min-width:48px;
    font-size:20px;
  }

  .form-card{
    width:100%;
    padding:28px 18px;
  }

}/* End custom CSS */