@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Noto Serif TC",  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: #be8d3a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #002039; /* 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: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #bf9000; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #002039; /* 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: #f7fbfe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1d222d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #31394c;
  --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: 12px 0;
}

.header .logo {
  display: inline-block;
  white-space: nowrap;
}

.header .logo img {
  max-height: 62px;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
}

.header .logo .sitename {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 30px;
  margin: 0px;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.header .logo .sitename .llp {
  color: var(--accent-color);
  font-size: 40%;
  /* half the size */
  font-weight: 500;
  vertical-align: bottom;
  margin-left: 0px;
  margin-right: 6px;
  position: relative;
  top: 6px;
}

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

/* ===== RESPONSIVE FIX ===== */
/* Between 992px and 1200px hide the logo to prevent overflow */
@media screen and (max-width: 1200px) and (min-width: 992px) {
  .header .logo {
    display: none;
  }
}

/* Optional – scale logo smaller on tablets */
@media screen and (max-width: 991px) {
  .header .logo img {
    max-height: 48px;
  }

  .header .logo .sitename {
    font-size: 25px;
  }

  .header .logo .sitename .llp {
    font-size: 45%;
    top: 4px;
  }
}

@media screen and (max-width: 768px) {
  .header .logo img {
    max-height: 42px;
  }

  .header .logo .sitename {
    font-size: 23px;
  }

  .header .logo .sitename .llp {
    font-size: 50%;
    top: 3px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    /* Hover underline for regular links */
    /* ACTIVE PAGE — Elegant Gold Frame */
    /* CONTACT BUTTON — Premium Gold */
    /* Dropdown menus */
  }

  .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: 10px 15px;
    margin-left: 2px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 6px;
  }

  .navmenu a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 15%;
    width: 70%;
    height: 2px;
    background-color: transparent;
    transition: all 0.3s ease;
    transform: scaleX(0);
    transform-origin: center;
  }

  .navmenu li:hover>a::after,
  .navmenu a:focus::after {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    transform: scaleX(1);
  }

  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
    /* Gold text */
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border: 1.5px solid var(--accent-color);
    border-radius: 6px;
    box-shadow: 0 0 6px color-mix(in srgb, var(--accent-color), transparent 75%);
    padding: 10px 16px;
    transition: all 0.3s ease;
  }

  .navmenu .active:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--contrast-color);
    /* White text on hover */
    box-shadow: 0 0 10px color-mix(in srgb, var(--accent-color), transparent 60%);
  }

  .navmenu li:last-child a {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    margin-left: 10px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 40%);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .navmenu li:last-child a:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 15%);
    color: var(--contrast-color);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.35);
    transform: translateY(-1px);
  }

  .navmenu li:last-child a.active,
  .navmenu li:last-child a:focus {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.25);
    transform: none;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 2px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    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;
    margin: 0;
    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(--contrast-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  }

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

/* Mobile Navigation */
@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;
  }
}

/* Between 1200px and 1399px — tighten navbar spacing */
@media (max-width: 1399px) and (min-width: 1200px) {

  /* Hide only logo image */
  .header .logo img {
    display: none;
  }

  /* Reduce horizontal gaps in the nav menu */
  .navmenu a,
  .navmenu a:focus {
    padding: 8px 10px;
    /* narrower buttons */
    margin-left: 1px;
    font-size: 15px;
    /* slightly smaller font */
  }

  /* Compact the Contact button */
  .navmenu li:last-child a {
    padding: 8px 14px;
    margin-left: 6px;
    font-size: 15px;
  }

  /* Optional – slightly smaller underline width */
  .navmenu a::after {
    left: 20%;
    width: 60%;
  }
}

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

.footer .footer-top {
  padding-top: 50px;
}

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

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

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

.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 50%);
  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 20%);
  display: inline-block;
  line-height: 1;
}

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

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

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

.footer .copyright .desigedby {
  font-size: 10px;
}

.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 .title-text {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
}

.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: 84px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  z-index: 2;
}

.hero .hero-content {
  position: absolute;
  left: 0;
  top: 50%;
  width: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 3;
  color: #fff;
}

.hero p {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero .btn-get-started {
  background-color: #d4af37;
  color: #0a1a2f;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 44px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.hero .btn-get-started:hover {
  background-color: #c19b2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

/* 1049px → 941px */
@media (max-width: 1049px) and (min-width: 941px) {
  .hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
  }

  .hero::before {
    background: none !important;
  }

  .hero img {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: bottom center;
    z-index: 1;
  }

  .hero .hero-content {
    position: absolute;
    top: 15%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
    align-items: center;
    justify-content: center;
    z-index: 3;
  }

  .hero p {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .hero .btn-get-started {
    font-size: 14px;
    padding: 12px 38px;
  }
}

/* 940px and below */
@media (max-width: 940px) {
  .hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0vh;
    overflow: hidden;
    background: none !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
  }

  .hero::before {
    display: none !important;
  }

  .hero img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: bottom center;
    position: relative;
    top: -10%;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .hero .hero-content {
    position: absolute;
    top: 15%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
    align-items: center;
    justify-content: center;
    z-index: 3;
  }

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

  .hero .btn-get-started {
    font-size: 14px;
    padding: 12px 36px;
  }
}

/* Ultra-small devices (below 320px) */
@media (max-width: 319px) {
  .hero .hero-content {
    top: 10%;
    padding: 0 10px;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.3;
    white-space: normal;
    /* Allows text to wrap cleanly */
  }

  .hero .btn-get-started {
    display: none;
    /* Hide button on very narrow screens */
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding-top: 59px;
  padding-bottom: 60px;
}

.services .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.services .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.services .why-box p {
  margin-bottom: 30px;
}

.services .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.services .why-box .more-btn i {
  font-size: 14px;
}

.services .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.services .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 10px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .icon-box i {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 32px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.services .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about .about-image-wrapper {
  position: relative;
  margin-bottom: 3rem;
}

.about .about-image-wrapper img {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about .about-image-wrapper .mission-card {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  background-color: var(--accent-color);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .about-image-wrapper .mission-card .mission-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .about-image-wrapper .mission-card .mission-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.about .about-image-wrapper .mission-card .mission-content h4 {
  font-size: 1.25rem;
  color: var(--contrast-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about .about-image-wrapper .mission-card .mission-content p {
  font-size: 0.95rem;
  color: var(--contrast-color);
  margin-bottom: 0;
}

.about .about-content .tag-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about .about-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .about .about-content h2 {
    font-size: 1.75rem;
  }
}

.about .about-content .about-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.about .about-content .about-info p:last-child {
  margin-bottom: 0;
}

.about .about-content .values-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
}

.about .about-content .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about .about-content .values-list .value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: color-mix(in srgb, var(--background-color), var(--default-color) 5%);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about .about-content .values-list .value-item:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.about .about-content .values-list .value-item .value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about .about-content .values-list .value-item .value-icon i {
  color: var(--contrast-color);
  font-size: 14px;
}

.about .about-content .values-list .value-item .value-text {
  font-weight: 500;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .about .about-content {
    margin-top: 3rem;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
}

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--heading-color), transparent 70%);
  border-color: var(--heading-color);
  /* ✅ Gold frame */
}

.team .team-member:hover img {
  transform: scale(1.1);
}

.team .team-member:hover .member-name {
  color: var(--heading-color);
  /* ✅ Gold name on hover */
}

.team .member-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

.team .member-info {
  padding: 25px 20px 30px;
  text-align: center;
  position: relative;
}

.team .member-info .member-name {
  font-family: var(--heading-font);
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-color);
  transition: color 0.3s ease;
  margin-bottom: 6px;
}

.team .member-info .member-position {
  font-family: var(--heading-font);
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team .member-info .member-description {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
}

.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=tel]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form input[type=tel]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

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

/*--------------------------------------------------------------
# Service Details 4 Section
--------------------------------------------------------------*/
.service-details-4 .service-content .content-header .service-meta .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%) !important;
  color: var(--accent-color) !important;
  border-radius: 24px;
  font-weight: 500;
  font-size: 0.85rem;
}

.service-details-4 .service-content .content-header .service-meta .divider {
  width: 2px;
  height: 20px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 1px;
}

.service-details-4 .service-content .content-header .service-title {
  color: var(--heading-color);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service-details-4 .service-content .content-header .service-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 90%;
}

.service-details-4 .service-content .visual-showcase .image-container {
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.service-details-4 .service-content .visual-showcase .image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-details-4 .service-content .visual-showcase .image-container .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, black, transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-details-4 .service-content .visual-showcase .image-container .play-button {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 2rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.service-details-4 .service-content .visual-showcase .image-container:hover .image-overlay {
  opacity: 1;
}

.service-details-4 .service-content .visual-showcase .image-container:hover .play-button {
  transform: scale(1);
}

.service-details-4 .service-content .visual-showcase .image-container:hover img {
  transform: scale(1.05);
}

.service-details-4 .service-content .section-heading {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 600;
  position: relative;
}

.service-details-4 .service-content .section-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.service-details-4 .service-content .process-steps .step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  margin-left: 20px;
  padding-left: 2rem;
  position: relative;
}

.service-details-4 .service-content .process-steps .step-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 30px;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}

.service-details-4 .service-content .process-steps .step-item:last-child {
  border-left-color: transparent;
}

.service-details-4 .service-content .process-steps .step-item .step-number {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), blue 20%));
  color: var(--contrast-color);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details-4 .service-content .process-steps .step-item .step-content .step-title {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-details-4 .service-content .process-steps .step-item .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin: 0;
}

.service-details-4 .service-content .features-showcase .nav-pills {
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  border-radius: 50px;
  padding: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details-4 .service-content .features-showcase .nav-pills .nav-link {
  border-radius: 50px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 12px 24px;
  font-weight: 500;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
}

.service-details-4 .service-content .features-showcase .nav-pills .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details-4 .service-content .features-showcase .feature-card {
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: all 0.3s ease;
}

.service-details-4 .service-content .features-showcase .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: var(--accent-color);
}

.service-details-4 .service-content .features-showcase .feature-card .feature-icon {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-details-4 .service-content .features-showcase .feature-card h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-details-4 .service-content .features-showcase .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

.service-details-4 .service-content .client-success .success-card {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 97%));
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details-4 .service-content .client-success .success-card .client-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details-4 .service-content .client-success .success-card .client-name {
  color: var(--heading-color);
  font-weight: 600;
  margin: 0;
}

.service-details-4 .service-content .client-success .success-card .client-role {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.service-details-4 .service-content .client-success .success-card .rating {
  color: #fbbf24;
  font-size: 1.1rem;
}

.service-details-4 .service-content .client-success .success-card .success-quote {
  color: var(--default-color);
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  position: relative;
}

.service-details-4 .service-content .client-success .success-card .success-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  position: absolute;
  top: -1rem;
  left: -1rem;
  opacity: 0.3;
}

.service-details-4 .service-content .client-success .success-card .success-metrics .metric-value {
  color: var(--accent-color);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.service-details-4 .service-content .client-success .success-card .success-metrics .metric-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details-4 .service-content .workshop-separator {
  text-align: center;
  margin-bottom: 25Px;
  position: relative;
  /* Light wide line */
  /* Accent short line */
}

.service-details-4 .service-content .workshop-separator::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.service-details-4 .service-content .workshop-separator::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.service-details-4 .workshop {
  margin-bottom: 0rem;
}

.service-details-4 .workshop .image-container {
  position: relative;
}

.service-details-4 .workshop .image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.service-details-4 .workshop .image-container .capacity-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 2;
  line-height: 1;
}

.service-details-4 .workshop h2 {
  color: var(--acccent-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.service-details-4 .workshop h3 {
  color: var(--acccent-color);
  font-size: 1.4rem;
  font-weight: 50;
  margin-bottom: 0.4rem;
}

.service-details-4 .workshop .workshop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading-color);
  /* default header color */
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.2rem;
}

.service-details-4 .workshop .event-link:hover {
  color: var(--accent-color);
}

.service-details-4 .workshop .event-link i {
  font-size: 1.2rem;
  line-height: 1;
}

.service-details-4 .workshop .workshop-link-detail {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 0.9rem;
  line-height: 1;
  max-width: 90%;
  margin-bottom: 0.6rem;
}

.service-details-4 .workshop .detail {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 1rem;
}

.service-details-4 .sidebar {
  position: sticky;
  top: 100px;
  /* space from top of viewport */
  align-self: flex-start;
  /*
  START
  */
  /* Title and Subtitle */
  /* Input Wrapper with Icon */
  /* Checkbox line */
  /* Button */
  /* Feedback messages */
  /* Prevent browser autofill from turning fields white */
  /* Responsive tweaks */
  /*
  END
  */
}

.service-details-4 .sidebar .contact-card {
  background: var(--accent-color);
  /* Navy blue background */
  border-radius: 16px;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: var(--contrast-color);
  padding: 2rem;
}

.service-details-4 .sidebar .contact-card .card-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.service-details-4 .sidebar .contact-card .card-header .card-title {
  color: var(--gold-color, #d4af37);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.service-details-4 .sidebar .contact-card .card-header .card-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.5;
}

.service-details-4 .sidebar .contact-form .input-wrapper {
  position: relative;
}

.service-details-4 .sidebar .contact-form .input-wrapper .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-color, #d4af37);
  font-size: 1.1rem;
  z-index: 2;
}

.service-details-4 .sidebar .contact-form input,
.service-details-4 .sidebar .contact-form select,
.service-details-4 .sidebar .contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  padding-left: 2.75rem;
  /* Make room for icon */
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.service-details-4 .sidebar .contact-form input::placeholder,
.service-details-4 .sidebar .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.service-details-4 .sidebar .contact-form input:focus,
.service-details-4 .sidebar .contact-form select:focus,
.service-details-4 .sidebar .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-color, #d4af37);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.service-details-4 .sidebar .contact-form .checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-details-4 .sidebar .contact-form .checkbox-wrapper input[type=checkbox] {
  accent-color: var(--gold-color, #d4af37);
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
}

.service-details-4 .sidebar .contact-form .submit-btn {
  background: var(--gold-color, #d4af37);
  color: var(--accent-color);
  border: none;
  border-radius: 8px;
  padding: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.service-details-4 .sidebar .contact-form .submit-btn:hover {
  background: color-mix(in srgb, var(--gold-color), white 15%);
  color: #fff;
  /* fix: keep readable on hover */
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.4);
}

.service-details-4 .sidebar .contact-form .submit-btn i {
  transition: transform 0.3s ease;
}

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

.service-details-4 .sidebar .contact-form .sent-message,
.service-details-4 .sidebar .contact-form .error-message,
.service-details-4 .sidebar .contact-form .loading {
  background: rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--gold-color);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  color: #fff;
  margin-top: 1rem;
  display: none;
}

.service-details-4 .sidebar .contact-form input:-webkit-autofill,
.service-details-4 .sidebar .contact-form input:-webkit-autofill:hover,
.service-details-4 .sidebar .contact-form input:-webkit-autofill:focus,
.service-details-4 .sidebar .contact-form textarea:-webkit-autofill,
.service-details-4 .sidebar .contact-form select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff !important;
  transition: background-color 5000s ease-in-out 0s;
}

@media (max-width: 768px) {
  .service-details-4 .sidebar .contact-card {
    padding: 1.25rem;
  }
}

.service-details-4 .sidebar .overview-list .overview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.service-details-4 .sidebar .overview-list .overview-item:last-child {
  border-bottom: none;
}

.service-details-4 .sidebar .overview-list .overview-item .item-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.service-details-4 .sidebar .overview-list .overview-item .item-label i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.service-details-4 .sidebar .overview-list .overview-item .item-label span {
  font-weight: 500;
}

.service-details-4 .sidebar .overview-list .overview-item .item-value {
  color: var(--heading-color);
  font-weight: 600;
}

.service-details-4 .action-section .action-buttons .action-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-details-4 .action-section .action-buttons .action-btn.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.service-details-4 .action-section .action-buttons .action-btn.primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.service-details-4 .action-section .action-buttons .action-btn.secondary {
  background: var(--surface-color);
  color: var(--default-color);
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details-4 .action-section .action-buttons .action-btn.secondary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.service-details-4 .action-section .action-buttons .action-btn i {
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .service-details-4 .sidebar {
    margin-bottom: 3rem;
  }
}

@media (max-width: 992px) {
  .service-details-4 .row {
    display: flex;
    flex-direction: column-reverse;
  }
}

/*--------------------------------------------------------------
# Omid J Afati Section
--------------------------------------------------------------*/
.omid-j-afati .agent-photo-wrapper {
  position: relative;
}

.omid-j-afati .agent-photo-wrapper .agent-photo {
  border-radius: 15px;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.omid-j-afati .agent-photo-wrapper .agent-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.omid-j-afati .agent-photo-wrapper .agent-badge i {
  font-size: 12px;
}

.omid-j-afati .agent-info .agent-name {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .omid-j-afati .agent-info .agent-name {
    font-size: 2.5rem;
  }
}

.omid-j-afati .agent-info .agent-title {
  font-size: 1.25rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.omid-j-afati .agent-info .agent-tagline {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.omid-j-afati .contact-info-hero {
  margin-bottom: 2rem;
}

.omid-j-afati .contact-info-hero .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
}

.omid-j-afati .contact-info-hero .contact-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  width: 20px;
}

.omid-j-afati .contact-info-hero .contact-item span {
  font-weight: 500;
}

.omid-j-afati .hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.omid-j-afati .hero-actions .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.omid-j-afati .hero-actions .btn.btn-primary {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.omid-j-afati .hero-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.omid-j-afati .hero-actions .btn.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.omid-j-afati .hero-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .omid-j-afati .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

.omid-j-afati .stats-section {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 3rem 2rem;
  margin: 4rem 0;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.omid-j-afati .stats-section .stat-item {
  text-align: center;
}

.omid-j-afati .stats-section .stat-item .stat-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.omid-j-afati .stats-section .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.omid-j-afati .stats-section .stat-item .stat-label {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.omid-j-afati .stats-section .stat-item:hover .stat-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

.omid-j-afati .sidebar-info .contact-card,
.omid-j-afati .sidebar-info .specialties-card,
.omid-j-afati .sidebar-info .certifications-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.omid-j-afati .sidebar-info .contact-card h4,
.omid-j-afati .sidebar-info .specialties-card h4,
.omid-j-afati .sidebar-info .certifications-card h4 {
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.omid-j-afati .sidebar-info .contact-details .contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.omid-j-afati .sidebar-info .contact-details .contact-detail i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 3px;
  width: 20px;
}

.omid-j-afati .sidebar-info .contact-details .contact-detail strong {
  display: block;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.omid-j-afati .sidebar-info .contact-details .contact-detail p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
}

.omid-j-afati .sidebar-info .social-links {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}

.omid-j-afati .sidebar-info .social-links a {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.omid-j-afati .sidebar-info .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.omid-j-afati .sidebar-info .specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.omid-j-afati .sidebar-info .specialty-tags .specialty-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.omid-j-afati .sidebar-info .cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.omid-j-afati .sidebar-info .cert-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.omid-j-afati .sidebar-info .cert-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.omid-j-afati .bio-content h3,
.omid-j-afati .bio-content h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.omid-j-afati .bio-content h3 {
  font-size: 2rem;
  font-weight: 600;
}

.omid-j-afati .bio-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
}

.omid-j-afati .bio-content p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.omid-j-afati .bio-content .achievements ul {
  list-style: none;
  padding: 0;
}

.omid-j-afati .bio-content .achievements ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.omid-j-afati .bio-content .achievements ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.omid-j-afati .testimonials-section .section-heading {
  font-size: 2.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.omid-j-afati .testimonials-section .swiper-wrapper {
  height: auto !important;
}

.omid-j-afati .testimonials-section .testimonial-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.omid-j-afati .testimonials-section .testimonial-card .testimonial-content {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.omid-j-afati .testimonials-section .testimonial-card .testimonial-content p {
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  position: relative;
}

.omid-j-afati .testimonials-section .testimonial-card .testimonial-content p:before {
  content: "";
  font-size: 3rem;
  color: var(--accent-color);
  position: absolute;
  top: -10px;
  left: -15px;
  font-family: serif;
}

.omid-j-afati .testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.omid-j-afati .testimonials-section .testimonial-card .testimonial-author .author-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.omid-j-afati .testimonials-section .testimonial-card .testimonial-author .author-info h5 {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.omid-j-afati .testimonials-section .testimonial-card .testimonial-author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.omid-j-afati .testimonials-section .swiper-pagination {
  margin-top: 2rem;
}

.omid-j-afati .testimonials-section .swiper-pagination .swiper-pagination-bullet {
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.omid-j-afati .testimonials-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.omid-j-afati .contact-form-section {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 0rem;
  margin-top: 0rem;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 88%);
}

@media (max-width: 768px) {
  .omid-j-afati .contact-form-section {
    padding: 2rem 1.5rem;
  }
}

.omid-j-afati .contact-form-section h3 {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 2.2rem;
}

.omid-j-afati .contact-form-section .php-email-form .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.omid-j-afati .contact-form-section .php-email-form input[type=text],
.omid-j-afati .contact-form-section .php-email-form input[type=email],
.omid-j-afati .contact-form-section .php-email-form input[type=tel],
.omid-j-afati .contact-form-section .php-email-form select,
.omid-j-afati .contact-form-section .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 15px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.omid-j-afati .contact-form-section .php-email-form input[type=text]:focus,
.omid-j-afati .contact-form-section .php-email-form input[type=email]:focus,
.omid-j-afati .contact-form-section .php-email-form input[type=tel]:focus,
.omid-j-afati .contact-form-section .php-email-form select:focus,
.omid-j-afati .contact-form-section .php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.omid-j-afati .contact-form-section .php-email-form input[type=text]::placeholder,
.omid-j-afati .contact-form-section .php-email-form input[type=email]::placeholder,
.omid-j-afati .contact-form-section .php-email-form input[type=tel]::placeholder,
.omid-j-afati .contact-form-section .php-email-form select::placeholder,
.omid-j-afati .contact-form-section .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.omid-j-afati .contact-form-section .php-email-form .btn {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.omid-j-afati .contact-form-section .php-email-form .btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Evan C Page Section
--------------------------------------------------------------*/
.evan-c-page {
  padding-top: 60px;
  padding-bottom: 60px;
}

.evan-c-page .agent-photo-wrapper {
  position: relative;
}

.evan-c-page .agent-photo-wrapper .agent-photo {
  border-radius: 15px;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.evan-c-page .agent-photo-wrapper .agent-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.evan-c-page .agent-photo-wrapper .agent-badge i {
  font-size: 12px;
}

.evan-c-page .agent-info .agent-name {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .evan-c-page .agent-info .agent-name {
    font-size: 2.5rem;
  }
}

.evan-c-page .agent-info .agent-title {
  font-size: 1.25rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.evan-c-page .agent-info .agent-tagline {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.evan-c-page .contact-info-hero {
  margin-bottom: 2rem;
}

.evan-c-page .contact-info-hero .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
}

.evan-c-page .contact-info-hero .contact-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  width: 20px;
}

.evan-c-page .contact-info-hero .contact-item span {
  font-weight: 500;
}

.evan-c-page .hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.evan-c-page .hero-actions .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.evan-c-page .hero-actions .btn.btn-primary {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.evan-c-page .hero-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.evan-c-page .hero-actions .btn.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.evan-c-page .hero-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .evan-c-page .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

.evan-c-page .stats-section {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 3rem 2rem;
  margin: 4rem 0;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.evan-c-page .stats-section .stat-item {
  text-align: center;
}

.evan-c-page .stats-section .stat-item .stat-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.evan-c-page .stats-section .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.evan-c-page .stats-section .stat-item .stat-label {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.evan-c-page .stats-section .stat-item:hover .stat-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

.evan-c-page .sidebar-info .contact-card,
.evan-c-page .sidebar-info .specialties-card,
.evan-c-page .sidebar-info .certifications-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.evan-c-page .sidebar-info .contact-card h4,
.evan-c-page .sidebar-info .specialties-card h4,
.evan-c-page .sidebar-info .certifications-card h4 {
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.evan-c-page .sidebar-info .contact-card .cert-images,
.evan-c-page .sidebar-info .specialties-card .cert-images,
.evan-c-page .sidebar-info .certifications-card .cert-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns */
  gap: 15px;
  /* spacing between images */
  justify-items: center;
  /* center each image in its column */
  margin-top: 3rem;
}

.evan-c-page .sidebar-info .contact-card .cert-images img,
.evan-c-page .sidebar-info .specialties-card .cert-images img,
.evan-c-page .sidebar-info .certifications-card .cert-images img {
  max-width: 90%;
  /* each image fills 90% of its grid cell */
  height: auto;
}

.evan-c-page .sidebar-info .contact-details .contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.evan-c-page .sidebar-info .contact-details .contact-detail i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 3px;
  width: 20px;
}

.evan-c-page .sidebar-info .contact-details .contact-detail strong {
  display: block;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.evan-c-page .sidebar-info .contact-details .contact-detail p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
}

.evan-c-page .sidebar-info .social-links {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}

.evan-c-page .sidebar-info .social-links a {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.evan-c-page .sidebar-info .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.evan-c-page .sidebar-info .specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.evan-c-page .sidebar-info .specialty-tags .specialty-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.evan-c-page .sidebar-info .cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.evan-c-page .sidebar-info .cert-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.evan-c-page .sidebar-info .cert-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.evan-c-page .bio-content h3,
.evan-c-page .bio-content h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.evan-c-page .bio-content h3 {
  font-size: 2rem;
  font-weight: 600;
}

.evan-c-page .bio-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
}

.evan-c-page .bio-content p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.evan-c-page .bio-content .achievements ul {
  list-style: none;
  padding: 0;
}

.evan-c-page .bio-content .achievements ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.evan-c-page .bio-content .achievements ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.evan-c-page .testimonials-section .section-heading {
  font-size: 2.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.evan-c-page .testimonials-section .swiper-wrapper {
  height: auto !important;
}

.evan-c-page .testimonials-section .testimonial-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.evan-c-page .testimonials-section .testimonial-card .testimonial-content {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.evan-c-page .testimonials-section .testimonial-card .testimonial-content p {
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  position: relative;
}

.evan-c-page .testimonials-section .testimonial-card .testimonial-content p:before {
  content: "";
  font-size: 3rem;
  color: var(--accent-color);
  position: absolute;
  top: -10px;
  left: -15px;
  font-family: serif;
}

.evan-c-page .testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.evan-c-page .testimonials-section .testimonial-card .testimonial-author .author-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.evan-c-page .testimonials-section .testimonial-card .testimonial-author .author-info h5 {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.evan-c-page .testimonials-section .testimonial-card .testimonial-author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.evan-c-page .testimonials-section .swiper-pagination {
  margin-top: 2rem;
}

.evan-c-page .testimonials-section .swiper-pagination .swiper-pagination-bullet {
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.evan-c-page .testimonials-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.evan-c-page .contact-form-section {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 0rem;
  margin-top: 0rem;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 88%);
}

@media (max-width: 768px) {
  .evan-c-page .contact-form-section {
    padding: 2rem 1.5rem;
  }
}

.evan-c-page .contact-form-section h3 {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 2.2rem;
}

.evan-c-page .contact-form-section .php-email-form .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.evan-c-page .contact-form-section .php-email-form input[type=text],
.evan-c-page .contact-form-section .php-email-form input[type=email],
.evan-c-page .contact-form-section .php-email-form input[type=tel],
.evan-c-page .contact-form-section .php-email-form select,
.evan-c-page .contact-form-section .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 15px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.evan-c-page .contact-form-section .php-email-form input[type=text]:focus,
.evan-c-page .contact-form-section .php-email-form input[type=email]:focus,
.evan-c-page .contact-form-section .php-email-form input[type=tel]:focus,
.evan-c-page .contact-form-section .php-email-form select:focus,
.evan-c-page .contact-form-section .php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.evan-c-page .contact-form-section .php-email-form input[type=text]::placeholder,
.evan-c-page .contact-form-section .php-email-form input[type=email]::placeholder,
.evan-c-page .contact-form-section .php-email-form input[type=tel]::placeholder,
.evan-c-page .contact-form-section .php-email-form select::placeholder,
.evan-c-page .contact-form-section .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.evan-c-page .contact-form-section .php-email-form .btn {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.evan-c-page .contact-form-section .php-email-form .btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Probate Section
--------------------------------------------------------------*/
.probate {
  padding-top: 60px;
  --card-radius: 14px;
  --card-border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  --card-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  --hover-shadow: 0 16px 36px color-mix(in srgb, var(--default-color), transparent 88%);
  --featured-bg: color-mix(in srgb, var(--accent-color), var(--surface-color) 90%);
  --icon-bg: color-mix(in srgb, var(--accent-color), transparent 88%);
  padding-bottom: 60px;
}

.probate .service-grid .featured-card,
.probate .service-grid .service-card {
  background: var(--surface-color);
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.probate .service-grid .featured-card .icon-wrap,
.probate .service-grid .service-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  color: var(--accent-color);
  font-size: 22px;
  flex: 0 0 auto;
}

.probate .service-grid .featured-card .content .card-title,
.probate .service-grid .service-card .content .card-title {
  font-size: 1.125rem;
  margin: 14px 0 8px;
}

.probate .service-grid .featured-card .content .card-desc,
.probate .service-grid .service-card .content .card-desc {
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.probate .service-grid .featured-card:hover,
.probate .service-grid .service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.probate .service-grid .featured-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 28px;
  position: relative;
  background: linear-gradient(0deg, var(--featured-bg), var(--featured-bg));
}

.probate .service-grid .featured-card .badge-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.probate .service-grid .featured-card .content .card-title {
  font-size: 1.25rem;
  margin-top: 0;
}

.probate .service-grid .featured-card .content .checks {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
}

.probate .service-grid .featured-card .content .checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.probate .service-grid .featured-card .content .checks li i {
  color: var(--accent-color);
  margin-top: 2px;
}

.probate .service-grid .featured-card .content .cta-wrap .btn-cta {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.probate .service-grid .featured-card .content .cta-wrap .btn-cta:hover {
  background: color-mix(in srgb, var(--accent-color), white 12%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.probate .service-grid .featured-card .content .cta-wrap .link-plain {
  color: var(--heading-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.probate .service-grid .featured-card .content .cta-wrap .link-plain i {
  transition: transform 0.3s ease;
}

.probate .service-grid .featured-card .content .cta-wrap .link-plain:hover i {
  transform: translateX(2px);
}

@media (max-width: 576px) {
  .probate .service-grid .featured-card {
    grid-template-columns: 1fr;
  }

  .probate .service-grid .featured-card .icon-wrap {
    margin-bottom: 6px;
  }
}

.probate .service-grid .service-card {
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
}

.probate .service-grid .service-card .link-plain {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.probate .service-grid .service-card .link-plain i {
  transition: transform 0.3s ease;
}

.probate .service-grid .service-card .link-plain:hover i {
  transform: translateX(2px);
}

/*--------------------------------------------------------------
# Estate Planning Section
--------------------------------------------------------------*/
.estate-planning {
  padding-top: 60px;
  --card-radius: 14px;
  --card-border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  --card-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  --hover-shadow: 0 16px 36px color-mix(in srgb, var(--default-color), transparent 88%);
  --featured-bg: color-mix(in srgb, var(--accent-color), var(--surface-color) 90%);
  --icon-bg: color-mix(in srgb, var(--accent-color), transparent 88%);
  padding-bottom: 60px;
}

.estate-planning .service-grid .featured-card,
.estate-planning .service-grid .service-card {
  background: var(--surface-color);
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.estate-planning .service-grid .featured-card .icon-wrap,
.estate-planning .service-grid .service-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  color: var(--accent-color);
  font-size: 22px;
  flex: 0 0 auto;
}

.estate-planning .service-grid .featured-card .content .card-title,
.estate-planning .service-grid .service-card .content .card-title {
  font-size: 1.125rem;
  margin: 14px 0 8px;
}

.estate-planning .service-grid .featured-card .content .card-desc,
.estate-planning .service-grid .service-card .content .card-desc {
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.estate-planning .service-grid .featured-card:hover,
.estate-planning .service-grid .service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.estate-planning .service-grid .featured-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 28px;
  position: relative;
  background: linear-gradient(0deg, var(--featured-bg), var(--featured-bg));
}

.estate-planning .service-grid .featured-card .badge-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.estate-planning .service-grid .featured-card .content .card-title {
  font-size: 1.25rem;
  margin-top: 0;
}

.estate-planning .service-grid .featured-card .content .checks {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
}

.estate-planning .service-grid .featured-card .content .checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.estate-planning .service-grid .featured-card .content .checks li i {
  color: var(--accent-color);
  margin-top: 2px;
}

.estate-planning .service-grid .featured-card .content .cta-wrap .btn-cta {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.estate-planning .service-grid .featured-card .content .cta-wrap .btn-cta:hover {
  background: color-mix(in srgb, var(--accent-color), white 12%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.estate-planning .service-grid .featured-card .content .cta-wrap .link-plain {
  color: var(--heading-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.estate-planning .service-grid .featured-card .content .cta-wrap .link-plain i {
  transition: transform 0.3s ease;
}

.estate-planning .service-grid .featured-card .content .cta-wrap .link-plain:hover i {
  transform: translateX(2px);
}

@media (max-width: 576px) {
  .estate-planning .service-grid .featured-card {
    grid-template-columns: 1fr;
  }

  .estate-planning .service-grid .featured-card .icon-wrap {
    margin-bottom: 6px;
  }
}

.estate-planning .service-grid .service-card {
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
}

.estate-planning .service-grid .service-card .link-plain {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.estate-planning .service-grid .service-card .link-plain i {
  transition: transform 0.3s ease;
}

.estate-planning .service-grid .service-card .link-plain:hover i {
  transform: translateX(2px);
}

/*--------------------------------------------------------------
# Trust Administration Section
--------------------------------------------------------------*/
.trust-administration {
  padding-top: 60px;
  --card-radius: 14px;
  --card-border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  --card-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  --hover-shadow: 0 16px 36px color-mix(in srgb, var(--default-color), transparent 88%);
  --featured-bg: color-mix(in srgb, var(--accent-color), var(--surface-color) 90%);
  --icon-bg: color-mix(in srgb, var(--accent-color), transparent 88%);
  padding-bottom: 60px;
}

.trust-administration .service-grid .featured-card,
.trust-administration .service-grid .service-card {
  background: var(--surface-color);
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.trust-administration .service-grid .featured-card .icon-wrap,
.trust-administration .service-grid .service-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  color: var(--accent-color);
  font-size: 22px;
  flex: 0 0 auto;
}

.trust-administration .service-grid .featured-card .content .card-title,
.trust-administration .service-grid .service-card .content .card-title {
  font-size: 1.125rem;
  margin: 14px 0 8px;
}

.trust-administration .service-grid .featured-card .content .card-desc,
.trust-administration .service-grid .service-card .content .card-desc {
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.trust-administration .service-grid .featured-card:hover,
.trust-administration .service-grid .service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.trust-administration .service-grid .featured-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 28px;
  position: relative;
  background: linear-gradient(0deg, var(--featured-bg), var(--featured-bg));
}

.trust-administration .service-grid .featured-card .badge-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.trust-administration .service-grid .featured-card .content .card-title {
  font-size: 1.25rem;
  margin-top: 0;
}

.trust-administration .service-grid .featured-card .content .checks {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
}

.trust-administration .service-grid .featured-card .content .checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.trust-administration .service-grid .featured-card .content .checks li i {
  color: var(--accent-color);
  margin-top: 2px;
}

.trust-administration .service-grid .featured-card .content .cta-wrap .btn-cta {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.trust-administration .service-grid .featured-card .content .cta-wrap .btn-cta:hover {
  background: color-mix(in srgb, var(--accent-color), white 12%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.trust-administration .service-grid .featured-card .content .cta-wrap .link-plain {
  color: var(--heading-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.trust-administration .service-grid .featured-card .content .cta-wrap .link-plain i {
  transition: transform 0.3s ease;
}

.trust-administration .service-grid .featured-card .content .cta-wrap .link-plain:hover i {
  transform: translateX(2px);
}

@media (max-width: 576px) {
  .trust-administration .service-grid .featured-card {
    grid-template-columns: 1fr;
  }

  .trust-administration .service-grid .featured-card .icon-wrap {
    margin-bottom: 6px;
  }
}

.trust-administration .service-grid .service-card {
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
}

.trust-administration .service-grid .service-card .link-plain {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.trust-administration .service-grid .service-card .link-plain i {
  transition: transform 0.3s ease;
}

.trust-administration .service-grid .service-card .link-plain:hover i {
  transform: translateX(2px);
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .privacy-content {
  font-size: 16px;
  line-height: 1.7;
}

.privacy .privacy-content .last-updated {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
}

.privacy .privacy-content .last-updated p {
  margin: 0;
  color: var(--heading-color);
}

.privacy .privacy-content .privacy-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .privacy-section h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}

.privacy .privacy-content .privacy-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.privacy .privacy-content .privacy-section h4 {
  color: var(--heading-color);
  font-size: 22px;
  margin: 30px 0 15px 0;
}

.privacy .privacy-content .privacy-section h5 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section p {
  margin-bottom: 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section ul,
.privacy .privacy-content .privacy-section ol {
  margin: 20px 0;
  padding-left: 30px;
}

.privacy .privacy-content .privacy-section ul li,
.privacy .privacy-content .privacy-section ol li {
  margin-bottom: 10px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .info-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .info-box h4 {
  color: var(--heading-color);
  margin-top: 0;
}

.privacy .privacy-content .privacy-section .highlight-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: var(--contrast-color);
  margin: 40px 0;
}

.privacy .privacy-content .privacy-section .highlight-box i {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .highlight-box h4 {
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .highlight-box p {
  color: var(--contrast-color);
  margin: 0;
  opacity: 0.9;
}

.privacy .privacy-content .privacy-section .security-measures {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy .privacy-content .privacy-section .security-measures .measure-item i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item h5 {
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .rights-list {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .rights-list .right-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  margin-bottom: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .rights-list .right-item:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.privacy .privacy-content .privacy-section .rights-list .right-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 20px;
  margin-top: 5px;
  min-width: 24px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div {
  flex: 1;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div h5 {
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .cookie-types {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .cookie-types h4 {
  margin-bottom: 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table {
  margin: 0;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead th {
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 15px 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody td {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 15px 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.privacy .privacy-content .contact-section {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .contact-section h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.privacy .privacy-content .contact-section h3:after {
  background: var(--accent-color);
}

.privacy .privacy-content .contact-section .contact-info {
  margin-top: 30px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 15px;
  min-width: 18px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item span {
  color: var(--default-color);
}

@media (max-width: 768px) {
  .privacy .privacy-content {
    font-size: 15px;
  }

  .privacy .privacy-content .privacy-section h3 {
    font-size: 24px;
  }

  .privacy .privacy-content .privacy-section h4 {
    font-size: 20px;
  }

  .privacy .privacy-content .privacy-section .security-measures .row>div {
    margin-bottom: 20px;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item {
    flex-direction: column;
    text-align: center;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Terms Section
--------------------------------------------------------------*/
.terms .terms-content {
  font-size: 16px;
  line-height: 1.7;
}

.terms .terms-content .last-updated {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
}

.terms .terms-content .last-updated p {
  margin: 0;
  color: var(--heading-color);
}

.terms .terms-content .privacy-section {
  margin-bottom: 50px;
}

.terms .terms-content .privacy-section h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}

.terms .terms-content .privacy-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.terms .terms-content .privacy-section h4 {
  color: var(--heading-color);
  font-size: 22px;
  margin: 30px 0 15px 0;
}

.terms .terms-content .privacy-section h5 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.terms .terms-content .privacy-section p {
  margin-bottom: 20px;
  color: var(--default-color);
}

.terms .terms-content .privacy-section ul,
.terms .terms-content .privacy-section ol {
  margin: 20px 0;
  padding-left: 30px;
}

.terms .terms-content .privacy-section ul li,
.terms .terms-content .privacy-section ol li {
  margin-bottom: 10px;
  color: var(--default-color);
}

.terms .terms-content .privacy-section .info-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.terms .terms-content .privacy-section .info-box h4 {
  color: var(--heading-color);
  margin-top: 0;
}

.terms .terms-content .privacy-section .highlight-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: var(--contrast-color);
  margin: 40px 0;
}

.terms .terms-content .privacy-section .highlight-box i {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.terms .terms-content .privacy-section .highlight-box h4 {
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.terms .terms-content .privacy-section .highlight-box p {
  color: var(--contrast-color);
  margin: 0;
  opacity: 0.9;
}

.terms .terms-content .privacy-section .security-measures {
  margin: 30px 0;
}

.terms .terms-content .privacy-section .security-measures .measure-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.terms .terms-content .privacy-section .security-measures .measure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.terms .terms-content .privacy-section .security-measures .measure-item i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.terms .terms-content .privacy-section .security-measures .measure-item h5 {
  margin-bottom: 15px;
}

.terms .terms-content .privacy-section .security-measures .measure-item p {
  margin: 0;
  font-size: 14px;
}

.terms .terms-content .privacy-section .rights-list {
  margin: 30px 0;
}

.terms .terms-content .privacy-section .rights-list .right-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  margin-bottom: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.terms .terms-content .privacy-section .rights-list .right-item:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.terms .terms-content .privacy-section .rights-list .right-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 20px;
  margin-top: 5px;
  min-width: 24px;
}

.terms .terms-content .privacy-section .rights-list .right-item div {
  flex: 1;
}

.terms .terms-content .privacy-section .rights-list .right-item div h5 {
  margin-bottom: 10px;
}

.terms .terms-content .privacy-section .rights-list .right-item div p {
  margin: 0;
  font-size: 14px;
}

.terms .terms-content .privacy-section .cookie-types {
  margin: 30px 0;
}

.terms .terms-content .privacy-section .cookie-types h4 {
  margin-bottom: 20px;
}

.terms .terms-content .privacy-section .cookie-types .table-responsive {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.terms .terms-content .privacy-section .cookie-types .table-responsive .table {
  margin: 0;
}

.terms .terms-content .privacy-section .cookie-types .table-responsive .table thead {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.terms .terms-content .privacy-section .cookie-types .table-responsive .table thead th {
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 15px 20px;
}

.terms .terms-content .privacy-section .cookie-types .table-responsive .table tbody td {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 15px 20px;
  color: var(--default-color);
}

.terms .terms-content .privacy-section .cookie-types .table-responsive .table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.terms .terms-content .contact-section {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.terms .terms-content .contact-section h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.terms .terms-content .contact-section h3:after {
  background: var(--accent-color);
}

.terms .terms-content .contact-section .contact-info {
  margin-top: 30px;
}

.terms .terms-content .contact-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.terms .terms-content .contact-section .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 15px;
  min-width: 18px;
}

.terms .terms-content .contact-section .contact-info .contact-item span {
  color: var(--default-color);
}

@media (max-width: 768px) {
  .terms .privacy-content {
    font-size: 15px;
  }

  .terms .privacy-content .privacy-section h3 {
    font-size: 24px;
  }

  .terms .privacy-content .privacy-section h4 {
    font-size: 20px;
  }

  .terms .privacy-content .privacy-section .security-measures .row>div {
    margin-bottom: 20px;
  }

  .terms .privacy-content .privacy-section .rights-list .right-item {
    flex-direction: column;
    text-align: center;
  }

  .terms .privacy-content .privacy-section .rights-list .right-item i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}