/* ==========================================================================
   HNS TECHNICAL SERVICES LLC — SHARED STYLESHEET
   --------------------------------------------------------------------------
   SECTION A (below) is copied verbatim from the site's original source code.
   Nothing in Section A was changed, added to, or removed.

   SECTION B, at the very bottom of this file, contains ONLY the additional
   component styles needed for the inner pages (About / Services / Blog /
   Contact) that were not part of the homepage source you provided. These
   reuse the exact same color variables, fonts, radii, shadows and hover
   patterns as Section A so the whole site looks like one consistent design.
   ========================================================================== */


/* ==========================================================================
   SECTION A — VERBATIM FROM YOUR SOURCE CODE
   ========================================================================== */

/* Base Reset & Global Styles */
#hns-wrapper {
  font-family: 'Poppins', sans-serif;
  color: #444;
  line-height: 1.7;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #ffffff;
}
#hns-wrapper * {
  box-sizing: border-box;
}
#hns-wrapper a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

/* Color Palette */
:root {
  --primary-dark: #1a1a1a;
  --gold: #D4AF37;
  --bg-light: #FAFAFA;
  --text-dark: #222;
  --text-muted: #666;
  --white: #ffffff;
  --whatsapp: #25D366;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* --- ON-SCROLL ANIMATION CLASSES --- */
.hns-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.hns-reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.hns-reveal-left { transform: translateX(-50px); }
.hns-reveal-right { transform: translateX(50px); }
.hns-reveal-scale { transform: scale(0.9); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --- TOP BAR --- */
.hns-top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  border-bottom: 2px solid var(--gold);
  z-index: 100;
  position: relative;
}
.hns-top-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hns-top-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hns-top-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}
.hns-top-info a:hover { color: var(--gold); }
.hns-top-info i { color: var(--gold); transition: transform 0.3s ease; }
.hns-top-info a:hover i { transform: scale(1.2); }
.hns-top-social a {
  color: var(--white);
  margin-left: 15px;
  font-size: 14px;
}
.hns-top-social a:hover { color: var(--gold); }

/* --- HEADER & MOBILE MENU --- */
.hns-header-wrap {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 999;
}
.hns-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hns-logo img {
  max-height: 70px;
  transition: transform 0.3s;
}
.hns-logo img:hover { transform: scale(1.05); }

/* Logo + brand text lockup (image + "HNS Technical Services LLC" +
   tagline), used in both the header and the footer. No white background
   box — sits directly on whatever background it's placed on. */
.hns-logo-wrap .hns-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hns-logo-wrap img { max-height: 58px; }
.hns-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.hns-logo-title { font-size: 21px; font-weight: 700; color: var(--white); letter-spacing: 0.3px; white-space: nowrap; }
.hns-logo-title span { color: var(--gold); }
.hns-logo-tagline { font-size: 9.5px; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 3px; white-space: nowrap; }

.hns-mobile-toggle {
  display: none;
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
}

.hns-nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hns-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.hns-nav a {
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  padding-bottom: 5px;
}
.hns-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.hns-nav a:hover { color: var(--gold); }
.hns-nav a:hover::after { width: 100%; }

.hns-header-actions { display: flex; gap: 15px; }

.btn-solid, .btn-outline, .btn-wa {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-solid { background: var(--gold); color: var(--white); }
.btn-solid:hover { background: #b5952f; box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); }
.btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--primary-dark); }
.btn-wa { background: var(--whatsapp); color: var(--white); border-color: var(--whatsapp); }
.btn-wa:hover { background: transparent; color: var(--whatsapp); }

/* Outline button variant for use on LIGHT backgrounds (dark border/text
   by default, inverts to solid dark on hover) */
.btn-outline-dark { border-color: var(--primary-dark); color: var(--primary-dark); background: transparent; }
.btn-outline-dark:hover { background: var(--primary-dark); color: var(--white); border-color: var(--primary-dark); }

/* Outline button variant explicitly for DARK backgrounds (hero banners) —
   same values as the plain .btn-outline default, given its own name so it
   never needs an inline style (which was breaking the hover state). */
.btn-outline-light { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--primary-dark); border-color: var(--white); }

/* Solid dark "CTA" button (Contact Us Now / Call Us Now) — inverts to gold
   with a lift on hover instead of just sitting static. */
.btn-cta-dark { background: var(--primary-dark); color: var(--white); border-color: var(--primary-dark); }
.btn-cta-dark:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 25px rgba(212,175,55,0.35); }

/* --- HERO SECTION --- */
.hns-hero {
  position: relative;
  background: url('assets/img/home-hero.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding-top: 150px; /* Accounts for absolute header */
}
.hns-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(212, 175, 55, 0.4) 100%);
  z-index: 1;
}
.hns-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}
.hns-biz-name {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  padding: 5px 15px;
  border: 2px solid var(--gold);
  border-radius: 5px;
}
.hns-biz-name .color-2 { color: var(--gold); }
.hns-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hns-hero h1 span { color: var(--gold); }
.hns-hero p {
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 300;
}

/* --- SHARED SECTION STYLES --- */
.hns-section { padding: 100px 5%; position: relative; }
.bg-light { background: var(--bg-light); }
.hns-sec-header { text-align: center; margin-bottom: 60px; }
.hns-subtitle { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.hns-sec-title { font-size: 40px; color: var(--primary-dark); font-weight: 700; margin: 0; }

/* --- ABOUT US SECTION (Fixed Aspect Ratio Shape) --- */
.hns-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hns-about-images {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
  z-index: 1;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
.hns-img-main {
  width: 100%;
  aspect-ratio: 1 / 1; /* Forces a perfect square ratio so the blob looks proper on all devices */
  object-fit: cover; /* Ensures the image fills the shape without distorting */
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blobMorph 8s ease-in-out infinite;
  box-shadow: var(--shadow);
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}
.hns-img-main:hover { border-radius: 50%; }

.hns-about-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.3;
}

.hns-about-text h3 { font-size: 32px; color: var(--primary-dark); margin-bottom: 20px; line-height: 1.3; }
.hns-about-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }
.hns-about-features { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.hns-about-features div { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--primary-dark); }
.hns-about-features i { color: var(--gold); font-size: 20px; }
.hns-about-btns { display: flex; gap: 15px; flex-wrap: wrap; }

/* --- STATS / EXAGGERATION SECTION --- */
.hns-stats-section {
  background: var(--primary-dark);
  padding: 60px 5%;
  position: relative;
  color: var(--white);
}
.hns-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}
.hns-stat-item i { font-size: 40px; color: var(--gold); margin-bottom: 15px; }
.hns-stat-item h3 { font-size: 48px; font-weight: 700; margin: 0 0 5px 0; }
.hns-stat-item p { font-size: 16px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; margin: 0; }

/* --- SERVICES GRID (Fixed Floating Icons without Background) --- */
.hns-services-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.hns-service-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Restored to hidden so images fit perfectly */
}
.hns-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--gold);
}
.hns-service-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.hns-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hns-service-card:hover .hns-service-img { transform: scale(1.1); }

/* Icon positioned over the image with a background */
.hns-service-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--white);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  font-size: 26px;
  z-index: 10;
  transition: all 0.3s ease;
}
.hns-service-card:hover .hns-service-icon {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

.hns-service-info {
  padding: 30px;
  background: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.hns-service-info h3 { color: var(--primary-dark); margin-bottom: 15px; font-size: 22px; transition: color 0.3s; }
.hns-service-card:hover .hns-service-info h3 { color: var(--gold); }
.hns-service-info p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}
.hns-service-actions { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.hns-service-actions .top-btns { display: flex; gap: 10px; }
.hns-service-actions .top-btns a { flex: 1; padding: 10px; font-size: 13px; }
.btn-explore {
  background: var(--primary-dark);
  color: var(--white);
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}
.btn-explore:hover { background: var(--gold); color: var(--white); }

/* --- WHY CHOOSE US --- */
.hns-choose-section {
  background: var(--primary-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hns-choose-section .hns-sec-title { color: var(--white); }
.hns-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
  z-index: 2;
  position: relative;
}
.hns-feature-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 40px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.hns-feature-box:hover {
  background: var(--gold);
  transform: translateY(-5px);
  border-color: var(--gold);
}
.hns-feature-box i { font-size: 50px; color: var(--gold); margin-bottom: 20px; transition: color 0.3s; }
.hns-feature-box:hover i { color: var(--white); }
.hns-feature-box h4 { font-size: 20px; margin-bottom: 10px; }
.hns-feature-box p { font-size: 14px; opacity: 0.8; margin: 0; }

/* --- CONTACT SECTION --- */
.hns-contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.hns-contact-info-card { background: var(--white); padding: 40px; border-radius: 15px; box-shadow: var(--shadow); border-top: 5px solid var(--gold); transition: all 0.3s ease; }
.hns-contact-info-card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(0,0,0,0.12); }
.hns-contact-item { display: flex; gap: 15px; margin-bottom: 25px; padding: 10px; margin: -10px -10px 15px -10px; border-radius: 12px; color: inherit; transition: all 0.3s ease; }
.hns-contact-item:hover { background: var(--bg-light); transform: translateX(6px); }
.hns-contact-item i { width: 50px; height: 50px; background: var(--bg-light); color: var(--gold); display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 20px; flex-shrink: 0; transition: all 0.3s ease; }
.hns-contact-item:hover i { background: var(--gold); color: var(--white); transform: scale(1.1) rotate(-6deg); }
.hns-contact-item div h4 { margin: 0 0 5px 0; font-size: 18px; color: var(--primary-dark); }
.hns-contact-item div p { margin: 0; color: var(--text-muted); }

.hns-form-card { background: var(--white); padding: 40px; border-radius: 15px; box-shadow: var(--shadow); transition: all 0.3s ease; }
.hns-form-card:hover { box-shadow: 0 20px 45px rgba(0,0,0,0.12); }
.hns-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.hns-form input, .hns-form textarea, .hns-form select { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; font-size: 14px; background: var(--bg-light); transition: border 0.3s; appearance: none; -webkit-appearance: none; }
.hns-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9'><path d='M1 1l6 6 6-6' stroke='%23999' stroke-width='2' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.hns-form input:focus, .hns-form textarea:focus, .hns-form select:focus { border-color: var(--gold); outline: none; background-color: var(--white); }
.hns-form label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--primary-dark); margin-bottom: 8px; }
.hns-form-note { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin: -4px 0 10px; margin-top: 20px;}
.hns-form-note i { color: var(--gold); }
.hns-form-btn-row { display: flex; gap: 15px; flex-wrap: wrap; }
.hns-form-btn-row .btn-solid { flex-grow: 1; border: none; }

/* --- FOOTER --- */
.hns-footer-wrapper {
  background: #111;
  color: #ccc;
  position: relative;
  padding-top: 80px;
}
.hns-footer-cta {
  position: absolute;
  top: -50px;
  left: 10%;
  right: 10%;
  background: var(--gold);
  border-radius: 15px;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  color: var(--white);
  flex-wrap: wrap;
  gap: 20px;
}
.hns-footer-cta h3 { font-size: 28px; margin: 0; color: var(--primary-dark); }

.hns-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 5% 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.hns-footer-brand .hns-logo-wrap { margin-bottom: 20px; }
.hns-footer-brand .hns-logo-wrap img { max-height: 74px; }

.hns-footer-brand p { margin-bottom: 20px; line-height: 1.8; }
.hns-footer-social { display: flex; gap: 15px; }
.hns-footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--white); }
.hns-footer-social a:hover { background: var(--gold); transform: translateY(-3px); }

.hns-footer-widget h4 { color: var(--white); font-size: 20px; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.hns-footer-widget h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--gold); }
.hns-footer-links { list-style: none; padding: 0; margin: 0; }
.hns-footer-links li { margin-bottom: 12px; }
.hns-footer-links a { color: #ccc; display: flex; align-items: center; gap: 10px; }
.hns-footer-links a:hover { color: var(--gold); padding-left: 5px; }

.hns-footer-bottom { background: #0a0a0a; text-align: center; padding: 20px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 14px; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
  .hns-about-grid { grid-template-columns: 1fr; }
  .hns-about-images { max-width: 600px; margin: 0 auto 40px; }
  .hns-footer-grid { grid-template-columns: 1fr 1fr; }
  .hns-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hns-mobile-toggle { display: block; }

  .hns-nav-container {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    border-top: 1px solid #eee;
  }

  .hns-nav-container.active { display: flex; }
  .hns-nav ul { flex-direction: column; gap: 15px; width: 100%; text-align: center; }
  .hns-nav a { color: var(--primary-dark); }
  .hns-header-actions { width: 100%; justify-content: center; margin-top: 15px; flex-wrap: wrap; }
  .hns-header-actions .btn-outline { border-color: var(--primary-dark); color: var(--primary-dark); }
  .hns-header-actions .btn-outline:hover { background: var(--primary-dark); color: var(--white); }

  .hns-top-bar { flex-direction: column; text-align: center; gap: 5px; padding: 10px 5%; font-size: 11px; }
  .hns-top-info { justify-content: center; gap: 10px; }

  .hns-logo-tagline { display: none; }
  .hns-logo-title { font-size: 16px; }
  .hns-logo-wrap img, .hns-footer-brand .hns-logo-wrap img { max-height: 46px; }

  .hns-hero { padding-top: 230px; padding-bottom: 60px; height: auto; }
  .hns-biz-name { font-size: 18px; letter-spacing: 1px; margin-bottom: 10px; }
  .hns-hero h1 { font-size: 38px; margin-top: 15px; }
  .hns-hero p { font-size: 16px; margin-bottom: 25px; }

  .hns-about-shape {
    width: 180px;
    height: 180px;
    right: -10px;
    bottom: -10px;
    opacity: 0.5;
  }
  .hns-about-images { padding-right: 15px; padding-bottom: 15px; }

  .hns-footer-cta { position: relative; top: 0; left: 0; right: 0; border-radius: 0; text-align: center; justify-content: center; }
  .hns-footer-wrapper { padding-top: 0; }
  .hns-footer-grid { grid-template-columns: 1fr; text-align: center; }
  .hns-footer-widget h4::after { left: 50%; transform: translateX(-50%); }
  .hns-footer-social { justify-content: center; }
  .hns-footer-links a { justify-content: center; }
  .hns-form-row { grid-template-columns: 1fr; }
}


/* ==========================================================================
   SECTION B — ADDITIONS FOR THE INNER PAGES
   (About / Services / Blog / Contact). These did not exist in the homepage
   source, since that file only covers the homepage. Everything below reuses
   the exact same variables, radii, shadows and hover language as Section A.
   ========================================================================== */

/* Inner page header banner (About / Services / Blog / Contact) — restored
   to use a real photo background (same treatment as the homepage hero)
   with a dark gradient overlay so the white heading text stays readable.
   Pages can override the photo via inline style="background-image:url(...)"
   on the section itself; a sensible default is set here as a fallback. */
.hns-page-banner {
  position: relative;
  background: var(--primary-dark) url('assets/img/home-hero.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 220px 5% 90px;
}
.hns-page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(139,111,26,0.55) 100%);
  z-index: 1;
}
.hns-page-banner > * { position: relative; z-index: 2; }
.hns-page-banner h1 { font-size: 46px; font-weight: 700; margin: 0 0 15px; }
.hns-page-banner p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto; font-weight: 300; }
.hns-breadcrumb { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.55); }
.hns-breadcrumb a { color: rgba(255,255,255,0.85); }
.hns-breadcrumb a:hover { color: var(--gold); }
.hns-breadcrumb i { font-size: 10px; margin: 0 8px; }
.hns-page-banner__btns { justify-content: center; margin-top: 20px; }

/* About page — years badge over the image, same visual language as the
   about-shape circle already in Section A */
.hns-about-badge {
  position: absolute;
  bottom: 15px;
  left: -20px;
  z-index: 3;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 18px 22px;
  text-align: center;
}
.hns-about-badge strong { display: block; font-size: 30px; color: var(--primary-dark); line-height: 1; }
.hns-about-badge span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 600; }

/* About page — Our Journey timeline (vertical, zigzag left/right, with a
   connecting gold line down the center — matches the layout image) */
.hns-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.hns-timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
  transform: translateX(-50%);
}
.hns-timeline-item {
  position: relative;
  width: 46%;
  padding: 25px 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  border-left: 4px solid var(--gold);
  margin-bottom: 50px;
  transition: all 0.3s ease;
}
.hns-timeline-item:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.hns-timeline-item::after {
  content: '';
  position: absolute;
  top: 30px;
  width: 18px; height: 18px;
  background: var(--gold);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold);
}
.hns-timeline-item:nth-child(odd) { margin-left: 0; text-align: right; border-left: none; border-right: 4px solid var(--gold); }
.hns-timeline-item:nth-child(odd)::after { right: -39px; }
.hns-timeline-item:nth-child(even) { margin-left: 54%; }
.hns-timeline-item:nth-child(even)::after { left: -39px; }
.hns-timeline-year { display: inline-block; background: var(--gold); color: var(--white); font-weight: 700; font-size: 14px; padding: 6px 16px; border-radius: 30px; margin-bottom: 15px; }
.hns-timeline-item h4 { color: var(--primary-dark); font-size: 18px; margin: 0 0 10px; }
.hns-timeline-item p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* About / Services page — testimonials (dark section, star ratings, big
   gold quote mark — matches the actual live site, not a light card) */
.hns-testimonial-section { background: var(--primary-dark); color: var(--white); }
.hns-testimonial-section .hns-sec-title { color: var(--white); }
.hns-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.hns-testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 15px;
  padding: 35px;
  position: relative;
  transition: all 0.3s ease;
}
.hns-testimonial-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.hns-testimonial-stars { color: var(--gold); font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.hns-testimonial-card .fa-quote-right { position: absolute; top: 30px; right: 30px; font-size: 34px; color: rgba(212,175,55,0.35); }
.hns-testimonial-card p { color: rgba(255,255,255,0.75); font-size: 15px; font-style: italic; margin-bottom: 20px; }
.hns-testimonial-author { display: flex; align-items: center; gap: 12px; }
.hns-testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--primary-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.hns-testimonial-author h5 { margin: 0; font-size: 15px; color: var(--white); }
.hns-testimonial-author span { font-size: 13px; color: var(--gold); }

/* Contact page — quick info strip under the banner */
.hns-quick-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; max-width: 1400px; margin: -60px auto 0; position: relative; z-index: 3; padding: 0 5%; }
.hns-quick-info-item { background: var(--white); border-radius: 15px; box-shadow: var(--shadow); padding: 25px; display: flex; align-items: center; gap: 15px; color: inherit; transition: all 0.3s ease; }
.hns-quick-info-item:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.hns-quick-info-item i { width: 50px; height: 50px; background: var(--bg-light); color: var(--gold); display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 20px; flex-shrink: 0; transition: all 0.3s ease; }
.hns-quick-info-item:hover i { background: var(--gold); color: var(--white); transform: scale(1.1); }
.hns-quick-info-item h5 { margin: 0 0 3px; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.hns-quick-info-item p { margin: 0; font-weight: 600; color: var(--primary-dark); }


/* Contact page — map block (acts as a "Get Directions" launcher) */
.hns-map-block { border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); height: 380px; background: var(--primary-dark); display: flex; align-items: center; justify-content: center; color: inherit; transition: all 0.3s ease; }
.hns-map-block:hover { box-shadow: 0 20px 45px rgba(0,0,0,0.25); }
.hns-map-block i { font-size: 60px; color: var(--gold); transition: transform 0.3s ease; }
.hns-map-block:hover i { transform: translateY(-8px) scale(1.08); }

/* Blog listing + single post — card meta row shows author / date / category
   / comment count, same as the reference layout image, with a plain
   outlined "Read More" button (not the solid black pill used elsewhere)
   so the archive reads cleanly at a glance. */
.hns-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.hns-blog-card { background: var(--white); border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid #f0f0f0; transition: all 0.4s ease; display: flex; flex-direction: column; }
.hns-blog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--gold); }
.hns-blog-media { aspect-ratio: 4 / 3; background: var(--primary-dark); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hns-blog-media i { font-size: 46px; color: var(--gold); }
.hns-blog-media img { width: 100%; height: 100%; object-fit: cover; }
.hns-blog-body { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; }
.hns-blog-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; display: flex; flex-wrap: wrap; gap: 6px 15px; }
.hns-blog-meta span { display: inline-flex; align-items: center; gap: 5px; }
.hns-blog-meta i { color: var(--gold); }
.hns-blog-body h3 { font-size: 19px; color: var(--primary-dark); margin: 0 0 12px; }
.hns-blog-body p { color: var(--text-muted); font-size: 14px; flex-grow: 1; margin-bottom: 20px; }
.hns-blog-body a.btn-read-more {
  display: inline-block;
  align-self: flex-start;
  padding: 10px 22px;
  border: 1px solid #ddd;
  border-radius: 30px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hns-blog-body a.btn-read-more:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }

.hns-post-featured-img { display: block; width: 100%; max-width: 1000px; aspect-ratio: 3/2; object-fit: cover; margin: 0 auto 30px; border-radius: 15px; }
.hns-post-body { max-width: 760px; margin: 0 auto; }
.hns-post-body h2 { font-size: 26px; color: var(--primary-dark); margin: 40px 0 15px; }
.hns-post-body p { color: var(--text-dark); font-size: 16px; margin-bottom: 18px; }
.hns-post-body ul { padding-left: 20px; color: var(--text-dark); margin-bottom: 20px; }
.hns-post-body li { margin-bottom: 8px; }
.hns-post-meta { text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.hns-post-meta span { margin: 0 10px; }

/* Single post — Comments / Leave a Reply form */
.hns-comments { max-width: 760px; margin: 60px auto 0; padding-top: 40px; border-top: 1px solid #eee; }
.hns-comments h2 { font-size: 24px; color: var(--primary-dark); margin: 0 0 25px; }
.hns-comment-form p.hns-comment-note { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.hns-comment-form label { display: block; font-size: 13px; font-weight: 600; color: var(--primary-dark); margin-bottom: 6px; }
.hns-comment-form textarea,
.hns-comment-form input[type="text"],
.hns-comment-form input[type="email"],
.hns-comment-form input[type="url"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 20px;
  background: var(--bg-light);
}
.hns-comment-form textarea { resize: vertical; }
.hns-comment-form .hns-comment-checkbox { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.hns-comment-form .hns-comment-checkbox input { width: auto; margin: 0; }
.hns-comment-form button { border: none; }

/* Single post — More Posts list */
.hns-more-posts { max-width: 760px; margin: 50px auto 0; }
.hns-more-posts h4 { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 15px; }
.hns-more-posts-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-top: 1px solid #eee; }
.hns-more-posts-item a { color: var(--primary-dark); font-weight: 600; }
.hns-more-posts-item a:hover { color: var(--gold); }
.hns-more-posts-item span { color: var(--text-muted); font-size: 13px; }

/* Floating action buttons — Call + WhatsApp stacked bottom-right */
.hns-float-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
}
.hns-float-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 28px;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hns-float-btn i { position: relative; top: 1px; }
.hns-float-btn:hover { transform: scale(1.08); color: var(--white); }
.hns-float-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: hns-float-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes hns-float-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
/* "Call us" / "Chat with us" tooltip on hover (desktop only) */
.hns-float-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--primary-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (hover: hover) {
  .hns-float-btn:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.hns-float-whatsapp { background: var(--whatsapp); box-shadow: 0 6px 18px rgba(37,211,102,0.45); }
.hns-float-whatsapp::before { background: var(--whatsapp); }
.hns-float-whatsapp:hover { box-shadow: 0 8px 22px rgba(37,211,102,0.6); }

.hns-float-call { background: var(--gold); box-shadow: 0 6px 18px rgba(212,175,55,0.45); }
.hns-float-call::before { background: var(--gold); }
.hns-float-call:hover { box-shadow: 0 8px 22px rgba(212,175,55,0.6); }

@media (max-width: 768px) {
  .hns-float-actions { bottom: 18px; right: 18px; gap: 12px; }
  .hns-float-btn { width: 50px; height: 50px; font-size: 24px; }
  .hns-float-btn::after { display: none; }
}

@media (max-width: 1024px) {
  .hns-testimonial-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .hns-quick-info { grid-template-columns: 1fr; margin-top: -30px; }
  .hns-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .hns-services-wrapper { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hns-page-banner { padding: 170px 5% 60px; }
  .hns-page-banner h1 { font-size: 30px; }
  .hns-about-badge { left: 15px; }
  .hns-blog-grid { grid-template-columns: 1fr; }
  .hns-services-wrapper { grid-template-columns: 1fr; gap: 30px; }
  .hns-service-img-wrap { height: 200px; }

  /* Timeline collapses to a single left-aligned column with the gold
     line and dots on the left edge instead of down the center */
  .hns-timeline::before { left: 10px; }
  .hns-timeline-item,
  .hns-timeline-item:nth-child(odd),
  .hns-timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 40px;
    text-align: left;
    border-left: 4px solid var(--gold);
    border-right: none;
  }
  .hns-timeline-item:nth-child(odd)::after,
  .hns-timeline-item:nth-child(even)::after {
    left: -52px;
    right: auto;
  }

  /* Tighter vertical rhythm + card padding on small screens */
  .hns-section { padding: 60px 5%; }
  .hns-contact-info-card, .hns-form-card { padding: 28px 22px; }
  .hns-footer-cta { padding: 25px 30px; }
}

/* Sticky header (added per request) — the header overlaps the hero/banner
   the same way it always did (position: absolute, out of normal flow), so
   switching it to position: fixed on scroll causes no layout jump. */
.hns-header-wrap.is-sticky {
  position: fixed;
  top: 0; left: 0; right: 0;
  animation: hns-slide-down 0.35s ease;
}
.hns-header-wrap.is-sticky .hns-top-bar { display: none; }
.hns-header-wrap.is-sticky .hns-header {
  background: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
@keyframes hns-slide-down {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Active nav link underline (added per request) */
.hns-nav a.active { color: var(--gold); }
.hns-nav a.active::after { width: 100%; }
.hns-nav-container .hns-header-actions { }
@media (max-width: 768px) {
  .hns-nav a.active { color: var(--gold); }
}
@media (max-width: 380px) {
  .hns-logo-text { display: none; }
}