/**
* Template Name: Nova
* Template URL: https://bootstrapmade.com/nova-bootstrap-business-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #2b180d; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1b2f45; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #56b8e6; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.6);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #56b8e6; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

* {
  scrollbar-color: #0f5ec5 rgba(255, 255, 255, 0.1);
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

*::-webkit-scrollbar-thumb {
  background: #0f5ec5;
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
  background: #0f7ae4;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f6fcfe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #17283b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #254160;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 8px 0;
  transition: all 0.5s;
  z-index: 997;
  align-items: center;
  gap: 1rem;
}

.header .logo {
  line-height: 1;
  flex-shrink: 0;
}

.header .logo img {
  max-height: 120px;
  width: auto;
  display: block;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(23, 40, 59, 0.99);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    margin-left: auto;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .header,
  .navmenu {
    overflow: visible;
  }

  .navmenu .dropdown > ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: calc(100% + 6px);
    opacity: 0;
    transition: 0.25s ease;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    max-width: 320px;
    max-height: 70vh;
    overflow: visible;
    overflow-x: hidden;
    scrollbar-width: thin;
  }

  .navmenu .dropdown ul li {
    min-width: 220px;
    position: relative;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }


  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown > a .toggle-dropdown,
  .navmenu .dropdown ul a .toggle-dropdown {
    margin-left: 6px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: calc(100% + 5px);
    visibility: visible;
  }

  .navmenu .dropdown ul ul,
  .navmenu .dropdown ul ul li ul {
    top: 0;
    left: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 110;
    position: absolute;
    max-width: 280px;
    max-height: none;
  }


  .navmenu .dropdown ul li:hover>ul,
  .navmenu .dropdown ul ul:hover,
  .navmenu .dropdown ul ul:focus-within {
    opacity: 1;
    left: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown {
    overflow: visible;
  }
  .navmenu .dropdown>.dropdown-active {
    display: block;
    visibility: visible;
    opacity: 1;
    top: calc(100% + 5px);
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: visible;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: visible;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #06164b;
  background: #f7fbff;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.front-footer {
  margin-top: 64px;
  border-top: 1px solid #dbeaff;
  box-shadow: 0 -14px 46px rgba(17, 78, 214, 0.045);
}

.front-footer a {
  color: inherit;
  text-decoration: none;
}

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

.front-footer__main {
  position: relative;
  min-height: 430px;
  padding: 76px 0 42px;
  background:
    radial-gradient(circle at 84% 14%, rgba(20, 102, 255, 0.08), transparent 22%),
    linear-gradient(107deg, #f8fbff 0%, #f5f9ff 44%, #edf5ff 100%);
}

.front-footer__main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.55)),
    radial-gradient(circle at 9% 84%, rgba(21, 101, 255, 0.09), transparent 18%);
  pointer-events: none;
}

.front-footer__dots {
  position: absolute;
  top: 18px;
  right: 0;
  width: 205px;
  height: 150px;
  opacity: 0.5;
  background-image: radial-gradient(#bdd8ff 2px, transparent 2.2px);
  background-size: 24px 24px;
  pointer-events: none;
}

.front-footer__waves {
  position: absolute;
  pointer-events: none;
  opacity: 0.8;
}

.front-footer__waves--left {
  left: -56px;
  bottom: -18px;
  width: 390px;
  height: 165px;
  background:
    repeating-radial-gradient(ellipse at left bottom, transparent 0 18px, rgba(54, 132, 255, 0.09) 19px 20px, transparent 21px 34px);
  transform: rotate(8deg);
}

.front-footer__waves--right {
  right: -92px;
  bottom: -46px;
  width: 420px;
  height: 205px;
  background:
    radial-gradient(ellipse at 74% 70%, rgba(41, 128, 255, 0.22) 0 24%, transparent 25%),
    repeating-radial-gradient(ellipse at right bottom, transparent 0 28px, rgba(54, 132, 255, 0.1) 29px 30px, transparent 31px 48px);
}

.front-footer__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1510px);
  margin: 0 auto;
  padding: 0 54px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(34px, 4.4vw, 78px);
}

.front-footer__brand {
  flex: 0 0 315px;
  min-height: 315px;
  padding-right: 52px;
  border-right: 1px solid #d1e0f5;
  background: transparent !important;
  box-shadow: none !important;
}

.front-footer__column {
  flex: 1 1 245px;
  max-width: 275px;
  padding-top: 4px;
  background: transparent !important;
  box-shadow: none !important;
}

.front-footer__contact {
  flex: 0 1 340px;
  max-width: 340px;
  padding-top: 4px;
  background: transparent !important;
  box-shadow: none !important;
}

.front-footer__logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.front-footer__logo img {
  width: 190px;
  height: auto;
  display: block;
}

.front-footer__slogan {
  margin: 0;
  color: #06164b;
  font-size: 18px;
  line-height: 1.32;
  font-weight: 500;
}

.front-footer__slogan span {
  position: relative;
  display: inline-block;
  margin-top: 2px;
  color: #42a51c;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.front-footer__slogan span::after {
  content: "";
  position: absolute;
  left: 5px;
  right: -21px;
  bottom: 5px;
  height: 2px;
  background: #7cc43a;
  transform: rotate(-2deg);
}

.front-footer__intro {
  max-width: 285px;
  margin: 24px 0 34px;
  color: #42527c;
  font-size: 15.5px;
  line-height: 1.55;
}

.front-footer__socials {
  display: flex;
  gap: 15px;
}

.front-footer__socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0e5bff;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(13, 64, 145, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.front-footer__socials a:hover {
  color: #003cd4;
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(13, 64, 145, 0.18);
}

.front-footer__socials i {
  font-size: 21px;
}

.front-footer__socials .bi-instagram {
  color: #e91e63;
}

.front-footer__socials .bi-youtube {
  color: #ff1d1d;
}

.front-footer__heading {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  margin-bottom: 30px;
}

.front-footer__icon,
.front-footer__contact-icon {
  flex: 0 0 auto;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #dbe9ff, #edf5ff);
  color: #105bff;
}

.front-footer__icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.front-footer__icon i {
  font-size: 26px;
}

.front-footer__heading h2 {
  position: relative;
  margin: 0;
  padding-bottom: 17px;
  color: #071653;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

.front-footer__heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: #155dff;
}

.front-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.front-footer__links li {
  border-bottom: 1px solid #d5e2f4;
}

.front-footer__links a {
  position: relative;
  display: block;
  padding: 16px 0 16px 31px;
  color: #071653;
  font-size: 16px;
  line-height: 1.2;
  transition: color 0.2s ease, transform 0.2s ease;
}

.front-footer__links a::before {
  content: "\F285";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: bootstrap-icons;
  color: #0e5bff;
  font-size: 20px;
  font-weight: 700;
}

.front-footer__links a:hover {
  color: #0e5bff;
  transform: translateX(4px);
}

.front-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2px;
}

.front-footer__contact-item {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 13px 0;
  border-bottom: 1px solid #d5e2f4;
}

.front-footer__contact-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.front-footer__contact-icon i {
  font-size: 25px;
}

.front-footer__contact-item--phone .front-footer__contact-icon {
  color: #1ba134;
  background: linear-gradient(145deg, #dff8e6, #edfdf1);
}

.front-footer__contact-item p {
  margin: 0;
  color: #071653;
  font-size: 16px;
  line-height: 1.45;
}

.front-footer__contact-item strong {
  font-weight: 800;
}

.front-footer__bottom {
  position: relative;
  z-index: 2;
  min-height: 96px;
  border-top: 1px solid #bcd5ff;
  background:
    radial-gradient(circle at 94% 106%, rgba(21, 101, 255, 0.11), transparent 12%),
    rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
}

.front-footer__bottom-inner {
  width: min(100%, 1510px);
  min-height: 96px;
  margin: 0 auto;
  padding: 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.front-footer__copyright {
  margin: 0;
  color: #06164b;
  font-size: 15px;
  line-height: 1.45;
}

.front-footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #172552;
  font-size: 15px;
  white-space: nowrap;
}

.front-footer__legal a {
  transition: color 0.2s ease;
}

.front-footer__legal a:hover {
  color: #0e5bff;
}

.front-footer__legal span {
  width: 2px;
  height: 11px;
  border-radius: 999px;
  background: #155dff;
}

.front-footer__trust {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-left: 30px;
  border-left: 1px solid #d0dced;
}

.front-footer__trust span {
  color: #0e5bff;
  font-size: 38px;
  line-height: 1;
}

.front-footer__trust p {
  margin: 0;
  color: #06164b;
  font-size: 14px;
  line-height: 1.35;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: visible;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 58px;
  bottom: 45px;
  z-index: 99999;
  background: linear-gradient(145deg, #1d6bff, #003ee7);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0, 62, 231, 0.25), 0 0 0 16px rgba(17, 97, 255, 0.08);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.scroll-top i {
  font-size: 25px;
  color: #fff;
  line-height: 1;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(0, 62, 231, 0.3), 0 0 0 17px rgba(17, 97, 255, 0.1);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1399px) {
  .front-footer__inner {
    padding: 0 42px;
    gap: 34px;
  }

  .front-footer__brand {
    flex-basis: 285px;
    padding-right: 34px;
  }

  .front-footer__column {
    flex-basis: 220px;
  }

  .front-footer__bottom-inner {
    padding: 0 42px;
    gap: 24px;
  }

  .front-footer__legal {
    gap: 22px;
    font-size: 14px;
  }

  .scroll-top {
    right: 34px;
    bottom: 34px;
  }
}

@media (max-width: 1199px) {
  .front-footer__main {
    padding: 62px 0 38px;
  }

  .front-footer__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 42px;
  }

  .front-footer__brand {
    flex: 1 1 100%;
    min-height: 0;
    padding-right: 0;
    border-right: none;
  }

  .front-footer__column,
  .front-footer__contact {
    flex: 1 1 280px;
    max-width: none;
  }

  .front-footer__bottom-inner {
    flex-direction: column;
    justify-items: center;
    gap: 18px;
    padding: 28px 36px;
    text-align: center;
  }

  .front-footer__trust {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 767px) {
  .front-footer {
    margin-top: 44px;
  }

  .front-footer__main {
    min-height: auto;
    padding: 44px 0 32px;
  }

  .front-footer__inner {
    flex-direction: column;
    padding: 0 24px;
    row-gap: 36px;
  }

  .front-footer__brand,
  .front-footer__column,
  .front-footer__contact {
    text-align: left;
  }

  .front-footer__logo img {
    width: 170px;
  }

  .front-footer__slogan {
    font-size: 17px;
  }

  .front-footer__slogan span {
    font-size: 25px;
  }

  .front-footer__intro,
  .front-footer__links a,
  .front-footer__contact-item p,
  .front-footer__copyright,
  .front-footer__legal {
    font-size: 15px;
  }

  .front-footer__heading {
    gap: 14px;
    margin-bottom: 18px;
  }

  .front-footer__icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .front-footer__icon i {
    font-size: 23px;
  }

  .front-footer__heading h2 {
    font-size: 19px;
  }

  .front-footer__contact-item {
    gap: 14px;
  }

  .front-footer__contact-icon {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }

  .front-footer__legal {
    flex-wrap: wrap;
    gap: 14px 20px;
    white-space: normal;
  }

  .front-footer__legal span {
    display: none;
  }

  .front-footer__trust {
    display: flex;
    text-align: left;
  }

  .front-footer__trust span {
    font-size: 34px;
  }

  .scroll-top {
    width: 50px;
    height: 50px;
    right: 24px;
    bottom: 24px;
    box-shadow: 0 13px 26px rgba(0, 62, 231, 0.26), 0 0 0 12px rgba(17, 97, 255, 0.08);
  }

  .scroll-top i {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
}

.page-title .container {
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.page-title--hero {
  padding: 160px 0 40px;
  color: #fff;
  position: relative;
}

.page-title--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .hero:after {
    position: absolute;
    content: "";
    width: 44%;
    background-image: linear-gradient(180deg, color-mix(in srgb, var(--background-color), transparent 15%), color-mix(in srgb, var(--background-color), transparent 15%) 100%), linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0) 100%);
    top: 0;
    bottom: 0;
    z-index: 2;
  }
}

.hero:before {
  position: absolute;
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  inset: 0;
  z-index: 2;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container,
.hero .container-fluid {
  z-index: 3;
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.hero blockquote {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding-left: 20px;
  border-left: 2px solid var(--accent-color);
  margin: 40px 0;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--default-color);
}

.hero .btn-watch-video:hover i {
  color: var(--default-color);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .img-bg {
  min-height: 500px;
  position: relative;
}

.why-us .img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.why-us .slides {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.why-us h3 {
  font-size: 24px;
  font-weight: 700;
}

.why-us h4 {
  font-size: 18px;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .swiper {
  margin: 140px 140px 120px 140px;
  overflow: visible;
}

.why-us .swiper-wrapper {
  height: auto;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.services .service-item .icon {
  margin-right: 20px;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.services .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.services .service-item .readmore i {
  margin-left: 8px;
}

.services .service-item:hover .title,
.services .service-item:hover .readmore,
.services .service-item:hover .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1;
}

.features .icon-list span {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .phone-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .features .phone-wrap {
    position: relative;
  }
}

.features .phone-wrap img {
  width: 340px;
}

@media (max-width: 992px) {
  .features .phone-wrap img {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .features .phone-wrap img {
    width: 100%;
  }
}

.features .details {
  margin-top: 80px;
  padding: 120px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.features .details h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

.features .details .btn-get-started {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-family: var(--heading-font);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
}

.features .details .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-posts .post-box .post-img {
  overflow: visible;
  position: relative;
}

.recent-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-posts .post-box .meta {
  margin-top: 15px;
}

.recent-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--accent-color);
}

.recent-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-box .post-title {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-posts .post-box p {
  margin: 15px 0 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-posts .post-box:hover .post-title {
  color: var(--accent-color);
}

.recent-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content p {
  margin: 30px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 15px 0;
  font-weight: 400;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-right: 0.5rem;
}

/*--------------------------------------------------------------
# Service Cards Section
--------------------------------------------------------------*/
.service-cards .card-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
}

.service-cards .card-item .card-bg {
  min-height: 300px;
  position: relative;
}

.service-cards .card-item .card-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.service-cards .card-item .card-body {
  padding: 30px;
}

.service-cards .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.service-cards .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: visible;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: visible;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/contact-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
}

.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: visible;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: visible;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: visible;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: visible;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  position: relative;
}

.widget-title:before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  left: 0;
  right: 0;
  bottom: 1px;
}

.widget-title:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  bottom: 1px;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.alert-widget {
  border-radius: 16px;
  padding: 22px;
  background: linear-gradient(135deg, #056ba4, #0e3f6c 70%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 35px rgba(7, 16, 42, 0.45);
}

.alert-widget__content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.alert-widget__content h3 {
  margin: 0;
  color: #ffffff;
}

.alert-widget__content p:not(.alert-widget__label) {
  margin: 4px 0 0;
}

.alert-widget__icon {
    width: 84px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.alert-widget__icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.alert-widget__label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.alert-widget__description {
  margin: 4px 0 0;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.85);
}

.alert-widget__cta {
  border: none;
  background: #fff;
  color: #0e3f6c;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-shadow: 0 10px 20px rgba(30, 45, 70, 0.2);
}

.alert-widget__cta:hover {
  transform: translateY(-1px);
  background: #f6b245;
  color: #102345;
}

.alert-widget__message {
  border-radius: 12px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.alert-widget__message--success {
  background: rgba(75, 200, 137, 0.2);
  color: #44b06f;
}

.alert-widget__message--error {
  background: rgba(255, 109, 109, 0.2);
  color: #ff6b6b;
}

.alert-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.alert-modal--visible {
  opacity: 1;
  visibility: visible;
}

body.alert-modal-open {
  overflow: visible;
}

.alert-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 18, 0.7);
  backdrop-filter: blur(4px);
}

.alert-modal__dialog {
  position: relative;
  background: linear-gradient(145deg, rgba(4, 10, 25, 0.95), rgba(12, 28, 58, 0.95));
  color: #fff;
  border-radius: 28px;
  padding: 36px;
  max-width: 540px;
  width: min(95%, 540px);
  z-index: 2;
  box-shadow: 0 30px 90px rgba(3, 8, 20, 0.7);
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: popIn 0.35s cubic-bezier(.25, .57, .46, 1.01);
}

@keyframes popIn {
  0% {
    transform: translateY(20px) scale(0.98);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@media (max-height: 600px) {
  .alert-modal__dialog {
    max-height: 80vh;
  }
}

@media (max-width: 576px) {
  .alert-modal__dialog {
    padding: 24px;
  }
}

.alert-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
}

.alert-modal__header h3 {
  margin: 4px 0 8px;
}

.alert-modal__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.95rem;
}

.alert-modal__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: #94a3b8;
  margin: 0 0 6px;
}

.alert-modal__status {
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin: 18px 0 12px;
}

.alert-modal__status--success {
  background: rgba(72, 187, 120, 0.15);
  color: #1a8f56;
}

.alert-modal__status--error {
  background: rgba(229, 54, 54, 0.15);
  color: #ba1f1f;
}

.alert-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.alert-modal__field-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.alert-modal__field-group label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.alert-modal__field-group input {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.alert-modal__hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: -0.5rem 0 0 0;
}

.alert-section {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 1.2rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
}

.alert-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.alert-section__header h4 {
  margin: 4px 0 0;
  font-size: 1rem;
}

.alert-section__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 4px;
}

.alert-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.alert-switch input {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}

.alert-switch span {
  width: 50px;
  height: 26px;
  border-radius: 999px;
  background: #cdd5e3;
  position: relative;
  transition: background 0.2s ease;
}

.alert-switch span::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.alert-switch input:checked + span {
  background: #0f5ec5;
}

.alert-switch input:checked + span::after {
  transform: translateX(24px);
}

.alert-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.alert-section__field {
  border: 1px solid #d5dce8;
  border-radius: 10px;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.alert-section__field input {
  border: none;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 600;
}
.alert-section__field input::placeholder,
.alert-modal__field-group input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.alert-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.alert-option input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
}

.alert-option strong {
  margin-bottom: 4px;
  display: block;
}

.alert-option small {
  color: #6b7990;
  font-size: 0.85rem;
}

.alert-section__radio-group {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  flex-wrap: wrap;
}

.alert-section__radio-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  cursor: pointer;
  color: #3b4160;
}

.alert-section__radio-group input {
  margin: 0;
}

.categories-widget {
  padding: 1.3rem 1.5rem;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 164, 224, 0.15);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
  margin-top: 1rem;
}

.categories-widget .widget-title {
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0b1a34;
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.categories-widget a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #0c1b35;
  border-radius: 0.75rem;
  padding: 0.45rem 0.9rem;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease;
}

.categories-widget a:hover {
  background: rgba(0, 164, 224, 0.15);
  color: #0074b6;
}

.categories-widget a::after {
  content: '›';
  margin-left: 0.4rem;
  font-size: 1rem;
  color: currentColor;
  opacity: 0.65;
}

.recent-posts-widget {
  padding: 1.3rem 1.5rem;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 164, 224, 0.12);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.recent-posts-widget .widget-title {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0b1833;
}

.recent-posts-widget .post-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.65rem 0.45rem;
  border-radius: 0.9rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.recent-posts-widget .post-item:hover {
  background: rgba(0, 164, 224, 0.09);
  box-shadow: inset 0 0 0 1px rgba(0, 164, 224, 0.3);
}

.recent-posts-widget img {
  width: 60px;
  height: 60px;
  border-radius: 0.85rem;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.recent-posts-widget h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.recent-posts-widget h4 a {
  color: #0b1733;
}

.recent-posts-widget time {
  font-size: 0.85rem;
  color: #5a6376;
}

.recent-posts-widget .post-item div {
  flex: 1;
}

.alert-modal__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.75rem;
}

.alert-modal__primary {
  flex: 1;
  background: linear-gradient(135deg, #f97316, #ff5f6d);
  color: #fff;
  border: none;
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.35);
}

.alert-modal__primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.45);
}

.alert-modal__secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.alert-modal__secondary:hover {
  border-color: #f97316;
  color: #f97316;
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

/*--------------------------------------------------------------
# Actualités
--------------------------------------------------------------*/
.actualite-page .page-title {
  margin-bottom: 2.5rem;
}

.actualite-card {
  border-radius: 1.25rem;
  border: 0;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.15);
  background: #fff;
}

.actualite-card .actualite-hero {
  position: relative;
  padding-top: 50%;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  background-size: cover;
  background-position: center;
}

.actualite-card .actualite-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(4, 7, 18, 0.12) 0%, rgba(4, 7, 18, 0.8) 100%);
}

.actualite-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.actualite-meta {
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.actualite-meta .separator {
  width: 24px;
  height: 1px;
  background: color-mix(in srgb, #0f172a, transparent 70%);
  display: inline-block;
}

.actualite-summary {
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, #0f172a, transparent 25%);
}

.actualite-card .content {
  line-height: 1.8;
  color: color-mix(in srgb, #0f172a, transparent 15%);
}

.astuce-detail {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 60px rgba(5, 10, 25, 0.08);
  padding: 2.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.astuce-detail__header h1 {
  margin: 0.4rem 0 0.75rem;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  color: #0f172a;
}

.astuce-detail__tag {
  display: inline-flex;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 0.15em;
}

.astuce-detail__body {
  margin-top: 1rem;
  line-height: 1.8;
  color: #1e293b;
}

.astuce-detail__cta {
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.astuce-detail__cta:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-1px);
}

@media (min-width: 992px) {
  .actualite-page .row.align-items-start {
    align-items: flex-start;
  }

  .actualite-card {
    min-height: 100%;
  }
}

.price-hero {
  position: relative;
  z-index: 2;
  padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(5, 12, 35, 0.85), rgba(8, 40, 80, 0.85)),
    url('assets/img/machinery-5477253_1920.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 45px 110px rgba(2, 4, 20, 0.75);
}

.page-title--hero .price-hero {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.price-hero__bubble {
  position: relative;
  z-index: 3;
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(9, 15, 37, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 60px 90px rgba(2, 9, 27, 0.65);
  backdrop-filter: blur(18px);
}

.price-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-hero-label {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.price-hero-subtitle {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.price-hero-tooltip {
  position: relative;
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #f97316;
  color: #0b1225;
  font-weight: 700;
  margin-left: 0.5rem;
  cursor: help;
}

.price-hero-tooltip-text {
  position: absolute;
  top: 110%;
  right: 0;
  width: min(260px, 80vw);
  background: rgba(7, 14, 37, 0.95);
  color: #fff;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 25px 60px rgba(7, 14, 33, 0.55);
}

.price-hero-tooltip:hover .price-hero-tooltip-text,
.price-hero-tooltip:focus-visible .price-hero-tooltip-text {
  opacity: 1;
  transform: translateY(0);
}

.price-hero__prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.price-hero__item {
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  background: rgba(15, 25, 55, 0.5);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.price-hero__item-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.price-hero__item-value {
  font-size: 2.2rem;
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.price-hero__item-meta {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.price-hero__item--achat {
  border-color: rgba(249, 71, 71, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

.price-hero__delta {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
}

.price-hero__delta-value {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 1rem;
  color: inherit;
}

.price-hero__delta-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.price-hero__delta--positive .price-hero__delta-value {
  color: #22c55e;
}

.price-hero__delta--negative .price-hero__delta-value {
  color: #ef4444;
}

.price-hero__delta--neutral .price-hero__delta-value {
  color: rgba(255, 255, 255, 0.85);
}

.price-hero__footer {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.35rem;
  margin-top: -0.35rem;
  text-align: center;
  color: #fff;
}

.price-hero__footer h1 {
  font-size: clamp(2.5rem, 3vw, 3.8rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.1rem;
  color: #fff;
}

.price-hero__footer .breadcrumbs {
  justify-content: center;
}

.astuces-page {
  background: color-mix(in srgb, var(--background-color), #fff 92%);
}

.astuces-intro {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.astuces-intro__tag {
  font-size: 0.75rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.astuces-intro__content h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.astuces-intro__content p {
  max-width: 720px;
  color: color-mix(in srgb, #0f172a, transparent 40%);
}

.astuces-card__tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 700;
  display: block;
}

.astuces-card h3 {
  font-size: 1.35rem;
  margin: 0.2rem 0 0;
}

.astuces-card__description {
  color: color-mix(in srgb, #0f172a, transparent 50%);
  margin: 0;
}

.astuces-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.astuces-card__list li {
  padding-bottom: 2px;
}

.astuces-card__list a {
  color: color-mix(in srgb, #0f172a, transparent 20%);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.astuces-card__list a::after {
  content: none;
}

.astuces-card__list a:hover {
  color: var(--accent-color);
}

.astuces-card__list a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--accent-color);
}

@media (max-width: 768px) {
  .astuces-card {
    padding: 1.6rem;
  }

  .astuces-card__header {
    align-items: flex-start;
  }
}

.astuce-detail-page {
  background: color-mix(in srgb, var(--background-color), #fff 95%);
}

.astuce-detail {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 30px 80px rgba(3, 7, 18, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 3rem;
}

.astuce-detail h1,
.astuce-detail h2,
.astuce-detail h3 {
  color: #0f172a;
}

.astuce-detail p {
  color: #344155;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.astuce-detail ul {
  list-style: initial;
  padding-left: 20px;
  margin-bottom: 1.5rem;
}

.actualite-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

  .actualite-list__item {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: stretch;
    padding: 1.75rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 25px 60px rgba(2, 9, 18, 0.08);
    min-height: 260px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .actualite-list__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px rgba(2, 9, 18, 0.15);
  }

  .actualite-list__media {
    width: 250px;
    height: 180px;
    overflow: visible;
    border-radius: 0.75rem;
    margin: 0 auto 0.75rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  }

  .actualite-list__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .actualite-list__row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .actualite-list__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
  }

  .actualite-list__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .actualite-list__header h3 {
    font-size: 1.35rem;
    margin: 0;
    line-height: 1.2;
    font-weight: 600;
  }

  .actualite-list__date {
    font-size: 0.95rem;
    color: #6c7280;
    white-space: nowrap;
  }

  .actualite-list__summary {
    color: #47505d;
    line-height: 1.6;
    margin: 0;
  }

  .actualite-list__footer {
    margin-top: auto;
  }

  @media (max-width: 991px) {
    .actualite-list__row {
      flex-direction: column;
    }

    .actualite-list__media {
      width: 100%;
      height: auto;
      max-height: none;
    }
  }

.actualite-page .blog-posts {
  margin-top: 2rem;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/* Contact page */
.contact-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-card__header h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  margin-bottom: 0.35rem;
  color: var(--default-color);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.contact-card__intro {
  font-size: 1.05rem;
  color: #475467;
  margin-bottom: 0;
}

.contact-card__divider {
  height: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  margin: 1.5rem 0 2rem;
}

.contact-section .row {
  align-items: flex-start;
}

.contact-section .col-lg-4 {
  display: flex;
  align-items: flex-start;
}

.contact-section .col-lg-4 > aside {
  width: 100%;
}

.contact-section .widgets-container {
  margin: 0;
}

.contact-card__status {
  margin-top: 1rem;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-card__status-title {
  font-weight: 700;
  margin: 0;
  color: var(--default-color);
}

.contact-card__status-body {
  margin: 0;
  color: rgba(15, 23, 42, 0.75);
}

.contact-card__status--success {
  background: rgba(15, 166, 113, 0.12);
  border-color: rgba(15, 166, 113, 0.3);
}

.contact-card__status--success .contact-card__status-title {
  color: #0f9869;
}

.contact-card__status--error {
  background: rgba(214, 23, 40, 0.12);
  border-color: rgba(214, 23, 40, 0.3);
}

.contact-card__status--error .contact-card__status-title {
  color: #c41d2d;
}

.contact-form {
  background: #f8f9fb;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.contact-form__fields {
  display: grid;
  gap: 1.25rem;
}

.contact-form__field span,
.contact-form__captcha span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #0f172a;
}

.contact-form__field input,
.contact-form__field textarea,
.contact-form__captcha input {
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.2);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__field textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form__captcha input {
  max-width: 180px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(86, 184, 230, 0.25);
  outline: none;
}

.contact-form__submit {
  margin-top: 1.25rem;
  min-height: 52px;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-form__submit--glow {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  box-shadow: 0 12px 24px rgba(20, 32, 97, 0.25);
}

.contact-form__submit--glow:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 15px 30px rgba(20, 32, 97, 0.35);
}

.contact-form__submit--glow:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 8px 20px rgba(20, 32, 97, 0.32);
}

.contact-form__tip {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #475467;
}

.contact-section {
  padding-bottom: 5rem;
}

.contact-status-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.contact-status-modal--visible {
  display: flex;
}

.contact-status-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
}

.contact-status-modal__card {
  position: relative;
  background: linear-gradient(145deg, rgba(9, 14, 34, 0.98), rgba(19, 37, 92, 0.95));
  padding: 2.25rem;
  border-radius: 1.5rem;
  min-width: 320px;
  max-width: 460px;
  text-align: left;
  box-shadow: 0 30px 65px rgba(4, 8, 20, 0.55);
  z-index: 1;
}

.contact-status-modal__card.is-success p {
  color: #0f9869;
}

.contact-status-modal__card.is-error p {
  color: #d6001d;
}

.contact-status-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.25rem;
}

.contact-status-modal__content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-status-modal__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}

.contact-status-modal__card.is-success .contact-status-modal__icon {
  background: rgba(15, 166, 113, 0.3);
}

.contact-status-modal__card.is-error .contact-status-modal__icon {
  background: rgba(214, 23, 40, 0.25);
}

.contact-status-modal__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f9fbff;
}

.contact-status-modal__description {
  margin: 0.35rem 0 0;
  color: rgba(249, 249, 249, 0.75);
  line-height: 1.45;
}

.contact-status-modal__actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}

.contact-status-modal__action {
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-status-modal__action:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}
.astuces-grid {
  display: grid;
  margin-top: 2rem;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.astuces-column {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.astuces-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.15);
}

.astuces-column__header {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.astuces-column__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.25rem;
}

.astuces-column__header h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #0f172a;
}

.astuces-column__header p {
  margin: 0;
  color: #475467;
  font-size: 0.95rem;
}

.astuces-column__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.astuces-column__item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-bottom: 0.65rem;
}

.astuces-column__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.astuce-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #0f172a;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.astuce-link span {
  flex: 1;
}

.astuce-link i {
  font-size: 1.4rem;
  color: rgba(15, 23, 42, 0.7);
  transition: transform 0.2s ease;
}

.astuce-link:hover {
  color: var(--accent-color);
}

.astuce-link:hover i {
  transform: translateX(2px);
}

.astuces-column__empty {
  margin-top: 0.75rem;
}

@media (max-width: 1200px) {
  .astuces-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  .astuces-grid {
    grid-template-columns: repeat(1, minmax(260px, 1fr));
  }
}

/*--------------------------------------------------------------
# Prix Fioul Sections
--------------------------------------------------------------*/
.section-header {
  margin-bottom: 2.25rem;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.35rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-color);
}
.section-header h2 {
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-lead {
  color: rgba(27, 47, 69, 0.8);
  max-width: 48rem;
  line-height: 1.6;
}

.error-404-section {
  padding-top: 70px;
}

.error-404-card,
.error-404-links {
  background: var(--surface-color);
  border: 1px solid rgba(27, 47, 69, 0.12);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  padding: 2.25rem;
}

.error-404-code {
  color: var(--accent-color);
  display: inline-block;
  font-family: var(--heading-font);
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.85;
  margin-bottom: 1.25rem;
}

.error-404-card h2,
.error-404-links h3 {
  color: var(--heading-color);
  font-weight: 800;
}

.error-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.error-404-primary,
.error-404-secondary {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  padding: 13px 22px;
  transition: 0.25s ease;
}

.error-404-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.error-404-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000 12%);
  color: var(--contrast-color);
}

.error-404-secondary {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 55%);
  color: var(--accent-color);
}

.error-404-secondary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.error-404-links ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.error-404-links li {
  border-bottom: 1px solid rgba(27, 47, 69, 0.1);
}

.error-404-links li:last-child {
  border-bottom: 0;
}

.error-404-links a {
  color: var(--default-color);
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  padding: 15px 0;
}

.error-404-links a::after {
  color: var(--accent-color);
  content: "→";
}

.error-404-links a:hover {
  color: var(--accent-color);
}
.price-history-card {
  background-color: var(--surface-color);
  border-radius: 28px;
  padding: 2.25rem;
  border: 1px solid rgba(27, 47, 69, 0.12);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}
.price-history-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(27, 47, 69, 0.1);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
}
.price-history-card__head .small-label {
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 0.8rem;
  color: rgba(27, 47, 69, 0.6);
  margin-bottom: 0.25rem;
}
.price-history-card__meta {
  text-align: right;
  min-width: 150px;
}
.price-history-card__meta span {
  display: block;
  font-size: 0.85rem;
  color: rgba(27, 47, 69, 0.55);
  letter-spacing: 0.05rem;
}
.price-history-card__meta strong {
  display: block;
  font-size: 1.2rem;
  color: var(--default-color);
}
.price-history-card__table {
  overflow-x: auto;
}
.table-price-history {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.table-price-history th,
.table-price-history td {
  padding: 1rem 0.25rem;
  border-bottom: 1px solid rgba(27, 47, 69, 0.08);
  text-align: left;
}
.table-price-history th {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  color: rgba(27, 47, 69, 0.65);
  font-weight: 600;
}
.price-history-card tr:last-child td {
  border-bottom: none;
}
.text-positive {
  color: #16a34a;
  font-weight: 600;
}
.text-negative {
  color: #dc2626;
  font-weight: 600;
}
.price-variation {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: inherit;
  white-space: nowrap;
}
.price-variation i {
  font-size: 1em;
  line-height: 1;
}
.price-variation--positive {
  color: #16a34a;
}
.price-variation--negative {
  color: #dc2626;
}
.price-variation--neutral {
  color: inherit;
  font-weight: 600;
}
.map-card {
  background: transparent;
  border-radius: 32px;
  padding: 0;
}
.map-card .navigmap {
  min-height: 360px;
  border-radius: 32px;
  position: relative;
  overflow: visible;
  background: #f9fbff;
  padding: 2rem;
}
.map-card .map {
  min-height: 360px;
  border-radius: 26px;
  padding: 0;
  width: 100%;
}
.map-card .map svg {
  height: 100%;
  width: 100%;
}
 
.areaLegend {
  display: none !important;
}

.mapTooltip {
  display: none !important;
  position: absolute !important;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 47, 82, 0.15);
  box-shadow: 0 12px 24px rgba(8, 19, 39, 0.2);
  font-size: 0.9rem;
  color: var(--default-color);
  max-width: 320px;
  text-align: left;
  z-index: 10;
}

.mapTooltip .map-tooltip-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  display: block;
}

.mapTooltip:after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0.5rem;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.98) transparent transparent transparent;
}

.map-tooltip-subtitle {
  display: block;
  font-size: 0.85rem;
  color: rgba(15, 47, 82, 0.7);
  margin-top: 0.25rem;
}
.map-card .map span {
  display: none;
}

.areaLegend {
  display: none !important;
}

.mapael-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 47, 82, 0.15);
  box-shadow: 0 12px 24px rgba(8, 19, 39, 0.2);
  font-size: 0.9rem;
  color: var(--default-color);
  max-width: 320px;
  text-align: left;
  z-index: 10;
}

.mapael-tooltip .map-tooltip-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  display: block;
}

.mapael-tooltip:after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0.5rem;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.98) transparent transparent transparent;
}
.map-tooltip-subtitle {
  display: block;
  font-size: 0.85rem;
  color: rgba(15, 47, 82, 0.7);
  margin-top: 0.25rem;
}
.table-region {
  width: 100%;
  border-collapse: collapse;
  background-color: #f9fbff;
  border-radius: 20px;
  overflow: visible;
}
.table-region thead {
  background-color: #eaf2ff;
}
.table-region th,
.table-region td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(15, 47, 82, 0.1);
  text-align: left;
}
.table-region th {
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgba(15, 47, 82, 0.7);
}
.table-region tbody tr:last-child td {
  border-bottom: none;
}
.table-region td:first-child {
  font-weight: 600;
  color: var(--default-color);
}
.table-region td:nth-child(2),
.table-region td:nth-child(3) {
  white-space: nowrap;
}

.actualites-page .section {
  padding-top: 3rem;
}

.actualite-page {
  padding-top: 3rem;
}

.cours-page {
  padding-top: 3rem;
}

.cours-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(0, 164, 224, 0.15);
}

.cours-card__header h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 2.5vw, 2.4rem);
}

.cours-card__text {
  color: #4f596b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cours-card__alert {
  border-radius: 0.9rem;
  background: rgba(255, 216, 216, 0.8);
  border: 1px solid rgba(255, 138, 138, 0.5);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  color: #b12a2a;
  font-weight: 600;
}

.cours-charts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.chart-card {
  background: linear-gradient(135deg, rgba(0, 164, 224, 0.12), rgba(15, 23, 42, 0.04));
  border-radius: 1.2rem;
  padding: 1.2rem 1.4rem;
}

  .chart-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--default-color);
  }

  /* Prix du pétrole page */
  .prix-du-petrole-page {
    background: color-mix(in srgb, var(--surface-color), #fff 90%);
  }

  .petrole-realtime {
    margin: 2rem 0 2.5rem;
  }

  .petrole-realtime-card {
    background: linear-gradient(180deg, #141d4e 0%, #0b1235 100%);
    padding: 2rem;
    border-radius: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .petrole-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .petrole-brand img {
    width: 120px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.45));
  }

  .petrole-brand__title {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    text-transform: uppercase;
  }

  .petrole-brand__subtitle {
    margin: 0;
    font-weight: 600;
    font-size: 1.35rem;
    text-align: center;
  }

  .petrole-brand__date {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
  }

  .petrole-brand__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
  }

  .petrole-realtime-card__amount {
    font-size: clamp(2.25rem, 3vw, 3.25rem);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }

  .petrole-realtime-card__amount span {
    font-size: 0.75rem;
    letter-spacing: 0.45em;
    color: rgba(255, 255, 255, 0.65);
  }

  .petrole-realtime-card__amount strong {
    font-size: clamp(2.5rem, 3.5vw, 3.8rem);
  }

  .petrole-realtime-card__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
  }

  .petrole-realtime-card__frame {
    width: 100%;
    padding: 1.2rem 1.4rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .petrole-realtime-card__empty {
    margin: 0;
    color: #ffb3b3;
    font-weight: 600;
  }

  .petrole-realtime-card__cta {
    margin-top: 1rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    background: #2b62ff;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.3em;
    font-size: 0.9rem;
    border: none;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    text-align: center;
  }

  .petrole-realtime-card__cta--full {
    width: 100%;
  }

  .petrole-realtime-card__cta:hover {
    transform: translateY(-2px);
    background: #1f45c0;
  }

  .petrole-section {
    margin-bottom: 2rem;
  }

  .petrole-charts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .petrole-chart p {
    margin-bottom: 0;
    color: #47505d;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .petrole-prediction {
    padding: 1.5rem;
    border-radius: 1.6rem;
    background: linear-gradient(135deg, rgba(86, 184, 230, 0.12), rgba(15, 23, 42, 0.04));
    border: 1px solid rgba(86, 184, 230, 0.25);
    font-size: 1rem;
    color: #0f172a;
  }

  .petrole-prediction strong {
    font-weight: 700;
  }

.chart-card__canvas {
  width: 100%;
  min-height: 300px;
}

.chart-tooltip {
  min-width: 150px;
  max-width: 220px;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
  color: #0a111a;
  font-weight: 500;
  font-size: 0.95rem;
}

.chart-tooltip__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.1rem;
}

.chart-tooltip strong {
  display: block;
  font-size: 1rem;
}

.cours-context {
  margin-top: 1rem;
  color: #354056;
  line-height: 1.7;
}

.cours-diagnostic {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f4f6fb;
  border-radius: 1.2rem;
  border: 1px solid rgba(0, 164, 224, 0.1);
}

.cours-diagnostic h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.cours-diagnostic__table {
  overflow-x: auto;
  margin-top: 1rem;
}

.cours-diagnostic__table table {
  width: 100%;
  border-collapse: collapse;
}

.cours-diagnostic__table th,
.cours-diagnostic__table td {
  padding: 0.65rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
}

.cours-card__note {
  font-size: 0.9rem;
  color: #6a7687;
  margin-bottom: 1rem;
}

.cours-card__post-text {
  margin-bottom: 1.5rem;
  color: #2c3446;
  line-height: 1.7;
}

.cours-card__post-text p {
  margin-bottom: 1rem;
}

.cours-card__post-text strong {
  font-weight: 700;
}

@media (max-width: 991px) {
  .cours-card {
    padding: 1.8rem;
  }
  .cours-charts {
    gap: 1rem;
  }
}

.prixfioul-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.98);
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 47, 82, 0.15);
  box-shadow: 0 12px 24px rgba(8, 19, 39, 0.15);
  font-size: 0.95rem;
  color: var(--default-color);
  text-align: center;
  z-index: 10;
  display: none;
  white-space: nowrap;
}

.prixfioul-tooltip .map-tooltip-title {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.prixfioul-tooltip .map-tooltip-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 991px) {
  .price-history-card__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .price-history-card__meta {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .map-card .navigmap {
    padding: 1.25rem;
  }
  .map-card .map {
    min-height: 280px;
  }
}

/*--------------------------------------------------------------
# Global Compact Scale
--------------------------------------------------------------*/
html {
  font-size: 93.75%;
}

body {
  line-height: 1.55;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.25rem;
}

.section {
  padding: 48px 0;
}

.page-title {
  padding: 132px 0 48px;
}

.page-title--hero {
  padding: 132px 0 32px;
}

.page-title h1 {
  font-size: 36px;
}

.hero {
  padding: 100px 0 48px;
}

.hero h2 {
  font-size: clamp(2.2rem, 3vw, 2.75rem);
}

.section-title h2,
.section-header h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.35rem);
}

.section-lead {
  font-size: 0.98rem;
}

.price-hero__bubble {
  padding: 1.55rem;
  border-radius: 1.25rem;
}

.price-hero__prices {
  gap: 0.8rem;
  margin-top: 1.15rem;
}

.price-hero__item {
  min-height: 125px;
  padding: 1rem;
  border-radius: 1rem;
}

.price-hero__item-value {
  font-size: 1.85rem;
}

.price-hero__delta {
  margin-top: 1rem;
  padding: 0.7rem 0.95rem;
}

.price-hero__footer h1 {
  font-size: clamp(2rem, 2.5vw, 3.1rem);
}

.price-history-card,
.actualite-feature,
.contact-card,
.cours-card,
.article-card,
.sidebar-card,
.widgets-container,
.error-404-card {
  border-radius: 1.25rem;
  padding: 1.75rem;
}

.table-price-history th,
.table-price-history td {
  padding: 0.75rem 0.25rem;
}

.map-card .navigmap {
  min-height: 315px;
  padding: 1.5rem;
  border-radius: 26px;
}

.map-card .map {
  min-height: 315px;
  border-radius: 22px;
}

@media (max-width: 768px) {
  html {
    font-size: 92.5%;
  }

  .section {
    padding: 40px 0;
  }

  .page-title,
  .page-title--hero {
    padding-top: 110px;
  }

  .price-hero__bubble,
  .price-history-card,
  .actualite-feature,
  .contact-card,
  .cours-card,
  .article-card,
  .sidebar-card,
  .widgets-container,
  .error-404-card {
    padding: 1.25rem;
  }
}
