/* SECTION */
.contact-section{
  padding:100px 20px;
}

.container{
  max-width:1200px;
  margin:auto;
}

/* INTRO */
.contact-intro{
  text-align:center;
  margin-bottom:60px;
}
.contact-intro h2{
  font-size:30px;
  font-weight:400;
  color:#1a2b4c;
  font-family: 'Playfair Display', serif;
}
.contact-intro p{
  font-size:14px;
  color:#6b7a90;
}

/* WRAPPER */
.contact-wrapper{
  display:flex;
  gap:40px;
}

/* LEFT SIDE */
.contact-left{
  flex:1;
}

/* TRUST BOX */
.trust-box{
  background:#1a2b4c;
  color:#fff;
  padding:40px;
  border-radius:16px;
  margin-bottom:20px;
}
.trust-box h3{
  font-size:22px;
  margin-bottom:10px;
  
}
.trust-box p{
  font-size:14px;
  opacity:0.9;
  line-height:1.6;
}

/* FEATURES */
.trust-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  margin-top:20px;
}
.trust-item{
  background:rgba(255,255,255,0.1);
  padding:15px;
  border-radius:10px;
  font-size:13px;
}

/* RIGHT FORM */
.contact-right{
  flex:1;
  background:#fff;
  padding:40px;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

/* FORM */
.form-group{
  margin-bottom:15px;
}

input, select, textarea{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:14px;
}

textarea{
  height:100px;
  resize:none;
}

.error{
  font-size:12px;
  color:red;
}

/* BUTTON */
button{
  width:100%;
  padding:13px;
  background:#1a2b4c;
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
}
button:hover{
  background:#243d70;
}

#formMsg{
  margin-top:10px;
}

.privacy{
  font-size:12px;
  text-align:center;
  color:#777;
}

/* ================= MAP SECTION ================= */

.map-section{
  margin-top:80px;
}
.map-wrapper iframe{
  width:100%;
  height:350px;
  border:0;
}

/* ================= CONTACT DETAILS ================= */

.contact-details{
  padding:80px 20px;
}

.details-wrapper{
  display:flex;
  gap:30px;
}

.details-box{
  flex:1;
  background:#fff;
  padding:30px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.details-box h3{
  font-size:18px;
  color:#1a2b4c;
  margin-bottom:10px;
}

.details-box p{
  font-size:14px;
  color:#555;
}

/* SOCIALS */
.socials {
  display: flex;
  gap: 12px;
 flex-direction: row;
}



/* LINK */
.socials a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1a2b4c;
  font-size: 14px;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f4f7fb;
  justify-content: center;
}

.socials span {
  display: none;
}

/* ICON */
.socials svg {
  width: 18px;
  height: 18px;
  fill: #1a2b4c;
  stroke: #1a2b4c;
}

/* HOVER */
.socials a:hover {
  color: #2f436f;
  transform: translateX(4px);
}

.socials a:hover svg {
  fill: #2f436f;
  stroke: #fff;
}

/* MOBILE IMPROVEMENT */
@media(max-width:768px){
  .socials {
    align-items: center;
  }
}
/* ================= CTA ================= */

.cta-section{
  padding:50px 20px;
  background: linear-gradient(135deg, #1a2b4c, #243a63);
  position: relative;
  overflow: hidden;
  display:flex;
  justify-content:center;
  margin-bottom:25px;
}

/* SOFT BACKGROUND GLOW */
.cta-section::before,
.cta-section::after{
  content:"";
  position:absolute;
  border-radius:50%;
  background: rgba(255,255,255,0.08);
  filter: blur(90px);
}

.cta-section::before{
  width:400px;
  height:400px;
  top:-150px;
  left:-120px;
}

.cta-section::after{
  width:350px;
  height:350px;
  bottom:-120px;
  right:-120px;
}

/* ================= GLASS BOX ================= */

.cta-box{
  max-width:800px;
  width:100%;
  text-align:center;
  padding:60px 40px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border:1px solid rgba(255,255,255,0.18);
  border-radius:24px;

  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  position: relative;
  z-index: 2;
}

/* LIGHT EDGE GLOW */
.cta-box::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:24px;
  padding:1px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.4),
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.2)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* TITLE */
.cta-section h3{
  font-size:30px;
  font-weight:400;
  color:#fff;
  margin-bottom:15px;
}

/* TEXT */
.cta-section p{
  font-size:14px;
  margin:15px auto 30px;
  max-width:520px;
  color:#d6e0f2;
  line-height:1.6;
}

/* BUTTON */
.cta-btn{
  display:inline-block;
  padding:14px 30px;
  background:#ffffff;
  color:#1a2b4c;
  border-radius:40px;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  transition:0.35s;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* BUTTON HOVER */
.cta-btn:hover{
  transform: translateY(-4px) scale(1.02);
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
  background:#f4f7fb;
}

/* SUBTEXT */
.cta-section small{
  display:block;
  margin-top:18px;
  font-size:12px;
  color:#aab7d1;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .cta-section{
    padding:80px 15px;
  }

  .cta-box{
    padding:40px 20px;
  }

  .cta-section h3{
    font-size:24px;
  }

  .cta-section p{
    font-size:13px;
  }

  .cta-btn{
    width:100%;
    text-align:center;
  }

  .contact-wrapper,
  .details-wrapper{
    flex-direction:column;
  }

  .trust-points{
    grid-template-columns:1fr;
  }

}