@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }

/* Twenty Twenty-One (parent theme) underlines links by default site-wide —
   this theme handles its own link styling per-component, so kill the
   inherited underline everywhere and let individual rules opt back in. */
a { text-decoration: none; }

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  padding-top: 72px !important;
  margin: 0;
}

/* GeneratePress overrides */
.site-header, .generate-slideout-widget-area { display: none !important; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #f0f2f5;
  padding: 5px;
  border-radius: 50px;
  flex-shrink: 0;
}

.nav-link {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 50px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover { color: #1a1a1a; background: #ffffff; }

.nav-link.active {
  background: #047072;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(4,112,114,0.3);
}

.nav-dropdown-wrap { position: relative; }

.nav-arrow {
  font-size: 8px;
  margin-left: 3px;
  transition: transform 0.2s ease;
}

.nav-dropdown-wrap:hover .nav-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 8px;
  min-width: 230px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-dropdown-wrap:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover { background: rgba(4,112,114,0.06); color: #047072; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-signin-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: #047072;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.nav-signin-btn:hover {
  background: #035f61;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(4,112,114,0.3);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 20px 20px;
  border-top: 1px solid #f0f0f0;
  gap: 4px;
  background: #ffffff;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav-mobile a:hover { background: rgba(4,112,114,0.06); color: #047072; }

.mobile-dropdown { width: 100%; }

.mobile-dropdown-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.mobile-dropdown-btn:hover { background: rgba(4,112,114,0.06); color: #047072; }

.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 12px;
  margin-top: 2px;
}

.mobile-submenu a { font-size: 13px; padding: 10px 16px; }

.mobile-dropdown.active .mobile-submenu { display: flex; }

.mobile-dropdown.active .fa-chevron-down { transform: rotate(180deg); }

.mobile-dropdown .fa-chevron-down { transition: transform 0.3s ease; }

.nav-mobile .mobile-cta {
  background: #047072;
  color: #ffffff;
  text-align: center;
  margin-top: 8px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-mobile .mobile-cta:hover { background: #035f61; color: #ffffff; }

@media (max-width: 1024px) {
  .nav-link { padding: 8px 12px; font-size: 12px; }
}

@media (max-width: 768px) {
  body { padding-top: 66px !important; }

  .navbar {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: none;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: top 0.3s ease, left 0.3s ease, right 0.3s ease,
                border-radius 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  }

  .navbar.scrolled {
    top: 18px;
    left: 18px;
    right: 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 12px;
    height: 60px;
    gap: 8px;
  }

  .nav-pill { display: none; }

  .nav-hamburger {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .nav-logo-img { height: 46px; }

  .nav-actions {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    gap: 6px;
  }

  .nav-signin-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .nav-btn-icon { font-size: 14px; }
  .nav-btn-label { display: none; }

  .wa-float { display: none !important; }

  .nav-mobile .mobile-cta { display: none; }
}

/* ===========================
   SECTION HELPERS
=========================== */
.section-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #047072;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 16px;
}

.section-tag.center { display: block; text-align: center; margin-bottom: 16px; }

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-heading.center { text-align: center; }

.section-heading em { color: #047072; font-style: italic; }

@keyframes floatCircle {
  0%   { transform: scale(1) translateY(0); }
  100% { transform: scale(1.1) translateY(-20px); }
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: linear-gradient(135deg, #047473 0%, #022f2f 100%);
  color: #e2e8f0;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 70px 20px 40px;
}

.footer-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
}

.footer-title-link { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 12px; }
.footer-title-link:hover { color: #a7f3d0; }

.footer-logo-img { height: 72px; width: auto; object-fit: contain; display: block; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer h4 {
  font-size: 11px;
  text-transform: uppercase;
  color: #a7f3d0;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Service headings double as links where a service page exists. They must look
   exactly like the plain <h4>s beside them — inherit the heading colour and
   drop the underline, so the footer reads as one row of headings, not links. */
.footer-services h4 a {
  color: inherit !important;
  text-decoration: none !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  transition: color 0.2s;
}

.footer-services h4 a:hover {
  color: #ffffff !important;
}

.footer p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin: 0;
}

.footer-links-col a {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-links-col a:hover { color: #ffffff; }

/* City list is long — split it into two columns so the footer stays balanced
   now that the Quick Links column is gone. */
.footer-links-col-wide {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 40px;
  align-content: start;
}

.footer-links-col-wide h4 {
  grid-column: 1 / -1;
}

.footer-contact-col { text-align: left; }

.contact-btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid #a7f3d0;
  color: #a7f3d0;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

.contact-btn:hover {
  background: #ffffff;
  color: #047473;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.footer-phone {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 6px;
  text-decoration: none;
}

.footer-phone:hover { color: #a7f3d0; }

.footer-email {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  text-decoration: none;
}

.footer-email:hover { color: #fff; }

.footer-presence { margin-top: 60px; }
.footer-presence h4 { margin-bottom: 20px; }

.footer-locations {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.location-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 150px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px 26px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.location-box:hover { border-color: rgba(255,255,255,0.2); }

.location-box strong {
  font-size: 15px;
  font-family: 'Playfair Display', serif;
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 700;
}

.location-link { color: #fff; text-decoration: none; transition: color 0.2s; }
.location-link:hover { color: #a7f3d0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 300; margin: 0; }

.footer-socials { display: flex; gap: 12px; }

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-socials a:hover { background: #fff; color: #047473; border-color: #fff; }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-services { grid-column: span 2; }
  .footer-locations { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-services { grid-template-columns: 1fr 1fr; grid-column: 1; }
  .footer-links-col-wide { grid-template-columns: 1fr; }
  .footer-locations { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ===========================
   BLOG LISTING PAGE
=========================== */
.blog-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-hero {
  position: relative;
  background: #ffffff;
  padding: 100px 40px 80px;
  text-align: center;
  overflow: hidden;
}

.blog-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blog-bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: #047072;
}

.bc1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  animation: floatCircle 8s ease-in-out infinite alternate;
}

.bc2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
  animation: floatCircle 10s ease-in-out infinite alternate-reverse;
}

.blog-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4,112,114,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,112,114,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.blog-hero-tag-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.blog-hero-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #047072;
  font-weight: 600;
  background: rgba(4,112,114,0.08);
  padding: 6px 16px;
  border-radius: 20px;
}

.blog-hero-tag-line { width: 40px; height: 1px; background: #047072; opacity: 0.4; }

.blog-hero-tag-text {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 20px;
}

.blog-hero h1 em { color: #047072; font-style: italic; display: block; }

.blog-hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #777;
  font-weight: 300;
  line-height: 1.85;
  max-width: 540px;
  margin: 0 auto;
}

/* GRID SECTION */
.blog-grid-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

/* Twenty Twenty-One (parent theme) underlines links by default —
   override that inside blog cards (listing grid + related articles). */
.blog-card a,
.blog-card a:hover,
.blog-card a:focus {
  text-decoration: none !important;
}

/* BLOG CARD */
.blog-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(4,112,114,0.1);
  border-color: rgba(4,112,114,0.2);
}

.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  display: block;
  text-decoration: none;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.blog-card:hover .blog-card-img-wrap img { transform: scale(1.06); }

.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(4,112,114,0.08) 0%, rgba(4,112,114,0.18) 100%);
}

.blog-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

.blog-card-cat.corporate  { background: rgba(4,112,114,0.9); color: #fff; }
.blog-card-cat.tips       { background: rgba(59,130,246,0.9); color: #fff; }
.blog-card-cat.trends     { background: rgba(245,158,11,0.9); color: #fff; }
.blog-card-cat.casestudy  { background: rgba(139,92,246,0.9); color: #fff; }
.blog-card-cat.insights   { background: rgba(4,112,114,0.9); color: #fff; }

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.blog-card-body h3 a { text-decoration: none; color: inherit; }

.blog-card:hover .blog-card-body h3 { color: #047072; }

.blog-card-body p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #888;
  line-height: 1.8;
  font-weight: 300;
  flex: 1;
  margin-bottom: 20px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f2f2f2;
}

.blog-author-mini {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #047072;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}

.blog-author-mini strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
}

.blog-author-mini span {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  color: #aaa;
  font-weight: 300;
}

.blog-read-time {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: #bbb;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.blog-card-link {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #047072;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
  margin-top: 16px;
}

.blog-card-link:hover { gap: 8px; }

/* PAGINATION */
.blog-pagination { margin-top: 60px; text-align: center; }

.blog-pagination .nav-links { display: inline-flex; gap: 8px; align-items: center; }

.blog-pagination .page-numbers {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  background: #f2f4f7;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.blog-pagination .page-numbers:hover { background: rgba(4,112,114,0.08); color: #047072; }

.blog-pagination .page-numbers.current {
  background: #047072;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(4,112,114,0.25);
}

/* NO POSTS */
.blog-no-posts {
  text-align: center;
  padding: 80px 20px;
  color: #aaa;
}

.blog-no-posts h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #ccc;
  margin-bottom: 8px;
}

.blog-no-posts p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #ddd;
}

@media (max-width: 1024px) {
  .blog-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-hero { padding: 100px 24px 60px; }
  .blog-hero h1 { font-size: 36px; }
  .blog-page-container { padding: 0 24px; }
  .blog-cards-grid { grid-template-columns: 1fr; }
}

/* ===========================
   BLOG SINGLE PAGE
=========================== */

/* HERO */
.bs-banner {
  width: 100%;
  height: 70vh;
  min-height: 420px;
  max-height: 680px;
  overflow: hidden;
  background: #022e2e;
}

.bs-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bs-banner-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #022e2e 0%, #047072 100%);
}

.bs-header {
  background: #ffffff;
  padding: 40px 60px 10px;
}

.bs-header-inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.bs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.bs-breadcrumb a {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #888;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.bs-breadcrumb a:hover { color: #047072; }

.bs-breadcrumb i { font-size: 9px; color: #bbb; }

.bs-breadcrumb span {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #aaa;
  font-weight: 300;
}

.bs-cat-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  width: fit-content;
}

.bs-cat-tag.corporate { background: rgba(4,112,114,0.9); color: #fff; }
.bs-cat-tag.tips      { background: rgba(59,130,246,0.9); color: #fff; }
.bs-cat-tag.trends    { background: rgba(245,158,11,0.9); color: #fff; }
.bs-cat-tag.casestudy { background: rgba(139,92,246,0.9); color: #fff; }
.bs-cat-tag.insights  { background: rgba(4,112,114,0.9); color: #fff; }

.bs-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 28px;
}

.bs-hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 12px;
  border-bottom: 1px solid #eeeeee;
}

.bs-author { display: flex; align-items: center; gap: 12px; }

.bs-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #047072;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  border: 2px solid rgba(4,112,114,0.15);
}

.bs-author-info strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
}

.bs-author-info span {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: #888;
  font-weight: 300;
}

.bs-meta-details { display: flex; align-items: center; gap: 20px; }

.bs-meta-details span {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* BODY */
.bs-body { background: #ffffff; padding: 20px 40px 80px; }

.bs-article-wrap {
  max-width: 820px;
  margin: 0 auto;
}

/* ARTICLE */
.bs-article {}

.bs-article h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 44px 0 16px;
  line-height: 1.3;
  scroll-margin-top: 96px;
}

.bs-article h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 32px 0 12px;
}

.bs-article p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.95;
  font-weight: 300;
  margin-bottom: 20px;
}

.bs-article ul, .bs-article ol {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.95;
  font-weight: 300;
  padding-left: 24px;
  margin-bottom: 20px;
}

.bs-article blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: rgba(4,112,114,0.04);
  border-left: 4px solid #047072;
  border-radius: 0 12px 12px 0;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: #047072;
  line-height: 1.65;
}

.bs-article img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 28px 0;
}

.bs-article a { color: #047072; }
.bs-article a:hover { color: #035f61; }

/* PAGE LINKS */
.bs-page-links { margin-top: 32px; padding-top: 24px; border-top: 1px solid #f0f0f0; }
.bs-page-links span { font-family: 'Poppins', sans-serif; font-size: 13px; color: #aaa; margin-right: 8px; }
.bs-page-links a { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 500; color: #047072; text-decoration: none; padding: 5px 12px; border-radius: 6px; background: rgba(4,112,114,0.08); margin-right: 4px; }


/* RELATED POSTS */
.bs-related {
  background: #f9f9f7;
  padding: 80px 60px;
  border-top: 1px solid #eeeeee;
}

.bs-related-inner { max-width: 1200px; margin: 0 auto; }
.bs-related-inner .section-tag { display: block; text-align: center; }
.bs-related-inner .section-heading { text-align: center; margin-bottom: 48px; }

@media (max-width: 768px) {
  .bs-banner { height: 48vh; min-height: 260px; }
  .bs-header { padding: 28px 20px 6px; }
  .bs-header h1 { font-size: 28px; }
  .bs-hero-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bs-body { padding: 20px 20px 48px; }
  .bs-related { padding: 60px 20px; }
  .bs-meta-details { flex-wrap: wrap; gap: 10px; }
}

/* ===========================
   WHATSAPP FLOAT
=========================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-bubble {
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #222;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  white-space: nowrap;
  animation: waBubblePop 0.4s ease;
  position: relative;
  line-height: 1.5;
}

.wa-bubble::after {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 20px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #fff;
}

@keyframes waBubblePop {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #047072;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(4,112,114,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(4,112,114,0.6);
  animation: none;
}

.wa-btn svg { width: 28px; height: 28px; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(4,112,114,0.45); }
  50%       { box-shadow: 0 4px 28px rgba(4,112,114,0.75), 0 0 0 8px rgba(4,112,114,0.12); }
}

/* ===========================
   ENQUIRY MODAL
=========================== */
.eq-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.eq-modal-backdrop.open { opacity: 1; visibility: visible; }

.eq-modal {
  display: flex;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  border-radius: 6px;
  overflow: hidden;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s ease;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.eq-modal-backdrop.open .eq-modal { transform: translateY(0) scale(1); }

.eq-left {
  width: 42%;
  background: linear-gradient(160deg, #022e2e 0%, #047072 100%);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.eq-left-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 20px;
}

.eq-left-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.eq-left-title em { font-style: italic; color: #c8e6e7; }

.eq-left-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
}

.eq-left-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eq-left-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eq-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  flex-shrink: 0;
}

.eq-left-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.eq-left-contact a {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.eq-left-contact a:hover { color: #fff; }

.eq-left-contact span { color: rgba(255,255,255,0.3); font-size: 11px; }

.eq-right {
  flex: 1;
  background: #fff;
  padding: 42px 40px;
  overflow-y: auto;
  position: relative;
}

.eq-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 16px;
  color: #aaa;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  forced-color-adjust: none;
}

.eq-close:hover { background: #f0f0f0; color: #333; }

.eq-right h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.eq-form-sub { font-family: 'Poppins', sans-serif; font-size: 12px; color: #888; margin-bottom: 26px; }

.eq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.eq-group { display: flex; flex-direction: column; margin-bottom: 16px; }

.eq-group label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.eq-group label span { color: #047072; }

.eq-group input,
.eq-group select,
.eq-group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #222;
  background: #f8f8f8;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.eq-group input::placeholder,
.eq-group textarea::placeholder { color: #bbb; }

.eq-group input:focus,
.eq-group select:focus,
.eq-group textarea:focus { border-color: #047072; background: #fff; }

.eq-group textarea { resize: vertical; min-height: 80px; }
.eq-group select { cursor: pointer; }

.eq-error { font-family: 'Poppins', sans-serif; font-size: 12px; color: #c0392b; margin-bottom: 12px; display: none; }
.eq-error.visible { display: block; }

.eq-submit {
  width: 100%;
  background: #047072;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
  margin-top: 4px;
  forced-color-adjust: none;
}

.eq-submit:hover { background: #035a5c; transform: translateY(-1px); }
.eq-submit:disabled { background: #aaa; cursor: not-allowed; transform: none; }

#eqSuccess { text-align: center; padding: 40px 20px; }

.eq-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #047072;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

#eqSuccess h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: #111; margin-bottom: 12px; }

#eqSuccess p { font-family: 'Poppins', sans-serif; font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 28px; }

@media (max-width: 700px) {
  .eq-modal { flex-direction: column; max-height: 92vh; }
  .eq-left { display: none; }
  .eq-right { padding: 24px 20px; }
  .eq-row { grid-template-columns: 1fr; gap: 0; }
  .eq-group { margin-bottom: 12px; }
  .eq-group input,
  .eq-group select,
  .eq-group textarea { padding: 9px 12px; }
  .eq-group textarea { min-height: 60px; }
  .eq-form-sub { margin-bottom: 18px; }
}

/* ===========================
   404 ERROR PAGE
=========================== */

.err404 {
  position: relative;
  background: #ffffff;
  padding: 24px 40px;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.err404-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.err404-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: #047072;
}

.err404-c1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: floatCircle 8s ease-in-out infinite alternate;
}

.err404-c2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -80px;
  animation: floatCircle 10s ease-in-out infinite alternate-reverse;
}

.err404-c3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 20%;
  opacity: 0.04;
  animation: floatCircle 6s ease-in-out infinite alternate;
}

.err404-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4,112,114,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,112,114,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.err404-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.err404-tag-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.err404-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #047072;
  background: rgba(4,112,114,0.08);
  padding: 6px 14px;
  border-radius: 20px;
}

.err404-tag-line {
  width: 40px;
  height: 1px;
  background: #047072;
  opacity: 0.4;
}

.err404-tag-text {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.err404-code {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 1;
  color: #047072;
  margin-bottom: 4px;
  letter-spacing: 2px;
}

.err404 h1 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 12px;
}

.err404 h1 em {
  color: #047072;
  font-style: normal;
}

.err404 p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #777;
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 24px;
}

.err404-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.err404-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: #047072;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.err404-btn-primary:hover {
  background: #035f61;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(4,112,114,0.3);
}

.err404-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 50px;
  border: 1.5px solid #e0e0e0;
  background: transparent;
  transition: all 0.25s ease;
}

.err404-btn-secondary:hover {
  border-color: #047072;
  color: #047072;
}

.err404-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-top: 20px;
  border-top: 1px solid #eeeeee;
}

.err404-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.err404-links a:hover {
  color: #047072;
}

@media (max-width: 768px) {
  .err404 { padding: 32px 24px; min-height: 0; }
  .err404-tag-wrap { margin-bottom: 10px; }
  .err404-tag,
  .err404-tag-text { font-size: 10px; }
  .err404-code { font-size: 64px; margin-bottom: 2px; }
  .err404 h1 { font-size: 22px; margin-bottom: 10px; }
  .err404 p { font-size: 13px; line-height: 1.6; margin-bottom: 18px; }
  .err404-btns { flex-direction: column; width: 100%; gap: 10px; margin-bottom: 18px; }
  .err404-btn-primary,
  .err404-btn-secondary { width: 100%; justify-content: center; padding: 12px 20px; }
  .err404-links { gap: 8px 16px; padding-top: 14px; }
  .err404-links a { font-size: 12px; }
}

@media (max-width: 360px) {
  .err404-code { font-size: 52px; }
  .err404 h1 { font-size: 19px; }
}
