@charset "UTF-8";

/*--------------------------------------------------------------
# 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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #556270; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #aa1120; /* 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: #556270;  /* The default color of the main navmenu links */
  --nav-hover-color: #aa1120; /* 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: #556270; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #aa1120; /* 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: #f2f4f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #3b4654;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #444e5b;
  --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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .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: 15px;
    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);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .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: 100%;
    visibility: visible;
  }

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

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

/* 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: 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;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

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

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.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 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

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

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

.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 .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

/*--------------------------------------------------------------
# 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);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 300;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  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%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

.hero .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 40px;
  margin: 30px 0 0 0;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
}

.about .about-img {
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.about .about-img .floating-badge {
  position: absolute;
  right: -25px;
  bottom: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 28px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(54, 144, 231, 0.3);
  text-align: center;
  z-index: 3;
  transition: transform 0.3s ease;
}

.about .about-img .floating-badge:hover {
  transform: translateY(-8px);
}

.about .about-img .floating-badge span {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.about .about-img .floating-badge p {
  font-size: 0.9rem;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.about .about-img .scribble {
  position: absolute;
  z-index: 1;
}

.about .about-img .scribble.scribble-1 {
  width: 180px;
  height: 180px;
  border: 6px solid var(--accent-color);
  border-radius: 50%;
  top: -35px;
  left: -35px;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.about .about-img .scribble.scribble-2 {
  width: 120px;
  height: 120px;
  border: 4px dashed var(--heading-color);
  bottom: -25px;
  right: 40px;
  opacity: 0.12;
  animation: float 6s ease-in-out infinite reverse;
}

.about .about-img .scribble.scribble-3 {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  opacity: 0.08;
  top: 15%;
  right: -20px;
  border-radius: 14px;
  animation: float 7s ease-in-out infinite;
  transform: rotate(45deg);
}

.about .about-img .floating-shape {
  position: absolute;
  z-index: 1;
}

.about .about-img .floating-shape.shape-1 {
  width: 40px;
  height: 40px;
  background: var(--heading-color);
  opacity: 0.1;
  border-radius: 8px;
  bottom: -15px;
  left: 10%;
  animation: spin 10s linear infinite;
}

.about .about-img .floating-shape.shape-2 {
  width: 20px;
  height: 70px;
  background: var(--accent-color);
  opacity: 0.15;
  border-radius: 40px;
  top: 20px;
  right: 12%;
  animation: float 5s ease-in-out infinite;
}

.about .about-img img {
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

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

.about .content {
  padding-left: 20px;
}

@media (max-width: 992px) {
  .about .content {
    padding-left: 0;
    margin-top: 20px;
  }
}

.about .content .section-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about .content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about .content h3 {
    font-size: 2rem;
  }
}

.about .content p {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
  line-height: 1.7;
}

.about .features-list {
  margin-bottom: 35px;
}

.about .features-list .feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.about .features-list .feature-item:hover {
  transform: translateX(8px);
}

.about .features-list .feature-item:hover .icon-box {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .features-list .feature-item .icon-box {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 12px;
  font-size: 22px;
  transition: all 0.3s ease;
}

.about .features-list .feature-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.about .features-list .feature-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.about .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about .cta-wrapper .btn-about {
  padding: 14px 30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about .cta-wrapper .btn-about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: width 0.3s ease;
}

.about .cta-wrapper .btn-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(54, 144, 231, 0.25);
}

.about .cta-wrapper .btn-about:hover::after {
  width: 100%;
}

.about .cta-wrapper .btn-video {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.about .cta-wrapper .btn-video:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.about .cta-wrapper .btn-video:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .cta-wrapper .btn-video .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 22px;
  transition: all 0.3s ease;
}

.about .cta-wrapper .btn-video .icon i {
  margin-left: 2px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .category-card {
  position: relative;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.cards .category-image {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cards .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.cards .category-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.cards .category-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: var(--contrast-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cards .category-content h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.cards .category-content p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.cards .btn-shop-now {
  align-self: flex-start;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.cards .btn-shop-now i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.cards .btn-shop-now:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.cards .btn-shop-now:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .cards .product-card {
    margin-bottom: 20px;
  }

  .cards .category-card {
    margin-bottom: 20px;
    height: 250px;
  }

  .cards .category-content h3 {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .feature-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.services .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-color), transparent 90%), transparent);
  transition: left 0.5s ease;
}

.services .feature-card .feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .feature-card .feature-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.services .feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.services .feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  opacity: 0.8;
}

.services .feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .feature-card:hover::before {
  left: 100%;
}

.services .feature-card:hover .feature-icon {
  transform: rotateY(180deg);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.services .service-card {
  background: var(--surface-color);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 80%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .service-card .service-media {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

.services .service-card .service-media .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 20%), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.services .service-card .service-media .service-badge {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.services .service-card .service-media .service-badge i {
  font-size: 26px;
  color: var(--contrast-color);
}

.services .service-card .service-media:hover img {
  transform: scale(1.1);
}

.services .service-card .service-media:hover .service-overlay {
  opacity: 1;
}

.services .service-card .service-media:hover .service-badge {
  transform: translateY(0);
}

.services .service-card .service-body {
  padding: 35px;
}

.services .service-card .service-body h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.services .service-card .service-body .service-desc {
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card .service-body .service-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.services .service-card .service-body .service-benefits .benefit-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.services .service-card .service-body .service-benefits .benefit-tag i {
  font-size: 14px;
}

.services .service-card .service-body .service-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-card .service-body .service-action .pricing-info {
  display: flex;
  flex-direction: column;
}

.services .service-card .service-body .service-action .pricing-info .price-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services .service-card .service-body .service-action .pricing-info .price-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.services .service-card .service-body .service-action .action-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.services .service-card .service-body .service-action .action-btn i {
  transition: transform 0.3s ease;
}

.services .service-card .service-body .service-action .action-btn:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.services .service-card .service-body .service-action .action-btn:hover i {
  transform: translateX(3px);
}

@media (max-width: 992px) {
  .services .feature-card {
    margin-bottom: 30px;
    padding: 30px 20px;
  }

  .services .feature-card .feature-icon {
    width: 60px;
    height: 60px;
  }

  .services .feature-card .feature-icon i {
    font-size: 28px;
  }

  .services .feature-card h4 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .services .feature-card {
    padding: 25px 20px;
  }

  .services .feature-card .feature-icon {
    width: 55px;
    height: 55px;
  }

  .services .feature-card .feature-icon i {
    font-size: 24px;
  }

  .services .feature-card h4 {
    font-size: 16px;
  }

  .services .feature-card p {
    font-size: 13px;
  }

  .services .service-card .service-media {
    height: 220px;
  }

  .services .service-card .service-body {
    padding: 25px;
  }

  .services .service-card .service-body h3 {
    font-size: 22px;
  }

  .services .service-card .service-body .service-desc {
    font-size: 14px;
  }

  .services .service-card .service-body .service-benefits .benefit-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .services .service-card .service-body .service-action {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .services .service-card .service-body .service-action .action-btn {
    padding: 14px 30px;
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .call-to-action h2 {
    font-size: 2rem;
  }
}

.call-to-action .lead {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .call-to-action .lead {
    font-size: 1.1rem;
  }
}

.call-to-action .cta-buttons {
  margin-bottom: 4rem;
}

.call-to-action .cta-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .call-to-action .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .call-to-action .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

.call-to-action .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action .cta-buttons .btn.btn-secondary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action .newsletter-signup {
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
}

.call-to-action .newsletter-signup h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.call-to-action .newsletter-signup p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
}

.call-to-action .newsletter-signup .newsletter-form .input-group {
  max-width: 500px;
  margin: 0 auto 1rem auto;
}

.call-to-action .newsletter-signup .newsletter-form .input-group .form-control {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-right: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 50px 0 0 50px;
}

.call-to-action .newsletter-signup .newsletter-form .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.call-to-action .newsletter-signup .newsletter-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.call-to-action .newsletter-signup .newsletter-form .input-group .btn-accent {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 0 50px 50px 0;
  transition: all 0.3s ease;
}

.call-to-action .newsletter-signup .newsletter-form .input-group .btn-accent:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
}

.call-to-action .newsletter-signup .newsletter-form .input-group .btn-accent i {
  margin-right: 0.5rem;
}

.call-to-action .newsletter-signup .privacy-note {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

.call-to-action .features-grid .feature-item {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.call-to-action .features-grid .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.call-to-action .features-grid .feature-item .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.call-to-action .features-grid .feature-item .feature-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.call-to-action .features-grid .feature-item h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.call-to-action .features-grid .feature-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.call-to-action input[type=email] {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.call-to-action input[type=email]:focus {
  border-color: var(--accent-color);
}

.call-to-action input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

@media (max-width: 768px) {
  .call-to-action .newsletter-signup {
    padding: 2rem 1.5rem;
  }

  .call-to-action .newsletter-signup .newsletter-form .input-group {
    flex-direction: column;
  }

  .call-to-action .newsletter-signup .newsletter-form .input-group .form-control {
    border-radius: 50px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    margin-bottom: 1rem;
  }

  .call-to-action .newsletter-signup .newsletter-form .input-group .btn-accent {
    border-radius: 50px;
    width: 100%;
  }

  .call-to-action .features-grid .feature-item {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Properties Section
--------------------------------------------------------------*/
.properties .property-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.properties .property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.properties .property-card .property-image {
  position: relative;
  overflow: hidden;
}

.properties .property-card .property-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.properties .property-card .property-image .property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.properties .property-card .property-image .property-badge.featured {
  background-color: #ff6b35;
}

.properties .property-card .property-image .property-badge.new {
  background-color: #28a745;
}

.properties .property-card .property-image .property-badge.exclusive {
  background-color: #6f42c1;
}

.properties .property-card .property-image .property-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.properties .property-card .property-details {
  padding: 25px;
}

.properties .property-card .property-details h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.properties .property-card .property-details h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.properties .property-card .property-details h3 a:hover {
  color: var(--accent-color);
}

.properties .property-card .property-details .property-location {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.properties .property-card .property-details .property-location i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 14px;
}

.properties .property-card .property-details .property-location span {
  font-size: 14px;
  font-weight: 500;
}

.properties .property-card .property-details .property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.properties .property-card .property-details .property-specs .spec-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.properties .property-card .property-details .property-specs .spec-item i {
  color: var(--accent-color);
  margin-right: 6px;
  font-size: 12px;
}

.properties .property-card .property-details p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
}

.properties .property-card .property-details .property-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.properties .property-card .property-details .property-actions .btn {
  background-color: var(--accent-color);
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.properties .property-card .property-details .property-actions .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.properties .property-card .property-details .property-actions .property-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.properties .property-card .property-details .property-actions .property-meta .property-type {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.properties .property-card .property-details .property-actions .property-meta .property-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 768px) {
  .properties .property-card .property-details {
    padding: 20px;
  }

  .properties .property-card .property-details .property-specs {
    justify-content: space-between;
  }

  .properties .property-card .property-details .property-actions {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .properties .property-card .property-details .property-actions .property-meta {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

/*--------------------------------------------------------------
# Testimonials 2 Section
--------------------------------------------------------------*/
.testimonials-2 .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-2 .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials-2 .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials-2 .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials-2 .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials-2 .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials-2 .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

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

.testimonials-2 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials-2 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

.testimonials-2 .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials-2 .swiper-slide-active {
    opacity: 1;
  }

  .testimonials-2 .swiper-pagination {
    margin-top: 0;
  }

  .testimonials-2 .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials-2 .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact-2 .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact-2 .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact-2 .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact-2 .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact-2 .info-box {
    padding: 1.5rem;
  }
}

.contact-2 .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-2 .info-item:last-child {
  margin-bottom: 0;
}

.contact-2 .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact-2 .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact-2 .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact-2 .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-2 .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-2 .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact-2 .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact-2 .contact-form {
    padding: 1.5rem;
  }
}

.contact-2 .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact-2 .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact-2 .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact-2 .contact-form .form-control,
.contact-2 .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact-2 .contact-form .form-control:focus,
.contact-2 .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact-2 .contact-form .form-control::placeholder,
.contact-2 .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact-2 .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact-2 .contact-form .btn i {
  font-size: 1.25rem;
}

.contact-2 .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}

.about-2 .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat;
  z-index: 1;
}

.about-2 .about-img img {
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .about-2 .about-img {
    margin: 30px 0 0 30px;
  }

  .about-2 .about-img:before {
    inset: -30px 0 0 -30px;
  }
}

.about-2 h3 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-2 h3 {
    font-size: 28px;
  }
}

.about-2 .nav-pills {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-2 .nav-pills li+li {
  margin-left: 40px;
}

.about-2 .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--default-color);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}

.about-2 .nav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
  .about-2 .nav-link {
    font-size: 16px;
  }
}

.about-2 .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
}

.about-2 .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 10px 0;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Team 2 Section
--------------------------------------------------------------*/
.team-2 .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team-2 .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team-2 .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 5px;
  flex-shrink: 0;
}

.team-2 .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team-2 .team-member:hover {
  transform: translateY(-10px);
}

.team-2 .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team-2 .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.team-2 .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team-2 .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team-2 .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .team-2 .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team-2 .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team-2 .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team-2 .team-member .social {
    justify-content: center;
  }
}

.team-2 .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 36px;
  height: 36px;
}

.team-2 .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

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

.team-2 .team-member .social a:hover i {
  color: var(--contrast-color);
}

.team-2 .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  color: #FFD700;
}

.testimonials .testimonial-item .stars i {
  margin-right: 2px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.testimonials .testimonial-item .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 25px 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    font-size: 16px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
    font-size: 13px;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .testimonials .testimonial-item {
    padding: 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services-2 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services-2 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services-2 .service-item .title a {
  color: var(--heading-color);
}

.services-2 .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services-2 .service-item:hover {
  border-color: var(--accent-color);
}

.services-2 .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  overflow: hidden;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.features .nav-link:hover {
  color: var(--accent-color);
}

.features .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: var(--background-color);
}

.features .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.features .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.features .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .features .nav-link {
    border: 0;
    padding: 15px;
  }

  .features .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  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);
}

/*--------------------------------------------------------------
# Post List 2 Section
--------------------------------------------------------------*/
.post-list-2 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: hidden;
}

.post-list-2 .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.post-list-2 .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.post-list-2 .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.post-list-2 .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.post-list-2 .title a:hover {
  color: var(--accent-color);
}

.post-list-2 .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.post-list-2 .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.post-list-2 .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Post Details Section
--------------------------------------------------------------*/
.post-details {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.post-details .post-img {
  position: relative;
  height: 600px;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .post-details .post-img {
    height: 300px;
  }
}

.post-details .article-content {
  padding: 2rem;
}

@media (max-width: 768px) {
  .post-details .article-content {
    padding: 1.5rem;
  }
}

.post-details .meta-categories {
  margin-bottom: 1rem;
}

.post-details .meta-categories .category,
.post-details .meta-categories .reading-time {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.post-details .meta-categories .category i,
.post-details .meta-categories .reading-time i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.post-details .title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 1rem 0 1.5rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .post-details .title {
    font-size: 2rem;
  }
}

.post-details .meta-top {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.post-details .meta-top ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.post-details .meta-top ul li {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details .meta-top ul li i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.post-details .meta-top ul li .author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.post-details .meta-top ul li a {
  color: var(--heading-color);
}

.post-details .meta-top ul li a:hover {
  color: var(--accent-color);
}

.post-details .content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-details .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.post-details .content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--heading-color);
}

.post-details .content p {
  margin-bottom: 1.5rem;
}

.post-details .content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.post-details .content ul li {
  margin-bottom: 0.5rem;
}

.post-details .content .content-image {
  margin: 2rem 0;
}

.post-details .content .content-image img {
  width: 100%;
  border-radius: 8px;
}

.post-details .content .content-image figcaption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details .content .content-image-split {
  margin: 2rem 0;
}

.post-details .content .content-image-split img {
  border-radius: 8px;
}

.post-details .content blockquote {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.post-details .content blockquote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
}

.post-details .content blockquote cite {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-style: normal;
  display: block;
}

.post-details .content blockquote cite:before {
  content: "— ";
}

.post-details .meta-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.post-details .meta-bottom .article-tags {
  display: flex;
  align-items: center;
}

.post-details .meta-bottom .article-tags i {
  margin-right: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details .meta-bottom .article-tags .tags {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-details .meta-bottom .article-tags .tags li a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.9rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.post-details .meta-bottom .article-tags .tags li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.post-details .meta-bottom .article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-details .meta-bottom .article-share span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details .meta-bottom .article-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.post-details .meta-bottom .article-share a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.post-details .meta-bottom .article-share a i {
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: linear-gradient(180deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  position: relative;
}

.contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(ellipse at top, color-mix(in srgb, var(--accent-color), transparent 94%), transparent);
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact .quick-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact .contact-card {
  background: var(--surface-color);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 96%);
  transition: all 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 92%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-card:hover .icon-wrapper {
  background: var(--accent-color);
  transform: scale(1.05);
}

.contact .contact-card:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.contact .contact-card .icon-wrapper {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.contact .contact-card .icon-wrapper i {
  font-size: 26px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact .contact-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-detail {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 6px;
  line-height: 1.5;
}

.contact .contact-card .availability {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact .contact-card .availability:before {
  content: "";
  width: 6px;
  height: 6px;
  background: color-mix(in srgb, var(--accent-color), #10b981 50%);
  border-radius: 50%;
  display: inline-block;
}

.contact .trust-indicators {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact .trust-indicators .indicator-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 14px;
}

.contact .trust-indicators .indicator-item .indicator-icon {
  width: 42px;
  height: 42px;
  background: var(--surface-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .trust-indicators .indicator-item .indicator-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.contact .trust-indicators .indicator-item .indicator-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact .trust-indicators .indicator-item .indicator-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.contact .trust-indicators .indicator-item .indicator-text span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .main-form-container {
  background: var(--surface-color);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 8px 40px color-mix(in srgb, var(--default-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact .form-intro {
  margin-bottom: 36px;
}

.contact .form-intro .intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 96%));
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.contact .form-intro .intro-badge i {
  font-size: 14px;
}

.contact .form-intro h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--heading-color);
}

.contact .form-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.contact .modern-form .form-control,
.contact .modern-form .form-select {
  height: 58px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 14px;
  background: var(--surface-color);
  color: var(--default-color);
  font-size: 15px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.contact .modern-form .form-control:focus,
.contact .modern-form .form-select:focus {
  border-color: var(--accent-color);
  background: var(--surface-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 94%);
  outline: none;
}

.contact .modern-form .form-control::placeholder,
.contact .modern-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .modern-form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px 12px;
  padding-right: 48px;
}

.contact .modern-form textarea.form-control {
  height: auto !important;
  min-height: 140px;
  padding: 16px 20px;
  resize: none;
}

.contact .modern-form .form-extras {
  margin-top: 20px;
  padding: 18px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 12px;
}

.contact .modern-form .form-extras .form-check {
  margin-bottom: 0;
}

.contact .modern-form .form-extras .form-check .form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact .modern-form .form-extras .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact .modern-form .form-extras .form-check .form-check-input:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact .modern-form .form-extras .form-check .form-check-label {
  font-size: 14px;
  color: var(--default-color);
  margin-left: 8px;
  cursor: pointer;
}

.contact .modern-form .btn-submit {
  width: 100%;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 18px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 24px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .modern-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .modern-form .btn-submit:hover i {
  transform: translateX(4px);
}

.contact .modern-form .btn-submit:active {
  transform: translateY(0);
}

.contact .modern-form .btn-submit i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact .modern-form .form-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .modern-form .form-footer-note i {
  font-size: 14px;
  color: var(--accent-color);
}

.contact .social-proof {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact .social-proof .proof-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact .social-proof .proof-stats .stat-box {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 14px;
}

.contact .social-proof .proof-stats .stat-box .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.contact .social-proof .proof-stats .stat-box .stat-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
}

.contact .social-proof .social-channels {
  text-align: center;
}

.contact .social-proof .social-channels p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}

.contact .social-proof .social-channels .channel-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.contact .social-proof .social-channels .channel-links .channel-link {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact .social-proof .social-channels .channel-links .channel-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .social-proof .social-channels .channel-links .channel-link i {
  font-size: 18px;
}

@media (max-width: 992px) {
  .contact .quick-contact-wrapper {
    margin-bottom: 32px;
  }

  .contact .main-form-container {
    padding: 36px 28px;
  }

  .contact .main-form-container .form-intro h2 {
    font-size: 28px;
  }

  .contact .social-proof .proof-stats {
    gap: 12px;
  }

  .contact .social-proof .proof-stats .stat-box {
    padding: 16px 12px;
  }

  .contact .social-proof .proof-stats .stat-box .stat-value {
    font-size: 20px;
  }

  .contact .social-proof .proof-stats .stat-box .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .contact .main-form-container {
    padding: 28px 20px;
  }

  .contact .main-form-container .form-intro h2 {
    font-size: 24px;
  }

  .contact .main-form-container .form-intro p {
    font-size: 15px;
  }

  .contact .social-proof .proof-stats {
    flex-direction: column;
    gap: 12px;
  }

  .contact .trust-indicators .indicator-item {
    padding: 14px 16px;
  }
}

/*--------------------------------------------------------------
# Properties 2 Section
--------------------------------------------------------------*/
.properties-2 .property-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.properties-2 .property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.properties-2 .property-card .property-image {
  position: relative;
  overflow: hidden;
}

.properties-2 .property-card .property-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.properties-2 .property-card .property-image .property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.properties-2 .property-card .property-image .property-badge.featured {
  background-color: #ff6b35;
}

.properties-2 .property-card .property-image .property-badge.new {
  background-color: #28a745;
}

.properties-2 .property-card .property-image .property-badge.exclusive {
  background-color: #6f42c1;
}

.properties-2 .property-card .property-image .property-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.properties-2 .property-card .property-details {
  padding: 25px;
}

.properties-2 .property-card .property-details h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.properties-2 .property-card .property-details h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.properties-2 .property-card .property-details h3 a:hover {
  color: var(--accent-color);
}

.properties-2 .property-card .property-details .property-location {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.properties-2 .property-card .property-details .property-location i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 14px;
}

.properties-2 .property-card .property-details .property-location span {
  font-size: 14px;
  font-weight: 500;
}

.properties-2 .property-card .property-details .property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.properties-2 .property-card .property-details .property-specs .spec-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.properties-2 .property-card .property-details .property-specs .spec-item i {
  color: var(--accent-color);
  margin-right: 6px;
  font-size: 12px;
}

.properties-2 .property-card .property-details p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
}

.properties-2 .property-card .property-details .property-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.properties-2 .property-card .property-details .property-actions .btn {
  background-color: var(--accent-color);
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.properties-2 .property-card .property-details .property-actions .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.properties-2 .property-card .property-details .property-actions .property-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.properties-2 .property-card .property-details .property-actions .property-meta .property-type {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.properties-2 .property-card .property-details .property-actions .property-meta .property-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 768px) {
  .properties-2 .property-card .property-details {
    padding: 20px;
  }

  .properties-2 .property-card .property-details .property-specs {
    justify-content: space-between;
  }

  .properties-2 .property-card .property-details .property-actions {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .properties-2 .property-card .property-details .property-actions .property-meta {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

/*--------------------------------------------------------------
# About Me Section
--------------------------------------------------------------*/
.about-me {
  padding: 120px 0;
}

.about-me .intro-header {
  margin-bottom: 80px;
}

.about-me .intro-header h1 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about-me .intro-header .subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about-me .main-content-wrapper {
  margin-bottom: 100px;
}

.about-me .profile-section .profile-image-container {
  margin-bottom: 2rem;
}

.about-me .profile-section .profile-image-container img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.about-me .profile-section .profile-image-container img:hover {
  filter: grayscale(0%);
}

.about-me .profile-section .profile-meta .location {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-me .profile-section .profile-meta .location i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.about-me .profile-section .profile-meta .status {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-me .profile-section .profile-meta .status .status-indicator {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}

.about-me .content-area {
  padding-left: 2rem;
}

.about-me .content-area .story-block {
  margin-bottom: 3rem;
}

.about-me .content-area .story-block .lead-text {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.about-me .content-area .story-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0;
}

.about-me .expertise-grid {
  margin-bottom: 3rem;
}

.about-me .expertise-grid .expertise-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.about-me .expertise-grid .expertise-item .expertise-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.about-me .expertise-grid .expertise-item .expertise-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.about-me .expertise-grid .expertise-item .expertise-content h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.about-me .expertise-grid .expertise-item .expertise-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about-me .philosophy-quote {
  position: relative;
  padding: 2rem 0;
}

.about-me .philosophy-quote .quote-mark {
  position: absolute;
  top: -10px;
  left: -20px;
  font-size: 5rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  line-height: 1;
}

.about-me .philosophy-quote p {
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  color: var(--default-color);
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-me .bottom-section {
  padding-top: 60px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-me .bottom-section .collaboration-text h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about-me .bottom-section .collaboration-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.about-me .bottom-section .action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.about-me .bottom-section .action-buttons .btn-custom {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.about-me .bottom-section .action-buttons .btn-custom.primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-me .bottom-section .action-buttons .btn-custom.primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.about-me .bottom-section .action-buttons .btn-custom.secondary {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--default-color);
}

.about-me .bottom-section .action-buttons .btn-custom.secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-1px);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@media (max-width: 992px) {
  .about-me {
    padding: 80px 0;
  }

  .about-me .intro-header {
    margin-bottom: 60px;
  }

  .about-me .intro-header h1 {
    font-size: 2.8rem;
  }

  .about-me .main-content-wrapper {
    margin-bottom: 60px;
  }

  .about-me .content-area {
    padding-left: 0;
    margin-top: 2rem;
  }

  .about-me .bottom-section .action-buttons {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-me .intro-header h1 {
    font-size: 2.2rem;
  }

  .about-me .intro-header .subtitle {
    font-size: 1.1rem;
  }

  .about-me .philosophy-quote .quote-mark {
    font-size: 3.5rem;
    left: -10px;
  }

  .about-me .philosophy-quote p {
    font-size: 1.1rem;
  }

  .about-me .bottom-section .collaboration-text h3 {
    font-size: 1.6rem;
  }

  .about-me .bottom-section .action-buttons {
    flex-direction: column;
  }

  .about-me .bottom-section .action-buttons .btn-custom {
    text-align: center;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# About Me 2 Section
--------------------------------------------------------------*/
.about-me-2 {
  padding: 120px 0;
}

.about-me-2 .intro-header {
  margin-bottom: 80px;
}

.about-me-2 .intro-header h1 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about-me-2 .intro-header .subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about-me-2 .main-content-wrapper {
  margin-bottom: 100px;
}

.about-me-2 .profile-section .profile-image-container {
  margin-bottom: 2rem;
}

.about-me-2 .profile-section .profile-image-container img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.about-me-2 .profile-section .profile-image-container img:hover {
  filter: grayscale(0%);
}

.about-me-2 .profile-section .profile-meta .location {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-me-2 .profile-section .profile-meta .location i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.about-me-2 .profile-section .profile-meta .status {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-me-2 .profile-section .profile-meta .status .status-indicator {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}

.about-me-2 .content-area {
  padding-left: 2rem;
}

.about-me-2 .content-area .story-block {
  margin-bottom: 3rem;
}

.about-me-2 .content-area .story-block .lead-text {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.about-me-2 .content-area .story-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0;
}

.about-me-2 .expertise-grid {
  margin-bottom: 3rem;
}

.about-me-2 .expertise-grid .expertise-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.about-me-2 .expertise-grid .expertise-item .expertise-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.about-me-2 .expertise-grid .expertise-item .expertise-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.about-me-2 .expertise-grid .expertise-item .expertise-content h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.about-me-2 .expertise-grid .expertise-item .expertise-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about-me-2 .philosophy-quote {
  position: relative;
  padding: 2rem 0;
}

.about-me-2 .philosophy-quote .quote-mark {
  position: absolute;
  top: -10px;
  left: -20px;
  font-size: 5rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  line-height: 1;
}

.about-me-2 .philosophy-quote p {
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  color: var(--default-color);
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-me-2 .bottom-section {
  padding-top: 60px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-me-2 .bottom-section .collaboration-text h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about-me-2 .bottom-section .collaboration-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.about-me-2 .bottom-section .action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.about-me-2 .bottom-section .action-buttons .btn-custom {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.about-me-2 .bottom-section .action-buttons .btn-custom.primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-me-2 .bottom-section .action-buttons .btn-custom.primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.about-me-2 .bottom-section .action-buttons .btn-custom.secondary {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--default-color);
}

.about-me-2 .bottom-section .action-buttons .btn-custom.secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-1px);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@media (max-width: 992px) {
  .about-me-2 {
    padding: 80px 0;
  }

  .about-me-2 .intro-header {
    margin-bottom: 60px;
  }

  .about-me-2 .intro-header h1 {
    font-size: 2.8rem;
  }

  .about-me-2 .main-content-wrapper {
    margin-bottom: 60px;
  }

  .about-me-2 .content-area {
    padding-left: 0;
    margin-top: 2rem;
  }

  .about-me-2 .bottom-section .action-buttons {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-me-2 .intro-header h1 {
    font-size: 2.2rem;
  }

  .about-me-2 .intro-header .subtitle {
    font-size: 1.1rem;
  }

  .about-me-2 .philosophy-quote .quote-mark {
    font-size: 3.5rem;
    left: -10px;
  }

  .about-me-2 .philosophy-quote p {
    font-size: 1.1rem;
  }

  .about-me-2 .bottom-section .collaboration-text h3 {
    font-size: 1.6rem;
  }

  .about-me-2 .bottom-section .action-buttons {
    flex-direction: column;
  }

  .about-me-2 .bottom-section .action-buttons .btn-custom {
    text-align: center;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Recent Posts Widget 2 Widget
--------------------------------------------------------------*/
.recent-posts-widget-2 .post-item {
  display: flex;
  margin-bottom: 15px;
}

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

.recent-posts-widget-2 .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget-2 .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  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 2 Widget
--------------------------------------------------------------*/
.tags-widget-2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.tags-widget-2 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-2 ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

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

/*--------------------------------------------------------------
# Search Widget Widget
--------------------------------------------------------------*/
.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);
}

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

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

/* 1. Les colonnes doivent étirer leurs cartes */
.properties .row > [class*="col-"] {
  display: flex;
}

/* 2. La carte prend toute la hauteur */
.property-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 3. Le contenu interne s'étire */
.property-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* 4. Le bouton reste collé en bas */
.property-actions {
  margin-top: auto;
}
/* Forcer la couleur du bouton CTA témoignages */
#testimonials-2 .btn.btn-primary {
  background-color: #AA1120 !important;
  border-color: #AA1120 !important;
  color: #ffffff !important;
}

#testimonials-2 .btn.btn-primary:hover,
#testimonials-2 .btn.btn-primary:focus {
  background-color: #8f0e1b !important;
  border-color: #8f0e1b !important;
  color: #ffffff !important;
}
/* TEST CONTACT – doit visuellement corriger la section */
.contact.section {
  padding: 80px 0 !important;
  background: #f6f7f8 !important;
}

.contact .info-box,
.contact .contact-form {
  background: #ffffff !important;
  padding: 30px !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.contact .info-item {
  margin-bottom: 20px;
}
/* =========================
   CONTACT – STYLE FINAL
   ========================= */

/* Titres */
.contact .section-title h2 {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.contact .section-title p {
  max-width: 620px;
  margin: 0 auto;
  color: #6c757d;
}

/* Info box (colonne gauche) */
.contact .info-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact .info-box p {
  color: #6c757d;
  line-height: 1.6;
}

/* Info items */
.contact .info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact .info-item .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(170, 17, 32, 0.1); /* #AA1120 soft */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AA1120;
  font-size: 20px;
  flex-shrink: 0;
}

.contact .info-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  margin: 0;
  font-size: 14px;
  color: #6c757d;
}

/* Contact form */
.contact .contact-form h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-form p {
  color: #6c757d;
  margin-bottom: 25px;
}

/* Inputs */
.contact .form-control {
  border-radius: 10px;
  padding: 12px 15px;
  border: 1px solid #dee2e6;
  font-size: 15px;
}

.contact .form-control:focus {
  border-color: #AA1120;
  box-shadow: 0 0 0 0.2rem rgba(170, 17, 32, 0.15);
}

/* Submit button */
.contact .php-email-form button {
  background: #AA1120;
  border: none;
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact .php-email-form button:hover {
  background: #8f0e1b;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(170, 17, 32, 0.25);
}

/* Messages */
.contact .loading,
.contact .sent-message,
.contact .error-message {
  margin-top: 15px;
  font-size: 14px;
}
/* =========================
   CARTES COURTIERS – IMAGE FULL
   ========================= */

#cards .category-card {
  position: relative;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #000;
}

/* Image = vrai background */
#cards .category-image {
  position: absolute;
  inset: 0;
}

#cards .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay lisible */
#cards .category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.65) 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

/* Contenu au-dessus */
#cards .category-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 32px;
  width: 100%;
}

#cards .category-content h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 12px;
}

#cards .category-content p {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Bouton */
#cards .btn-shop-now {
  background: #AA1120;
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
}

#cards .btn-shop-now:hover {
  background: #8f0e1b;
}

/* Hover premium */
#cards .category-card:hover img {
  transform: scale(1.05);
  transition: transform 0.6s ease;
}
/* =========================
   CONTENU TOUJOURS EN BAS
   ========================= */

#cards .category-card {
  display: flex;
  align-items: flex-end; /* clé : pousse le contenu en bas */
}

/* Contenu */
#cards .category-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* texte + bouton en bas */
  gap: 16px;
}

/* Optionnel : limiter la largeur du texte */
#cards .category-content p {
  max-width: 90%;
}

/* HERO – supprimer tout voile blanc */
#hero img {
  opacity: 1 !important;
  filter: none !important;
}

#hero::before,
#hero::after {
  display: none !important;
  background: none !important;
}
#hero .btn-get-started {
  background-color: #AA1120;
  border-color: #AA1120;
  color: #ffffff;
}

#hero .btn-get-started:hover {
  background-color: #8f0e1b;
  border-color: #8f0e1b;
}
/* HERO – typographie renforcée */
#hero h2 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

#hero p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* CTA rouge plus présent */
#hero .btn-get-started {
  font-size: 1.05rem;
  padding: 14px 34px;
  background-color: #AA1120;
  border-color: #AA1120;
  color: #ffffff;
  font-weight: 600;
}

#hero .btn-get-started:hover {
  background-color: #8f0e1b;
  border-color: #8f0e1b;
}
/* HEADER BACKGROUND */
#header {
  background-color: #0c2749;
}

/* LOGO / SITENAME */
#header .sitename {
  color: #ffffff;
}

/* NAV LINKS */
#navmenu ul li a {
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* ACTIVE + HOVER STATE */
#navmenu ul li a.active,
#navmenu ul li a:hover {
  color: #AA1120; /* rouge de la marque */
}

/* MOBILE ICON */
.mobile-nav-toggle {
  color: #ffffff;
}

/* CTA – Nous contacter (distinct) */
#header .btn-getstarted {
  background-color: #AA1120;
  color: #ffffff;
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#header .btn-getstarted:hover {
  background-color: #8f0e1b;
  color: #ffffff;
}
#header .logo img {
  height: 60px !important;
  max-height: none !important;
  width: auto !important;
}

.hero-content-box {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.08)
  );
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 20px;
  padding: 50px 48px;
  max-width: 560px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Text */
.hero-content-box h2 {
  color: #ffffff;
}

.hero-content-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

/* CTA */
.hero-content-box .btn-get-started {
  background-color: #AA1120;
  color: #ffffff;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hero-content-box .btn-get-started:hover {
  background-color: #8f0e1b;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(170, 17, 32, 0.35);
}

@media (max-width: 991.98px) {
  .btn-getstarted {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .navmenu ul li a {
    color: #000 !important;
  }

  .navmenu ul li a:hover,
  .navmenu ul li a.active {
    color: #AA1120 !important; /* ton rouge */
  }
}
#contact,
#contact .container,
#contact::before {
  background-color: #f7f5ee !important;
}
#contact.section {
  background-color: #f7f5ee !important;
}
#contact {
  --background-color: #f7f5ee;
}
#footer.footer.dark-background {
  background-color: #0c2749 !important;
}
/* Remove dark overlay on category cards */
.category-card .category-image::before,
.category-card .category-image::after {
  display: none !important;
}
.profile-contact-simple {
  margin-top: 12px;
}

.profile-contact-simple p {
  margin: 6px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-contact-simple i {
  color: #AA1120;
  font-size: 1rem;
}

.profile-contact-simple a {
  color: #0c2749;
  font-weight: 600;
  text-decoration: none;
}

.profile-contact-simple a:hover {
  text-decoration: underline;
}
.avatar-initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #00a878; /* adapte si besoin */
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px; /* 👈 espace réel entre le cercle et le texte */
}

.avatar-initial {
  width: 48px;
  height: 48px;
  min-width: 48px; /* empêche l’écrasement */
  border-radius: 50%;
  background-color: #AA1120; /* couleur demandée */
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.testimonial-cta {
  background-color: #AA1120;
  color: #ffffff;
  border: none;
}

.testimonial-cta:hover {
  background-color: #8f0e1a; /* légèrement plus foncé */
  color: #ffffff;
}
