
/* =========================
PAGE HERO
========================= */

.contact-hero{
  position:relative;
  padding:140px 0 180px;
  overflow:hidden;
  background: linear-gradient(180deg, #2393b8 0%, #edf3f5 100%);
}

.contact-hero::before{
  content:'';
  position:absolute;
  width:450px;
  height:450px;
  background:#00cfff22;
  filter:blur(100px);
  top:-150px;
  left:-150px;
}

.contact-hero::after{
  content:'';
  position:absolute;
  width:400px;
  height:400px;
  background:#005dff18;
  filter:blur(100px);
  right:-100px;
  bottom:-120px;
}

.hero-subtitle{
  font-size:14px;
  font-weight:700;
  letter-spacing:5px;
  color:#005dff;
  margin-bottom:22px;
}

.hero-title{
  font-size:48px;
  line-height:1;
  font-weight:800;
  margin: 0 auto 30px;
}

.hero-title span{
  background:linear-gradient(90deg,#005dff,#00cfff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-text{
  max-width:700px;
  margin:auto;
  color:#5b6472;
  font-size:19px;
  line-height:1.8;
}

.hero-shape{
  position:absolute;
  font-size:70px;
  color:#d2dce2;
  font-weight:700;
}

.shape-left{
  top:90px;
  left:70px;
}

.shape-right{
  bottom:90px;
  right:90px;
}

/* =========================
LOGO BAR
========================= */

.logo-bar{
  margin-top:-70px;
  position:relative;
  z-index:10;
}

.logo-wrapper{
  background:#fff;
  border-radius:26px;
  padding:35px 50px;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.logo-item{
  text-align:center;
  opacity:.6;
  transition:.3s;
}

.logo-item:hover{
  opacity:1;
  transform:translateY(-4px);
}

.logo-item img{
  max-width:140px;
}

/* =========================
CONTACT AREA
========================= */

.contact-section{
  padding:90px 0;
}

.contact-card{
  background:#fff;
  border-radius:32px;
  padding:60px;
  box-shadow:0 15px 40px rgba(0,0,0,0.04);
}

.contact-form-header{
  margin-bottom:30px;
}

.form-kicker{
  font-size:12px;
  font-weight:800;
  letter-spacing:4px;
  color:#005dff;
  margin-bottom:12px;
}

.contact-form-header h2,
.section-heading h2{
  font-size:38px;
  font-weight:800;
  margin-bottom:12px;
}

.contact-form-header p{
  color:#5b6472;
  line-height:1.8;
  max-width:620px;
  margin:0;
}

/* FORM */

.form-control{
  height:62px;
  border:none;
  border-radius:18px;
  background:#eef7fa;
  padding:18px 24px;
  font-size:15px;
  box-shadow:none !important;
}

textarea.form-control{
  height:180px;
  resize:none;
}

select.form-control{
  color:#5b6472;
}

.submit-btn{
  border:none;
  padding:18px 40px;
  border-radius:50px;
  background:
  linear-gradient(
    90deg,
    #005dff,
    #00dfff
  );
  color:#fff;
  font-weight:700;
  transition:.4s;
}

.submit-btn:hover{
  transform:translateY(-4px);
}

/* NEWSLETTER */

.newsletter-box{
  height:100%;
  padding:45px;
  border-radius:28px;
  background:
  linear-gradient(
    135deg,
    rgba(0,93,255,.9),
    rgba(0,223,255,.75)
  ),
  url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1200&auto=format&fit=crop');

  background-size:cover;
  color:#fff;
}

.newsletter-title{
  font-size:34px;
  font-weight:800;
  margin-bottom:20px;
}

.newsletter-text{
  opacity:.9;
  line-height:1.8;
  margin-bottom:30px;
}

.newsletter-input{
  width:100%;
  height:58px;
  border:none;
  border-radius:40px;
  padding:0 22px;
  margin-bottom:18px;
}

.newsletter-btn{
  width:100%;
  height:58px;
  border:none;
  border-radius:40px;
  background:#071426;
  color:#fff;
  font-weight:700;
}

.contact-info-panel{
  height:100%;
  border-radius:28px;
  padding:40px;
  background:linear-gradient(180deg, #f3fbff, #ffffff);
  border:1px solid #d8edf6;
  box-shadow:0 18px 36px rgba(0, 93, 255, 0.08);
}

.contact-info-panel h3{
  font-size:30px;
  line-height:1.2;
  font-weight:800;
  margin-bottom:28px;
}

.contact-info-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:20px 0;
  border-top:1px solid #dcecf3;
}

.contact-info-item:first-of-type{
  border-top:0;
  padding-top:0;
}

.contact-info-item span{
  display:block;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  color:#005dff;
  margin-bottom:6px;
  text-transform:uppercase;
}

.contact-info-item a,
.contact-info-item p{
  margin:0;
  color:#273447;
  text-decoration:none;
  line-height:1.6;
  font-weight:600;
}

/* =========================
INFO BOXES
========================= */

.info-section{
  padding-top:20px;
}

.info-card{
  background:#fff;
  border-radius:28px;
  padding:35px;
  height:100%;
  transition:.4s;
  border:1px solid transparent;
}

.info-card:hover{
  transform:translateY(-8px);
  border-color:#00cfff;
}

.info-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  background:#eef7fa;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#0082c8;
  margin-bottom:25px;
}

.info-title{
  font-size:18px;
  font-weight:700;
  margin-bottom:14px;
}

.info-text{
  color:#5b6472;
  line-height:1.8;
}

/* =========================
MAP
========================= */

.map-section{
  padding-top:60px;
}

.section-heading{
  margin-bottom:28px;
}

.maps-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:28px;
}

.map-card{
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  border:1px solid #d8edf6;
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.map-card-header{
  padding:24px 26px;
}

.map-card-header h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:8px;
}

.map-card-header p{
  color:#5b6472;
  margin:0;
}

.map-card iframe{
  width:100%;
  height:360px;
  border:0;
  display:block;
}

/* =========================
TAGS
========================= */

.contact-tags{
  padding:80px 0 120px;
}

.tags-title{
  font-size:48px;
  font-weight:800;
  margin-bottom:35px;
}

.tags-title span{
  background:linear-gradient(90deg,#005dff,#00cfff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.tags-list{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  padding:0;
  margin:0;
  list-style:none;
}

.tags-list li a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 28px;
  border-radius:50px;
  background:#fff;
  border:1px solid #d8e8ef;
  color:#071426;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.tags-list li a:hover{
  background:
  linear-gradient(
    90deg,
    #005dff,
    #00dfff
  );
  color:#fff;
  transform:translateY(-4px);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

  .hero-title{
    font-size:60px;
  }

  .contact-card{
    padding:35px;
  }

  .maps-grid{
    grid-template-columns:1fr;
  }

  .newsletter-box{
    margin-top:30px;
  }

  .tags-title{
    font-size:38px;
  }
}

@media(max-width:767px){

  .contact-hero{
    padding:110px 0 150px;
  }

  .hero-title{
    font-size:46px;
  }

  .hero-text{
    font-size:16px;
  }

  .contact-card{
    padding:24px;
  }

  .contact-form-header h2,
  .section-heading h2{
    font-size:30px;
  }

  .contact-info-panel{
    padding:28px;
  }

  .map-card iframe{
    height:300px;
  }

  .newsletter-box{
    padding:30px;
  }

  .info-title{
    font-size:22px;
  }

  .tags-title{
    font-size:32px;
  }
}
