/* ===========================================
   GLOBAL RESET & BASE
=========================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'roboto', sans-serif;
  background: #f5f7fa;
  color: #1a1616;
}

a {
  text-decoration: none;
}


/* ===========================================
   SECTION 1 : NAVBAR
=========================================== */

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-overlay.open {
  display: block;
  opacity: 1;
}

nav {
  background: #ffffff;
  border-bottom: 1px solid #e4eaf0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
 z-index: 1200;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-section img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* ── Desktop Nav Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 150px;
}

.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-links > li > button {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #111010;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  background: none;
  border: none;
  text-decoration: none;
  border-radius: 6px;
}

.nav-links > li.active > a  { color: #1a6fa8; font-weight: 700; }
.nav-links > li > a:hover,
.nav-links > li > button:hover { background: #eef5fb; color: #1a6fa8; }

.chevron {
  font-size: 9px;
  color: #aaa;
  transition: transform 0.2s ease;
}
.nav-links > li:hover > button .chevron {
  transform: rotate(180deg);
  color: #1a6fa8;
}

/* ── Desktop Dropdown ── */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 225px;
  background: #2A77C7;
  border: 1px solid #dce8f0;
  padding: 6px;
  z-index: 999;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.17s ease, transform 0.17s ease, visibility 0.17s;
  pointer-events: none;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
}
.nav-links > li:hover > .dropdown,
.nav-links > li:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.dropdown > a,
.dropdown > .sub-item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  width: 100%;
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
  text-align: left;
  text-decoration: none;
}
.dropdown > a:hover,
.dropdown > .sub-item > button:hover {
  background:white;
  color: #000000;
}

/* ── Sub Dropdown ── */
.sub-item { position: relative; }
.sub-arrow { font-size: 15px; color: rgba(255,255,255,0.65); }

.sub-dropdown {
  position: absolute;
  top: -6px;
  left: calc(100% + 4px);
  min-width: 210px;
  background: #2A77C7;
  border: 1px solid #dce8f0;
  padding: 6px;
  z-index: 1000;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  pointer-events: none;
}
.sub-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
  background: transparent;
}
.sub-item:hover > .sub-dropdown,
.sub-item:focus-within > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: all;
}
.sub-dropdown a {
  display: block;
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  transition: background 0.12s, color 0.12s;
  text-decoration: none;
}
.sub-dropdown a:hover { background: white; color: black; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #2c2c2c;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sidebar header – hidden on desktop */
.sidebar-header { display: none !important; }

/* Desktop: always show all li items */
@media (min-width: 901px) {
  .nav-links > li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Mobile (≤ 900px) ── */
@media (max-width: 900px) {

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 290px;
    background: #1a5c96;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 0 40px 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.25);
    margin-right: 0;
  }
  .nav-links.open { transform: translateX(0); }

  /* Sidebar header */
  .nav-links > li.sidebar-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 70px;
    flex-shrink: 0;
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
  .sidebar-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
  }
  .sidebar-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
  }
  .sidebar-close:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: rotate(90deg);
  }

  /* Nav items */
  .nav-links > li > a,
  .nav-links > li > button {
    color: #ffffff;
    font-size: 15px;
    padding: 14px 22px;
    border-radius: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: space-between;
    text-decoration: none;
  }
  .nav-links > li.active > a {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
  }
  .nav-links > li > a:hover,
  .nav-links > li > button:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }
  .chevron { color: rgba(255, 255, 255, 0.6); }
  .nav-links > li.mob-open > button .chevron {
    transform: rotate(180deg);
    color: white;
  }

  /* Accordion dropdown */
  .dropdown {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    background: rgba(0, 0, 0, 0.18);
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links > li.mob-open > .dropdown { max-height: 700px; }

  .dropdown > a,
  .dropdown > .sub-item > button {
    padding: 12px 22px 12px 38px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    background: none;
    width: 100%;
    text-align: left;
  }
  .dropdown > a:hover,
  .dropdown > .sub-item > button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  .sub-arrow { color: rgba(255, 255, 255, 0.5); }

  /* Nested sub-dropdown */
  .sub-dropdown {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .sub-item.mob-sub-open > .sub-dropdown { max-height: 500px; }
  .sub-item > button .sub-arrow { transition: transform 0.25s; }
  .sub-item.mob-sub-open > button .sub-arrow { transform: rotate(90deg); }

  .sub-dropdown a {
    padding: 11px 22px 11px 54px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    text-decoration: none;
  }
  .sub-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  /* Staggered entrance animation */
  .nav-links > li {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav-links > li.sidebar-header {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
  .nav-links.open > li:not(.sidebar-header) {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-links.open > li:nth-child(2) { transition-delay: 0.05s; }
  .nav-links.open > li:nth-child(3) { transition-delay: 0.10s; }
  .nav-links.open > li:nth-child(4) { transition-delay: 0.15s; }
  .nav-links.open > li:nth-child(5) { transition-delay: 0.20s; }
  .nav-links.open > li:nth-child(6) { transition-delay: 0.25s; }
  .nav-links.open > li:nth-child(7) { transition-delay: 0.30s; }
  .nav-links.open > li:nth-child(8) { transition-delay: 0.35s; }

  .nav-links:not(.open) > li { transition-delay: 0s !important; }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 16px;
  }
  .logo-section img {
    height: 46px;
  }
}


/* ===========================================
   SECTION 2 : HERO SLIDER
=========================================== */
.slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

@media (max-width:768px){
  .slider{
    background:#000;
  }
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.buttons span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 5px;
}

#prev { left: 10px; }
#next { right: 10px; }

@media (max-width: 992px) {
  .slider { height: 60vh; }
  .slide img { object-position: center; }
  .buttons span { font-size: 24px; padding: 8px 12px; }
}

@media (max-width: 768px) {
  .slider { height: 50vh; }
  .slide img { object-fit: contain; object-position: center; }
  .buttons span { font-size: 20px; padding: 6px 10px; }
}

@media (max-width: 480px) {
  .slider { height: 40vh; }
  .buttons span { font-size: 18px; padding: 5px 8px; }
}


/* ===========================================
   SECTION 3 : ABOUT US
=========================================== */
.aboutus {
  margin-top: 30px;
  padding: 20px 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.col-md-6 {
  width: 50%;
}

.urology {
  padding: 10px 34px 27px 80px;
  line-height: 1.6;
}

.urology h4 {
  font-size: 15px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.urology h2 {
  color: rgb(42, 119, 199);
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 50px;
}

.urology h5 {
  font-size: 15px;
  font-weight: 600;
  color: rgb(0, 0, 0);
  margin-bottom: 16px;
  line-height: 20px;
}

.urology p {
  color: rgb(122, 122, 122);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: 'roboto', sans-serif;
}

.urology button {
  padding: 10px 32px;
  border-radius: 6px;
  background-color: #2A77C7;
  border: none;
  color: #f2f2f2;
  font-family: '', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.urology button:hover {
  background-color: #1a5ea0;
}

.director {
  padding: 20px 40px 20px 20px;
}

.director img {
  width: 100%;
  max-width: 470px;
  height: 560px;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .col-md-6 { width: 100%; }
  .urology { padding: 20px 24px; }
  .director { padding: 20px 24px; }
  .director img { max-width: 100%; height: auto; }
}



/* ===========================================
   SECTION 4 : OUR TREATMENTS
=========================================== */
.treatments-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.treatments-section h2 {
  font-size: 34px;
  font-weight: 700;
  color: #2a6ebb;
  margin-bottom: 10px;
}

.treatments-section > p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #666;
  font-size: 15px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: #f8fbec;
  overflow: hidden;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 15px 15px 20px;
}

.card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1616;
}

.card p {
  font-size: 16px;
  color: rgb(122, 122, 122);
  line-height: 23px;
  font-weight: 400;
  word-spacing: 3px;
}

.icon {
  position: absolute;
  top: 150px;
  right: 15px;
  background: #fff;
  border: 2px solid #2a6ebb;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a6ebb;
  font-size: 18px;
}

.icon img {
    width: 65%;
    height: 70%;
    object-fit: cover;
}

.hk-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 32px;
  background: #2a6ebb;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.hk-gradient-sweep::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35),
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.hk-gradient-sweep:hover::before {
  transform: translateX(100%);
}

.btn:hover {
  background: #1a5ea0;
}

@media (max-width: 992px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid { grid-template-columns: 1fr; }
}


/* ===========================================
   SECTION 5 : STATS
=========================================== */
.stats-section {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('../img/coundowntimer.jpg') center/cover no-repeat;
  padding: 80px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box {
  border: 2px solid #2a6ebb;
  border-radius: 6px;
  text-align: center;
  padding: 40px 20px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(4px);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #2a6ebb;
}

.stat-icon img {
    width: 69%;
    height: 68%;
    object-fit: cover;
}

.stat-box h2 {
  font-size: 44px;
  margin: 10px 0;
  font-weight: 700;
  color: #1a1616;
}

.stat-box p {
  font-size: 16px;
  color: #333;
}

@media (max-width: 992px) {
  .stats-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .stats-container { grid-template-columns: 1fr; }
}


/* ===========================================
   SECTION 6 : KIDNEY ONCOLOGY
=========================================== */
.kidney-section {
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 20px 20px;
}

.kidney-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.kidney-img img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.kidney-content {
  flex: 1;
}

.kidney-content h2 {
  color: #2a6ebb;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.kidney-content h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1616;
}

.kidney-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .kidney-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .kidney-img img {
    width: 260px;
    height: 260px;
  }
}


/* ===========================================
   SECTION 7 : APPOINTMENT BANNER
=========================================== */
.appointment-banner {
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-bg {
  background-image: url(../img/book-aporment-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: absolute;
  inset: 0;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 106, 143, 0.45);
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.banner-content h1 {
  color: #ffffff;
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.btn-appointment {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2563eb;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 30px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(30,80,160,0.3);
}

.btn-appointment:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.calendar-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* ===========================================
   SECTION 8 : WHY CHOOSE US
=========================================== */
.why-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.section-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
}

.left-content {
  flex: 1;
  max-width: 560px;
}

.left-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1a56db;
  margin-bottom: 12px;
}

.left-content .subtitle {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  color: rgb(122, 122, 122);
  line-height: 26px;
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #1a56db;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-text h3 {
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  margin-bottom: 6px;
}

.feature-text p {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  color: rgb(122, 122, 122);
  line-height: 23px;
}

.right-image {
  flex-shrink: 0;
  width: 500px;
  height: 700px;
}

.right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2.5px solid #1a56db;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .section-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .right-image {
    width: 100%;
    max-width: 480px;
    height: auto;
  }
}


/* ===========================================
   SECTION 9 : TESTIMONIALS
=========================================== */
.testimonials-section {
  background: #f5f5f5;
  text-align: center;
  padding: 60px 20px 80px;
}

.testimonials-section h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1a56db;
  margin-bottom: 16px;
}

.testimonials-section > p {
  font-size: 16.5px;
  color: #858383;
  max-width: 950px;
  margin: 0 auto 30px;
  line-height: 1.6;
}


/* ===========================================
   SECTION 10 : FOOTER
=========================================== */
.footer {
  background: #1a6fdb;
  color: #ffffff;
  padding: 50px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-col .address-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.55;
  color: #ffffff;
}

.footer-col .address-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ffffff;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col .service-item {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-col .timing-location {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: underline;
  margin-bottom: 8px;
  display: block;
  margin-top: 6px;
}

.footer-col .timing-row {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1.5;
}

.footer-col .timing-note {
  font-size: 13px;
  color: #ffffff;
  margin-top: 10px;
  line-height: 1.55;
}

.site-footer {
    background: #000;
    padding: 12px 0;
}

.footer-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-text {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.footer-logo {
    height: 35px;
}

@media (max-width: 600px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 550px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer { padding: 40px 24px; }
}


/* ===========================================
   FLOATING BUTTONS
=========================================== */
.floating-btns {
  position: fixed;
  left: 16px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-btns a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.floating-btns a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.floating-btns .phone-btn {
  background: #1a56db;
}

.floating-btns .whatsapp-btn {
  background: #25d366;
}

.floating-btns svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #1a56db;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  z-index: 999;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: #1244b8;
  transform: translateY(-2px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  fill: white;
}