/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #0f172a;
  background: #ffffff;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* SECTION TITLE */
.section-header{
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2{
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.section-header p{
    font-size: 17px;
    color: #64748b;
}

/* Mobile */
@media(max-width: 600px){

    .section-header h2{
        font-size: 32px;
    }
	
}

/* ================= NAVBAR ================= */
/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* CONTAINER */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;   /* ?? fixed height = perfect center */
}

/* LOGO */
.logo img {
  height: 55px;
}

/* MENU */
#nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* LINKS */
#nav-menu a {
  position: relative;
  text-decoration: none;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 5px;
}

/* ?? GREEN UNDERLINE HOVER */
#nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #22C55E;
  transition: 0.3s ease;
}

#nav-menu a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 22px;
}


@media(max-width:768px){

  #nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    flex-direction: column;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .hamburger {
    display: block;
  }

}

/* ================= HERO ================= */

.hero {
  background: #f1f5f9;
  position: relative;
  overflow: hidden;   /* ?? full screen */
}


.hero-clinic {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

/* ? stylish underline */
.hero-clinic::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 50%;
  height: 3px;
  background: #22C55E;
  border-radius: 10px;
}

/* SMDC highlight */
.hero-clinic span {
  color: #22C55E;
  font-weight: 600;
}



/* DESCRIPTION (LESS IMPORTANT) */
.hero-desc {
  font-size: 15px;
  color: #64748b;   /* lighter grey */
  margin-top: 12px;
  line-height: 1.6;
}

/* GRID LAYOUT */
.hero-inner {
	  gap: 0;
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  align-items: stretch;   /* ?? CHANGE (center ? stretch) */
  min-height: 80vh;       /* ?? ADD */
}

/* LEFT TEXT */
.hero-left {
 padding-left: 140px;
  position: relative;
  z-index: 3;
    display: flex;              /* ?? IMPORTANT */
  flex-direction: column;     
 justify-content: flex-start;
  padding-top: 90px;
    margin-right: -140px;
}

/* TEXT */
.hero-left h1 {
  font-size: 55px;
  line-height: 1.5;
}

.hero-left span {
  color: #2563eb;
}

.hero-left p {
  margin: 20px 0;
  color: #64748b;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #22C55E;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

/* HOVER */
.btn-primary:hover {
  background: #16a34a;
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

/* HOVER */
.btn-outline:hover {
  background: #2563eb;
  color: #ffffff;
}
/* FEATURES */

.hero-features{
  display: flex;
  gap: 34px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* SINGLE */

.feature{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ICON */

.feature i{
  font-size: 22px;
  color: #2563eb;

  margin-bottom: 10px;
}

/* MAIN TEXT */

.feature h4{
  font-size: 16px;
  font-weight: 700;

  color: #0f172a;

  margin-bottom: 3px;
}

/* SUBTEXT */

.feature span{
  font-size: 14px;
  color: #64748b;
}


/* IMAGE FULL STRETCH */
.hero-right {
  position: relative;
  height: 100%;   /* ?? IMPORTANT */
  display: flex;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ?? full stretch */
}

.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to left,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.12) 30%,
    rgba(255,255,255,0.28) 55%,
    rgba(248,250,252,0.55) 75%,
    #f1f5f9 92%
  );

  z-index: 1;
}


/* ?? HERO WAVE FIX */
.hero-wave {
  position: absolute;
  bottom: -8px;     /* ?? attach to bottom */
  left: 0;
  width: 100%;
  z-index: 3;
}

.hero-wave svg {
  width: 100%;
  height: 200px;
}

.hero-wave path {
  fill: #ffffff;  /* ?? same as hero bg */
}

@media(max-width:1100px){

  .hero-inner{
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
    .hero-clinic::after{
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-buttons{
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-left{
    padding: 40px 20px;
    margin-right: 0;
    text-align: center;
  }

  .hero-right{
    height: 500px;
	 order: -1;
  }

  .hero-right::before{
    display: none;
  }
  
    .hero-right img{
    object-fit: cover;

    object-position: center top;
  }
  
    .hero-features{
    justify-content: center;
  }

}

@media(min-width:769px){

  .hero-features{
    padding-bottom: 70px;
  }

}

@media(max-width:768px){

  /* GRID */
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* LEFT */
  .hero-left {
    padding: 30px 20px;
    margin-right: 0;   /* ? remove overlap */
    text-align: center;
  }

  /* BRAND */
  .hero-clinic {
    font-size: 16px;
    margin-bottom: 8px;
    display: inline-block;
  }

  .hero-clinic::after {
    left: 50%;
    transform: translateX(-50%);  /* ?? center underline */
    width: 40%;                   /* ?? smaller */
    height: 2px;                  /* ?? thinner */
    bottom: -3px;
  }

  /* HEADING */
  .hero-left h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  /* DESCRIPTION */
  .hero-desc {
    font-size: 14px;
    margin-top: 10px;
  }

  /* BUTTONS */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* FEATURES */
  .hero-features{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 24px;
  }

  .feature{
    padding: 10px;
  }

  .feature i{
    font-size: 20px;
    margin-bottom: 8px;
  }

  .feature h4{
    font-size: 16px;
    margin-bottom: 2px;
  }

  .feature span{
    font-size: 13px;
    line-height: 1.4;
  }

  /* IMAGE */
  .hero-right {
    height: 250px;   /* ?? control height */
     margin-top: 0;
  }

  .hero-right img {
    object-fit: cover;
  }

  /* REMOVE HEAVY OVERLAY */
  .hero-right::before {
    display: none;
  }

  /* WAVE */
  .hero-wave svg {
    height: 60px;   /* ?? reduce from 200px */
  }
}

/* ================= WHY ================= */
/* WHY SECTION */
.why-section {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: #22C55E;
}

/* ICON */
/* ICON BASE */
.why-card i {
  font-size: 26px;
  margin-bottom: 12px;
    background: rgba(34,197,94,0.1);
  padding: 20px;
  border-radius: 50%;
  transition: 0.3s ease;
  animation:  smoothGlow 2s infinite ease-in-out;/* ?? slow + smooth */
}

/* SMOOTH ANIMATION */
@keyframes smoothGlow {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0px rgba(34,197,94,0.3);
  }
  50% {
    transform: scale(1.03);   /* ?? very small scale */
    text-shadow: 0 0 8px rgba(34,197,94,0.4);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 0px rgba(34,197,94,0.3);
  }
}

/* DIFFERENT COLORS */
.why-card:nth-child(1) i { color: #22C55E; } /* green */
.why-card:nth-child(2) i { color: #1E40AF; } /* blue */
.why-card:nth-child(3) i { color: #F59E0B; } /* yellow */
.why-card:nth-child(4) i { color: #06B6D4; } /* cyan */
.why-card:nth-child(5) i { color: #10B981; } /* teal */
.why-card:nth-child(6) i { color: #EF4444; } /* red */


/* HOVER ANIMATION */
.why-card:hover i {
  transform: translateY(-5px) scale(1.1);
}

/* TITLE */
.why-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

/* TEXT */
.why-card p {
  font-size: 13px;
  color: #64748b;
}

/* TABLET */
@media(max-width:992px){
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media(max-width:576px){
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-section {
    padding: 60px 0;
  }

  .why-card {
    padding: 20px;
  }
}

/* ================= ABOUT ================= */
/* ABOUT */
.about-section {
  padding: 80px 0;
  background: #ffffff;
}

/* LAYOUT */
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* TEXT */
.about-text p {
  margin-bottom: 15px;
  color: #475569;
  font-size: 15px;
}

.about-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
}

.about-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

@media(max-width:768px){

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-video iframe {
    height: 220px;
  }

}

/* ================= SERVICES ================= */
/* ================= SERVICES SECTION ================= */

.services-section{
  padding: 80px 0;
  text-align: center;
  background: #f8fafc;
}

/* GRID */

.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
}

/* CARD */

.service-card{
  background: #ffffff;
  padding: 22px 18px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;

  border: 1px solid #e2e8f0;

  transition: all 0.25s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 150px;

  cursor: pointer;

  position: relative;
}


/* ICON */

.service-card i{
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;

  color: #22C55E;

  background: #ffffff;

  border-radius: 50%;
  border:1px solid #e2e8f0;
  margin-bottom: 14px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.05);

  transition: 0.25s;
}

/* TEXT */

.service-card p{
  font-size: 15px;
  color: #334155;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
    margin-bottom: 20px;
}

/* VIEW MORE */
.view-more{
  position: absolute;

  bottom: 14px;
  left: 50%;

  transform: translateX(-50%);

  font-size: 9px;
  font-weight: 600;

  color: #1E40AF;

  background: #eff6ff;

  padding: 5px 10px;

  border-radius: 20px;

  transition: 0.25s ease;
}

/* HOVER */

.service-card:hover .view-more{
  background: #1E40AF;
  color: white;
}

/* HOVER */

.service-card:hover{
  transform: translateY(-5px);
  border-color: #93c5fd;
  background: #f8fbff;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.service-card:hover i{
  transform: scale(1.08);
}

.service-card:hover::after{
  transform: translate(2px,-2px);
  color: #1E40AF;
}

/* ACTIVE */

.service-card:active{
  transform: scale(0.98);
}

/* ================= TABLET ================= */

@media(max-width:992px){

  .services-grid{
    grid-template-columns: repeat(3,1fr);
  }

}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .services-section{
    padding: 55px 16px;
  }

  .services-grid{
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
  }

  .service-card{
    padding: 18px 12px;
    border-radius: 14px;
    min-height: 125px;
  }

  .service-card::after{
    top: 10px;
    right: 10px;
    font-size: 12px;
  }

  .service-card i{
    width: 48px;
    height: 48px;

    font-size: 20px;

    margin-bottom: 10px;
  }

  .service-card p{
    font-size: 13px;
    line-height: 1.5;
	   margin-bottom: 30px;
  }

}

/* ================= SMALL MOBILE ================= */

@media(max-width:480px){

  .services-grid{
    gap: 12px;
  }

  .service-card{
    min-height: 115px;
    padding: 16px 10px;
  }

  .service-card i{
    font-size: 20px;
  }

  .service-card p{
    font-size: 12px;
  }

}




/* ================= painless ================= */



.painless-section {
  padding: 80px 0;
  background: #f8fafc;
  text-align: center;
}

.painless-sub {
  color: #64748b;
  margin-bottom: 40px;
  font-size: 14px;
}

.painless-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.painless-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.painless-card i {
  font-size: 26px;
  color: #22C55E;
  margin-bottom: 10px;
}

.painless-card h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.painless-card p {
  font-size: 13px;
  color: #64748b;
}

.painless-card:hover {
  transform: translateY(-5px);
}

@media(max-width:768px){
  .painless-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ================= clinic-gallery ================= */

/* SECTION */
.clinic-gallery {
  padding: 80px 0;
  background: #f8fafc;
  text-align: center;
}

/* SUBTEXT */
.gallery-subtext {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 40px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* IMAGE */
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s ease;
}

/* HOVER */
.gallery-grid img:hover {
  transform: scale(1.04);
}


@media(max-width:768px){

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid img {
    height: 160px;
  }

}


/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.9);
  display: none;

  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* IMAGE */
.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
}

/* CLOSE BUTTON */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}


/* ================= DOCTORS ================= */
.doctors-section {
  padding: 80px 0;
  background: #ffffff;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  align-items: stretch; 
}

.doctor-card {
  background: #fff;
  padding: 15px;
 border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04); 
  border-radius: 12px;
  text-align: center;
height: 100%;
  margin: auto;
    transition: 0.3s ease;
}

/* ?? FEATURED DOCTOR */
.doctor-card.featured {
  border: 1px solid #22C55E;
  transform: scale(1.03);
  box-shadow: 0 10px 40px rgba(34,197,94,0.15);
  position: relative;
}

/* ? TOP BADGE */
.doctor-card.featured::before {
  content: "Founder";
  position: absolute;
  top: -10px;
  left: 20px;
  background: #22C55E;
  color: #fff;
  font-size: 11px;
  padding: 2px 15px;
  border-radius: 20px;
}


/* HOVER LIFT */
.doctor-card:hover {
  transform: translateY(-8px);   /* 🔥 lift */
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.doctor-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}


@media(max-width:768px){

  .doctors-section {
    padding: 50px 0;
  }

  /* GRID */
  .doctors-grid {
    grid-template-columns: 1fr 1fr;  /* ?? 2 per row */
    gap: 15px;
  }

  /* CARD */
  .doctor-card {
    padding: 12px;
    transform: none !important;   /* ? remove scale issues */
  }

  /* FEATURED FIX */
  .doctor-card.featured {
    transform: none;   /* ?? IMPORTANT */
  }

  /* IMAGE */
  .doctor-card img {
    height: 160px;   /* ?? smaller */
  }

  /* TEXT */
  .doctor-card h3 {
    font-size: 15px;
  }

  .doctor-card p {
    font-size: 13px;
  }

  /* BADGE */
  .doctor-card.featured::before {
    font-size: 10px;
    padding: 2px 10px;
    top: -8px;
  }

}




/* ================= before-after ================= */


.before-after-section{
    padding: 80px 20px;
    background: #f8fbff;
}

.container{
    max-width: 1200px;
    margin: auto;
}



.ba-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    align-items: start;
}

.ba-card{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.ba-card img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.ba-card:hover{
    transform: translateY(-6px);
}


/* Tablet */
@media(max-width: 992px){

    .ba-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

/* Mobile */
@media(max-width: 600px){

    .ba-grid{
        grid-template-columns: 1fr;
    }

}

/* ================= TESTIMONIALS ================= */


.testimonials-section {
  padding: 80px 0;
  background: #ffffff;
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.testimonial-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* STARS */
.stars {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 8px;
}

/* TITLE */
.testimonial-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #0f172a;
  line-height: 1.4;
}

/* TEXT */
.testimonial-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 15px;
  flex: 1;   /* ?? equal height balance */
}

/* PATIENT */
.patient-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* AVATAR */
.avatar {
  width: 36px;
  height: 36px;
  background: #22C55E;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

/* NAME */
.patient-info strong {
  font-size: 14px;
  color: #0f172a;
}

/* LOCATION */
.patient-info p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

.review-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #e2e8f0;
}

/* LEFT */
.review-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-left img {
  height: 18px;
}

.review-left span {
  font-weight: bold;
  font-size: 16px;
}

/* RIGHT */
.review-right {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: #64748b;
}

/* BUTTON */
.review-btn {
  padding: 6px 12px;
  background: #1E40AF;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  transition: 0.3s;
  white-space: nowrap;
}

/* HOVER */
.review-btn:hover {
  background: #22C55E;
}

@media(max-width:768px){

    .testimonials-grid {
    grid-template-columns: 1fr;  /* ?? single column */
    gap: 18px;
  }

  .testimonial-card {
    padding: 18px;
  }

  .testimonial-card h4 {
    font-size: 15px;
  }

  .testimonial-card p {
    font-size: 13px;
  }

  .review-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
  }

  /* LEFT */
  .review-left {
    width: 100%;
  }

  /* RIGHT */
  .review-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  /* TEXT */
  .review-right span {
    font-size: 13px;
  }

  /* BUTTON */
  .review-btn {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 13px;
  }

}


/* ================= contact ================= */

/* SECTION */
.contact-section {
  padding: 60px 0;
  background: #f8fafc;
}

/* GRID */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* LEFT SIDE */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD BOX */
/* CARD BOX */
.info-box {
  display: flex;
  align-items: flex-start;
   padding: 18px;
  gap: 14px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

/* ICON */
.info-box i {
  font-size: 20px;
  color: #1E40AF;
  background: #dbeafe;
  padding: 14px;
  border-radius: 50%;
  min-width: 48px;
  text-align: center;
}

/* TITLE */
.info-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

/* DETAILS */
.info-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
}

/* BUTTONS */
.contact-btn {
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;
}

.contact-btn i{
  font-size: 14px;
}

/* BUTTONS */
.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}


/* COLORS */
.whatsapp {
  background: #25D366;
}

.call {
  background: #1E40AF;
}

/* HOVER */
.contact-btn:hover {
  transform: translateY(-2px);
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 12px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  /* SECTION */
  .contact-section{
    padding: 45px 18px;
  }

  /* TITLE */
  .section-title{
    font-size: 32px;
    margin-bottom: 28px;
  }

  /* GRID */
  .contact-inner{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* LEFT SIDE */
  .contact-info{
    gap: 14px;
  }

  /* CARD */
  .info-box{
    padding: 16px;
    gap: 12px;
    border-radius: 14px;
  }

  /* ICON */
  .info-box i{
    font-size: 16px;
    padding: 11px;
    min-width: 40px;
  }

  /* TITLE */
  .info-box h4{
    font-size: 16px;
    margin-bottom: 5px;
  }

  /* DETAILS */
  .info-box p{
    font-size: 14px;
    line-height: 1.6;
  }

  /* BUTTON AREA */
  .contact-actions{
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
  }

  /* BUTTON */
  .contact-btn{
    width: 100%;
    text-align: center;
    padding: 13px;
    font-size: 15px;
  }

  /* MAP */
  .contact-map iframe{
    min-height: 260px;
    border-radius: 14px;
  }

}


/* ================= FOOTER ================= */

.footer {
  background: #2d4bb3; /* tuzya blue shade */
  color: #cbd5f5;
  padding: 60px 0 20px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo img {
  height: 55px;     /* ?? perfect size */
  width: auto;
  display: block;
}

/* GRID FIX */
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 0.8fr; /* ?? balanced */
  gap: 20px; /* ?? reduced gap */
  align-items: flex-start;
}

/* COLUMN */
.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.5;
    margin-bottom: 14px;
}

/* REMOVE EXTRA SPACE */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 6px; /* ?? tighter */
}

/* LINKS (NO UNDERLINE) */
.footer a {
  text-decoration: none !important;
  color: #cbd5f5;
  font-size: 14px;
  transition: 0.3s;
}

.footer a:hover {
  color: #22C55E;
  text-decoration: none !important;
}

/* SOCIAL */
.social-links {
  display: flex;
  gap: 10px; /* ?? tight */
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1e293b;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #e2e8f0;
  font-size: 14px;
  transition: 0.3s;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* PER ICON COLORS */
.social-links a:nth-child(1):hover { background: #1877F2; }
.social-links a:nth-child(2):hover { background: #E1306C; }
.social-links a:nth-child(3):hover { background: #25D366; }
/* YouTube hover */
.social-links a:nth-child(4):hover { background: #FF0000;  /* ?? YouTube red */}

/* BOTTOM */
.footer-bottom {
  margin-top: 35px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px;
  font-size: 13px;
  color: #94a3b8;
}

/* CREDIT */
.footer-credit a {
  color: #22C55E;
  text-decoration: none !important;
}

.footer-credit a:hover {
  color: #4ade80;
}

@media(max-width:768px){

  .footer {
    padding: 40px 0 20px;
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-col p {
    max-width: 300px;
  }

  /* LINKS CENTER */
  .footer-col ul {
    text-align: center;
  }

  .footer-col ul li {
    margin-bottom: 8px;
  }

  /* CONTACT LINKS */
  .footer-col p a {
    display: inline-block;
    margin: 4px 0;
  }

  /* SOCIAL CENTER */
  .social-links {
    justify-content: center;
    gap: 12px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* BOTTOM */
  .footer-bottom {
    margin-top: 25px;
    font-size: 12px;
    line-height: 1.6;
    padding: 12px 10px 0;
  }

}



#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 45px;
  height: 45px;

  border: none;
  border-radius: 50%;

  background: #22C55E;
  color: white;
  font-size: 18px;

  cursor: pointer;
  display: none;

  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* hover */
#scrollTopBtn:hover {
  background: #16a34a;
  transform: translateY(-3px);
}