/*
Theme Name: RASN Consult
Theme URI: 
Author: Antigravity
Author URI: 
Description: Custom WordPress theme for RASN Consult empowering businesses with intelligent technology solutions. Based on provided HTML template.
Version: 1.0.0
Text Domain: rasn-consult
*/

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

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* =====================
   OFF-CANVAS DRAWER
===================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 22, 0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  background: linear-gradient(180deg, #071526 0%, #091e38 100%);
  border-right: 1px solid rgba(33, 150, 243, 0.15);
  z-index: 60;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.38s ease;
  display: flex;
  flex-direction: column;
}

.drawer.is-open {
  transform: translateX(0);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.5);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 22px 24px 20px;
  border-bottom: 1px solid rgba(33, 150, 243, 0.1);
}

.drawer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer__logo-text .brand {
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.drawer__logo-text .sub {
  color: #aac8e8;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.22em;
}

.drawer__close {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.drawer__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.drawer__nav {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}

.drawer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer__nav li {
  position: relative;
}

.drawer__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 28px;
  color: #c5d8eb;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-left: 3px solid transparent;
  transition: color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.drawer__nav a:hover {
  color: #ffffff;
  border-left-color: #2196f3;
  background: rgba(33, 150, 243, 0.07);
}

.drawer__nav a .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.5);
  flex-shrink: 0;
}

/* Sub-Level Support */
.drawer__nav .sub-menu {
  display: none;
  background: rgba(0, 0, 0, 0.2);
}

.drawer__nav li:hover>.sub-menu {
  display: block;
  animation: fadeIn 0.3s ease;
}

.drawer__nav li.menu-item-has-children>a::after {
  content: "";
  display: inline-block;
  margin-left: auto;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #c5d8eb transparent transparent transparent;
  transition: transform 0.2s ease;
}

.drawer__nav li.menu-item-has-children:hover>a::after {
  transform: rotate(180deg);
  border-top-color: #ffffff;
}

.drawer__nav .sub-menu a {
  padding-left: 50px;
  font-size: 14px;
}

.drawer__nav .sub-menu .sub-menu a {
  padding-left: 70px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(33, 150, 243, 0.1);
}

.drawer__footer .btn--cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #2196f3 0%, #1565c0 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.drawer__footer .btn--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(33, 150, 243, 0.45);
}

.drawer__footer p {
  color: #4a6a8a;
  font-size: 12px;
  text-align: center;
  margin-top: 16px;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #29A8E4;
  background: linear-gradient(217deg, rgba(41, 168, 228, 1) 0%, rgb(12 44 59) 70%);
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.9;
}

/* =====================
   HEADER / NAVBAR
===================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
}

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

.logo__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__brand {
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.logo__sub {
  color: #aac8e8;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
}

.logo__tagline {
  color: #6a9fc8;
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 0.16em;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.btn--contact {
  background: linear-gradient(135deg, #2196f3 0%, #1565c0 100%);
  color: #ffffff;
  padding: 9px 22px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(33, 150, 243, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn--contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.4);
}

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

.is-hidden {
  display: none;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: width 0.2s ease;
}

.hamburger span:nth-child(1) {
  width: 24px;
}

.hamburger span:nth-child(2) {
  width: 24px;
}

.hamburger span:nth-child(3) {
  width: 16px;
}

/* =====================
   HERO CONTENT
===================== */
.hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  max-width: 100%;
}

.hero__title {
  color: #ffffff;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero__subtitle {
  color: #c5d8eb;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 620px;
}

.btn--cta {
  display: inline-block;
  background: linear-gradient(135deg, #2196f3 0%, #1565c0 100%);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 32px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.02em;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(33, 150, 243, 0.5);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .header {
    padding: 18px 24px;
  }

  .hero__content {
    padding: 0 24px 60px;
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(26px, 7vw, 42px);
  }

  .hero__subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .logo__brand {
    font-size: 15px;
  }

  .btn--contact {
    padding: 8px 16px;
    font-size: 13px;
  }

  .drawer {
    width: 280px;
  }
}

/* =====================
   ABOUT SECTION
===================== */
.about-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

.about-section .tagline {
  text-align: center;
  color: #888ea8;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 60px;
}

.we-work-with {
  margin-bottom: 56px;
}

.we-work-with__title {
  color: #0d98d4;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.2;
}

.we-work-with__list {
  color: #0d98d4;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.we-work-with__list span.divider {
  color: #b0c4d4;
  margin: 0 10px;
  font-weight: 300;
}

.about-desc {
  color: #3a4a5c;
  font-size: 0.97rem;
  line-height: 1.78;
  font-weight: 400;
}

.why-choose {
  margin-top: 64px;
  align-items: center;
}

.why-choose__title {
  color: #1a1a2e;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.why-choose__body {
  color: #4a5568;
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.why-choose__links a {
  display: block;
  color: #0d98d4;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s ease, letter-spacing 0.15s ease;
}

.why-choose__links a::before {
  content: '> ';
}

.why-choose__links a:hover {
  color: #0b7ab0;
  letter-spacing: 0.03em;
}

.about-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #07111e;
  box-shadow: 0 8px 40px rgba(13, 152, 212, 0.15),
    0 2px 12px rgba(0, 0, 0, 0.12);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* =====================
   SERVICES SECTION
===================== */
.services-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

.services-section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}

.service-card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.service-card {
  padding: 2rem;
}

.service-card:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.service-card__number {
  font-size: 3rem;
  font-weight: 400;
  color: #111827;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.service-card__arrow-row {
  display: flex;
  align-items: end;
  gap: 12px;
  margin-bottom: 20px;
}

.service-card__arrow {
  color: #374151;
  flex-shrink: 0;
  width: 2rem;
  height: auto;
  margin: 1rem 1rem 0 0;
}

.service-card__name {
  font-size: 1.05rem;
  font-weight: 500;
  color: #374151;
  margin: 0;
  line-height: 1.3;
  display: flex;
  flex-flow: column;
  gap: 1rem;
}

.service-card__body {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.78;
  margin-bottom: 28px;
  min-height: 135px;
}

.service-card__image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: #07111e;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  filter: brightness(0.95);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.service-card__image:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.service-row-1 .col-md-8 {
  justify-content: start;
  border-left: 2px solid #000;
}

.service-row-2 .col-md-8 {
  justify-content: end;
  border-right: 2px solid #000;
}

.service-row-3 .col-md-8 {
  justify-content: start;
  border-left: 2px solid #000;
}

@media (max-width: 991.98px) {
  .about-section {
    padding: 60px 0 80px;
  }

  .why-choose {
    margin-top: 48px;
  }

  .about-image {
    margin-top: 36px;
  }

  .we-work-with__title {
    font-size: 1.45rem;
  }
}

@media (max-width: 767.98px) {
  .services-section {
    padding: 56px 0 72px;
  }

  .service-card {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 0 40px;
    margin-right: 0;
    margin-bottom: 40px;
    flex: 1 1 100%;
  }

  .service-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

/* =====================
   CONSULTING SECTION
===================== */
.consulting-section {
  background: linear-gradient(135deg, #c8e8f5 0%, #b3d9ef 40%, #a0cceb 100%);
  padding: 80px 0;
  overflow: hidden;
}

.consulting-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-right: 48px;
}

.consulting-copy__title {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1a2e3d;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.consulting-copy__subtitle {
  font-size: 0.95rem;
  color: #2d4a5e;
  line-height: 1.75;
  max-width: 100%;
  margin-bottom: 36px;
}

.btn--know-more {
  display: inline-block;
  background: #1aa8c4;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 4px;
  width: fit-content;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(26, 168, 196, 0.3);
}

.btn--know-more:hover {
  background: #158fa8;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26, 168, 196, 0.4);
  color: #fff;
}

.consulting-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 60, 100, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%;
  max-width: 520px;
}

.mockup-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* =====================
   TESTIMONIALS SECTION
===================== */
.testimonials-section {
  background: #dceef8;
  padding: 80px 0 72px;
}

.testimonials-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a2e3d;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.testimonials-section__lead {
  font-size: 0.92rem;
  color: #3a5568;
  line-height: 1.75;
  max-width: 820px;
  margin-bottom: 52px;
}

/* Slider Track */
.testimonials-slider {
  max-width: 740px;
  margin: 0 auto 52px;
}

/* Single Slide */
.testimonial-slide {
  text-align: center;
  outline: none;
  padding: 0 16px;
}

.testimonial-slide__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 16px rgba(0, 60, 100, 0.15);
  margin: 0 auto 28px;
  display: block;
}

.testimonial-slide__quote {
  font-size: 0.95rem;
  color: #2d4a5e;
  line-height: 1.85;
  margin-bottom: 24px;
  font-weight: 400;
}

.testimonial-slide__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2e3d;
  margin: 0;
}

/* Slick Dots Override */
.slick-dots {
  position: static;
  margin-top: 28px;
}

.slick-dots li button::before {
  font-size: 10px;
  color: #6b9db5;
  opacity: 0.5;
}

.slick-dots li.slick-active button::before {
  color: #1a2e3d;
  opacity: 1;
}

/* CTA Button */
.btn--success-story {
  display: inline-block;
  background: #1aa8c4;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26, 168, 196, 0.3);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--success-story:hover {
  background: #158fa8;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26, 168, 196, 0.4);
  color: #fff;
}

/* =====================
   CLIENTS SECTION
===================== */
.clients-section {
  background: #ffffff;
  padding: 72px 0 80px;
}

.clients-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.clients-section__lead {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 780px;
}

/* Stats Bullets */
.clients-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 52px;
}

.clients-stats li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 6px;
}

.clients-button {
  justify-content: center;
  display: flex;
}

.clients-stats li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1aa8c4;
  font-size: 1rem;
  line-height: 1.5;
}

/* Logos Row */
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 32px 40px;
  margin-bottom: 52px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
  padding: 0 16px;
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.client-logo img {
  max-height: 60px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* CTA Button */
.clients-section__cta {
  display: inline-block;
  background: #1aa8c4;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid #1aa8c4;
  box-shadow: 0 4px 16px rgba(26, 168, 196, 0.25);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.clients-section__cta:hover {
  background: transparent;
  color: #1aa8c4;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26, 168, 196, 0.3);
}

@media (max-width: 991.98px) {
  .about-section {
    padding: 60px 0 80px;
  }

  .why-choose {
    margin-top: 48px;
  }

  .about-image {
    margin-top: 36px;
  }

  .we-work-with__title {
    font-size: 1.45rem;
  }

  .consulting-section {
    padding: 60px 0;
  }

  .consulting-copy {
    padding-right: 0;
    margin-bottom: 48px;
  }

  .consulting-copy__title {
    font-size: 1.75rem;
  }
}

.two-columns-section {
  background: #fff;
}

.two-columns-section__content * {
  color: #7C7C7C;
}

.slick-dots li button:before {
  font-size: 12px;
}

.test-button a {
  width: auto;
}

.test-button {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 767.98px) {
  .services-section {
    padding: 56px 0 72px;
  }

  .service-card {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 0 40px;
    margin-right: 0;
    margin-bottom: 40px;
    flex: 1 1 100%;
  }

  .service-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .testimonials-section {
    padding: 60px 0 56px;
  }

  .testimonials-slider {
    max-width: 100%;
  }

  .clients-section {
    padding: 56px 0 64px;
  }

  .clients-logos {
    gap: 24px 28px;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .about-section .tagline {
    font-size: 0.9rem;
    margin-bottom: 40px;
  }

  .why-choose__title {
    font-size: 1.35rem;
  }

  .consulting-section {
    padding: 48px 0;
  }

  .consulting-copy__title {
    font-size: 1.5rem;
  }
}

/* =====================
   FOOTER SECTION
===================== */
.site-footer {
  background: #d6eaf5;
  padding: 60px 0 0;
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo__text .brand {
  display: block;
  color: #1a2e3d;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.footer-logo__text .sub {
  display: block;
  color: #4a8aaa;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.22em;
}

.footer-logo__text .tagline {
  display: block;
  color: #6aA0b8;
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 0.16em;
  margin-top: 2px;
}

/* About Blurb */
.footer-about {
  font-size: 0.8rem;
  color: #3a5a70;
  line-height: 1.78;
  margin-bottom: 20px;
}

/* Social */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #3a5a70;
  margin-bottom: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #1a8db5;
  border-radius: 5px;
  transition: background 0.2s ease, transform 0.2s ease;
  color: #fff !important;
  text-decoration: none;
  font-size: 1rem;
}

.footer-social a:hover {
  background: #1270a0;
  transform: translateY(-2px);
}

.footer-social a svg {
  fill: #fff;
}

/* Column Headings */
.footer-col__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a2e3d;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

/* Quick Links / Products */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.82rem;
  color: #3a5a70;
  text-decoration: none;
  transition: color 0.15s ease, padding-left 0.15s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #1aa8c4;
  padding-left: 4px;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: #3a5a70;
  line-height: 1.55;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: #1aa8c4;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-contact a:hover {
  color: #1270a0;
}

/* Bottom Bar */
.footer-bottom {
  background: #c8e0ef;
  margin-top: 52px;
  padding: 16px 0;
  text-align: center;
  font-size: 0.78rem;
  color: #3a5a70;
  letter-spacing: 0.01em;
}

@media (max-width: 991.98px) {
  .site-footer {
    padding: 48px 0 0;
  }
}

@media (max-width: 575.98px) {
  .footer-bottom {
    margin-top: 40px;
  }
}