/* =====================================================
   HERO
===================================================== */

.hero-light-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.96),
    rgba(255,255,255,.88)
  );
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-intro{
  text-align:center;
  max-width:720px;
  margin:0 auto;
}

.hero-intro h1{
  font-size:34px;
  font-weight:800;
}

.hero-intro h1 span{
  color:var(--accent);
}

.hero-intro p{
  font-size:15px;
  color:#475569;
  margin-bottom:16px;
}

.hero-badges{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.hero-badges span{
  background:rgba(255,255,255,.75);
  padding:6px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
}

/* =====================================================
   CONTACT SECTION
===================================================== */
.contact-section{
  padding:80px 0;
  background:linear-gradient(180deg,#f8fafc,#ffffff);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:40px;
}

/* =====================================================
   CONTACT INFO
===================================================== */
.contact-info{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.info-card{
  display:flex;
  gap:14px;
  padding:18px 20px;
  border-radius:18px;

  background:rgba(255,255,255,.7);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.4);

  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.info-card i{
  font-size:22px;
  color:var(--accent);
}

.info-card strong{
  display:block;
  font-size:14px;
}

.info-card p{
  font-size:14px;
  color:#475569;
  margin:2px 0 0;
}

/* =====================================================
   FORM
===================================================== */
.glass-form{
  padding:30px;
  border-radius:26px;
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(28px);
  border:1px solid rgba(255,255,255,.45);
  box-shadow:0 40px 90px rgba(0,0,0,.14);
}

.glass-form h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:6px;
}

.glass-form p{
  font-size:14px;
  color:#64748b;
  margin-bottom:20px;
}

.form-group{
  margin-bottom:14px;
}

.form-group label{
  font-size:13px;
  font-weight:600;
  display:block;
  margin-bottom:6px;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.8);
  font-size:14px;
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(48,104,124,.12);
}

/* SUBMIT */
.btn-submit{
  width:100%;
  margin-top:10px;
  padding:14px;
  border:none;
  border-radius:999px;
  background:var(--accent-grad);
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(48,104,124,.35);
}

.btn-submit:hover{
  opacity:.95;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:991px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  .hero-apple{
    padding:60px 0 40px;
  }
  .hero-intro h1{
    font-size:26px;
  }
}

/* =====================================================
   CONTACT – GET IN TOUCH
===================================================== */

.contact-section{
  padding:90px 0;
  background:linear-gradient(180deg,#f8fafc,#ffffff);
}

/* HEADER */
.contact-header{
  max-width:680px;
  margin:0 auto 50px;
}

.contact-header h2{
  font-size:34px;
  font-weight:800;
  margin-bottom:10px;
}

.contact-header h2 span{
  color:var(--accent);
}

.contact-header p{
  font-size:15px;
  color:#475569;
}

/* GRID */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:40px;
}

/* INFO */
.contact-info{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.info-card{
  display:flex;
  gap:14px;
  padding:20px 22px;
  border-radius:20px;

  background:rgba(255,255,255,.75);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.45);

  box-shadow:0 24px 60px rgba(0,0,0,.12);
}

.info-card i{
  font-size:22px;
  color:var(--accent);
  flex-shrink:0;
}

.info-card strong{
  font-size:14px;
  font-weight:700;
}

.info-card p{
  font-size:14px;
  color:#475569;
  margin:2px 0 0;
  line-height:1.6;
}

/* MAP */
.contact-map{
  border-radius:26px;
  overflow:hidden;
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.45);
  box-shadow:0 40px 90px rgba(0,0,0,.14);
}

.contact-map iframe{
  width:100%;
  height:100%;
  min-height:420px;
  border:0;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:991px){

  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-map iframe{
    min-height:360px;
  }
}

@media(max-width:768px){

  .contact-section{
    padding:70px 0;
  }

  .contact-header h2{
    font-size:28px;
  }

}
