:root{
  --bg: #f6f7f7;
  --card: #ffffff;
  --muted: #9aa0a6;
  --text: #232323;
  --line: #ececec;
  --btn-bg: #8ac484;
  --btn-radius: 8px;
  --radius: 8px;
  --font: 'Quicksand', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{
  box-sizing: border-box;
}

html,body{
  height:100%;
  margin:0;
  padding:0;
}

body{
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
  font-size:15px;
}

.page{
  width:100%;
  padding:0px 0;
}

/* ⬅ Desktop Two Column Layout */
.contact-layout{
  width:92%;
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 360px 1fr;
  gap:36px;
  align-items:start;
}

.left-col{
  padding-left:6px;
}

.icon-wrap{
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.03);
  margin-bottom:18px;
}

.icon-wrap img{
  width:28px;
  height:28px;
}

.left-title{
  font-weight:600;
  font-size:22px;
  margin:0 0 10px 0;
}

.left-desc{
  color:var(--muted);
  margin:0 0 26px 0;
  line-height:1.6;
  font-size:14px;
  max-width:300px;
}

.contact-list{ margin-top:8px; }

.contact-item{
  margin-bottom:22px;
  display:flex;
  flex-direction:column;
}

.meta{
  font-size:12px;
  color:#9aa0a6;
  letter-spacing:0.06em;
  margin-bottom:6px;
  text-transform:uppercase;
}

.val{
  color:#6a6a6a;
  font-size:14px;
  line-height:1.5;
}

/* MAP BOX */
.map-box{
  margin-top:25px;
}

.map-box iframe{
  width:100%;
  height:181px;
  border-radius:12px;
  border:1px solid #e5e5e5;
}

/* RIGHT SIDE FORM */
.card{
  background:var(--card);
  border-radius:12px;
  padding:26px 36px;
  border:1px solid var(--line);
}

.form-title{
  margin:4px 0 20px 0;
  font-weight:600;
  font-size:24px;
  color:#2b2b2b;
}

.row.two-cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
}

.field{
  display:flex;
  flex-direction:column;
  margin-bottom:18px;
}

.label{
  font-size:12px;
  color:#777;
  margin-bottom:8px;
  font-weight:600;
}

input[type="text"],
input[type="email"],
textarea{
  width:100%;
  padding:12px 14px;
  border-radius:8px;
  border:1px solid var(--line);
  background:#fff;
  font-size:14px;
  color:var(--text);
  outline:none;
  transition: box-shadow .12s, border-color .12s;
}

input:focus, textarea:focus{
  border-color:#bfc7cc;
  box-shadow:0 0 0 3px rgba(0,0,0,0.03);
}

textarea{
  min-height:140px;
  resize:vertical;
}

.btn-row{ margin-top:10px; }

.btn-send{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:12px 20px;
  background:var(--btn-bg);
  color:white;
  border:none;
  border-radius:var(--btn-radius);
  font-weight:600;
  cursor:pointer;
}

.btn-send:hover{
  background:#314498;
}

.btn-send .arrow{
  opacity:0.9;
  font-size:16px;
}

/* 
===========================
RESPONSIVE BREAKPOINTS
=========================== 
*/

/* Tablets (900px) */
@media(max-width:980px){
  .contact-layout{
    grid-template-columns:1fr;
    gap:30px;
  }
  .left-col{
    order:2;
  }
  .right-col{
    order:1;
  }
  .map-box iframe{
    height:220px;
  }
  .card{
    padding:22px;
  }
}

/* Small Tablets (650px) */
@media(max-width:650px){
  .row.two-cols{
    grid-template-columns:1fr;
  }
}

/* Small Mobile (480px) */
@media(max-width:480px){
  .page{
    padding:20px 0;
  }
  .card{
    padding:18px;
  }
  input, textarea{
    padding:10px 12px;
    font-size:14px;
  }
  .map-box iframe{
    height:200px;
  }
}

