/* HERO */

.appointment-hero{
  position:relative;
  height:65vh;
  background:url("../images/appointment-banner.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.appointment-hero .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
  max-width:850px;
  padding:20px;
}

.hero-badge{
  display:inline-block;
  background:#2563eb;
  padding:10px 18px;
  border-radius:50px;
  margin-bottom:20px;
  font-weight:600;
}

.hero-content h1{
  font-size:4rem;
  margin-bottom:20px;
  font-weight:800;
}

.hero-content h1 span{
  color:#3b82f6;
}

.hero-content p{
  font-size:1.1rem;
  line-height:1.8;
}

/* SECTION */

.appointment-section{
  padding:100px 0;
  background:#f8fafc;
}

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

.appointment-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

.section-tag{
  display:inline-block;
  background:#dbeafe;
  color:#2563eb;
  padding:8px 16px;
  border-radius:50px;
  font-weight:600;
  margin-bottom:20px;
}

.appointment-info h2,
.form-header h2{
  font-size:2.8rem;
  margin-bottom:20px;
}

.appointment-info h2 span{
  color:#2563eb;
}

.appointment-info p{
  color:#64748b;
  line-height:1.8;
  margin-bottom:40px;
}

/* INFO CARDS */

.info-cards{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.info-card{
  display:flex;
  gap:20px;
  background:#fff;
  padding:25px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.info-card i{
  font-size:1.8rem;
  color:#2563eb;
}

.info-card h4{
  margin-bottom:8px;
}

/* HOURS */

.working-hours{
  margin-top:50px;
  background:#0f172a;
  color:#fff;
  padding:35px;
  border-radius:20px;
}

.working-hours h3{
  margin-bottom:20px;
}

.working-hours ul{
  list-style:none;
  padding:0;
}

.working-hours li{
  display:flex;
  justify-content:space-between;
  margin-bottom:15px;
  border-bottom:1px solid rgba(255,255,255,0.1);
  padding-bottom:10px;
}

/* FORM */

.appointment-form-wrap{
  background:#fff;
  padding:50px;
  border-radius:25px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.appointment-form{
  margin-top:30px;
}

.form-group{
  margin-bottom:25px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.form-group label{
  display:block;
  margin-bottom:10px;
  font-weight:600;
}

.form-group input,
.form-group textarea,
.form-group select{
  width:100%;
  padding:15px 18px;
  border:1px solid #dbe2ea;
  border-radius:12px;
  font-size:1rem;
  outline:none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  border-color:#2563eb;
}

.submit-btn{
  width:100%;
  padding:18px;
  border:none;
  background:#2563eb;
  color:#fff;
  font-size:1rem;
  border-radius:14px;
  cursor:pointer;
  font-weight:700;
  transition:0.3s;
}

.submit-btn:hover{
  background:#1d4ed8;
}

/* EXTRA SECTION */

.appointment-extra{
  padding:100px 0;
  background:#fff;
}

.extra-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.extra-card{
  background:#f8fafc;
  padding:40px;
  border-radius:22px;
  text-align:center;
  transition:0.3s;
}

.extra-card:hover{
  transform:translateY(-10px);
}

.extra-card i{
  font-size:3rem;
  color:#2563eb;
  margin-bottom:20px;
}

.extra-card h3{
  margin-bottom:15px;
}

/* FOOTER */

footer{
  background:#020617;
  color:#cbd5e1;
  padding:80px 0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
  margin-bottom:50px;
}

.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:12px;
}

.footer-links a{
  color:#cbd5e1;
  text-decoration:none;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:20px;
  text-align:center;
}

/* RESPONSIVE */

@media(max-width:992px){

  .appointment-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .hero-content h1{
    font-size:2.5rem;
  }

  .form-row{
    grid-template-columns:1fr;
  }

  .appointment-form-wrap{
    padding:30px;
  }

}