@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Roboto:wght@300;400;500&family=Poppins:wght@400;600&display=swap");

/* --- GLOBAL STYLES --- */
:root {
  --primary: #0052cc;
  --primary-hover: #003d99;
  --dark: #172b4d;
  --text: #42526e;
  --light-bg: #f4f5f7;
  --white: #ffffff;
  --accent: #00b8d9;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;

  --cool-ice: #f0f9ff; /* Very light blue-white */
  --cool-slate: #e2e8f0; /* Clean border color */
  --cool-accent: #3b82f6; /* Professional "Tech" blue */
}

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

body {
  font-family: "Inter", sans-serif;
  background: #f5f7fa;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;

  min-height: 100vh;

  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
    height: 100%;
  }
}

@media (max-width: 1024px) {
  body.menu-open {
    overflow-y: hidden;
    width: 100%;
  }
}

/* =========================
   NAVBAR BASE
========================= */

nav {
  font-family: "Inter", sans-serif;
}

#nav-support-page {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* NAV CONTAINER */
#nav-support-page nav {
  max-width: 1400px;
  margin: auto;
  padding: 10px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* MENU TOGGLE */
/* MENU TOGGLE */

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

.menu-toggle {
  display: none;

  background: none;
  border: none;

  font-size: 32px;
  cursor: pointer;

  color: #1f2937;

  z-index: 2000;
}

@media (max-width: 1024px) {
  /* SHOW HAMBURGER */
  .menu-toggle {
    display: block;
  }

  /* NAV LAYOUT */
  #nav-support-page nav {
    position: relative;
  }

  /* MOBILE MENU PANEL*/

  .nav-links {
    position: fixed;

    top: 0;

    right: -100%;

    width: 100vw;
    height: 100dvh;

    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(18px);

    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    padding: 120px 30px 40px;

    gap: 10px;

    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);

    transition: right 0.35s ease;

    z-index: 1500;

    overflow-y: auto;
  }

  /* ACTIVE MOBILE MENU */

  #nav-support-page ul {
    gap: 20px !important;
  }

  .nav-links.active {
    right: 0;
  }

  /* NAV ITEMS */
  #nav-support-page ul.nav-links li {
    width: 100%;
  }

  /* LINKS */
  #nav-support-page .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 16px 0;

    font-size: 17px;
    font-weight: 500;

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* REMOVE DESKTOP UNDERLINE EFFECT */
  #nav-support-page .nav-links a::after {
    display: none;
  }
  /* DROPDOWN */
  .dropdown-menu {
    position: static;

    width: 100%;
    min-width: 100%;

    padding: 0;

    margin-top: 8px;

    border-radius: 12px;

    opacity: 1;
    visibility: visible;
    transform: none;

    display: none;

    background: rgba(59, 130, 246, 0.04);

    border: 1px solid rgba(59, 130, 246, 0.08);

    box-shadow: none;
  }

  /* ACTIVE DROPDOWN */
  .dropdown-menu.active {
    display: flex;
  }
}

.arrow {
  font-size: 13px;
  transition: transform 0.2s ease;
  content: "▾";
}

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

/* DEFAULT */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

/* MOBILE */
@media (max-width: 1024px) {
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }
}

/* =========================
   LOGO
========================= */
#nav-logo {
  height: 100px;
  cursor: pointer;
  transition: transform 0.25s ease;
}

#nav-logo:hover {
  transform: scale(1.05);
}

/* =========================
   NAV LINKS
========================= */
#nav-support-page ul {
  list-style: none;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

/* LINKS */
#nav-support-page a {
  text-decoration: none;
  color: #1f2937;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
}

/* UNDERLINE EFFECT (Apple style) */
#nav-support-page a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #3b82f6;
  transition: width 0.25s ease;
}
/* HOVER */
#nav-support-page a:hover {
  color: #2563eb;
}

#nav-support-page a:hover::after {
  width: 100%;
}

/* =========================
   DROPDOWN MENU
========================= */

.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  min-width: 240px;
  padding: 12px 12px;

  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(12px);

  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 10px rgba(0, 0, 0, 0.04);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);

  transition: all 0.25s ease;
  z-index: 999;

  flex-direction: column;
}

#nav-support-page .dropdown-menu {
  align-items: flex-start;
  justify-content: flex-start;
}

#nav-support-page .nav-item .dropdown-menu {
  row-gap: 13px;
}

.dropdown-menu li {
  display: block;
}

#nav-support-page .dropdown-menu a {
  display: block;
  padding: 12px 0px;

  font-size: 16px;
  color: #1f2937;

  border-radius: 8px;
  margin: 2px 8px;

  transition: all 0.2s ease;
}

#dropDownMenu.active-services li a {
  color: black !important;
}

#dropDownMenu.active-services {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 1025px) {
  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
}

#nav-support-page .dropdown-menu a {
  color: black;
}

.dropdown-menu a:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  transform: translateX(4px);
}

.dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-item.dropdown > a::before {
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-item.dropdown:hover > a::before {
  transform: rotate(180deg);
}

/* Language toggle button */
/* Language toggle button */

nav #lang-toggle {
  color: white;
  font-weight: 500;
  box-shadow: rgba(59, 130, 246, 0.25) 0px 8px 20px;
  font-family: Inter, sans-serif;
  background: linear-gradient(135deg, rgb(59, 130, 246), rgb(30, 64, 175));
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

nav #lang-toggle:hover {
  color: white;

  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(59, 130, 246, 0.35);
}

nav #lang-toggle::after {
  display: none;
}

/* =========================
   CTA BUTTON (OPTIONAL UPGRADE)
========================= */

#nav-support-page.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */
@media (max-width: 768px) {
  #nav-support-page ul.nav-links li {
    display: flex;
    justify-content: center;
  }

  nav #lang-toggle {
    width: 30% !important;
  }

  #nav-support-page nav {
    padding: 14px 20px;
  }

  #nav-support-page ul {
    gap: 16px;
    padding: 0 0;
  }

  #nav-support-page a {
    font-size: 15px;
  }

  #nav-support-page .dropdown-menu a {
    font-size: 15px;
  }
  .nav-logo {
    height: 32px;
  }
}

/* Hero section */
/* Hero section */
/* Hero section */

.support-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 8px rgba(59, 130, 246, 0.35);
}

.container-support-page {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  padding: 4% 0;
}

/* Hero Image section */
/* Hero Image section */

.support-hero-image {
  height: 600px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.support-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.support-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.support-hero-image-content {
  position: absolute;
  top: 35%;
  left: 10%;
  color: white;
  text-align: left;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

@media (min-width: 1600px) {
  .support-hero-image-content {
    left: 22%;
  }
}

.support-hero-image-content h1 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 3rem;
  text-align: left;
  margin-bottom: 10px;
}

.support-text h2 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3rem;
  margin-bottom: 15px;
  margin-top: 10px;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .support-text h2 {
    font-size: 2rem;
  }
}

.support-hero-image-content p {
  font-size: 1.3rem;
  font-family: "Inter", sans-serif;
}

@media (min-width: 1024px) {
  .support-hero-image-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 724px) {
  .support-hero-image-content {
    text-align: left;
  }

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

  .support-hero-image-content p {
    margin-top: 10px;
  }
}

.support-text {
  display: flex;
  max-width: 600px;
  gap: 12px;
  flex-direction: column;
}

/* TAG (small label) */
.support-tag {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3b82f6;
  position: relative;
  padding-left: 40px;
}

/* line before tag */
.support-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, transparent);
}

/* MAIN TITLE */
.support-text h1 {
  /* font-family: "Inter", sans-serif; */
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  /* font-family: Georgia, "Times New Roman", Times, serif; */
  /* font-size: 42px; */
  font-size: clamp(2.5rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 16px;
}

@media (max-width: 1024px) {
  .support-text h1 {
    font-size: 34px;
  }
}

/* DESCRIPTION */
.support-description {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
}

.process-section {
  margin-top: 25px;
  position: relative;
  padding-left: 5px;
}

.process-step {
  position: relative;
  margin-bottom: 30px;
}

.process-step::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;

  width: 7px;
  height: 7px;
  background: #3b82f6;
  border-radius: 50%;
}

.step-content {
  margin-left: 20px;
}

.step-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
}

.step-content p {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  max-width: 480px;
}

.support-image img {
  max-width: 410px;
  border-radius: 12px;
  display: block;
}

/* image style */
.support-image {
  display: flex;
  align-items: center;
}

/* =========================
   BUTTONS
========================= */
.free-support-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

/* Primary Button */
.btn-support-primary {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
  margin-top: 30px;
}

.btn-support-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(59, 130, 246, 0.35);
}

/* Secondary Button */
.btn-support-secondary {
  background: white;
  color: #1e40af;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: all 0.25s ease;
}

/* image style */

.free-support-image img {
  max-width: 350px;
  border-radius: 12px;
  display: block;
}

@media (max-width: 1024px) {
  .support-page {
    flex-direction: column;
    text-align: center;

    gap: 0px;
    padding-bottom: 40px;
  }

  .support-page h1 {
    font-family: Georgia, "Times New Roman", Times, serif;
  }

  .container-support-page {
    flex-direction: column;
    gap: 0;
    padding: 3% 10%;
    display: flex;
    align-items: flex-start;
  }

  .support-text {
    max-width: 600px;
    text-align: left;
    padding: 40px 0;
  }

  .support-description {
    max-width: 100%;
  }

  .support-image {
    display: flex;
    align-items: flex-start;
  }

  .free-support-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .process-section {
    padding-left: 0;
  }
}

@media (max-width: 724px) {
  .support-image {
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 0 0;
    width: 100%;
  }

  .support-page h1 {
    font-family: Georgia, "Times New Roman", Times, serif;
  }

  .support-image img {
    max-width: 300px;
  }
}

/* --- REVIEWS --- */
/* --- REVIEWS --- */
/* --- REVIEWS --- */

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.reviews-header p {
  color: #777;
  padding: 5px 0px;
}

#reviews #reviews-heading {
  margin-bottom: 10px;
}

#reviews {
  padding: 80px 3%;

  color: black;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Subtle background "Glow" for depth */
#reviews::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

#reviews #reviews-heading {
  color: black;
  font-size: 2.5rem;
}

@media (max-width: 1024px) {
  #reviews #reviews-heading {
    font-size: 34px;
  }
}

#reviews .section-header p {
  color: var(--cool-slate);
  opacity: 0.8;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* --- THE REVIEW CARD --- */
.review-card {
  background: rgba(255, 255, 255, 0.03); /* Glassmorphism on dark bg */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);

  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;

  row-gap: 7px;

  box-shadow: rgba(0, 6, 16, 0.35) 0px 1px 5px;

  text-align: start;
}

.review-card:hover {
  /* transform: translateY(-10px); */
  /* border-color: var(--cool-accent); */
  /* background: rgba(255, 255, 255, 0.05); */
  /* box-shadow: rgba(0, 6, 16, 0.35) 0px 1px 1px; */
}

/* 1. Modern Quote Icon */
.review-card::before {
  content: "“";
  font-family: serif;
  font-size: 5rem;
  color: black;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.2;
}

/* 2. Professional Star Indicator (Modern touch) */
.review-card::after {
  content: "★★★★★";
  color: #fbbf24; /* Premium Gold */
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 15px;
  display: block;
}

.review-card h4 {
  margin-top: 20px;
}

.review-card p {
  color: rgb(119, 119, 119);
}

/* 3. The Footer of the Card */
figcaption {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.review-name {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.review-meta {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cool-accent);
  font-weight: 600;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto;
}

/* --- CONTACT FORM --- */
/* --- CONTACT FORM --- */
/* --- CONTACT FORM --- */

.section-header p {
  margin-top: 20px;
}

.contact-form {
  padding: 30px;
  border-radius: 10px;
}

#contact-details {
  color: #3b82f6;
}

#contact {
  padding: 80px 0;
  background-color: var(
    --white
  ); /* Contrast against the dark Reviews section */
  display: flex;

  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: rgba(0, 6, 16, 0.35) 0px 1px 3px;
}

.contact-grid {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 100px;
}

.contact-us {
  width: 450px;
}

.fill-the-form {
  width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}

@media (max-width: 1024px) {
  #contact {
    padding: 40px 0;
  }

  .contact-us {
    max-width: 300px;
  }
  .fill-the-form {
    max-width: 300px;
  }
}

@media (max-width: 724px) {
  .contact-grid {
    display: flex;

    gap: 40px;

    align-items: center;
    flex-direction: column;
  }
  #contact {
    padding: 40px 0;
  }

  .contact-us {
    max-width: 300px;
  }
  .fill-the-form {
    max-width: 330px;
  }
}

/* 1. Left Side: Contact Info Details */
.contact-details {
  margin: 40px 0;
}

.contact-details li {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-details li strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cool-accent);
}

.contact-details li a,
.contact-details li span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-note {
  font-size: 0.9rem;
  color: #3b82f6;

  border-radius: 8px;

  display: inline-block;
}

.form-row {
  margin-bottom: 20px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

/* The "Glow" Focus State */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  background-color: var(--white);
  border-color: var(--cool-accent);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.1); /* Soft Blue Halo */
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
  border: none;
  font-size: 16px;
}

.btn-primary.btn-full:hover {
  /* background: var(--primary-hover); */
  transform: translateY(-1px);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.4);
}

/* 5. Error Message Polish */
.field-error {
  color: #e11d48; /* Sophisticated Rose-Red */
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 5px;
  height: 1rem; /* Prevents layout jump when error appears */
}

.form-message {
  margin-top: 15px;
  min-height: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* WARNING MODAL FOR THE FORM */
/* WARNING MODAL FOR THE FORM */
/* WARNING MODAL FOR THE FORM */

/* 1. The Dimmed Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Solid dark dim */
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

/* 2. The Simple White/Dark Box */
.modal-box {
  background: #ffffff; /* Let's try light for high contrast, or use #1a1a1a for dark */
  color: #1a1a1a;
  border-radius: 8px;
  width: 90%;
  max-width: 380px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* 3. Typography */
.modal-box h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: #ef4444; /* Keep the red for the "Warning" text */
  margin-bottom: 15px;
}

.modal-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #4b5563; /* Soft gray for readability */
  margin-bottom: 25px;
}

/* 4. The Redesigned Buttons */
.modal-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* The primary "Understood" button */
.btn-confirm {
  background: #0052cc;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  flex: 1; /* Makes it fill the space */
}

.btn-confirm:hover {
  background: #333333;
}

/* The small "X" in the corner (optional) */
.close-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #9ca3af;
}

/* --- FOOTER --- */
/* --- FOOTER --- */
/* --- FOOTER --- */
.site-footer {
  background: var(--dark);
  color: white;
}

.footer-meta {
  opacity: 0.6;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* =========================
   FOOTER BASE
========================= */

.footer {
  background: #0f172a; /* deep modern dark */
}

.footer li::marker {
  content: "";
}

.footer-information {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-details {
  display: flex;
  width: 1400px;
  color: rgb(156, 163, 175);
  gap: 200px;
  padding: 40px 8%;
}

.footer-details #nav-logo {
  filter: brightness(0) invert(1);
}

.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-services ul li a {
  color: rgb(156, 163, 175);
}

.footer-services ul li a:hover {
  color: white;
}

.footer-contact ul li:hover {
  color: white;
}

.footer-services ul li a,
.footer-contact ul li a {
  color: rgb(156, 163, 175);
  text-decoration: none;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-contact ul li::marker {
  list-style: none;
}

.footer-contact-header {
  color: white;
}

.footer-information h3 {
  font-size: 15px;
}

.site-footer {
  background: #0f172a;
  color: #e5e7eb;
}

.footer-details h3 {
  font-family: "Segoe UI", sans-serif;
  color: rgb(156, 163, 175);
}
.footer-details p {
  margin-top: 20px;
}

.footer-header {
  margin-bottom: 20px;
  color: white;
}

.footer-contact-header {
  margin-bottom: 20px;
}

/* CONTAINER */
.footer-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 40px 8%;
}

/* =========================
   BRAND TEXT
========================= */
.footer-brand {
  font-size: 14px;
  color: #9ca3af;
}

.footer-brand span {
  color: #ffffff;
  font-weight: 500;
}

/* =========================
   META TEXT
========================= */
.footer-meta {
  font-size: 14px;
  color: rgb(156, 163, 175);
  letter-spacing: 0.3px;
}

/* =========================
   TOP BORDER GLOW LINE
========================= */
.site-footer::before {
  content: "";
  display: block;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(59, 130, 246, 0.6),
    transparent
  );
  margin: 0 20%;
}

@media (max-width: 768px) {
  .footer-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .footer-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 10%;
  }
}
