
/* FONT IMPORT (add in head once) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&display=swap');


/* SECTION */
.services-page {
  padding: 80px 0;
  background: #f8fafc; /* 🔥 light background */
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 38px;
  color: #0f172a;
}

/* Mobile */
@media(max-width: 600px){

    .section-title {
        font-size: 32px;
    }
	
}


.services-tagline {
  display: block;
  text-align: center;

  font-size: 18px;
  color: #1e293b;

  margin: 0 auto 50px auto;

  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;

  line-height: 1.7;
}

/* BLOCK */
.service-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: center;
  padding: 30px;
  border-radius: 16px;
  transition: 0.3s;
    background: #ffffff;
	 border: 1px solid #e2e8f0;
  scroll-margin-top: 80px;
}

.service-block + .service-block {
  margin-top: 20px;
}

/* 🔥 HOVER WHOLE BLOCK */
.service-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* IMAGE CARD */
.service-img {
  background: #ffffff;
  padding: 12px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
   max-width: 280px;
  margin: 0 auto;
}

/* IMAGE */
.service-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
}

/* CONTENT */

.service-content {
  max-width: 520px;
}

.service-content h2 {
  font-size: 22px;
  margin-bottom: 12px;
    line-height: 1.3;
  color: #0f172a;
}

/* TEXT */
.service-content p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* SUBHEAD */
.service-content h4 {
  font-size: 14px;
  color: #1E40AF;
  margin-top: 10px;
  font-weight: 600;
}

/* 🔥 SMALL SEPARATOR LINE */
.service-content h4::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22C55E;
  margin-right: 8px;
  border-radius: 5px;
}

/* 📱 MOBILE */
@media(max-width:768px){

  .service-block {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 25px;
  }

}


/* ================= CTA SECTION ================= */


.appointment-cta{
  padding: 70px 0 90px;

  position: relative;
  z-index: 5;
}

/* CTA BOX */

.cta-box{
  background: linear-gradient(
    135deg,
    #eff6ff,
    #f8fafc
  );

  border-radius: 24px;

  padding: 46px 50px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;

  position: relative;

  overflow: hidden;
    border-left: 6px solid #2563eb;
}

/* CONTENT */

.cta-content h2{
  font-size: 42px;
  font-weight: 700;

  color: #0f172a;

  margin-bottom: 12px;
}

.cta-content p{
  font-size: 16px;
  line-height: 1.7;

  color: #64748b;

  max-width: 560px;
}

/* BUTTON AREA */

.cta-buttons{
  display: flex;
  align-items: center;

  gap: 14px;

  flex-shrink: 0;
}

/* BUTTON */

.cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 13px 20px;

  border-radius: 12px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition: 0.25s ease;
}

/* CALL BUTTON */

.call-btn{
  background: #dbeafe;

  color: #1d4ed8;
}

/* WHATSAPP BUTTON */

.whatsapp-btn{
  background: #22c55e;

  color: white;
}

/* HOVER */

.cta-btn:hover{
  transform: translateY(-2px);
}

.call-btn:hover{
  background: #2563eb;
  color:#ffffff;
}

.whatsapp-btn:hover{
  background: #16a34a;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .appointment-cta{
    padding: 50px 16px 70px;
  }

  .cta-box{
    padding: 30px 24px;

    border-radius: 20px;

    flex-direction: column;

    text-align: center;
  }

  .cta-content h2{
    font-size: 30px;

    margin-bottom: 10px;
  }

  .cta-content p{
    font-size: 14px;
  }

  .cta-buttons{
    width: 100%;

    flex-direction: column;
  }

  .cta-btn{
    width: 100%;
  }

}