/**
* Template Name: AgriCulture
* Template URL: https://bootstrapmade.com/agriculture-bootstrap-website-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: "Open Sans",  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: "Marcellus",  sans-serif;
  --nav-font: "Marcellus",  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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #116530; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #116530; /* 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: #116530; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #2ea359;
  --surface-color: #252525;
  --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);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header - Compact Minimalist
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  z-index: 1100;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  position: sticky !important;
  top: 0;
  width: 100%;
  backdrop-filter: blur(8px);
}

body.mobile-nav-active #header {
  position: static !important;
  z-index: 1;
  min-height: 100vh;
}

.header-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.header-brand {
  display: flex;
  align-items: center;
  line-height: 1;
}

.header-brand img {
  max-height: 88px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.catalogue-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-color);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.catalogue-btn:hover,
.catalogue-btn:focus-visible {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-color: var(--accent-color);
  text-decoration: none;
}

.language-switcher {
  display: flex;
  align-items: center;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-color);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.language-switcher .dropdown-menu {
  min-width: 110px;
  font-size: 0.85rem;
  border-radius: 6px;
  padding: 0.25rem;
}

.language-switcher .dropdown-item {
  padding: 0.4rem 0.75rem;
  font-weight: 500;
  border-radius: 4px;
}

.language-switcher .dropdown-item.active,
.language-switcher .dropdown-item:focus,
.language-switcher .dropdown-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.navmenu {
  display: flex;
  align-items: center;
}

.navmenu ul {
  margin: 0;
  padding: 0.25rem 0.5rem;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.15rem;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 0.35rem 0.65rem;
  font-size: 0.9rem;
  font-family: var(--nav-font);
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Active state - compact, subtle pill */
.navmenu a.active {
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--accent-color);
}

/* Hover state - very subtle highlight */
.navmenu li:hover > a:not(.active),
.navmenu a:hover:not(.active),
.navmenu a:focus-visible:not(.active) {
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
}

/* Dropdown parent hover */
.navmenu .dropdown:hover > a {
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
}

.navmenu .dropdown:hover > a.active {
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--accent-color);
}

.scrolled .header {
  box-shadow: 0 1px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Mobile nav toggle: visible only on mobile (≤500px), hidden on tablet/web (≥501px) */
@media (min-width: 501px) {
  .mobile-nav-toggle {
    display: none !important;
  }
}

/* Navmenu - Desktop & Tablet (≥501px) */
@media (min-width: 501px) {
  .navmenu {
    padding: 0;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
  }

  .navmenu .dropdown ul {
    margin: 0.25rem 0 0;
    padding: 0.35rem;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 100%;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-4px);
    border-radius: 8px;
    z-index: 99;
    box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 80%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  }

  .navmenu .dropdown ul li {
    min-width: 180px;
  }

  .navmenu .dropdown ul a {
    padding: 0.5rem 0.85rem;
    font-size: 0.875rem;
    text-transform: none;
    color: var(--nav-dropdown-color);
    border-radius: 6px;
    display: block;
    transition: all 0.2s ease;
  }

  .navmenu .dropdown ul a i {
    font-size: 11px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Tablet header tweaks (501px–768px) – compact nav for smaller tablets */
@media (min-width: 501px) and (max-width: 768px) {
  .navmenu ul {
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.2rem 0.4rem;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 0.3rem 0.5rem;
    font-size: 0.82rem;
  }

  .header-brand img {
    max-height: 72px;
  }

  .language-toggle {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
  }

  .catalogue-btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
  }
}

/* Navmenu - Mobile (≤500px) */
@media (max-width: 500px) {
  .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 color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .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: hidden;
  }

  .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: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    height: 100vh;
    width: 100vw;
    min-height: 100vh;
  }

  .mobile-nav-active .navmenu>ul {
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    position: relative;
    inset: auto;
    margin: 0;
    padding: 2.5rem 1.5rem;
    width: min(360px, 92vw);
    max-height: calc(100vh - 100px);
    border-radius: 24px;
    background-color: var(--nav-mobile-background-color);
    border: none;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    z-index: 100000;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: 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 #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s 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: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# 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: 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title .back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: opacity 0.2s ease;
}

.page-title .back-to-blog:hover {
  color: #fff;
  opacity: 0.9;
}

.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 50%);
}

/*--------------------------------------------------------------
# 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: 500px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
  font-family: var(--heading-font);
  font-size: 32px;
}

/*--------------------------------------------------------------
# Hero Section - Modern compact minimalist
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 70vh;
  max-height: 85vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit:revert;
  object-position: center;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 2rem;
  z-index: 3;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hero .hero-content h1 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero .hero-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.25rem;
  line-height: 1.4;
}

.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .btn-hero {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero .btn-hero-primary {
  background: var(--accent-color);
  color: #fff;
  border: 2px solid var(--accent-color);
}

.hero .btn-hero-primary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.hero .btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero .btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

@media (min-width: 768px) {
  .hero .carousel {
    min-height: 65vh;
  }

  .hero .hero-content {
    padding: 3rem 2rem 2.5rem;
    text-align: left;
    margin: 0;
    left: 2rem;
    right: auto;
  }

  .hero .hero-content h1 {
    font-size: 2rem;
  }

  .hero .hero-content p {
    font-size: 1rem;
  }

  .hero .btn-hero {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 1024px) {
  .hero .hero-content {
    left: 3rem;
    padding: 3.5rem 2rem 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.25rem;
  }
}

/* Legacy carousel-container support */
.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  position: relative;
  padding: 4.5rem 0 2.5rem;
  background: #ffffff;
  color: #1a3c1f;
  overflow: hidden;
}

.services::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -40px;
  right: -80px;
  background: radial-gradient(circle, rgba(63, 150, 32, 0.12), transparent 70%);
  z-index: 0;
}

.services .section-title {
  text-align: center;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.services .section-title h2 {
  color: #173d20;
  font-size: 34px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.services .section-title p {
  color: rgba(23, 61, 32, 0.75);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  font-size: 0.75rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

.services .content {
  position: relative;
  z-index: 1;
}

/* Services - Product Showcase */
.services-showcase.section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fafbfa 0%, #ffffff 50%, #fafbfa 100%);
}

.showcase-header {
  max-width: 560px;
  margin: 0 auto 3rem;
}

.showcase-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

.showcase-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.showcase-header p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.5;
  margin: 0;
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.showcase-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
}

.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.showcase-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.showcase-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.showcase-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.showcase-card-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.25s ease;
}

.showcase-card:hover .showcase-card-cta {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.showcase-card-content {
  padding: 0.9rem 1rem;
}

.showcase-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-color);
  margin-bottom: 0.4rem;
}

.showcase-card-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.showcase-card-content p {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.4;
  margin: 0;
}

.showcase-footer {
  margin-top: 2.5rem;
}

/* Targets block - compact, minimalist */
.targets-block {
  max-width: 680px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.targets-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 0.5rem;
}

.targets-intro {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
  margin: 0 0 1rem;
  line-height: 1.5;
}

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

.targets-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.5rem;
}

.targets-list li:last-child {
  margin-bottom: 0;
}

.targets-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--accent-color);
  border-radius: 50%;
}

.btn-showcase {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-showcase:hover {
  transform: translateY(-2px);
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

@media (max-width: 1200px) {
  .services-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .targets-block {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
  }

  .targets-list li {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .services-showcase.section {
    padding: 3.5rem 0;
  }

  .showcase-header {
    margin-bottom: 2rem;
  }

  .targets-block {
    margin-top: 1.75rem;
    padding: 1rem 1.25rem;
  }

  .showcase-header h2 {
    font-size: 1.6rem;
  }

  .services-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .showcase-card-content {
    padding: 1rem;
  }

  .showcase-footer {
    margin-top: 2rem;
  }
}

/*--------------------------------------------------------------
# About Section (Why Choose Us)
--------------------------------------------------------------*/
.about .section-title {
  margin-bottom: 60px;
}

.about .content {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem 0;
}

.about-img {
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.about-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.about-intro {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

.about-reasons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-reasons li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
}

.about-reasons li:last-child {
  margin-bottom: 0;
}

.about-reasons li i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.about p {
  color: var(--contrast-color);
}

.about .content-title {
  color: var(--contrast-color);
  font-weight: 300;
  text-align: left;
}

.about .content-title strong {
  font-weight: 700;
}

.about .content-subtitle {
  font-weight: 300;
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 1.3rem;
}

@media (max-width: 991px) {
  .about .content {
    padding: 2.5rem 0;
  }

  .about-title {
    font-size: 1.35rem;
  }
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
  overflow: visible;
  margin-bottom: 200px;
}

.services-2 .section-title {
  text-align: left;
}

.services-2 .section-title h2 {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
  text-transform: uppercase;
  font-size: 20px;
}

.services-2 .section-title p {
  color: var(--contrast-color);
  font-size: 0.85rem;
  opacity: 0.9;
}

.services-2 .section-title-with-link {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.services-2 .section-title-with-link > div {
  flex: 1;
  min-width: 200px;
}

.services-2-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color) !important;
  text-decoration: none !important;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.services-2-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
}

.btn-services-2 {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  background: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.btn-services-2:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services-2 .services-carousel-wrap {
  position: relative;
  margin-bottom: -200px;
}

.services-2 .swiper-wrapper {
  height: auto;
}

.services-2 .service-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.services-2 .service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s all ease;
  transform: scale(1);
}

.services-2 .service-item:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s all ease;
}

.services-2 .service-item .service-item-contents {
  z-index: 9;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transition: 0.3s all ease;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.services-2 .service-item .service-item-contents .service-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.services-2 .service-item .service-item-contents .service-item-title {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.services-2 .service-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.services-2 .service-item:hover .service-item-contents {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.services-2 .service-item:hover img {
  transform: scale(1.2);
}

.services-2 .navigation-prev,
.services-2 .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 46px;
  height: 46px;
  background: var(--contrast-color);
  background-color: none;
  border: none;
  transition: 0.3s all ease;
}

.services-2 .navigation-prev i,
.services-2 .navigation-next i {
  font-size: 2rem;
}

.services-2 .navigation-prev:hover,
.services-2 .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-2 .navigation-prev {
  left: 10px;
}

.services-2 .navigation-next {
  right: 10px;
}

.services-2 .swiper {
  padding-bottom: 50px;
}

.services-2 .swiper-pagination {
  bottom: 0px;
}

.services-2 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.services-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Projects Gallery (References page - Our Done Projects)
--------------------------------------------------------------*/
.projects-gallery.section {
  padding: 3.5rem 0 4rem;
}

.gallery-header {
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.gallery-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.gallery-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 0.5rem;
}

.gallery-header p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.5;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.gallery-item-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-image img {
  transform: scale(1.06);
}

.gallery-item-caption {
  padding: 0.75rem 1rem;
}

.gallery-item-tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.gallery-item-caption h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .projects-gallery.section {
    padding: 2.5rem 0 3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gallery-header h2 {
    font-size: 1.35rem;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.testimonials .testimonial blockquote p {
  font-size: 20px;
  color: var(--default-color);
  font-weight: 500;
}

.testimonials .testimonial .client-name {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
/* Recent Posts - Compact minimalist */
.recent-posts.section {
  padding: 3rem 0;
  background: #f8f9fa;
  overflow: visible;
  min-height: 200px;
}

.recent-posts-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.recent-posts-subtitle {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
}

.recent-posts-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.recent-posts-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-color);
  text-decoration: none;
}

.recent-posts-link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.post-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  height: 100%;
}

.post-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.post-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9ecef;
}

@supports not (aspect-ratio: 16 / 10) {
  .post-card-img {
    padding-bottom: 62.5%;
    height: 0;
  }
  .post-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.post-card-date {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  color: var(--heading-color);
}

.post-card-body {
  padding: 1rem;
}

.post-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card:hover .post-card-body h3 {
  color: var(--accent-color);
}

.post-card-more {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.post-card-more i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.post-card:hover .post-card-more i {
  transform: translateX(2px);
}

/* Legacy post-item styles (for other pages) */
.recent-posts .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .content {
  padding: 20px 0;
}

.call-to-action .content h3 {
  font-weight: 300;
  text-transform: uppercase;
}

.call-to-action .content .form-subscribe .form-control {
  border: 2px solid var(--accent-color);
  background: var(--surface-color);
  border-radius: 0;
}

.call-to-action .content .form-subscribe input[type=email] {
  height: 63px !important;
  color: var(--default-color);
}

.call-to-action .content .form-subscribe input[type=email]:focus {
  box-shadow: none;
}

.call-to-action .content .form-subscribe input[type=email]::placeholder {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.call-to-action .content .loading,
.call-to-action .content .error-message,
.call-to-action .content .sent-message {
  margin-top: 15px;
}

.call-to-action .content .btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 0;
}

.call-to-action .content .btn:hover,
.call-to-action .content .btn:active,
.call-to-action .content .btn:focus {
  box-shadow: none;
  outline: none;
  background-color: var(--contrast-color);
  border: 1px solid var(--contrrast-color);
}

/*--------------------------------------------------------------
# References & Partnerships Carousel
--------------------------------------------------------------*/
.references-carousel.section {
  padding: 2rem 0;
  background: #fafafa;
}

.references-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  margin-bottom: 1rem;
}

.references-swiper {
  overflow: hidden;
}

.references-swiper .ref-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}

.references-swiper .ref-item:hover {
  opacity: 0.9;
  border-color: rgba(0, 0, 0, 0.1);
}

.references-swiper .ref-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.4);
  opacity: 0.8;
}

.references-swiper .ref-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3.section {
  padding: 4rem 0;
}

.about-3-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-3-image-wrap img {
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
}

.about-3-image-wrap:hover img {
  transform: scale(1.02);
}

.about-3-content {
  padding-left: 0.5rem;
}

.about-3-title {
  font-size: 1.85rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  line-height: 1.2;
  color: var(--heading-color);
}

.about-3-brand,
.about-3-brand-accent {
  font-family: var(--heading-font);
}

.about-3-subtitle {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.55);
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}

.about-3-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--default-color);
  margin: 0 0 1rem;
}

.about-3-text:last-of-type {
  margin-bottom: 1.5rem;
}

.about-3-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.about-3-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent-color) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.about-3-link:hover {
  opacity: 0.85;
}

.about-3 .content-title {
  color: var(--accent-color);
  margin-bottom: 0;
  font-size: 1.75rem;
}

.about-3 .content-subtitle {
  font-size: 1rem;
}

.about-3 .btn-cta {
  text-transform: uppercase;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
}

.about-3 .list-check {
  margin-bottom: 50px;
}

.about-3 .list-check li {
  display: block;
  padding-left: 30px;
  position: relative;
}

.about-3 .list-check li:before {
  content: "\f26e";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 0.1rem;
  font-size: 20px;
  left: 0;
  color: var(--accent-color);
}

.about-3 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.about-3 .metric-card {
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.about-3 .metric-value {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-color);
}

.about-3 .metric-label {
  font-size: 0.95rem;
  margin: 0;
  color: var(--contrast-color);
}

.about-3 .btn-cta {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 13px;
}

.about-3 p {
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .about-3.section {
    padding: 3rem 0;
  }

  .about-3-content {
    padding-left: 0;
  }

  .about-3-image-wrap {
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Mission & Vision Section
--------------------------------------------------------------*/
.mission-vision.section {
  padding: 3.5rem 0;
}

.mv-header {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.mv-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.mv-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
}

.mv-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 1.5rem 1.5rem;
  height: 100%;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.mv-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(17, 101, 48, 0.15);
}

.mv-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 101, 48, 0.08);
  color: var(--accent-color);
  border-radius: 10px;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.mv-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.mv-card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

/*--------------------------------------------------------------
# Principles & Values Section
--------------------------------------------------------------*/
.principles-values.section {
  padding: 3.5rem 0;
}

.pv-header {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.pv-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.pv-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
}

.pv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  text-align: center;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.pv-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(17, 101, 48, 0.12);
  transform: translateY(-2px);
}

.pv-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.pv-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .mission-vision.section,
  .principles-values.section {
    padding: 2.5rem 0;
  }

  .mv-card {
    padding: 1.25rem 1.25rem;
  }

  .pv-card {
    padding: 1rem 0.5rem;
  }

  .pv-card span {
    font-size: 0.75rem;
  }
}

/*--------------------------------------------------------------
# About Extra Sections (Areas of Activity, Values, Commitment)
--------------------------------------------------------------*/
.about-extra.section {
  padding: 2.5rem 0;
}

.about-extra-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-extra.section:not(.light-background) .about-extra-card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.about-extra-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(17, 101, 48, 0.12);
}

.about-extra-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--heading-color);
}

.about-extra-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.65);
  margin: 0;
}

@media (max-width: 768px) {
  .about-extra.section {
    padding: 2rem 0;
  }

  .about-extra-card {
    padding: 1.25rem 1.5rem;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .person {
  position: relative;
}

.team .person figure {
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.team .person img {
  transition: 0.3s all ease;
}

.team .person .person-contents {
  text-align: center;
}

.team .person .person-contents h3 {
  color: var(--heading-color);
  font-size: 24px;
}

.team .person .person-contents .position {
  color: var(--accent-color);
}

.team .person:hover img {
  transform: scale(1.05);
}

.team .person .social {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}

.team .person .social a {
  display: block;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  background: var(--contrast-color);
  position: relative;
}

.team .person .social a>span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team .person .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Posts 2 Section
--------------------------------------------------------------*/
.blog-posts-2 article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.blog-posts-2 .post-img img {
  transition: 0.5s;
}

.blog-posts-2 .post-content {
  padding: 30px;
}

.blog-posts-2 .post-title {
  font-size: 20px;
  line-height: 24px;
  color: var(--heading-color);
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}

.blog-posts-2 .meta {
  position: relative;
  margin-top: -20px;
  padding: 0 30px;
}

.blog-posts-2 .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts-2 .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts-2 .meta .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  padding: 6px 12px;
  text-align: center;
  margin-right: 15px;
  border-radius: 4px;
}

.blog-posts-2 .meta .post-date span {
  display: block;
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 20px;
}

.blog-posts-2 .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts-2 .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts-2 article:hover .post-title,
.blog-posts-2 article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts-2 article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding: 2rem 0 1rem;
}

.blog-pagination .pagination-nav {
  display: flex;
  justify-content: center;
}

.blog-pagination .pagination-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination .pagination-list li {
  margin: 0;
}

.blog-pagination .pagination-page,
.blog-pagination .pagination-prev,
.blog-pagination .pagination-next {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.blog-pagination .pagination-page:hover,
.blog-pagination .pagination-prev:hover,
.blog-pagination .pagination-next:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.blog-pagination .pagination-page.active {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.blog-pagination .pagination-prev.disabled,
.blog-pagination .pagination-next.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 1.5rem;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  max-width: 640px;
  margin: 0 auto;
}

.blog-details .post-img {
  margin: 0 0 1rem 0;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16 / 9;
  max-height: 280px;
}

.blog-details .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .post-img .post-card-date {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.65rem;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0;
  margin: 0 0 0.75rem 0;
  line-height: 1.35;
}

.blog-details .content {
  margin-top: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.blog-details .content p {
  margin-bottom: 0.85rem;
}

.blog-details .content h3 {
  font-size: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.blog-details .content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 1rem 1.25rem;
  position: relative;
  text-align: left;
  margin: 1rem 0;
  border-radius: 6px;
  border-left: 3px solid var(--accent-color);
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.5;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 0.9rem;
}

.blog-details .meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.blog-details .meta-top span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-details .meta-top i {
  font-size: 0.9rem;
  color: var(--accent-color);
}

.blog-details .meta-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.75rem;
  margin-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-size: 0.8rem;
}

.blog-details .meta-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-details .meta-bottom i {
  color: var(--accent-color);
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# 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%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 10px;
}

.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  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 input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/* Contact Compact - Minimalist layout */
.contact-compact {
  padding: 2.5rem 0 3rem;
}

.contact-compact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-compact .contact-compact-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-compact .contact-compact-desc {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 1.25rem;
}

.contact-info-compact {
  margin-bottom: 1.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-item:hover {
  color: var(--accent-color);
}

.contact-info-item i {
  font-size: 1rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.contact-form-compact .form-row-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-form-compact input,
.contact-form-compact textarea {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 4px;
  background: var(--surface-color);
  transition: border-color 0.2s;
}

.contact-form-compact input:focus,
.contact-form-compact textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.contact-form-compact textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 0.75rem;
}

.contact-form-compact .form-messages {
  margin-bottom: 0.75rem;
}

.contact-form-compact .form-messages .loading,
.contact-form-compact .form-messages .error-message,
.contact-form-compact .form-messages .sent-message {
  display: none;
}

.contact-form-compact .form-messages .loading.show,
.contact-form-compact .form-messages .error-message.show,
.contact-form-compact .form-messages .sent-message.show {
  display: block;
}

.contact-form-compact .btn-submit-compact {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form-compact .btn-submit-compact:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

@media (max-width: 480px) {
  .contact-form-compact .form-row-compact {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# 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;
}

.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;
}

.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%);
}

.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;
}

.blog-author-widget img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget-2 .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget-2 .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget-2 .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget-2 .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget-2 .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget-2 .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.floating-contact-widget {
  position: fixed;
  left: 18px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1050;
}

.floating-contact-widget .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  min-width: 140px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-contact-widget .contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
}

.floating-contact-widget .contact-btn i {
  font-size: 18px;
  margin-left: 8px;
}

.floating-contact-widget .call-btn {
  background: #d8343c;
}

.floating-contact-widget .whatsapp-btn {
  background: #17c964;
}
