/* =====================================================
   THỢ ĐỤNG 24H – Phong cách thodung24h.com
   ===================================================== */


/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
  background: #035e2b;
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-end;
}
.top-bar-inner span { display: flex; align-items: center; gap: 6px; }
.top-bar-inner i { font-size: 12px; }
.top-bar-hotline strong { color: #fbd400; }

/* =====================================================
   HEADER
   ===================================================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: #fbd400;
  transition: background 0.35s, box-shadow 0.35s;
}
/* On top: show top-bar + header-main */
.header .top-bar { transition: max-height 0.3s, opacity 0.3s; overflow: hidden; }
.header.sticky .top-bar { max-height: 0; opacity: 0; padding: 0; }
.header.sticky { box-shadow: 0 3px 20px rgba(0,0,0,0.15); background: #fbd400; }

.header-main { background: #fbd400; }
.header-wrapper {
  display: flex;
  align-items: center;
  height: 65px;
  gap: 12px;
}
.logo img { height: 55px; width: auto; object-fit: contain; display: block; }

/* NAV */
.nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
  justify-content: flex-end;
}
.nav-menu > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-menu > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 11px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-menu > li > a .arr {
  font-size: 9px;
  margin-left: 4px;
  transition: transform 0.2s;
}
.nav-menu > li:hover > a,
.nav-menu > li.active > a {
  color: #035e2b;
  border-bottom-color: #035e2b;
}
.nav-menu > li:hover > a .arr { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-top: 3px solid #035e2b;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  z-index: 999;
}
.has-drop:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.15s, color 0.15s;
}
.dropdown li a:hover { background: #f0f9f3; color: #035e2b; padding-left: 22px; }
.dropdown li:last-child a { border-bottom: none; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #111;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
}

/* =====================================================
   MOBILE SIDEBAR
   ===================================================== */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1999;
  display: none;
}
.mobile-overlay.show { display: block; }

.mobile-sidebar {
  position: fixed;
  top: 0; left: -300px;
  width: 280px; height: 100%;
  background: #fff;
  z-index: 2000;
  transition: left 0.3s ease;
  box-shadow: 3px 0 20px rgba(0,0,0,0.12);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-sidebar.open { left: 0; }

.mobile-header {
  background: #fbd400;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.mobile-header img { height: 44px; }
.mobile-close-btn { background: none; border: none; font-size: 22px; cursor: pointer; color: #111; }

.mobile-nav { flex: 1; }
.mobile-nav li { border-bottom: 1px solid #f0f0f0; }
.mobile-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}
.mobile-nav li a i { width: 18px; color: #035e2b; }
.mobile-nav li a:hover { background: #fafff7; color: #035e2b; }

.mobile-contact {
  padding: 16px 20px;
  border-top: 2px solid #fbd400;
}
.mobile-hotline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #035e2b;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 30px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  padding-top: 120px; /* header height + top-bar */
  padding-bottom: 70px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, #f0fff4 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-label {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 3px;
  background: #fbd400;
  border-radius: 2px;
}

.hero-content h1 {
  font-size: 27px;
  font-weight: 900;
  color: #111;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 14px;
}

.type-wrap {
  font-size: 22px;
  font-weight: 800;
  color: #035e2b;
  text-transform: uppercase;
  margin-bottom: 12px;
  min-height: 1.4em;
}
.cursor {
  color: #fbd400;
  animation: blink 0.9s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hero-sub {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 30px;
}
.hero-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: #222;
}
.check-icon {
  width: 22px;
  height: 22px;
  background: #035e2b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon i { color: #fff; font-size: 10px; }

/* HERO BUTTONS */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #035e2b;
  color: #fff;
  border-radius: 35px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(3,94,43,0.3);
  transition: all 0.3s;
  border: 2px solid #035e2b;
}
.btn-primary:hover {
  background: #02481f;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(3,94,43,0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: #035e2b;
  border: 2px solid #035e2b;
  border-radius: 35px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: #035e2b;
  color: #fff;
  transform: translateY(-2px);
}

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f5f5f5;
  border-radius: 14px;
  padding: 16px 24px;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #035e2b;
  line-height: 1;
}
.stat-item span {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  display: block;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: #ddd;
  margin: 0 20px;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #f9ffe0 0%, #e8f5e9 60%, transparent 100%);
  border-radius: 50%;
  z-index: 0;
  animation: rotateBg 20s linear infinite;
}
@keyframes rotateBg { to { transform: rotate(360deg); } }

.hero-img-wrap {
  position: relative;
  z-index: 1;
}
.hero-img-wrap > img {
  display: block;
  width: 88%;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  object-fit: cover;
}

.badge-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  animation: floatAnim 3.5s ease-in-out infinite;
}
.badge-float span { font-size: 12px; font-weight: 700; color: #222; line-height: 1.4; }
.badge-float small { font-size: 10px; font-weight: 400; color: #666; display: block; }
.badge-top-right { top: 10%; right: -40px; animation-delay: 0s; }
.badge-bottom-left { bottom: 15%; left: -40px; animation-delay: 1.8s; }

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #035e2b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.badge-icon i { color: #fff; font-size: 16px; }
.badge-yellow { background: #fbd400 !important; }
.badge-yellow i { color: #111 !important; }

@keyframes floatAnim {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* =====================================================
   MID BANNER
   ===================================================== */
.mid-banner {
  background: linear-gradient(135deg, #035e2b 0%, #046e33 50%, #028040 100%);
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mid-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mid-banner-text { position: relative; z-index: 1; }
.mid-banner-text h2 {
  font-size: 46px;
  font-weight: 900;
  color: #fbd400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.25);
}
.mid-banner-text p {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =====================================================
   SECTION HEADERS (SHARED)
   ===================================================== */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-head h2 {
  font-size: 26px;
  font-weight: 900;
  color: #035e2b;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 14px;
}
.section-head h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 4px;
  background: #fbd400;
  border-radius: 2px;
}
.section-head p { font-size: 15px; color: #666; max-width: 500px; }
.center-head { flex-direction: column; align-items: center; text-align: center; }
.center-head h2::after { left: 50%; transform: translateX(-50%); }
.view-all-link {
  font-size: 14px;
  font-weight: 600;
  color: #035e2b;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding-bottom: 14px;
}
.view-all-link:hover { color: #fbd400; }

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section {
  padding: 70px 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.service-card {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 14px;
  padding: 26px 12px 60px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.service-card:hover,
.service-card.hovered {
  border-color: #035e2b;
  transform: translateY(-7px);
  box-shadow: 0 12px 35px rgba(3,94,43,0.12);
}
.service-icon-wrap { display: flex; justify-content: center; margin-bottom: 14px; }
.service-icon {
  width: 68px;
  height: 68px;
  background: #d8e200;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #035e2b;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: #035e2b; color: #fff; }
.service-card h3 {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}
.service-card > p {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 10px;
}
.service-card-cta {
  position: absolute;
  bottom: 12px;
  left: 10%;
  width: 80%;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 11.5px;
  color: #444;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.25s;
}
.service-card:hover .service-card-cta {
  background: #fbd400;
  border-color: #fbd400;
  color: #111;
  font-weight: 700;
}

/* =====================================================
   AN TÂM SECTION
   ===================================================== */
.antam-section {
  padding: 70px 0;
  background: #f9fdf9;
}
.antam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.antam-visual img {
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  width: 100%;
  object-fit: cover;
}
.antam-features { display: flex; flex-direction: column; gap: 28px; }
.antam-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.antam-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #035e2b;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  border: 2px solid #fbd400;
  transition: all 0.3s;
}
.antam-item:hover .antam-icon { background: #035e2b; color: #fbd400; border-color: #035e2b; }
.antam-text h4 {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}
.antam-text p { font-size: 14px; color: #555; line-height: 1.7; }

/* =====================================================
   CONCERN SECTION
   ===================================================== */
.concern-section {
  padding: 70px 0;
  background: #fff;
}
.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.concern-card {
  background: #f8f8f8;
  border-radius: 14px;
  padding: 28px 24px;
  border-left: 4px solid #fbd400;
  transition: all 0.3s;
}
.concern-card:hover {
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.concern-num {
  font-size: 36px;
  font-weight: 900;
  color: #ddd;
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
}
.concern-card:hover .concern-num { color: #fbd400; }
.concern-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}
.concern-card p { font-size: 13.5px; color: #666; line-height: 1.7; }
.concern-cta {
  text-align: center;
  padding: 30px;
  background: #f0fff4;
  border-radius: 16px;
  border: 2px dashed #035e2b;
}
.concern-cta p {
  font-size: 18px;
  color: #222;
  margin-bottom: 18px;
}
.concern-cta strong { color: #035e2b; }

/* =====================================================
   PARTNERS SECTION
   ===================================================== */
.partners-section {
  padding: 60px 0;
  background: #f9fdf9;
  overflow: hidden;
}
.partners-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.partners-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollPartners 25s linear infinite;
}
@keyframes scrollPartners {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.partner-logo {
  width: 160px;
  height: 70px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s;
}
.partner-logo:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.partner-logo span {
  font-size: 13px;
  font-weight: 700;
  color: #555;
  text-align: center;
  padding: 0 10px;
}

/* =====================================================
   REVIEWS SECTION
   ===================================================== */
.reviews-section {
  padding: 70px 0;
  background: #fff;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.big-rating {
  font-size: 56px;
  font-weight: 900;
  color: #035e2b;
  line-height: 1;
}
.rating-stars { display: flex; flex-direction: column; gap: 4px; }
.rating-stars i { color: #fbd400; font-size: 20px; }
.rating-stars small { font-size: 12px; color: #888; display: block; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.review-card:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.review-stars { margin-bottom: 14px; }
.review-stars i { color: #fbd400; font-size: 16px; }
.review-card > p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f5f5f5;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fbd400;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; color: #111; }
.review-author small { font-size: 12px; color: #888; }

/* =====================================================
   NEWS SECTION
   ===================================================== */
.news-section {
  padding: 70px 0;
  background: #f9fdf9;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.news-img { overflow: hidden; height: 200px; }
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-img img { transform: scale(1.06); }
.news-body { padding: 22px; }
.news-cat {
  display: inline-block;
  background: #e8f5e9;
  color: #035e2b;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.news-body h4 { font-size: 15px; font-weight: 800; color: #111; margin-bottom: 10px; line-height: 1.5; }
.news-body h4 a { color: inherit; }
.news-body h4 a:hover { color: #035e2b; }
.news-body > p { font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 16px; }
.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #999;
}
.news-footer i { margin-right: 4px; }
.news-footer a {
  color: #035e2b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.news-footer a:hover { color: #fbd400; }

/* =====================================================
   FLOATING LEFT CTAs
   ===================================================== */
.floating-left {
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 990;
  transition: opacity 0.3s;
}
.float-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 12px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  border: 1.5px solid rgba(0,0,0,0.05);
  transition: all 0.25s;
  white-space: nowrap;
}
.float-phone {
  background: #fbd400;
  color: #111;
}
.float-phone:hover { background: #e8c800; transform: translateX(5px); }
.float-phone i { font-size: 15px; color: #111; }
.float-zalo {
  background: #0068ff;
  color: #fff;
}
.float-zalo:hover { background: #0057d8; transform: translateX(5px); }
.float-zalo img { width: 20px; height: 20px; border-radius: 4px; }

/* =====================================================
   BOOK NOW BADGE (Bottom Right)
   ===================================================== */
.book-now-badge {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 990;
}
.pulse-badge {
  width: 88px;
  height: 88px;
  background: linear-gradient(145deg, #e7362a, #ff5a4e);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  text-align: center;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  clip-path: polygon(50% 0%, 93% 18%, 100% 64%, 72% 100%, 28% 100%, 0% 64%, 7% 18%);
  cursor: pointer;
  animation: pulseBadge 2s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(231,54,42,0.5);
  transition: transform 0.2s;
}
.pulse-badge:hover { transform: scale(1.08); }
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231,54,42,0.6); }
  50% { box-shadow: 0 0 0 14px rgba(231,54,42,0); }
}

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
.scroll-top {
  position: fixed;
  bottom: 130px;
  right: 22px;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  z-index: 990;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: #035e2b; color: #fff; border-color: #035e2b; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: #fbd400; }
.footer-main { padding: 55px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 40px;
}
.footer-logo { height: 70px; margin-bottom: 18px; }
.footer-about p { font-size: 13.5px; color: #222; line-height: 1.8; margin-bottom: 18px; }
.footer-address-list { display: flex; flex-direction: column; gap: 10px; }
.footer-address-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #222;
}
.footer-address-item i { color: #035e2b; margin-top: 3px; flex-shrink: 0; }
.footer-address-item strong { display: block; font-size: 12px; color: #035e2b; }

.footer-branch-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #035e2b;
  padding: 6px 14px;
  background: rgba(3,94,43,0.1);
  border-radius: 30px;
  width: fit-content;
  transition: background 0.2s;
}
.footer-branch-toggle:hover { background: rgba(3,94,43,0.2); }
.footer-branch-list {
  display: none;
  padding: 10px 0;
  gap: 6px;
  flex-direction: column;
}
.footer-branch-list.open { display: flex; }
.footer-branch-list p { font-size: 13px; color: #333; display: flex; align-items: center; gap: 8px; }
.footer-branch-list i { font-size: 8px; color: #035e2b; }

.footer-title {
  font-size: 15px;
  font-weight: 800;
  color: #035e2b;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(3,94,43,0.2);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #222;
  font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links li a i { color: #035e2b; font-size: 11px; transition: transform 0.2s; }
.footer-links li a:hover { color: #035e2b; padding-left: 4px; }
.footer-links li a:hover i { transform: translateX(3px); }

.footer-contact-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: #222;
}
.footer-contact-info i { color: #035e2b; margin-top: 2px; flex-shrink: 0; }
.footer-contact-info strong { font-weight: 700; }
.footer-contact-info a { color: #035e2b; font-weight: 700; }
.footer-contact-info a:hover { text-decoration: underline; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
}
.social-icon:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.social-icon img { width: 24px; height: 24px; object-fit: contain; }

.footer-apps { display: flex; gap: 10px; flex-wrap: wrap; }
.app-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.25s;
}
.app-badge:hover { background: #035e2b; }
.app-badge i { font-size: 16px; }

.footer-bottom {
  background: #111;
  color: #aaa;
  padding: 16px 0;
  display: flex;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12.5px; }
.footer-bottom a { color: #ccc; }
.footer-bottom a:hover { color: #fbd400; }

/* =====================================================
   SUBPAGE LAYOUT (for inner pages)
   ===================================================== */
.subpage-hero {
  background: #fdfef9;
  padding: 120px 0 40px;
  border-bottom: 1px solid #eee;
  text-align: center;
}
.subpage-hero h1 {
  font-size: 30px;
  font-weight: 900;
  color: #035e2b;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.breadcrumb { font-size: 13.5px; color: #777; }
.breadcrumb a { color: #555; font-weight: 500; }
.breadcrumb a:hover { color: #035e2b; }

.subpage-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 50px 0;
  align-items: start;
}
.article-content {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
}
.article-content h2 { font-size: 22px; color: #035e2b; margin: 28px 0 14px; }
.article-content h3 { font-size: 18px; color: #111; margin: 20px 0 10px; }
.article-content p { font-size: 15px; color: #444; line-height: 1.85; margin-bottom: 14px; }
.article-content ul, .article-content ol { padding-left: 22px; margin-bottom: 18px; }
.article-content li { font-size: 15px; line-height: 1.8; color: #444; margin-bottom: 8px; }
.price-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.price-table th { background: #035e2b; color: #fff; padding: 12px; text-align: left; font-size: 14px; }
.price-table td { padding: 12px; border: 1px solid #eee; font-size: 14px; }
.price-table tr:nth-child(even) { background: #f9f9f9; }

.sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
  margin-bottom: 24px;
}
.sidebar-contact { text-align: center; background: #fdfef9; border: 2px dashed #fbd400; }
.sidebar-contact h3 { font-size: 17px; color: #111; margin-bottom: 8px; }
.sidebar-contact .phone { font-size: 28px; font-weight: 900; color: #e7362a; margin: 14px 0; }
.sidebar-contact .btn { display: inline-block; padding: 10px 28px; background: #035e2b; color: #fff; border-radius: 25px; font-weight: 700; font-size: 14px; }
.sidebar-widget h3.widget-title {
  font-size: 16px;
  color: #fff;
  background: #035e2b;
  margin: -24px -24px 20px;
  padding: 14px 24px;
  border-radius: 14px 14px 0 0;
  text-align: center;
}
.sidebar-menu li { border-bottom: 1px solid #f5f5f5; }
.sidebar-menu li:last-child { border-bottom: none; }
.sidebar-menu li a {
  display: block;
  padding: 11px 10px;
  font-size: 13.5px;
  color: #333;
  font-weight: 500;
  transition: all 0.2s;
}
.sidebar-menu li a:hover { color: #035e2b; padding-left: 14px; background: #f9f9f9; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-grid { gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 960px) {
  .nav-menu { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .antam-grid { grid-template-columns: 1fr; }
  .antam-visual { display: none; }
  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .mid-banner-text h2 { font-size: 34px; }
  .top-bar { display: none; }
  .hero { padding-top: 90px; }
}
@media (max-width: 700px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .concern-grid { grid-template-columns: 1fr; }
  .floating-left {
    bottom: 0; top: auto; left: 0;
    transform: none;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    background: #fff;
    padding: 10px;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.1);
    border-top: 1px solid #eee;
  }
  .float-pill span { display: none; }
  .float-pill { padding: 9px 12px; border-radius: 50%; width: 44px; height: 44px; justify-content: center; }
  .book-now-badge { bottom: 80px; }
  .scroll-top { bottom: 140px; }
  .mid-banner-text h2 { font-size: 26px; }
  .mid-banner-text p { font-size: 14px; }
  .hero-content h1 { font-size: 22px; }
  .type-wrap { font-size: 17px; }
  .hero-features { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-sep { width: 60px; height: 1px; margin: 0; }
  .subpage-layout { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head h2 { font-size: 22px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
}

/* =====================================================
   SUBPAGE EXTRA STYLES
   ===================================================== */
.article-top-img { width:100%; max-height:400px; object-fit:cover; border-radius:14px; margin-bottom:28px; box-shadow:0 8px 30px rgba(0,0,0,0.1); display:block; }
.service-detail-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin:20px 0 30px; }
.service-detail-card { background:#f9fdf9; border:1px solid #e0f0e5; border-radius:12px; padding:22px 18px; transition:all 0.3s; }
.service-detail-card:hover { background:#fff; box-shadow:0 6px 20px rgba(3,94,43,0.1); transform:translateY(-3px); border-color:#035e2b; }
.service-detail-card>i { font-size:30px; color:#035e2b; margin-bottom:12px; display:block; }
.service-detail-card h4 { font-size:14.5px; font-weight:800; color:#111; margin-bottom:8px; }
.service-detail-card p { font-size:13px; color:#666; line-height:1.7; margin:0; }
.process-mini { display:flex; flex-direction:column; gap:14px; }
.process-step-mini { display:flex; align-items:flex-start; gap:12px; }
.step-num { width:28px; height:28px; min-width:28px; background:#fbd400; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:900; color:#222; }
.process-step-mini p { font-size:13px; color:#444; margin:0; line-height:1.6; }
.price-note { display:flex; gap:14px; align-items:flex-start; background:#fffbea; border:1.5px solid #fbd400; border-radius:10px; padding:18px; margin-top:20px; }
.price-note>i { font-size:22px; color:#f59e0b; flex-shrink:0; margin-top:3px; }
.price-note strong { display:block; margin-bottom:6px; }
.price-note ul { padding-left:18px; margin:0; }
.price-note li { font-size:13px; color:#666; margin-bottom:5px; }
.contact-cards { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin:24px 0 30px; }
.contact-card { text-align:center; padding:28px 20px; border:1px solid #eee; border-radius:14px; transition:all 0.3s; background:#fff; }
.contact-card:hover { box-shadow:0 8px 25px rgba(0,0,0,0.08); transform:translateY(-4px); border-color:#035e2b; }
.contact-icon { width:56px; height:56px; background:#035e2b; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:22px; color:#fff; margin:0 auto 14px; }
.contact-card h4 { font-size:13px; color:#888; margin-bottom:8px; font-weight:600; text-transform:uppercase; }
.contact-num { font-size:22px; font-weight:900; color:#035e2b; display:block; margin-bottom:6px; }
.contact-card p { font-size:12px; color:#bbb; margin:0; }
.contact-form { background:#f9f9f9; padding:28px; border-radius:14px; margin-top:10px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:13px; font-weight:600; color:#333; margin-bottom:6px; }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:11px 14px; border:1.5px solid #e0e0e0; border-radius:8px; font-size:14px; font-family:inherit; transition:border 0.2s; background:#fff; color:#222; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline:none; border-color:#035e2b; box-shadow:0 0 0 3px rgba(3,94,43,0.08); }
.address-block { padding:20px; background:#f0fff4; border-radius:10px; border-left:4px solid #035e2b; margin:20px 0; }
.address-block p { margin-bottom:8px; font-size:14.5px; color:#222; }
.address-block i { color:#035e2b; margin-right:8px; }
.news-list { display:flex; flex-direction:column; gap:28px; }
.news-item-full { display:grid; grid-template-columns:260px 1fr; gap:24px; padding-bottom:28px; border-bottom:1px solid #f0f0f0; align-items:flex-start; }
.news-item-full:last-child { border-bottom:none; }
.news-item-img img { width:100%; height:170px; object-fit:cover; border-radius:10px; display:block; }
.news-item-body h3 { font-size:17px; font-weight:800; color:#111; margin-bottom:10px; line-height:1.5; }
.news-item-body p { font-size:14px; color:#555; line-height:1.75; margin-bottom:14px; }
.news-meta { display:flex; gap:16px; font-size:12px; color:#aaa; flex-wrap:wrap; }
.news-meta i { margin-right:4px; color:#035e2b; }
@media(max-width:768px) { .service-detail-grid { grid-template-columns:repeat(2,1fr); } .contact-cards { grid-template-columns:1fr; } .form-row { grid-template-columns:1fr; } .news-item-full { grid-template-columns:1fr; } }
@media(max-width:500px) { .service-detail-grid { grid-template-columns:1fr; } .contact-num { font-size:18px; } }
