/* ----------------------------------------------------------
   Theme foundation & element resets
---------------------------------------------------------- */
:root {
  --fp-body-bg: #040507;
  --fp-body-gradient: radial-gradient(circle at 20% 20%, rgba(118, 2, 222, 0.2), transparent 45%), radial-gradient(circle at 80% 0, rgba(255, 121, 0, 0.18), transparent 50%), #050608;
  --fp-surface-1: #0d0f15;
  --fp-surface-2: #151823;
  --fp-surface-3: #1f2232;
  --fp-border: rgba(255, 255, 255, 0.08);
  --fp-border-strong: rgba(255, 255, 255, 0.25);
  --fp-shadow-soft: 0 30px 60px rgba(0, 0, 0, 0.45);
  --fp-shadow-hard: 0 20px 40px rgba(2, 2, 6, 0.55);
  --fp-text: #f7f8fb;
  --fp-muted: #aeb5cd;
  --fp-muted-2: #7f86a2;
  --fp-primary: #ff7900;
  --fp-secondary: #c6ed37;
  --fp-accent: #7602de;
  --fp-highlight: #ffaf45;
  --fp-radius-sm: 10px;
  --fp-radius-md: 18px;
  --fp-radius-lg: 32px;
  --fp-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --fp-grid-color: rgba(198, 237, 55, 0.06);
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  min-height: 100vh;
  font-family: "Rethink Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  font-size: 18px;
  font-weight: 400;
  color: var(--fp-text);
  background: var(--fp-body-gradient);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(255, 121, 0, 0.35);
  color: #fff;
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

img {
  display: block;
}

a {
  color: var(--fp-highlight);
  transition: color var(--fp-transition);
}

a:hover, a:focus {
  color: var(--fp-secondary);
  text-decoration: none;
}

p {
  color: var(--fp-muted);
  margin: 1rem 0;
}

ul, ol {
  color: var(--fp-muted);
  padding-left: 1.4rem;
  margin: 1rem 0;
}

li + li {
  margin-top: 0.25rem;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--fp-text);
  font-weight: 600;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }

strong, b {
  color: var(--fp-text);
  font-weight: 600;
}

blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--fp-surface-2);
  border-left: 4px solid var(--fp-primary);
  border-radius: var(--fp-radius-sm);
  color: var(--fp-muted);
}

pre, code, .terminal, .terminal-sample {
  font-family: "Fira Code", "SFMono-Regular", Consolas, Menlo, monospace;
}

pre {
  background: var(--fp-surface-2);
  padding: 1.25rem;
  border-radius: var(--fp-radius-sm);
  overflow-x: auto;
  color: var(--fp-text);
  border: 1px solid var(--fp-border);
}

code {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-size: 0.95em;
}

.blog-body pre code,
pre code {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.terminal,
.terminal-sample {
  background: var(--fp-surface-2);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-sm);
  padding: 1rem 1.25rem;
  color: var(--fp-text);
}

hr {
  border: none;
  border-top: 1px solid var(--fp-border);
  margin: 2.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95em;
}

table th, table td {
  border: 1px solid var(--fp-border);
  padding: 0.75rem 1rem;
  text-align: left;
}

table th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--fp-text);
}

.site-main {
  display: block;
  padding-top: 130px;
}

section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--fp-border);
}

section:last-of-type {
  border-bottom: none;
}

section .container > * + * {
  margin-top: 1.5rem;
}

/* ----------------------------------------------------------
   Buttons & small controls
---------------------------------------------------------- */
button,
.button,
.button-coral,
.cta-button,
.plain-button {
  font-family: inherit;
  cursor: pointer;
}

.cta-button,
.button-coral,
.button.button--ujarak {
  color: #050505;
  background-image: linear-gradient(120deg, var(--fp-secondary), var(--fp-primary));
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--fp-shadow-hard);
  transition: transform var(--fp-transition), box-shadow var(--fp-transition), filter var(--fp-transition);
}

.cta-button:hover,
.button-coral:hover,
.button.button--ujarak:hover {
  color: #050505;
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.plain-button {
  color: var(--fp-muted);
  border: 1px solid var(--fp-border);
  background: transparent;
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plain-button:hover {
  color: var(--fp-text);
  border-color: var(--fp-secondary);
}

.button-search {
  background: var(--fp-primary);
  color: #050505;
  border: none;
  border-radius: var(--fp-radius-sm);
  width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.button-search:hover {
  background: var(--fp-highlight);
}

/* ----------------------------------------------------------
   Header & navigation
---------------------------------------------------------- */
header {
  position: relative;
  z-index: 999;
}

nav.navbar {
  padding: 1.25rem 0;
  transition: padding var(--fp-transition);
}

nav.navbar > .container {
  background: rgba(13, 15, 21, 0.9);
  border: 1px solid var(--fp-border);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: var(--fp-shadow-soft);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  padding: 0.85rem 1.5rem;
  gap: 1.5rem;
}

nav .navbar-brand img {
  width: 130px;
}

.navbar .cta-button {
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
  box-shadow: none;
}

.navbar-items {
  justify-content: center;
}

.navbar-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.navbar-nav > li + li {
  margin-top: 0;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link {
  color: var(--fp-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  transition: color var(--fp-transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.show .nav-link {
  color: var(--fp-secondary);
}

.navbar-nav .nav-link svg {
  transition: transform var(--fp-transition);
}

.navbar-nav .nav-item.show .nav-link svg {
  transform: rotate(180deg);
}

.mobile-items {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.mobile-navbar-button {
  background: rgba(198, 237, 55, 0.1);
  border: 1px solid var(--fp-border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fp-secondary);
}

.dropdown-menu {
  background: var(--fp-surface-1);
  border: 1px solid var(--fp-border);
  box-shadow: var(--fp-shadow-hard);
  border-radius: var(--fp-radius-md);
  padding: 0.5rem;
  min-width: 220px;
  z-index: 999;
  margin-top: 0;
}

.dropdown-item {
  color: var(--fp-muted);
  border-radius: var(--fp-radius-sm);
  padding: 0.65rem 0.9rem;
}

.dropdown-item:hover {
  color: var(--fp-text);
  background: rgba(198, 237, 55, 0.08);
}

.dropdown-menu-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-items .dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.75rem);
  width: min(320px, 90vw);
}

nav.navbar.scrolled-nav {
  padding: 0.75rem 0;
}

nav.navbar.scrolled-nav > .container {
  border-color: var(--fp-border-strong);
  background: rgba(5, 5, 6, 0.95);
}

/* ----------------------------------------------------------
   Hero & banners
---------------------------------------------------------- */
.hero {
  position: relative;
  padding: 5.5rem 0 3rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
}

.hero.grid-bg::before {
  background-image:
    linear-gradient(to right, var(--fp-grid-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--fp-grid-color) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.8;
}

.hero.image-bg::before {
  background: var(--hero-background, url('/images/banner/blog_new_head.png')) center/cover no-repeat;
  filter: saturate(0.7) brightness(0.35) blur(2px);
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.15rem;
  color: var(--fp-muted);
}

.banner-area {
  position: relative;
  background: #000;
  overflow: hidden;
}

.banner-overlay {
  background: rgba(5, 7, 10, 0.85);
  padding: 5rem 0;
}

.top,
.top-sized {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
}

.top::before,
.top-sized::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, 0.78);
}

.top > *,
.top-sized > * {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------
   Cards, taxonomy chips & search tools
---------------------------------------------------------- */
.card {
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-md);
  background: var(--fp-surface-1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  text-decoration: none;
}

.card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.85);
  transition: transform var(--fp-transition);
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
  margin-top: auto;
}

.card-title {
  color: var(--fp-text);
  font-size: 1.35rem;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.85);
  opacity: 0;
  transition: opacity var(--fp-transition);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--fp-muted);
}

.card:hover .card-overlay {
  opacity: 1;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.taxonomy-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.taxonomy-tag {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(198, 237, 55, 0.15);
  color: var(--fp-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.search-bar {
  background: var(--fp-surface-1);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--fp-shadow-hard);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.search-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.searchform .input-group,
.searchform {
  width: 100%;
}

.searchform .form-control,
.searchform input[type="search"],
.searchform input[type="text"],
.searchform input[name="search"] {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fp-border);
  color: var(--fp-text);
  border-radius: var(--fp-radius-sm);
  padding: 0.65rem 1rem;
}

.searchform input::placeholder {
  color: var(--fp-muted-2);
}

/* ----------------------------------------------------------
   Share bars & pagination
---------------------------------------------------------- */
.share-bar-wrapper {
  margin: 2rem 0;
}

.share-bar-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  background: var(--fp-surface-2);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-md);
  padding: 0.85rem 1.25rem;
}

.share-bar-inner a {
  color: var(--fp-muted);
  font-size: 1.1rem;
}

.share-bar-inner a:hover {
  color: var(--fp-secondary);
}

.blog-nav {
  color: var(--fp-muted);
  gap: 1.5rem;
}

.blog-nav a {
  color: var(--fp-text);
}

/* ----------------------------------------------------------
   Blog body & typography containers
---------------------------------------------------------- */
.blog-body {
  background: rgba(5, 7, 11, 0.7);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--fp-shadow-soft);
}

.blog-body img {
  border-radius: var(--fp-radius-sm);
  border: 1px solid var(--fp-border);
  margin: 1.5rem 0;
}

.blog-body .spark-pricing-top {
  background: var(--fp-surface-1);
  border: 1px solid var(--fp-border);
}

.blog-contact {
  background: rgba(198, 237, 55, 0.08);
  border-radius: var(--fp-radius-md);
  padding: 1.5rem;
  color: var(--fp-text);
}

.blog-contact a {
  color: var(--fp-primary);
}

.blog-sidebar {
  background: var(--fp-surface-1);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--fp-shadow-hard);
}

.blog-sidebar h2 {
  border-bottom: 1px solid var(--fp-border);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.blog-sidebar ul {
  list-style: none;
  padding-left: 0;
}

.blog-sidebar li + li {
  margin-top: 0.5rem;
}

.blog-sidebar a {
  color: var(--fp-muted);
}

.blog-sidebar a:hover {
  color: var(--fp-secondary);
}

/* ----------------------------------------------------------
   Contact & social cards
---------------------------------------------------------- */
.contact-us {
  background: transparent;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.contact-card {
  background: var(--fp-surface-1);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-md);
  padding: 1.25rem 1.5rem;
  min-width: 220px;
  text-align: center;
  box-shadow: var(--fp-shadow-hard);
}

.contact-card i {
  font-size: 1.4rem;
  color: var(--fp-secondary);
  margin-bottom: 0.5rem;
}

.socials-container {
  width: 100%;
  max-width: 480px;
}

.socials {
  background: var(--fp-surface-1);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-lg);
  padding: 2rem;
  text-align: center;
}

.socials-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.socials-items a {
  display: inline-flex;
  width: 60px;
  height: 60px;
  border-radius: var(--fp-radius-sm);
  border: 1px solid var(--fp-border);
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--fp-text);
}

.socials-items a:hover {
  border-color: var(--fp-secondary);
  color: var(--fp-secondary);
}

.video-other-links ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.video-other-links a {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--fp-border);
}

/* ----------------------------------------------------------
   Body widgets & technical sections
---------------------------------------------------------- */
.body-widget {
  background: var(--fp-surface-2);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-md);
  padding: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.01);
}

.body-widget h2 {
  margin-top: 0;
}

.services-tabs .nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-bottom: 1px solid var(--fp-border);
  padding-bottom: 1rem;
}

.services-tabs .nav-link {
  border-radius: 999px;
  border: 1px solid var(--fp-border);
  color: var(--fp-muted);
  padding: 0.6rem 1.5rem;
  font-weight: 500;
}

.services-tabs .nav-link.active {
  background: rgba(198, 237, 55, 0.15);
  color: var(--fp-text);
  border-color: var(--fp-secondary);
}

.common-top {
  margin-top: 2rem;
}

.services-desktop-view {
  display: block;
}

.services-mobile-view {
  display: none;
}

.services-mobile-view .card {
  background: var(--fp-surface-1);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-md);
}

.services-mobile-view .card-header {
  background: transparent;
  border-bottom: 1px solid var(--fp-border);
}

.services-mobile-view .card-link {
  color: var(--fp-text);
  font-weight: 600;
}

.syllabus-listing {
  list-style: none;
  padding-left: 0;
}

.syllabus-listing li {
  padding: 0.3rem 0;
  color: var(--fp-muted);
}

.service-accordian {
  background: var(--fp-surface-1);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-lg);
  padding: 2rem;
}

.service-accordian-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.right-services {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quality-article-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--fp-radius-sm);
  padding: 0.8rem 1rem;
  margin-bottom: 0.75rem;
}

.technical-resources {
  background: rgba(5, 6, 10, 0.6);
}

.resource-main {
  margin-top: 2rem;
}

.technical-widget {
  margin-bottom: 1.5rem;
}

.technical-widget hr {
  border-color: rgba(255, 255, 255, 0.08);
}

.technical-widget a {
  color: var(--fp-text);
}

.technical-widget a:hover {
  color: var(--fp-secondary);
}

.devops-signup-inner {
  background: var(--fp-surface-1);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-lg);
  padding: 2rem;
  box-shadow: var(--fp-shadow-soft);
}

.devops-pillars .body-widget,
.devops-signup .body-widget {
  text-align: center;
}

.our-mission-area {
  background: rgba(5, 7, 12, 0.4);
  border-radius: var(--fp-radius-lg);
}

.mission-right p {
  margin-top: 0.5rem;
}

/* ----------------------------------------------------------
   Kube360 + marketing specific sections
---------------------------------------------------------- */
.deep-blue {
  background: linear-gradient(120deg, rgba(9, 15, 35, 0.95), rgba(8, 12, 24, 0.9));
  border-top: 1px solid var(--fp-border);
  border-bottom: 1px solid var(--fp-border);
}

.text-light {
  color: var(--fp-text);
}

.deep-blue-text {
  color: #8ac0ff;
}

.dark-coral-text {
  color: #ff9580;
}

.light-coral-text {
  color: #ffb199;
}

.bright-blue-text,
.complete-blue-text {
  color: #9dd6ff;
}

.gradient-text {
  background: linear-gradient(120deg, var(--fp-secondary), var(--fp-primary));
  -webkit-background-clip: text;
  color: transparent;
}

.k360-icons .about-kube360,
.about-kube360,
.benefits {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}

.k360-icons {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--fp-radius-lg);
  border: 1px solid var(--fp-border);
}

.about-kube360 img,
.benefits img {
  margin: 0 auto 0.75rem;
}

.benefits ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0;
}

.benefits ul li {
  color: var(--fp-text);
  padding: 0.25rem 0;
}

.kube360-hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.kube360-runs {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}

.kube360-runs li {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--fp-radius-sm);
  padding: 0.5rem 1rem;
}

.kube360-runs img {
  max-height: 32px;
  width: auto;
}

.rtta-img {
  border-radius: var(--fp-radius-sm);
  border: 1px solid var(--fp-border);
  margin: 0.5rem;
}

.modal-img {
  max-width: 90vw;
}

/* ----------------------------------------------------------
   Splide sliders & carousels
---------------------------------------------------------- */
.client-slider-container {
  background: rgba(5, 7, 11, 0.6);
  border-radius: var(--fp-radius-lg);
  padding: 2rem;
  border: 1px solid var(--fp-border);
}

.splide__arrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--fp-border);
}

.splide__arrow svg {
  fill: none;
  stroke: var(--fp-muted);
}

.splide__pagination__page.is-active {
  background: var(--fp-secondary);
}

/* ----------------------------------------------------------
   Footer
---------------------------------------------------------- */
footer.footer {
  background: rgba(5, 6, 9, 0.7);
  border-top: 1px solid var(--fp-border);
  margin-top: 4rem;
  padding: 3rem 0;
}

footer .footer-logo {
  width: 140px;
  margin-bottom: 1rem;
}

footer a {
  color: var(--fp-muted);
}

/* ----------------------------------------------------------
   Utilities & helper classes
---------------------------------------------------------- */
.flex-gap-2 {
  gap: 0.75rem;
}

.sm-nopad {
  padding: 0;
}

.syallbus-more {
  margin-top: 2rem;
}

.missing-page-content {
  background: var(--fp-surface-1);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-lg);
  text-align: center;
  padding: 2.5rem 2rem;
  box-shadow: var(--fp-shadow-hard);
}

/* ----------------------------------------------------------
   Responsive tweaks
---------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .site-main {
    padding-top: 110px;
  }

  nav.navbar > .container {
    border-radius: 32px;
  }
}

@media (max-width: 991.98px) {
  nav.navbar > .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .navbar-items {
    width: 100%;
  }

  .navbar-nav {
    justify-content: space-between;
    width: 100%;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .services-desktop-view {
    display: none;
  }

  .services-mobile-view {
    display: block;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  section {
    padding: 3rem 0;
  }

  .blog-body {
    padding: 1.75rem;
  }

  .search-bar {
    flex-direction: column;
  }

  .contact-info {
    flex-direction: column;
    align-items: stretch;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .mobile-items .dropdown-menu {
    width: 100%;
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  nav.navbar > .container {
    padding: 0.75rem 1rem;
  }

  .share-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .taxonomy-tags-container {
    gap: 0.35rem;
  }
}
