/* ───────────────────────────────────────────────────────────
   HUNGERCAT PREMIUM STYLES
   Consolidated from views for better maintanability
   ─────────────────────────────────────────────────────────── */

/* ─ Global / Shared Components ───────────────────────────── */
.hc-pill {
    display: inline-block;
    padding: 5px 16px;
    background: #e8f0fe;
    color: #1967d2;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
}
.hc-pill--white {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hc-pill--red {
    background: #fce8e6;
    color: #d93025;
}

.hc-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.hc-btn--white { background: #fff; color: #000; }
.hc-btn--white:hover {
    background: #f1f3f4;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}
.hc-btn--outline-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}
.hc-btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}
.hc-btn--primary { background: var(--primary-color); color: #fff; }
.hc-btn--primary:hover { background: #1557b0; color: #fff; }
.hc-btn--outline {
    background: transparent;
    border-color: var(--divider-color);
    color: var(--primary-color);
}
.hc-btn--outline:hover {
    background: #f1f3f4;
    border-color: #bbb;
    color: var(--primary-color);
}
.hc-btn--ghost {
    background: transparent;
    color: var(--dark-color);
    font-size: 15px;
    padding: 12px 16px;
}
.hc-btn--ghost:hover { color: var(--primary-color); }
.section-title h2 span {
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: underline;
	text-decoration-color: var(--primary-color);
	text-underline-offset: 8px;
}
.hc-link-arr {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.hc-link-arr i { font-size: 12px; transition: transform .2s; }
.hc-link-arr:hover { color: var(--primary-color); }
.hc-link-arr:hover i { transform: translateX(4px); }
.hc-link-arr--red { color: #d93025; }
.hc-link-arr--red:hover { color: #d93025; }

/* ─ Header & Footer specific ─────────────────────────── */
.main-header {
    background: #fff !important;
    border-bottom: 1px solid var(--divider-color);
}
.main-header .nav-link {
    color: #1A1A1A !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}
.main-header .btn-default {
    padding: 10px 24px;
    color: #fff !important;
}

/* ─ Service Detail Enhancements ───────────────────────── */
.hc-service-sidebar-card {
    background: #fff;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.hc-sidebar-nav-list li {
    list-style: none;
    border-bottom: 1px solid #f1f3f4;
}
.hc-sidebar-nav-list li:last-child { border-bottom: none; }

.hc-sidebar-nav-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: #444;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}
.hc-sidebar-nav-list li a i { font-size: 12px; opacity: 0; transform: translateX(-10px); transition: all 0.2s; }
.hc-sidebar-nav-list li a:hover { color: var(--primary-color); }
.hc-sidebar-nav-list li a:hover i { opacity: 1; transform: translateX(0); }

.hc-service-cta-card {
    background: #000;
    border-radius: 24px;
    padding: 40px 30px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hc-service-cta-card h3 { color: #fff; font-size: 24px; margin-bottom: 15px; font-weight: 700; }
.hc-service-cta-card p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 25px; }

.hc-service-cta-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hc-service-cta-card .icon-box img { width: 30px; }

.hc-apply-btn {
    background: #fff;
    color: #000;
    padding: 14px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}
.hc-apply-btn:hover { background: #f1f3f4; color: #000; transform: translateY(-2px); }

/* ─ Metrics & Impact Cards ───────────────────────────── */
.hc-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hc-metric-card {
    background: #fff;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.hc-metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.1);
}

.hc-metric-card h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.hc-metric-card h2 .counter {
    background: linear-gradient(135deg, var(--primary-color) 0%, #444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hc-metric-card p {
    color: #5f6368;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* ─ Typography & Layout Utilities ────────────────────── */
.hc-sec--white-padded {
    background: #fff !important;
    padding: 100px 0;
}

.hc-sec--light-gray {
    background: #f8f9fa !important;
    padding: 100px 0;
}

.hc-section-subtitle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5f6368;
    display: block;
    margin-bottom: 15px;
}

.hc-heading-bold span {
    color: #444; /* Darker span for contrast on white */
}

/* Overrides for template sections to force brand theme */
.digital-success {
    background: #fff !important;
    padding: 0;
}

.digital-success-box {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

.digital-success-box::before { display: none !important; }

.why-choose-us {
    background: #fff !important;
}

/* ─ Icon-Driven Service Header ───────────────────────── */
.hc-service-icon-hero {
    padding: 60px;
    background: #f8f9fa;
    border-radius: 32px;
    text-align: center;
    margin-bottom: 50px;
    border: 1px solid var(--divider-color);
}

.hc-service-icon-hero .icon-wrapper {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hc-service-icon-hero h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hc-service-icon-hero p {
    font-size: 18px;
    color: #5f6368;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ─ Centered Breadcrumbs & Hero Styles ───────────────── */
.hc-breadcrumb-wrap {
    text-align: center;
    margin-bottom: 2rem;
}

.hc-breadcrumb-wrap .breadcrumb {
    display: flex;
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hc-breadcrumb-wrap .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 10px;
    color: #dadce0;
}

.hc-breadcrumb-wrap .breadcrumb-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.hc-breadcrumb-wrap .breadcrumb-item.active {
    color: #5f6368;
}

.hc-hero-centered {
    text-align: center;
    padding: 80px 0 40px;
}

.hc-hero-centered h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark-color);
}

/* Google-inspired Mega Menu */
.nav-item.position-static .dropdown-menu {
  width: 75% !important;
  margin: 0 auto !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  padding: 32px 0 !important;
  background: #ffffff !important;
  border: 1px solid var(--divider-color) !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
  visibility: hidden !important;
  opacity: 0 !important;
  transform: translateY(0px) !important;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s !important;
  z-index: 999 !important;
}

/* Pseudo-bridge to prevent hover loss */
.nav-item.position-static .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
  z-index: -1;
}

.nav-item.position-static:hover .dropdown-menu {
  visibility: visible !important;
  opacity: 1 !important;
}

.mega-menu .dropdown-header {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #5f6368 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  margin-bottom: 12px !important;
  padding-left: 0 !important;
}

.mega-menu .dropdown-item {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #555 !important;
  padding: 8px 0 !important;
  background: transparent !important;
  transition: all 0.2s ease !important;
}

.mega-menu .dropdown-item:hover {
  color: #000 !important;
  padding-left: 5px !important;
  text-decoration: underline !important;
  transform: none !important;
}

.mega-menu .col-md-3 {
  border-right: 1px solid #f1f3f4 !important;
}

.mega-menu .col-md-3:last-child {
  border-right: none !important;
}

@media (max-width: 991px) {
  .nav-item.position-static .dropdown-menu {
    width: 100% !important;
    position: relative !important;
    box-shadow: none !important;
    border: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    padding: 0 !important;
  }

  .mega-menu .col-md-3 {
    border-right: none !important;
    padding-bottom: 20px !important;
  }
}

/* ─ Homepage - Hero ───────────────────────────────────── */
.hc-hero {
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 180px 0 140px;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hc-hero__overlay { position: absolute; inset: 0; background: rgba(0, 0, 20, .45); z-index: 0; }
.hc-hero__inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.hc-hero__title {
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}
.hc-hero__sub {
    font-size: clamp(17px, 2.5vw, 21px);
    color: rgba(255, 255, 255, .85);
    max-width: 660px;
    margin: 0 auto 48px;
    line-height: 1.65;
}
.hc-hero__cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.hc-hero__blobs { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hc-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .45; }
.hc-blob--a {
    width: 600px; height: 600px; top: -250px; right: -100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
}
.hc-blob--b {
    width: 500px; height: 500px; bottom: -150px; left: -100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}
.hc-blob--c {
    width: 400px; height: 400px; top: 100px; left: 20%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
}

.hc-hero__previews { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.hc-fp {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    animation: hcFloat 4s ease-in-out infinite;
}
.hc-fp i { font-size: 24px; color: #fff; }
.hc-fp--a { top: 15%; left: 6%; animation-delay: 0s; }
.hc-fp--b { top: 65%; left: 10%; animation-delay: .7s; }
.hc-fp--c { top: 20%; right: 8%; animation-delay: 1.4s; }
.hc-fp--d { top: 65%; right: 6%; animation-delay: .35s; }
.hc-fp--e { top: 42%; left: 4%; animation-delay: 1.1s; }

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

/* ─ Homepage - Trust bar ─────────────────────────────── */
.hc-trustbar { padding: 60px 0; background: #fff; border-bottom: 1px solid var(--divider-color); }
.hc-trustbar__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; }
.hc-trustbar__stat { flex: 1 1 200px; text-align: center; padding: 20px; position: relative; }
.hc-trustbar__stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.06), transparent);
}
.hc-trustbar__stat:last-child::after { display: none; }
.hc-trustbar__num {
    display: block;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #000;
    line-height: 1;
    letter-spacing: -.04em;
    margin-bottom: 8px;
}
.hc-trustbar__label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #5f6368;
    font-weight: 600;
}

/* ─ Homepage - Intro strip ───────────────────────────── */
.hc-intro-strip { padding: 100px 0; background: #fff; border-top: 1px solid var(--divider-color); }
.hc-intro-strip__inner { max-width: 880px; margin: 0 auto; }
.hc-intro-strip__heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #202124;
    margin-bottom: 24px;
}
.hc-intro-strip__heading em {
    font-style: normal;
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hc-intro-strip__text { font-size: 20px; color: #5f6368; line-height: 1.6; margin-bottom: 40px; }
.hc-intro-strip__btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─ Showcase / Logo grid ─────────────────────────── */
.hc-showcase { padding: 90px 0; background: #fff; overflow-x: hidden; }
.hc-showcase__h { font-size: clamp(30px, 4vw, 52px); font-weight: 800; letter-spacing: -.02em; }
.hc-showcase__sub { font-size: 18px; color: #5f6368; max-width: 600px; margin: 14px auto 0; }
.hc-logo-grid { display: flex; justify-content: center; align-items: center; gap: 28px; padding: 56px 0; flex-wrap: wrap; }
.hc-logo-col { display: flex; flex-direction: column; gap: 14px; }
.hc-logo-center { flex: 0 0 auto; }
.hc-logo-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 100px;
    transition: all .2s ease;
}
.hc-logo-card img { max-width: 78%; max-height: 78%; object-fit: contain; }
.hc-logo-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0, 0, 0, .1); }
.hc-logo-card--main { width: 240px; height: 200px; border-radius: 28px; box-shadow: 0 20px 40px rgba(0, 0, 0, .1); }

/* Success Story Banner */
.hc-story-banner {
    background: #fdf2f2;
    border-radius: 28px;
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 56px;
    text-align: left;
}
.hc-story-banner__text { flex: 1; }
.hc-story-banner__text h3 { font-size: 26px; font-weight: 700; margin: 14px 0 18px; line-height: 1.35; }
.hc-story-banner__img {
    flex: 0 0 42%; border-radius: 16px; overflow: hidden;
    max-height: 260px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.hc-story-banner__img img { width: 100%; height: 100%; object-fit: cover; }

/* ─ Device Mockups & Previews ───────────────────── */
.hc-browser-frame {
    background: #f8f9fa; border-radius: 16px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.12); border: 1px solid #e0e0e0;
}
.hc-browser-bar { background: #fff; padding: 10px 16px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid #e0e0e0; }
.hc-browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: #dadce0; display: inline-block; }
.hc-url-bar { flex: 1; margin-left: 10px; background: #f1f3f4; border-radius: 20px; padding: 4px 14px; font-size: 12px; color: #9aa0a6; }
.hc-browser-body { min-height: 200px; }

.hc-dashboard-frame { background: #fff; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.1); overflow: hidden; border: 1px solid #e0e0e0; }
.hc-dash-header { background: var(--dark-color); padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; color: #fff; font-size: 14px; font-weight: 600; }
.hc-dash-live { color: #34a853; font-size: 12px; }
.hc-dash-body { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #f1f3f4; }
.hc-dash-card { background: #fff; padding: 20px 16px; text-align: center; }
.hc-dash-card strong { display: block; font-size: 22px; font-weight: 800; color: var(--c, var(--primary-color)); }
.hc-dash-card small { font-size: 11px; color: #9aa0a6; text-transform: uppercase; letter-spacing: .05em; }

.hc-dash-card--black { --c: #000; }
.hc-dash-card--green { --c: #34a853; }
.hc-dash-card--yellow { --c: #fbbc04; }
.hc-dash-card--red { --c: #ea4335; }
.hc-dash-bar-chart { display: flex; align-items: flex-end; gap: 6px; padding: 20px; height: 120px; background: #fff; }
.hc-bar { flex: 1; background: var(--primary-color); border-radius: 4px 4px 0 0; min-height: 8px; }

.hc-ai-frame { background: #fff; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.1); padding: 24px; border: 1px solid #e0e0e0; }
.hc-chat-bubble { padding: 12px 18px; border-radius: 20px; font-size: 14px; line-height: 1.5; margin-bottom: 10px; max-width: 85%; }
.hc-chat-bubble--in { background: #f1f3f4; color: #202124; border-radius: 20px 20px 20px 4px; }
.hc-chat-bubble--out { background: var(--primary-color); color: #fff; margin-left: auto; border-radius: 20px 20px 4px 20px; }
.hc-typing span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,.15); margin: 0 2px; animation: hcDot 1s infinite; }
.hc-typing span:nth-child(2) { animation-delay: .2s; }
.hc-typing span:nth-child(3) { animation-delay: .4s; }

.hc-ai-icons { display: flex; gap: 12px; margin-top: 16px; justify-content: center; }
.hc-ai-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; background: #f1f3f4; }
.hc-ai-icon i { color: #000; }
.hc-ai-icon--green { background: #e6f4ea !important; }
.hc-ai-icon--green i { color: #34a853 !important; }
.hc-ai-icon--red { background: #fce8e6 !important; }
.hc-ai-icon--red i { color: #ea4335 !important; }
.hc-ai-icon--yellow { background: #fef7e0 !important; }
.hc-ai-icon--yellow i { color: #fbbc04 !important; }

.hc-integration-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 380px; margin: 0 auto; }
.hc-int-card {
    background: #fff; border: 1px solid var(--divider-color); border-radius: 20px;
    padding: 20px 16px; display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; color: var(--text-color);
    transition: all .2s ease; box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.hc-int-card i { font-size: 28px; }
.hc-int-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.1); }

/* ─ Feature Sections ────────────────────────────── */
.hc-sec { padding: 90px 0; }
.hc-sec--white { background: #fff; }
.hc-sec--light-blue { background: #f8fbff; }
.hc-sec--border-top { border-top: 1px solid var(--divider-color); }

.hc-feature { padding: 90px 0; background: #fff; border-top: 1px solid var(--divider-color); }
.hc-feature--alt { background: var(--secondary-color); }
.hc-feature h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.hc-feature h2 em { font-style: normal; color: var(--primary-color); }
.hc-feature p { font-size: 17px; color: #5f6368; line-height: 1.7; margin-bottom: 16px; }
.hc-feat-list { list-style: none; padding: 0; margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.hc-feat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-color); }
.hc-feat-list li i { color: #34a853; margin-top: 3px; flex-shrink: 0; }

/* ─ Portfolio Sections ──────────────────────────── */
.hc-port-card { background: #fff; border-radius: 24px; overflow: hidden; border: 1px solid var(--divider-color); height: 100%; transition: all .2s ease; }
.hc-port-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,.09); transform: translateY(-6px); }
.hc-port-card__img { position: relative; height: 230px; overflow: hidden; }
.hc-port-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hc-port-card:hover .hc-port-card__img img { transform: scale(1.05); }
.hc-port-card__badge { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); color: var(--primary-color); padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.hc-port-card__body { padding: 24px; }
.hc-port-card__body h4 { font-size: 18px; margin-bottom: 8px; }
.hc-port-card__body p { font-size: 13px; color: #5f6368; margin-bottom: 18px; line-height: 1.6; }

/* ─ Service Sections ──────────────────────────── */
.hc-svc-card { background: #fff; padding: 28px; border-radius: 24px; height: 100%; border: 1px solid var(--divider-color); transition: all .2s ease; position: relative; overflow: hidden; }
.hc-svc-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--primary-color); border-radius: 0 0 4px 4px; transition: height .3s ease; }
.hc-svc-card:hover::before { height: 100%; }
.hc-svc-card:hover { border-color: #d2e3fc; box-shadow: 0 6px 20px rgba(0,0,0,.06); background: #f8fbff; }
.hc-svc-card__icon { width: 48px; height: 48px; background: #e8f0fe; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary-color); margin-bottom: 18px; }
.hc-svc-card h4 { font-size: 18px; margin-bottom: 10px; }
.hc-svc-card p { font-size: 14px; color: var(--text-color); margin-bottom: 16px; line-height: 1.65; }

/* ─ Tech stack ───────────────────────────────── */
.hc-techsec { background: var(--secondary-color); }
.hc-tech-chip { background: #fff; border: 1px solid var(--divider-color); border-radius: 14px; padding: 12px 20px; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 4px rgba(0,0,0,.04); transition: all .2s ease; }
.hc-tech-chip:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.08); border-color: #d2e3fc; }

/* ─ Latest news ──────────────────────────────── */
.hc-news-card { display: block; background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--divider-color); height: 100%; transition: all .2s ease; color: inherit; text-decoration: none; }
.hc-news-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,.08); transform: translateY(-4px); color: inherit; }
.hc-news-card__img { height: 190px; overflow: hidden; background: #f1f3f4; }
.hc-news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.hc-news-card:hover .hc-news-card__img img { transform: scale(1.04); }
.hc-news-card__body { padding: 22px; }
.hc-news-card__meta { font-size: 12px; color: #9aa0a6; margin-bottom: 8px; font-weight: 500; }
.hc-news-card__body h5 {
    font-size: 16px; margin-bottom: 8px; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}
.hc-news-card__body p {
    font-size: 13px; color: #5f6368; margin-bottom: 14px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

/* ─ Newsletter ───────────────────────────────── */
.hc-newsletter { padding: 100px 0; background: #fff; border-top: 1px solid var(--divider-color); }
.hc-newsletter__card { background: var(--dark-color); border-radius: 32px; padding: 64px; color: #fff; overflow: hidden; position: relative; }
.hc-newsletter__h { font-size: clamp(24px, 4vw, 36px); font-weight: 800; line-height: 1.2; margin: 0 0 16px; letter-spacing: -.02em; }
.hc-newsletter__h em { font-style: normal; color: rgba(255, 255, 255, 0.5); }
.hc-newsletter__p { font-size: 17px; color: rgba(255, 255, 255, 0.7); margin: 0; line-height: 1.6; }
.hc-newsletter__form { margin-bottom: 12px; }
.hc-newsletter__input-group { background: #fff; padding: 8px; border-radius: 40px; display: flex; gap: 10px; }
.hc-newsletter__input { flex: 1; border: none; background: transparent; padding: 0 24px; font-size: 15px; color: #000 !important; outline: none; }
.hc-newsletter__note { font-size: 12px; color: rgba(255, 255, 255, 0.45); margin: 0; }
.hc-newsletter__note a { color: #fff; text-decoration: underline; }

/* ─ Final CTA ───────────────────────────────── */
.hc-getstarted { position: relative; background: #000; padding: 160px 0; text-align: center; color: #fff; overflow: hidden; }
.hc-getstarted__blobs { position: absolute; inset: 0; pointer-events: none; }
.hc-gs-blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .35; }
.hc-gs-blob--a { width: 600px; height: 600px; top: -250px; right: -100px; background: radial-gradient(var(--primary-color), transparent 70%); }
.hc-gs-blob--b { width: 500px; height: 500px; bottom: -150px; left: -100px; background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%); }
.hc-getstarted__inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hc-getstarted__h { font-size: clamp(36px, 6vw, 68px); font-weight: 800; color: #fff; margin-bottom: 24px; line-height: 1.1; letter-spacing: -.035em; }
.hc-getstarted__h em { font-style: normal; background: linear-gradient(135deg, #fff, #8ab4f8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hc-getstarted__p { font-size: 20px; color: rgba(255, 255, 255, 0.75); max-width: 580px; margin: 0 auto 56px; line-height: 1.65; }
.hc-getstarted__cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─ Responsive ───────────────────────────────────── */
@media(max-width: 991px) {
    .hc-feature { padding: 60px 0; }
    .hc-sec { padding: 60px 0; }
    .hc-story-banner { flex-direction: column; padding: 32px; text-align: center; }
    .hc-story-banner__img { flex: 0 0 100%; width: 100%; }
    .hc-logo-grid { gap: 14px; }
    .hc-logo-col { display: none; }
    .hc-logo-card--main { width: 200px; height: 160px; }
    .hc-hero__previews { display: none; }
    .hc-dash-body { grid-template-columns: repeat(2, 1fr); }
    .hc-trustbar__stat strong { font-size: 28px; }
    .hc-newsletter__card { padding: 32px; }
    .hc-newsletter__input-group { flex-direction: column; border-radius: 20px; }
}
@media(max-width: 576px) {
    .hc-integration-grid { grid-template-columns: repeat(3, 1fr); }
    .hc-trustbar__stat { padding: 12px 24px; }
    .hc-trustbar__stat::after { display: none; }
}

/* ─ Utility Classes ─────────────────────────────── */
.hc-text-primary { color: var(--primary-color) !important; }
.hc-text-muted { color: #5f6368 !important; }
.hc-text-lg { font-size: 20px !important; }
.hc-text-md { font-size: 17px !important; }
.hc-heading-md { font-size: clamp(28px, 4vw, 40px) !important; font-weight: 800 !important; margin-top: 14px !important; margin-bottom: 8px !important; }
.hc-heading-lg { font-size: clamp(32px, 5vw, 48px) !important; font-weight: 800 !important; margin-bottom: 32px !important; }
.hc-max-width-lg { max-width: 620px !important; margin-left: auto !important; margin-right: auto !important; }
.hc-max-width-sm { max-width: 520px !important; margin-left: auto !important; margin-right: auto !important; }
.hc-text-primary { color: var(--primary-color) !important; }

/* Browser preview specifics */
.hc-preview-grid {
    background: linear-gradient(135deg, #e8f0fe 0%, #d2e3fc 100%);
    display: flex; align-items: center; justify-content: center;
    gap: 20px; padding: 32px;
}
.hc-preview-card {
    background: #fff; border-radius: 16px; padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08); flex: 1; text-align: center;
}
.hc-preview-card i { font-size: 32px; color: #000; margin-bottom: 12px; display: block; }
.hc-preview-card--green i { color: #34a853; }
.hc-preview-card--yellow i { color: #fbbc04; }
.hc-bar-sm { height: 8px; background: #e8f0fe; border-radius: 4px; margin-bottom: 8px; }
.hc-preview-card--green .hc-bar-sm { background: #e6f4ea; }
.hc-preview-card--yellow .hc-bar-sm { background: #fef7e0; }
.hc-bar-xs { height: 8px; background: #f1f3f4; border-radius: 4px; width: 70%; margin: 0 auto; }

/* Dashboard specifics */
.hc-dash-card--black { --c: #000; }
.hc-dash-card--green { --c: #34a853; }
.hc-dash-card--yellow { --c: #fbbc04; }
.hc-dash-card--red { --c: #ea4335; }

/* AI icons */
.hc-ai-icon--green { background: #e6f4ea !important; }
.hc-ai-icon--green i { color: #34a853 !important; }
.hc-ai-icon--red { background: #fce8e6 !important; }
.hc-ai-icon--red i { color: #ea4335 !important; }
.hc-ai-icon--yellow { background: #fef7e0 !important; }
.hc-ai-icon--yellow i { color: #fbbc04 !important; }

/* Success pill/link */
.hc-pill--red { background: #fce8e6 !important; color: #d93025 !important; }
.hc-link-arr--red { color: #d93025 !important; }
.hc-link-arr--red:hover { color: #d93025 !important; }

/* ─ About Page - Company Hero ────────────────────────── */
.hc-company-hero {
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 180px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hc-company-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding-bottom: 80px;
}
.hc-company-hero__title {
    font-size: clamp(42px, 6.5vw, 82px);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -.035em;
    margin-bottom: 24px;
}
.hc-company-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, #4285f4, #8ab4f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hc-company-hero__sub {
    font-size: clamp(16px, 2.2vw, 20px);
    color: rgba(255, 255, 255, .75);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.hc-company-hero__stats {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.hc-company-hero__stat {
    flex: 1 1 160px;
    text-align: center;
    padding: 28px 20px;
    position: relative;
}
.hc-company-hero__stat+.hc-company-hero__stat {
    border-left: 1px solid rgba(255, 255, 255, .08);
}
.hc-company-hero__stat strong {
    display: block;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 6px;
}
.hc-company-hero__stat span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .45);
    font-weight: 500;
}

/* Team section overrides */
.hc-team-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--divider-color);
    overflow: hidden;
    height: 100%;
    transition: var(--premium-transition);
    cursor: pointer;
}
.hc-team-card:hover {
    box-shadow: var(--google-card-shadow);
    border-color: #000;
}
.hc-team-card__img {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f8f9fa;
}
.hc-team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hc-team-card:hover .hc-team-card__img img {
    transform: scale(1.05);
}
.hc-team-card__body {
    padding: 30px;
    border-top: 1px solid var(--divider-color);
}
.hc-team-card__body h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #000;
}
.hc-team-card__body p {
    font-size: 15px;
    color: #5f6368;
    margin-bottom: 20px;
}
.hc-team-card__social {
    display: flex;
    gap: 15px;
}
.hc-team-card__social a {
    color: #000;
    font-size: 18px;
    transition: color 0.2s ease;
}
.hc-team-card__social a:hover {
    color: #1a73e8;
}

@media(max-width:767px) {
    .hc-company-hero { padding: 140px 0 0; }
    .hc-company-hero__stat+.hc-company-hero__stat { border-left: none; border-top: 1px solid rgba(255, 255, 255, .08); }
}

/* ─ Consolidated & Missing Styles ─────────────────── */

/* Breadcrumbs (About/Company) */
.hc-breadcrumb-nav { margin-bottom: 24px; }
.hc-breadcrumb-list { background: transparent !important; padding: 0 !important; margin: 0 !important; }
.hc-breadcrumb-link { color: rgba(255, 255, 255, 0.55); font-size: 13px; text-decoration: none; transition: color 0.2s ease; }
.hc-breadcrumb-link:hover { color: #fff; }
.hc-breadcrumb-item-active { color: rgba(255, 255, 255, 0.85); font-size: 13px; }

/* Sections */
.hc-sec--white-padded { background: #fff; padding: 120px 0; }

/* ─ Premium Features Grid ────────────────────────── */
.service-features-section {
    padding: 60px 0;
}

.hc-service-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.hc-feature-box {
    background: #fff;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    transition: var(--premium-transition);
}

.hc-feature-box:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.hc-feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color); /* Removed blue */
}

.hc-feature-box p {
    font-size: 16px;
    color: #5f6368;
    line-height: 1.6;
    margin: 0;
}

/* ─ Premium FAQ Accordion ────────────────────────── */
.our-faq-section {
    padding: 80px 0;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--divider-color) !important;
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: none !important;
}

.faq-accordion .accordion-button {
    padding: 24px 32px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    background: #fff !important;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color); /* Removed blue */
    border-bottom: 1px solid var(--divider-color);
}

.faq-accordion .accordion-body {
    padding: 32px;
    background: #fafafa;
}

.hc-faq-answer {
    font-size: 16px;
    color: #5f6368;
    line-height: 1.8;
    margin: 0;
}
/* Missing Feature Styles */
.hc-feature-grid-v { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.hc-feature-card { padding: 30px; border-radius: 20px; transition: all 0.3s ease; }
.hc-feature-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.hc-feature-card p { font-size: 15px; line-height: 1.6; margin-bottom: 0; }
.hc-feature-card--gray { background: #f8f9fa; border: 1px solid #f1f3f4; }
.hc-feature-card--gray:hover { background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.06); transform: translateY(-3px); }

/* Floating Badge */
.hc-floating-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    z-index: 5;
    border: 1px solid rgba(0,0,0,0.04);
}
.hc-floating-badge__icon {
    width: 44px;
    height: 44px;
    background: #e8f0fe;
    color: #1a73e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.hc-floating-badge__num { font-weight: 800; font-size: 22px; color: #000; line-height: 1.1; }
.hc-floating-badge__label { font-size: 11px; color: #5f6368; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }

@media(max-width: 991px) {
    .hc-floating-badge { bottom: 20px; left: 10px; padding: 12px 16px; }
    .hc-floating-badge__icon { width: 36px; height: 36px; font-size: 16px; }
    .hc-floating-badge__num { font-size: 18px; }
    .hc-sec--white-padded { padding: 80px 0; }
}

/* ─ Header & Footer Utilities ────────────────────── */
.hc-nav-spacer { margin-left: 15px; }
.hc-contact-link { color: var(--text-color) !important; text-decoration: none !important; }
.hc-contact-link:hover { color: var(--primary-color) !important; }
.hc-text-black { color: #000 !important; }
.hc-hidden { display: none !important; }

/* ─ Client Showcase & Chips (from pages/clients.php) ─ */
.hc-showcase-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.hc-showcase-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hc-showcase-center { flex: 0 0 auto; }

.hc-logo-card-google {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: 160px;
    height: 120px;
}
.hc-logo-card-google img { max-width: 80%; max-height: 80%; object-fit: contain; }
.hc-logo-card-google:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }

.hc-logo-card-central {
    width: 280px;
    height: 240px;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

.hc-client-chip-card {
    background: #fff;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 24px 16px 16px;
    text-align: center;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hc-client-chip-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: #d2e3fc; }
.hc-client-chip-card img { max-height: 50px; max-width: 100%; object-fit: contain; }
.hc-client-chip-name { font-size: 13px; font-weight: 700; color: var(--dark-color); }
.hc-client-chip-label { font-size: 11px; font-weight: 600; color: #5f6368; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

.hc-country-group { padding-bottom: 40px; border-bottom: 1px solid var(--divider-color); }
.hc-country-group:last-child { border-bottom: none; }

.hc-tech-item-card {
    background: #fff;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    transition: var(--premium-transition);
}

.hc-tech-item-card:hover {
    border-color: #000;
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    transform: translateX(8px);
}

.hc-tech-item-h {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
}

@media (max-width: 991px) {
    .hc-showcase-grid { gap: 20px; }
    .hc-logo-card-google { width: 140px; height: 100px; }
    .hc-logo-card-central { width: 220px; height: 180px; }
}

/* ─ Blog & News Detail ─────────────────────────── */
.hc-post-image-wrap { margin-top: 20px; }
.hc-related-news-h { font-size: 28px !important; font-weight: 600 !important; }
.hc-blog-card-img { height: 260px; width: 100%; object-fit: cover !important; }

/* ─ Global Utilities ────────────────────────────── */
.hc-mb-56 { margin-bottom: 56px !important; }
.hc-mb-40 { margin-bottom: 40px !important; }
.hc-mt-80 { margin-top: 80px !important; }
.hc-heading-bold { font-weight: 800 !important; }
.hc-img-limit-h { max-height: 80px !important; width: auto !important; }
.hc-text-center { text-align: center !important; }

/* ─ Careers Page ───────────────────────────────── */
.hc-career-card {
    background: #fff;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 48px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}
.hc-career-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #000;
}
.hc-career-tag {
    background: #f0f0f0;
    color: #555;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 15px;
}
.hc-career-loc { color: #888; font-size: 14px; font-weight: 500; }
.hc-job-title { font-size: 36px; font-weight: 800; color: #000; letter-spacing: -1.5px; margin-bottom: 0; }
.hc-view-details { font-size: 18px; font-weight: 700; color: #000; }
.hc-job-details-expand {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}
.hc-job-details-expand.is-visible { max-height: 2000px; opacity: 1; }
.hc-job-details-inner { border-top: 1px solid #eee; padding-top: 48px; margin-top: 32px; }
.hc-job-sec-h { font-size: 20px; font-weight: 800; margin-bottom: 20px; color: #000; }
.hc-job-desc { font-size: 18px; color: #444; line-height: 1.8; margin-bottom: 40px; }
.hc-job-sidebar { background: #fafafa; padding: 40px; border-radius: 16px; border: 1px solid #eee; }
.hc-apply-btn {
    display: block; width: 100%; background: #000; color: #fff;
    text-align: center; padding: 18px; border-radius: 100px;
    font-weight: 700; text-decoration: none; transition: background 0.2s ease;
}
.hc-apply-btn:hover { background: #333; color: #fff; }

@media(max-width: 767px) {
    .hc-career-card { padding: 32px 24px; }
    .hc-job-title { font-size: 28px; }
}
/* ─ Footer & Navigation Polishes ────────────────── */
.hc-main-footer {
    background: #fff !important;
    padding: 100px 0;
    border-top: 1px solid var(--divider-color);
}
.hc-footer-links-h {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--dark-color);
}
.hc-footer-link {
    color: var(--text-color) !important;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 12px;
    text-decoration: none !important;
}
.hc-footer-link:hover {
    color: var(--accent-color) !important;
    transform: translateX(5px);
}
.hc-social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--divider-color);
    color: var(--text-color) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hc-social-icon-btn:hover {
    background: var(--accent-color);
    color: var(--white-color) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}
.hc-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}
.hc-footer-contact-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
}
.hc-footer-contact-icon {
    width: 20px;
    filter: grayscale(1) brightness(0);
}
.hc-footer-copyright {
    border-top: 1px solid var(--divider-color);
    padding: 30px 0;
    margin-top: 60px;
}
.hc-footer-copyright-text {
    color: var(--text-color);
    font-size: 14px;
}

.hc-header-sticky-active {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}


.hc-inner-submenu { display: none; }

/* ─ Service Detail Styles ──────────────────────── */
.hc-service-process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.hc-process-step-item {
    flex: 1 1 300px;
    display: flex;
}
.hc-process-step-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hc-feature-box {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding-bottom: 20px;
}
.hc-feature-box p {
    margin-bottom: 50px;
}
.hc-tech-item-h {
    color: var(--accent-color) !important;
    font-weight: 600 !important;
}
.hc-faq-answer {
    color: var(--accent-color) !important;
    font-weight: 600 !important;
}

