/**
* Template Name: EstateAgency
* Template URL: https://bootstrapmade.com/real-estate-agency-bootstrap-template/
* Updated: Aug 09 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins", 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: "Poppins", 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: #f8f5ef; /* App background */
  --surface-color: #ffffff; /* Card surface */
  --default-color: #2f3c37; /* Body text */
  --heading-color: #101713; /* Headings */
  --accent-color: #0b5a38; /* Brand primary */
  --contrast-color: #ffffff; /* Text on brand */
  --brand-900: #0b3a25;
  --brand-800: #0b5a38;
  --brand-700: #0e6b43;
  --brand-500: #1a8a5a;
  --brand-100: #e7f2ec;
  --gold-500: #d18b2c;
  --card-radius: 18px;
  --pill-radius: 999px;
  --shadow-lg: 0 18px 40px rgba(12, 12, 12, 0.1);
}

/* 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: #ecaf1d; /* 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: #ecaf1d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--brand-700);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600 !important;
}

/* Unified Buttons */
.btn,
.btn-primary,
.btn-outline-primary,
.properties-cta-btn,
.properties-load,
.mobile-cta,
.footer .footer-cta,
.faq .faq-cta {
  border-radius: var(--pill-radius);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn-primary,
.properties-cta-btn,
.properties-load,
.mobile-cta,
.footer .footer-cta,
.faq .faq-cta {
  background-color: var(--brand-800);
  color: var(--contrast-color);
  border: 1px solid var(--brand-800);
  box-shadow: 0 16px 35px rgba(11, 90, 56, 0.22);
}

.btn-primary:hover,
.properties-cta-btn:hover,
.properties-load:hover,
.mobile-cta:hover,
.footer .footer-cta:hover,
.faq .faq-cta:hover {
  background-color: var(--brand-700);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(11, 90, 56, 0.28);
}

.btn-outline-primary {
  border: 1px solid var(--brand-800);
  color: var(--brand-800);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--brand-800);
  color: var(--contrast-color);
}

/* 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: #ffffff;
  background-color: #08472c;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 10010;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

.header .container-fluid.container-xl {
  padding-left: 8px;
  padding-right: 8px;
}

.header .logo img {
  max-height: 72px;
  width: auto;
  margin-right: 0;
}

.header .navmenu a,
.header .navmenu a:focus,
.header .mobile-nav-toggle {
  color: #ffffff;
}

.header .navmenu a:hover,
.header .navmenu .active,
.header .navmenu .active:focus {
  color: #d7f0e1;
}

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

.header .logo h1 span {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .header .logo img {
    max-height: 90px;
  }

  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 16px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu .nav-icon {
    display: none;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

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

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

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

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

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

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

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

.mobile-nav-brand,
.mobile-nav-extras {
  display: none;
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .header {
    padding: 0;
    background: rgba(8, 71, 44, 0.96);
    box-shadow: 0 8px 24px rgba(18, 24, 22, 0.16);
    backdrop-filter: blur(12px);
    z-index: 99990;
  }

  .header .container-fluid.container-xl {
    min-height: 86px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .header .logo img {
    max-height: 54px;
  }

  .mobile-header-whatsapp {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.14);
    color: #f0b626;
    font-size: 13px;
    font-weight: 700;
    z-index: 100091;
    border: 1px solid rgba(240, 182, 38, 0.28);
    box-shadow: 0 8px 22px rgba(18, 24, 22, 0.18);
  }

  .mobile-header-whatsapp i {
    font-size: 16px;
  }

  .mobile-nav-toggle {
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100100;
  }

  .mobile-nav-toggle .mobile-nav-line {
    height: 2px;
    width: 24px;
    background: #f0b626;
    border-radius: 999px;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      background-color 0.3s ease;
  }

  .mobile-nav-toggle.is-open .mobile-nav-line:first-child {
    transform: translateY(4px) rotate(45deg);
    background: #f0b626;
  }

  .mobile-nav-toggle.is-open .mobile-nav-line:last-child {
    transform: translateY(-5px) rotate(-45deg);
    background: #f0b626;
  }

  .navmenu {
    position: fixed;
    top: calc(var(--mobile-header-offset, 86px) + 8px);
    left: 10px;
    right: 10px;
    bottom: auto;
    padding: 22px 22px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgba(8, 71, 44, 0.98);
    backdrop-filter: blur(14px);
    z-index: 100095;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 50px rgba(10, 26, 20, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.35s ease;
    transform: translateY(-12px);
    max-height: calc(100vh - var(--mobile-header-offset, 86px) - 18px);
    overflow-y: auto;
  }

  .navmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: min(100%, 420px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .navmenu li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(18px);
    transition:
      transform 0.35s ease,
      opacity 0.35s ease;
  }

  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: clamp(22px, 5.8vw, 34px);
    font-weight: 500;
    line-height: 1.2;
    display: inline-block;
    padding: 4px 0;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #f0b626;
  }

  .navmenu .mobile-nav-contact {
    width: min(100%, 420px);
    margin: 28px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(18px);
    transition:
      transform 0.35s ease,
      opacity 0.35s ease;
  }

  .navmenu .mobile-nav-contact h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
  }

  .navmenu .mobile-nav-contact p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-size: 14px;
  }

  .navmenu .mobile-nav-contact > a:not(.mobile-nav-contact-btn) {
    display: block;
    width: 100%;
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: anywhere;
    text-align: center;
    max-width: 100%;
  }

  .navmenu .mobile-nav-social-links {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 12px;
  }

.navmenu .mobile-nav-social-links a,
.navmenu .mobile-nav-social-links span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(240, 182, 38, 0.26);
    color: #f0b626;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    transition:
      transform 0.3s ease,
      background-color 0.3s ease,
      border-color 0.3s ease;
  }

  .navmenu .mobile-nav-social-links a i,
  .navmenu .mobile-nav-social-links span i {
    font-size: 18px;
    line-height: 1;
  }

  .navmenu .mobile-nav-social-links a:hover,
  .navmenu .mobile-nav-social-links a:focus {
    transform: translateY(-2px);
    background: rgba(240, 182, 38, 0.16);
    border-color: rgba(240, 182, 38, 0.42);
  }

  .navmenu .mobile-nav-contact-btn,
  .navmenu .mobile-nav-contact-btn:focus {
    margin: 18px auto 0 !important;
    min-height: 48px;
    padding: 0 24px;
    width: fit-content;
    border-radius: 999px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #f0b626;
    color: #13231c !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    box-shadow: 0 14px 30px rgba(240, 182, 38, 0.24);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navmenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-active .mobile-header-whatsapp {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-nav-active .navmenu li,
  .mobile-nav-active .navmenu .mobile-nav-contact {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav-active .navmenu li:nth-child(1) { transition-delay: 0.06s; }
  .mobile-nav-active .navmenu li:nth-child(2) { transition-delay: 0.12s; }
  .mobile-nav-active .navmenu li:nth-child(3) { transition-delay: 0.18s; }
  .mobile-nav-active .navmenu li:nth-child(4) { transition-delay: 0.24s; }
  .mobile-nav-active .navmenu li:nth-child(5) { transition-delay: 0.3s; }
  .mobile-nav-active .navmenu .mobile-nav-contact { transition-delay: 0.36s; }
}

@media (max-width: 575px) {
  .mobile-header-whatsapp {
    padding: 0 10px;
    right: 66px;
  }

  .mobile-header-whatsapp span {
    display: none;
  }

  .navmenu {
    top: calc(var(--mobile-header-offset, 82px) + 6px);
    left: 8px;
    right: 8px;
    padding: 18px 18px 24px;
    max-height: calc(100vh - var(--mobile-header-offset, 82px) - 14px);
  }

  .navmenu a,
  .navmenu a:focus {
    font-size: clamp(18px, 7vw, 28px);
  }

  .navmenu .mobile-nav-contact h3 {
    font-size: 18px;
  }

  .navmenu .mobile-nav-contact > a {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #e8f3ed;
  background: radial-gradient(
      circle at 10% 0%,
      rgba(255, 255, 255, 0.08),
      transparent 45%
    ),
    radial-gradient(circle at 90% 100%, rgba(6, 30, 20, 0.7), transparent 55%),
    #083b26;
  font-size: 14px;
  padding: 64px 0 0 0;
  position: relative;
}

.footer a,
.footer h4 {
  color: #ffffff;
}

.footer .footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(4, 20, 14, 0.28);
  margin-bottom: 36px;
}

.footer .footer-cta h3 {
  margin-bottom: 6px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  color: #ffffff;
}

.footer .footer-cta p {
  margin: 0;
  color: rgba(232, 243, 237, 0.75);
  line-height: 1.6;
}

.footer .footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.footer .footer-newsletter input {
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 16px;
  background: rgba(7, 23, 16, 0.6);
  color: #ffffff;
}

.footer .footer-newsletter input::placeholder {
  color: rgba(232, 243, 237, 0.6);
}

.footer .footer-newsletter button {
  height: 46px;
  border-radius: 999px;
  border: 0;
  padding: 0 22px;
  background: #f0b626;
  color: #1f281e;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.footer .footer-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(240, 182, 38, 0.35);
}

.footer .footer-grid {
  row-gap: 26px;
}

.footer .footer-grid > [class*="col-"] {
  display: flex;
}

.footer .footer-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  height: 100%;
}

.footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer .footer-brand img {
  height: 90px;
  width: auto;
}

.footer .footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer .footer-brand-text span:first-child {
  font-weight: 800;
  font-size: 16px;
}

.footer .footer-tagline {
  font-size: 12px;
  color: rgba(232, 243, 237, 0.7);
  letter-spacing: 0.04em;
}

.footer .footer-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 12px;
}

.footer .footer-item i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(240, 182, 38, 0.15);
  color: #f0b626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.footer .footer-item p {
  margin-bottom: 0;
  color: rgba(232, 243, 237, 0.78);
  line-height: 1.6;
}

.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer .footer-socials {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer .footer-socials a,
.footer .footer-socials span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #f0b626;
  border: 1px solid rgba(240, 182, 38, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.footer .footer-socials a:hover,
.footer .footer-socials a:focus {
  transform: translateY(-2px);
  background: rgba(240, 182, 38, 0.16);
  border-color: rgba(240, 182, 38, 0.42);
}

.footer .footer-links a {
  color: rgba(232, 243, 237, 0.78);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer .footer-links a:hover {
  color: #f0b626;
  transform: translateX(4px);
}

.footer .footer-bottom {
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .footer-bottom > p,
.footer .footer-bottom > .footer-bottom-links,
.footer .footer-bottom .credits {
  display: none;
}

.footer .footer-bottom p {
  margin-bottom: 0;
  color: rgba(232, 243, 237, 0.7);
}

.footer .footer-bottom-inner p:last-of-type {
  display: none;
}

.footer .footer-bottom-links {
  display: flex;
  gap: 14px;
}

.footer .footer-bottom-links a {
  color: rgba(232, 243, 237, 0.7);
  font-size: 13px;
}

.footer .footer-bottom-links a:hover {
  color: #f0b626;
}

@media (max-width: 991px) {
  .footer .footer-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 54px;
  }
}

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

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

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

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

/*--------------------------------------------------------------
# Home Services
--------------------------------------------------------------*/
.home-services {
  background: radial-gradient(
      circle at 15% 0%,
      rgba(240, 182, 38, 0.12),
      transparent 38%
    ),
    radial-gradient(circle at 90% 100%, rgba(8, 71, 44, 0.1), transparent 46%);
}

.home-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-services .service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 38px rgba(12, 12, 12, 0.08);
  border: 1px solid rgba(8, 71, 44, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.home-services .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(12, 12, 12, 0.12);
}

.home-services .service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(240, 182, 38, 0.16);
  color: #ecaf1d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.home-services .service-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}

.home-services .service-card h3 a {
  color: #1f281e;
}

.home-services .service-card p {
  margin: 0;
  color: #5a6660;
  line-height: 1.7;
}

.home-services .service-card-link {
  margin-top: auto;
  color: #ecaf1d;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-services .service-card-link i {
  transition: transform 0.3s ease;
}

.home-services .service-card-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .home-services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .home-services .services-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.hero .carousel-item:before {
  content: "";
  background: linear-gradient(
      90deg,
      rgba(7, 27, 20, 0.88) 0%,
      rgba(7, 27, 20, 0.68) 26%,
      rgba(7, 27, 20, 0.18) 58%,
      rgba(7, 27, 20, 0.08) 100%
    ),
    linear-gradient(180deg, rgba(9, 36, 26, 0.14) 0%, rgba(9, 36, 26, 0.4) 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-container {
  position: relative;
  inset: unset;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 64px 72px;
  z-index: 3;
}

@media (max-width: 575px) {
  .hero .carousel-container {
    min-height: 82vh;
    padding: 96px 18px 28px;
  }
}

.hero .hero-content {
  width: min(100%, 760px);
  margin-right: auto;
  color: #ffffff;
  position: relative;
  padding: 32px 0 24px 28px;
  text-align: left;
}

.hero .hero-content:before {
  content: "";
  position: absolute;
  inset: -48px auto -36px 0;
  width: 86px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08) 0,
    rgba(255, 255, 255, 0.08) 2px,
    transparent 2px,
    transparent 6px
  );
  border-radius: 0 0 18px 18px;
  opacity: 0.7;
}

.hero .hero-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.hero h1,
.hero .hero-slide-title {
  margin: 0 0 18px;
  max-width: 700px;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}

.hero h1 span,
.hero .hero-slide-title span {
  color: #f0b626;
}

.hero .hero-description {
  margin: 0 0 30px;
  max-width: 660px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
  position: relative;
  z-index: 1;
}

.hero .hero-cta-group {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero .hero-primary-cta,
.hero .hero-secondary-cta,
.hero .hero-call-cta {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.hero .hero-primary-cta {
  background: #f0b626;
  color: #1f281e;
  box-shadow: 0 18px 35px rgba(240, 182, 38, 0.28);
}

.hero .hero-secondary-cta {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.hero .hero-call-cta {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero .hero-primary-cta:hover,
.hero .hero-secondary-cta:hover,
.hero .hero-call-cta:hover {
  transform: translateY(-2px);
}

.hero .hero-primary-cta:hover {
  color: #1f281e;
  background: #f6c447;
}

.hero .hero-secondary-cta:hover,
.hero .hero-call-cta:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
}

.hero .hero-trust-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.hero .hero-trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero .hero-trust-points i {
  color: #f0b626;
}

.hero .hero-search-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  width: min(100%, 690px);
  background: rgba(255, 248, 238, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 10px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.hero .hero-search-field {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #5f6057;
  font-size: 14px;
  font-weight: 600;
}

.hero .hero-search-field i {
  color: #d49c12;
  font-size: 16px;
}

.hero .hero-search-field:not(:last-of-type) {
  border-right: 1px solid rgba(8, 71, 44, 0.12);
}

.hero .hero-search-btn {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: #f0b626;
  color: #1f281e;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.hero .hero-search-btn:hover {
  transform: translateY(-1px);
  background: #f6c447;
  box-shadow: 0 14px 30px rgba(240, 182, 38, 0.28);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 1;
  z-index: 3;
}

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

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

@media (min-width: 1024px) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.hero .carousel-indicators {
  list-style: none;
  margin-bottom: 34px;
  gap: 10px;
}

.hero .carousel-indicators li {
  cursor: pointer;
  opacity: 1;
  height: 8px;
  width: 26px;
  transition: 0.3s;
  padding: 0;
  border-radius: 999px;
  border-top: 0;
  border-bottom: 0;
  background-color: rgba(255, 255, 255, 0.45);
}

.hero .carousel-indicators .active {
  background-color: #f0b626;
  width: 48px;
}

@media (max-width: 991px) {
  .hero .carousel-container {
    padding: 112px 24px 64px;
  }

  .hero .hero-content {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
  }

  .hero .hero-content:before {
    width: 64px;
  }

  .hero .hero-search-panel {
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
  }
}

@media (max-width: 768px) {
  .hero h1,
  .hero .hero-slide-title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero .hero-description {
    font-size: 14px;
    max-width: 100%;
  }

  .hero .hero-cta-group {
    gap: 10px;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero .hero-content {
    padding: 14px 0 0 16px;
  }

  .hero .hero-content:before {
    inset: -24px auto -16px 0;
    width: 54px;
  }

  .hero .hero-search-panel {
    grid-template-columns: 1fr;
    border-radius: 24px;
    padding: 12px;
  }

  .hero .hero-search-field {
    min-height: 52px;
    padding: 0 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 71, 44, 0.12);
  }

  .hero .hero-search-field:last-of-type {
    border-bottom: 0;
  }

  .hero .hero-search-btn {
    min-height: 52px;
    margin-top: 6px;
  }

  .hero .hero-primary-cta,
  .hero .hero-secondary-cta,
  .hero .hero-call-cta {
    width: 100%;
  }

  .hero .hero-call-cta {
    display: none;
  }

  .hero .hero-cta-group {
    margin-bottom: 14px;
  }
}

@media (max-width: 767px) {
  .hero .carousel-container {
    justify-content: center;
  }

  .hero .hero-content {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    text-align: center;
  }

  .hero .hero-content:before {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero h1,
  .hero .hero-slide-title,
  .hero .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .hero-cta-group,
  .hero .hero-trust-points {
    justify-content: center;
  }

  .hero .hero-search-panel {
    margin-left: auto;
    margin-right: auto;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.home-proof-strip {
  margin-top: -52px;
  position: relative;
  z-index: 4;
}

.home-proof-strip .proof-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 12px;
}

.home-proof-strip .proof-strip-card {
  background: rgba(255, 249, 239, 0.94);
  border: 1px solid rgba(8, 71, 44, 0.08);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 20px 45px rgba(20, 24, 22, 0.08);
}

.home-proof-strip .proof-strip-card strong {
  display: block;
  margin-bottom: 8px;
  color: #10261d;
  font-size: 18px;
  font-weight: 800;
}

.home-proof-strip .proof-strip-card span {
  color: #56605b;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .home-proof-strip {
    margin-top: 0;
  }

  .home-proof-strip .proof-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .home-proof-strip .proof-strip-grid {
    grid-template-columns: 1fr;
  }
}

.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

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

.services-page .services-hero {
  padding-top: 165px;
  padding-bottom: 54px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
}

.services-page .services-hero-layout {
  --bs-gutter-x: 3rem;
}

.services-page .services-hero-copy {
  max-width: 520px;
}

.services-page .services-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #c79a1d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-page .services-kicker:before {
  content: "";
  width: 34px;
  height: 2px;
  background: #f0b626;
}

.services-page .services-hero h1,
.services-page .services-why h2,
.services-page .services-cta-panel h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.services-page .services-hero h1 span,
.services-page .services-why h2 span,
.services-page .services-cta-panel h2 span {
  color: #f0b626;
}

.services-page .services-hero p,
.services-page .services-why-copy > p,
.services-page .services-cta-panel p {
  color: #4e5450;
  font-size: 18px;
  line-height: 1.8;
}

.home-story {
  background: linear-gradient(180deg, #fffdf8 0%, #f7f2e8 100%);
}

.home-story .home-story-copy {
  max-width: 560px;
}

.home-story .story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #c79a1d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-story .story-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #f0b626;
}

.home-story h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  font-weight: 800;
  color: #11241c;
  letter-spacing: -0.04em;
}

.home-story p {
  color: #4f5a54;
  font-size: 16px;
  line-height: 1.8;
}

.home-story .story-checklist {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.home-story .story-checklist div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(8, 71, 44, 0.08);
}

.home-story .story-checklist i {
  color: #f0b626;
  font-size: 18px;
  margin-top: 3px;
}

.home-story .story-checklist span {
  color: #1e3027;
  font-weight: 600;
  line-height: 1.6;
}

.home-story .process-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: #0d3425;
  box-shadow: 0 24px 48px rgba(8, 71, 44, 0.18);
}

.home-story .process-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.home-story .process-step > span {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0b626;
  color: #11241c;
  font-size: 20px;
  font-weight: 800;
}

.home-story .process-step h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}

.home-story .process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.local-focus {
  background: #ffffff;
}

.local-focus .local-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.local-focus .local-card {
  padding: 26px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(240, 182, 38, 0.12) 0%, rgba(240, 182, 38, 0.02) 100%),
    #ffffff;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 16px 40px rgba(18, 24, 22, 0.06);
}

.local-focus .local-card h3 {
  margin-bottom: 10px;
  color: #10261d;
  font-size: 22px;
  font-weight: 700;
}

.local-focus .local-card p {
  margin: 0;
  color: #56605b;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .local-focus .local-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .home-story .process-step {
    grid-template-columns: 1fr;
  }

  .local-focus .local-grid {
    grid-template-columns: 1fr;
  }
}

.services-page .services-hero-actions,
.services-page .services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.services-page .services-btn {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.services-page .services-btn:hover {
  transform: translateY(-2px);
}

.services-page .services-btn-primary {
  background: #f0b626;
  color: #1b1b1b;
  box-shadow: 0 16px 35px rgba(240, 182, 38, 0.28);
}

.services-page .services-btn-primary:hover {
  color: #1b1b1b;
  background: #f4c445;
}

.services-page .services-btn-secondary {
  background: #ffffff;
  color: #1b1b1b;
  border: 1px solid rgba(15, 26, 32, 0.08);
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.06);
}

.services-page .services-btn-secondary:hover {
  color: #1b1b1b;
  background: #f8f8f8;
}

.services-page .services-btn-dark {
  background: #2f3446;
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(47, 52, 70, 0.28);
}

.services-page .services-btn-dark:hover {
  color: #ffffff;
  background: #3b4056;
}

.services-page .services-hero-visual {
  position: relative;
  max-width: 690px;
  margin-left: auto;
}

.services-page .services-hero-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.services-page .services-rating-card {
  position: absolute;
  left: 28px;
  bottom: -18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 160px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.services-page .services-rating-card i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 182, 38, 0.14);
  color: #f0b626;
}

.services-page .services-rating-card strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  color: #151c2b;
}

.services-page .services-rating-card span {
  display: block;
  margin-top: 4px;
  color: #7b807d;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.services-page .services-showcase {
  background: #fbf8f1;
  padding-top: 90px;
}

.services-page .services-showcase .section-title h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 14px;
}

.services-page .services-showcase .section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #5c615f;
}

.services-page .services-showcase .service-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(18, 18, 18, 0.05);
  border-bottom: none;
  border-radius: 22px;
  padding: 34px 30px;
}

.services-page .services-showcase .service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(240, 182, 38, 0.12);
  color: #e0ab24;
  font-size: 22px;
  margin-bottom: 22px;
  box-shadow: none;
}

.services-page .services-showcase .service-card h3 {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #11182a;
}

.services-page .services-showcase .service-card p {
  color: #626865;
  font-size: 15px;
  line-height: 1.8;
}

.services-page .services-showcase .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(18, 18, 18, 0.08);
}

.services-page .services-showcase .service-card:hover h3 {
  color: #11182a;
}

.services-page .services-why {
  padding-top: 96px;
  padding-bottom: 72px;
  background: #ffffff;
}

.services-page .services-why h2 {
  font-size: clamp(38px, 4.8vw, 60px);
  max-width: 520px;
}

.services-page .services-why-list {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.services-page .services-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.services-page .services-why-item i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #f0b626;
  color: #ffffff;
  font-size: 16px;
}

.services-page .services-why-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #141b2a;
}

.services-page .services-why-item p {
  margin-bottom: 0;
  color: #5f6462;
  line-height: 1.8;
}

.services-page .services-why-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.12);
}

.services-page .services-cta {
  padding-top: 10px;
  padding-bottom: 104px;
}

.services-page .services-cta-panel {
  background: #11182a;
  color: #ffffff;
  text-align: center;
  border-radius: 34px;
  padding: 72px 24px;
  box-shadow: 0 26px 60px rgba(17, 24, 42, 0.16);
}

.services-page .services-cta-panel h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 66px);
}

.services-page .services-cta-panel p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}

.services-page .services-cta-actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .services-page .services-hero {
    padding-top: 108px;
  }

  .services-page .services-hero-visual {
    max-width: 100%;
  }

  .services-page .services-why h2,
  .services-page .services-hero h1,
  .services-page .services-cta-panel h2 {
    font-size: clamp(34px, 7vw, 54px);
  }
}

@media (max-width: 767px) {
  .services-page .services-hero {
    padding-top: 98px;
  }

  .services-page .services-hero p,
  .services-page .services-why-copy > p,
  .services-page .services-cta-panel p {
    font-size: 15px;
  }

  .services-page .services-rating-card {
    left: 16px;
    right: 16px;
    bottom: -24px;
  }

  .services-page .services-showcase {
    padding-top: 82px;
  }

  .services-page .services-cta-panel {
    border-radius: 24px;
    padding: 54px 20px;
  }
}

.services-page .services-hero-modern {
  padding-top: 150px;
  padding-bottom: 76px;
  background: linear-gradient(180deg, #fffdf7 0%, #f4efe3 100%);
}

.services-page .services-hero-modern-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
}

.services-page .services-proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.services-page .services-proof-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff8eb;
  color: #173025;
  border: 1px solid rgba(8, 71, 44, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.services-page .services-overview,
.services-page .services-featured-proof {
  background: #ffffff;
}

.services-page .service-overview-card {
  height: 100%;
  padding: 26px 22px;
  border-radius: 24px;
  background: #fffdf8;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 16px 40px rgba(18, 24, 22, 0.05);
}

.services-page .service-overview-icon,
.services-page .service-detail-icon,
.services-page .services-why-card i,
.services-page .service-stat-card i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff4da;
  color: #c88a00;
  font-size: 24px;
  margin-bottom: 16px;
}

.services-page .service-overview-card h3,
.services-page .service-detail-card h2,
.services-page .process-line-card h3,
.services-page .services-why-card h3,
.services-page .service-stat-card strong {
  color: #10261d;
  font-weight: 700;
}

.services-page .service-overview-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.services-page .service-overview-card p,
.services-page .service-overview-list li,
.services-page .service-overview-link,
.services-page .service-detail-intro,
.services-page .service-step-box span,
.services-page .process-line-card p,
.services-page .services-why-card p {
  color: #5b6761;
  line-height: 1.8;
}

.services-page .service-overview-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 18px;
  display: grid;
  gap: 8px;
}

.services-page .service-overview-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 600;
}

.services-page .service-overview-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0b626;
}

.services-page .service-overview-link {
  font-weight: 700;
  color: #0b5a38;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services-page .service-overview-link i {
  transition: transform 0.3s ease;
}

.services-page .service-overview-link:hover i {
  transform: translateX(4px);
}

.services-page .service-detail-section {
  padding-top: 36px;
  padding-bottom: 36px;
  background: #ffffff;
}

.services-page .service-detail-alt,
.services-page .services-stats {
  background: linear-gradient(180deg, #f7faf7 0%, #eef4f0 100%);
}

.services-page .service-detail-card {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 20px 44px rgba(18, 24, 22, 0.06);
}

.services-page .service-detail-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.services-page .service-detail-kicker {
  margin: 0 0 6px;
  color: #c89a1d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-page .service-detail-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0;
}

.services-page .service-step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.services-page .service-step-box {
  min-height: 130px;
  padding: 18px 16px;
  border-radius: 20px;
  background: #fff8eb;
  border: 1px solid rgba(8, 71, 44, 0.08);
  display: grid;
  align-content: start;
  gap: 10px;
}

.services-page .service-step-box strong {
  color: #08472c;
  font-size: 26px;
  font-weight: 800;
}

.services-page .service-step-box span {
  font-size: 14px;
  font-weight: 700;
}

.services-page .services-process {
  background: #ffffff;
}

.services-page .process-line-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.services-page .process-line-card {
  height: 100%;
  padding: 24px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 16px 40px rgba(18, 24, 22, 0.05);
}

.services-page .process-line-card strong {
  display: inline-block;
  margin-bottom: 12px;
  color: #c89a1d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-page .process-line-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.services-page .services-why-modern {
  background: linear-gradient(180deg, #fffdf8 0%, #f5efe1 100%);
}

.services-page .services-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.services-page .services-why-card {
  height: 100%;
  padding: 24px 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 16px 40px rgba(18, 24, 22, 0.05);
}

.services-page .service-stat-card {
  height: 100%;
  padding: 28px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 18px 42px rgba(18, 24, 22, 0.06);
  text-align: center;
}

.services-page .service-stat-card strong {
  display: block;
  font-size: 40px;
  margin-bottom: 8px;
}

.services-page .service-stat-card span {
  color: #56605b;
  font-size: 15px;
  font-weight: 700;
}

.services-page .services-final-cta {
  background: #ffffff;
}

.services-page .services-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 108px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f9d55;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(12, 21, 18, 0.2);
  z-index: 997;
  font-size: 28px;
}

@media (max-width: 1199px) {
  .services-page .service-step-grid,
  .services-page .process-line-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .services-page .services-hero-modern-grid,
  .services-page .services-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .services-page .services-hero-modern {
    padding-top: 132px;
  }

  .services-page .services-hero-copy {
    text-align: center;
  }

  .services-page .services-hero-actions,
  .services-page .services-proof-pills {
    justify-content: center;
  }

  .services-page .service-step-grid,
  .services-page .process-line-grid {
    grid-template-columns: 1fr;
  }

  .services-page .service-detail-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-page .services-whatsapp-float {
    bottom: 150px;
    right: 16px;
  }
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

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

/*--------------------------------------------------------------
# Agents Section
--------------------------------------------------------------*/
.agents .member {
  position: relative;
}

.agents .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.agents .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.agents .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

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

.agents .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.agents .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.agents .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.agents .member .social a:hover {
  color: var(--accent-color);
}

.agents .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

  .testimonials .testimonial-item {
    margin: 24px 14px;
    min-height: auto;
    padding: 24px 20px;
  }
}

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

@media (max-width: 991px) {
  .scroll-top {
    right: 12px;
    bottom: 110px;
  }
}

@media (max-width: 991px) {
  .about-page,
  .services-page {
    padding-bottom: 0;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

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

.features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.features h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.features .icon-box {
  margin-top: 50px;
}

.features .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

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

.features .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .icon-box h4 a:hover {
  color: var(--accent-color);
}

.features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.about-page .about-hero .heading {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      180deg,
      rgba(4, 18, 12, 0.65),
      rgba(4, 18, 12, 0.35)
    ),
    url("assets/img/hero-carousel/hero-carousel-1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 0 120px;
  min-height: 70vh;
  display: grid;
  align-items: center;
}

.about-page .about-hero .heading:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.45),
    rgba(8, 71, 44, 0.15)
  );
  opacity: 1;
}

.about-page .about-hero .heading:after {
  content: "";
  position: absolute;
  inset: auto 6% 12% auto;
  width: 220px;
  height: 220px;
  border-radius: 32px;
  background: radial-gradient(
    circle at top,
    rgba(240, 182, 38, 0.35),
    rgba(240, 182, 38, 0)
  );
  opacity: 0.8;
  pointer-events: none;
}

.about-page .about-hero-content {
  position: relative;
  background: rgba(8, 24, 18, 0.55);
  border: 1px solid rgba(240, 182, 38, 0.18);
  border-radius: 28px;
  padding: 38px 38px 32px;
  box-shadow: 0 28px 60px rgba(3, 12, 9, 0.45);
  backdrop-filter: blur(8px);
  animation: aboutHeroFade 0.9s ease both;
  text-align: center;
}

.about-page .about-hero-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 70px rgba(3, 12, 9, 0.55);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-page .about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.about-page .about-hero-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(240, 182, 38, 0.18);
  border-radius: 16px;
  padding: 12px 14px;
  display: grid;
  gap: 4px;
  box-shadow: 0 14px 30px rgba(3, 12, 9, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-page .about-hero-stat strong {
  font-size: 20px;
  font-weight: 800;
  color: #f0b626;
}

.about-page .about-hero-stat span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-page .about-hero-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(8, 20, 16, 0.14);
}

.about-page .about-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 10px;
}

.about-page .about-hero-shape {
  position: absolute;
  inset: 12% 8% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(240, 182, 38, 0.24),
    rgba(8, 71, 44, 0.16)
  );
  filter: blur(0.2px);
  transform: rotate(12deg);
  z-index: 0;
}

.about-page .about-hero-visual img {
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 24px 60px rgba(6, 24, 18, 0.18);
  object-fit: cover;
  min-height: 280px;
  position: relative;
  z-index: 1;
}

.about-page .about-hero-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(8, 71, 44, 0.92);
  color: #ffffff;
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 14px 32px rgba(6, 24, 18, 0.25);
  border: 1px solid rgba(240, 182, 38, 0.35);
  display: grid;
  gap: 2px;
}

.about-page .about-hero-badge span {
  font-weight: 800;
  font-size: 16px;
}

.about-page .about-hero-badge small {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 182, 38, 0.9);
}

.about-page .about-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(240, 182, 38, 0.9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  justify-content: center;
}

.about-page .about-hero-kicker:before {
  content: "";
  width: 36px;
  height: 2px;
  background: rgba(240, 182, 38, 0.9);
}

.about-page .about-hero .heading h1 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 0.98;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  max-width: 720px;
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
}

.about-page .about-hero .heading h1 span {
  color: #f0b626;
}

.about-page .about-hero .heading p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
}

@keyframes aboutHeroFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-page .about {
  padding-top: 84px;
  padding-bottom: 52px;
}

.about-page .about-story-layout {
  --bs-gutter-x: 2.6rem;
}

.about-page .about .content .who-we-are,
.about-page .section-kicker {
  color: #c89a1d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-page .about .content h3,
.about-page .founder-copy h3,
.about-page .choose-copy h3,
.about-page .section-heading h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 18px;
}

.about-page .about .content > p,
.about-page .founder-copy p,
.about-page .choose-copy > p {
  color: #4f5552;
  font-size: 16px;
  line-height: 1.9;
}

.about-page .about-story-copy {
  padding-top: 18px;
}

.about-page .about-story-copy .who-we-are {
  margin-bottom: 10px;
}

.about-page .about-story-copy h3 {
  font-size: clamp(38px, 4.2vw, 52px);
  margin-bottom: 16px;
}

.about-page .about-story-copy > p {
  max-width: 520px;
}

.about-page .about-highlights {
  margin-top: 30px;
}

.about-page .about-highlight-card {
  height: 100%;
  padding-right: 16px;
}

.about-page .about-highlight-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 182, 38, 0.12);
  color: #f0b626;
  margin-bottom: 14px;
}

.about-page .about-highlight-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-page .about-highlight-card p {
  margin-bottom: 0;
  color: #5d6360;
  line-height: 1.75;
  font-size: 14px;
}

.about-page .about-story-visuals {
  display: flex;
  justify-content: flex-end;
}

.about-page .about-collage {
  display: grid;
  grid-template-columns: 1.02fr 0.88fr;
  grid-template-rows: 224px 188px;
  grid-template-areas:
    "main top"
    "bottom side";
  gap: 14px;
  align-items: stretch;
  width: min(100%, 620px);
  margin-left: auto;
}

.about-page .about-collage-main,
.about-page .about-collage-side,
.about-page .about-collage-bottom {
  overflow: hidden;
  border-radius: 16px;
  min-height: 180px;
  background: #ece7db;
}

.about-page .about-collage-main {
  grid-area: main;
  min-height: 416px;
}

.about-page .about-collage-side.top {
  grid-area: top;
  min-height: 180px;
}

.about-page .about-collage-side.bottom {
  grid-area: side;
  min-height: 222px;
}

.about-page .about-collage-bottom {
  grid-area: bottom;
  min-height: 180px;
}

.about-page .about-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.about-page .about-fit-main {
  object-position: center 54%;
}

.about-page .about-fit-top {
  object-position: center center;
}

.about-page .about-fit-bottom {
  object-position: center 68%;
}

.about-page .about-fit-side {
  object-position: center center;
}

.about-page .about-conversion-hero {
  padding-top: 150px;
  padding-bottom: 74px;
  background: linear-gradient(180deg, #fffdf7 0%, #f4efe3 100%);
}

.about-page .about-conversion-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.about-page .about-eyebrow,
.about-page .about-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #c89a1d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-page .about-eyebrow::before,
.about-page .about-section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #f0b626;
}

.about-page .about-conversion-copy h1,
.about-page .about-story-modern h2,
.about-page .about-why-modern h2,
.about-page .about-location-modern h2,
.about-page .about-final-cta-panel h2 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 18px;
  color: #10261d;
}

.about-page .about-conversion-copy h1 span {
  color: #f0b626;
}

.about-page .about-hero-text,
.about-page .about-story-modern p,
.about-page .about-why-modern > .container p,
.about-page .about-location-modern p,
.about-page .about-final-cta-panel p {
  color: #54605a;
  font-size: 16px;
  line-height: 1.85;
}

.about-page .about-hero-actions,
.about-page .about-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-page .about-primary-btn,
.about-page .about-secondary-btn,
.about-page .about-whatsapp-btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.about-page .about-primary-btn {
  background: #08472c;
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(8, 71, 44, 0.2);
}

.about-page .about-secondary-btn {
  background: #fff3d8;
  color: #173025;
  border: 1px solid rgba(8, 71, 44, 0.08);
}

.about-page .about-whatsapp-btn {
  background: #1f9d55;
  color: #ffffff;
  margin-top: 26px;
}

.about-page .about-primary-btn:hover,
.about-page .about-secondary-btn:hover,
.about-page .about-whatsapp-btn:hover {
  transform: translateY(-2px);
}

.about-page .about-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.about-page .about-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff8eb;
  color: #163327;
  border: 1px solid rgba(8, 71, 44, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.about-page .about-hero-image-stack {
  position: relative;
  min-height: 540px;
}

.about-page .about-hero-main-image {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 28px 56px rgba(13, 21, 18, 0.14);
}

.about-page .about-hero-mini-card,
.about-page .about-hero-proof-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 22px 50px rgba(12, 21, 18, 0.12);
}

.about-page .about-hero-mini-card {
  left: -22px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  width: min(100%, 320px);
}

.about-page .about-hero-mini-card img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 18px;
}

.about-page .about-hero-mini-card strong,
.about-page .about-hero-proof-card strong {
  display: block;
  color: #11241c;
  font-weight: 800;
}

.about-page .about-hero-mini-card span,
.about-page .about-hero-proof-card span {
  color: #5d6762;
  font-size: 13px;
  line-height: 1.7;
}

.about-page .about-hero-proof-card {
  top: 28px;
  right: -16px;
  width: min(100%, 260px);
  border-radius: 24px;
  padding: 18px;
}

.about-page .about-story-modern {
  background: #ffffff;
}

.about-page .story-timeline {
  display: grid;
  gap: 18px;
}

.about-page .story-timeline-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 16px 40px rgba(18, 24, 22, 0.05);
}

.about-page .story-year {
  min-height: 74px;
  border-radius: 20px;
  background: #08472c;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
}

.about-page .story-timeline-item h3,
.about-page .about-service-card h3,
.about-page .why-card h3,
.about-page .team-profile-copy h3,
.about-page .project-proof-copy h3,
.about-page .proof-stat-copy strong {
  font-size: 22px;
  font-weight: 700;
  color: #10261d;
}

.about-page .story-timeline-item h3 {
  margin-bottom: 8px;
}

.about-page .story-timeline-item p,
.about-page .about-service-card p,
.about-page .why-card p,
.about-page .team-profile-copy p,
.about-page .project-proof-copy p,
.about-page .project-proof-copy span,
.about-page .proof-stat-copy p {
  margin: 0;
  color: #5b6761;
  line-height: 1.8;
}

.about-page .about-proof-stats {
  background: linear-gradient(180deg, #f7faf7 0%, #eef4f0 100%);
}

.about-page .proof-stat-card {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 20px 44px rgba(18, 24, 22, 0.06);
}

.about-page .proof-stat-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.about-page .proof-stat-copy {
  padding: 22px;
}

.about-page .proof-stat-copy i,
.about-page .about-service-icon,
.about-page .why-card i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff4da;
  color: #c88a00;
  font-size: 24px;
  margin-bottom: 16px;
}

.about-page .about-services-modern {
  background: #ffffff;
}

.about-page .about-service-card,
.about-page .why-card {
  height: 100%;
  padding: 26px 22px;
  border-radius: 24px;
  background: #fffdf8;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 16px 40px rgba(18, 24, 22, 0.05);
}

.about-page .about-why-modern {
  background: linear-gradient(180deg, #fffdf8 0%, #f5efe1 100%);
}

.about-page .why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-page .about-team-modern,
.about-page .about-projects-modern {
  background: #ffffff;
}

.about-page .team-profile-card {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 18px 42px rgba(18, 24, 22, 0.06);
}

.about-page .team-profile-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.about-page .team-profile-copy {
  padding: 22px;
}

.about-page .team-role {
  margin-bottom: 10px;
  color: #c89a1d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-page .founder-split-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 20px 46px rgba(18, 24, 22, 0.08);
}

.about-page .founder-split-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-page .founder-split-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-page .founder-split-copy h3 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 10px;
  color: #10261d;
}

.about-page .founder-split-copy p:not(.team-role) {
  color: #59645f;
  font-size: 16px;
  line-height: 1.9;
}

.about-page .founder-split-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.about-page .founder-split-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff8eb;
  border: 1px solid rgba(8, 71, 44, 0.08);
  color: #173025;
  font-size: 14px;
  font-weight: 700;
}

.about-page .founder-split-points i {
  color: #c88a00;
}

.about-page .project-proof-card {
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 18px 42px rgba(18, 24, 22, 0.06);
}

.about-page .project-proof-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.about-page .project-proof-copy {
  padding: 20px;
}

.about-page .project-proof-copy p {
  margin-bottom: 5px;
}

.about-page .project-proof-copy span {
  font-size: 13px;
  font-weight: 700;
  color: #c89a1d;
}

.about-page .about-location-modern {
  background: linear-gradient(180deg, #f7faf7 0%, #eef4f0 100%);
}

.about-page .location-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.about-page .location-tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff8eb;
  color: #173025;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(8, 71, 44, 0.08);
}

.about-page .about-map-frame {
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
  box-shadow: 0 24px 52px rgba(12, 21, 18, 0.12);
}

.about-page .about-map-frame iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.about-page .about-final-cta {
  background: #ffffff;
}

.about-page .about-final-cta-panel {
  padding: 38px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(8, 71, 44, 0.96), rgba(16, 38, 29, 0.96)),
    #0f3124;
  box-shadow: 0 26px 60px rgba(10, 26, 20, 0.2);
  text-align: center;
}

.about-page .about-final-cta-panel h2,
.about-page .about-final-cta-panel p,
.about-page .about-final-cta-panel .about-section-kicker {
  color: #ffffff;
  justify-content: center;
}

.about-page .about-final-cta-panel .about-section-kicker::before {
  background: rgba(240, 182, 38, 0.9);
}

.about-page .about-final-cta-panel p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.76);
}

.about-page .about-final-cta-panel .about-primary-btn {
  background: #f0b626;
  color: #11241c;
}

.about-page .about-final-cta-panel .about-secondary-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 991px) {
  .about-page .about-conversion-hero-grid,
  .about-page .why-grid {
    grid-template-columns: 1fr;
  }

  .about-page .founder-split-card {
    grid-template-columns: 1fr;
  }

  .about-page .about-hero-image-stack {
    min-height: auto;
    padding-bottom: 180px;
  }

  .about-page .about-hero-main-image {
    min-height: 420px;
  }

  .about-page .about-hero-mini-card {
    left: 16px;
    bottom: 88px;
  }

  .about-page .about-hero-proof-card {
    right: 16px;
    top: auto;
    bottom: 16px;
  }
}

@media (max-width: 767px) {
  .about-page .about-conversion-hero {
    padding-top: 132px;
  }

  .about-page .about-conversion-copy {
    text-align: center;
  }

  .about-page .about-eyebrow,
  .about-page .about-hero-actions,
  .about-page .about-hero-points {
    justify-content: center;
  }

  .about-page .story-timeline-item {
    grid-template-columns: 1fr;
  }

  .about-page .about-hero-actions,
  .about-page .about-final-actions {
    flex-direction: column;
  }

  .about-page .about-primary-btn,
  .about-page .about-secondary-btn,
  .about-page .about-whatsapp-btn {
    width: 100%;
  }

  .about-page .about-hero-proof-card,
  .about-page .about-hero-mini-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .about-page .about-hero-image-stack {
    padding-bottom: 0;
  }

  .about-page .team-profile-card img,
  .about-page .project-proof-card img {
    height: 240px;
  }

  .about-page .founder-split-image img {
    min-height: 300px;
  }

  .about-page .founder-split-copy {
    padding: 26px 20px;
  }

  .about-page .founder-split-points span {
    width: 100%;
  }

  .about-page .about-final-cta-panel {
    padding: 28px 20px;
  }
}

.about-page .stats {
  padding-top: 30px;
}

.about-page .stats .stats-item i,
.about-page .stats .stats-item .color-blue,
.about-page .stats .stats-item .color-orange,
.about-page .stats .stats-item .color-green,
.about-page .stats .stats-item .color-pink {
  color: #f0b626 !important;
}

.about-page .founder {
  padding-top: 86px;
}

.about-page .section-heading {
  margin-bottom: 48px;
}

.about-page .section-heading h2 {
  display: inline-block;
  position: relative;
  font-size: clamp(32px, 4vw, 46px);
}

.about-page .section-heading h2:after {
  content: "";
  width: 52px;
  height: 3px;
  background: #f0b626;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
}

.about-page .founder-photo-card img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

.about-page .founder-copy {
  padding-left: 16px;
}

.about-page .founder-role {
  color: #c89a1d;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.about-page .founder-role:after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: #f0b626;
  margin-top: 14px;
}

.about-page .founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f7f0dd;
  color: #3c433f;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 18px;
}

.about-page .founder-badge i {
  color: #f0b626;
}

.about-page .about-choose-section {
  padding-top: 92px;
}

.about-page .choose-wrapper {
  background: #faf8f2;
  border-radius: 30px;
  padding: 54px;
  box-shadow: 0 22px 50px rgba(27, 27, 27, 0.06);
}

.about-page .choose-copy h3 {
  font-size: clamp(30px, 4vw, 42px);
}

.about-page .choose-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.about-page .choose-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-page .choose-item i {
  color: #f0b626;
  font-size: 18px;
  margin-top: 3px;
}

.about-page .choose-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-page .choose-item p {
  margin-bottom: 0;
  color: #616764;
  line-height: 1.7;
}

.about-page .choose-visual {
  position: relative;
}

.about-page .choose-visual img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

.about-page .choose-badge {
  position: absolute;
  left: 22px;
  bottom: -22px;
  min-width: 128px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  text-align: left;
}

.about-page .choose-badge-value {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #1a221f;
  line-height: 1;
}

.about-page .choose-badge-label {
  display: block;
  margin-top: 5px;
  color: #717774;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (max-width: 991px) {
  .about-page .about-story-copy {
    padding-top: 0;
  }

  .about-page .about-collage {
    width: 100%;
  }

  .about-page .founder-copy {
    padding-left: 0;
  }

  .about-page .choose-wrapper {
    padding: 34px 24px;
  }
}

@media (max-width: 767px) {
  .about-page .about-hero .heading {
    padding: 112px 0 44px;
    background-attachment: scroll;
    min-height: 60vh;
  }

  .about-page .about-hero-content {
    padding: 24px 20px 22px;
    border-radius: 20px;
  }

  .about-page .about-hero-visual {
    margin-top: 22px;
  }

  .about-page .about-hero-visual img {
    min-height: 240px;
    border-radius: 20px;
  }

  .about-page .about-hero-stats {
    grid-template-columns: 1fr;
  }

  .about-page .about-hero .heading h1 {
    font-size: 38px;
  }

  .about-page .about-hero .heading p {
    font-size: 15px;
  }

  .about-page .about-collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: none;
  }

  .about-page .about-collage-main {
    grid-area: auto;
    min-height: 320px;
  }

  .about-page .about-collage-side.top,
  .about-page .about-collage-side.bottom,
  .about-page .about-collage-bottom {
    grid-area: auto;
    min-height: 220px;
  }

  .about-page .choose-badge {
    position: static;
    margin-top: 18px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

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

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

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-page {
  background-color: #fbf9f4;
}

.contact-page .section {
  background-color: #fbf9f4;
}

.contact-page .contact-section {
  padding-top: 130px;
}

.contact-page .contact-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-page .contact-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: #5d6761;
  font-size: 16px;
  line-height: 1.7;
}

.contact-page .contact-map {
  margin: 36px 0 28px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(12, 12, 12, 0.12);
  border: 1px solid rgba(8, 71, 44, 0.08);
}

.contact-page .contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

.contact-page .contact-info {
  display: grid;
  gap: 16px;
}

.contact-page .contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 16px 35px rgba(12, 12, 12, 0.08);
  border: 1px solid rgba(8, 71, 44, 0.08);
}

.contact-page .contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(240, 182, 38, 0.18);
  color: #ecaf1d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-page .contact-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-page .contact-info-card p {
  margin-bottom: 0;
  color: #46514b;
  line-height: 1.6;
  font-size: 14px;
}

.contact-page .contact-muted {
  color: #7b857f;
  font-size: 12px;
  margin-top: 6px;
}

.contact-page .contact-social {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(8, 71, 44, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.contact-page .contact-social span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ecaf1d;
  text-transform: uppercase;
}

.contact-page .contact-social-links {
  display: flex;
  gap: 8px;
}

.contact-page .contact-social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f7f1e3;
  color: #1f281e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.contact-page .contact-social-links a:hover {
  background: #f0b626;
  transform: translateY(-2px);
}

.contact-page .contact-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(12, 12, 12, 0.1);
  border: 1px solid rgba(8, 71, 44, 0.08);
}

.contact-page .contact-form-card h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-page .contact-form-card .form-label {
  font-size: 13px;
  font-weight: 700;
  color: #49544e;
  margin-bottom: 6px;
}

.contact-page .contact-form-card .form-control,
.contact-page .contact-form-card .form-select,
.contact-page .contact-form-card textarea {
  border-radius: 14px;
  border: 1px solid rgba(8, 71, 44, 0.12);
  background: #fbfaf7;
  padding: 12px 14px;
  font-size: 14px;
}

.contact-page .contact-form-card .form-control:focus,
.contact-page .contact-form-card .form-select:focus,
.contact-page .contact-form-card textarea:focus {
  border-color: rgba(240, 182, 38, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(240, 182, 38, 0.18);
}

.contact-page .contact-submit {
  background: #f0b626;
  border: 0;
  color: #1f281e;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 18px 34px rgba(240, 182, 38, 0.28);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.contact-page .contact-submit:hover {
  background: #f6c447;
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(240, 182, 38, 0.32);
}

.contact-page .php-email-form button[type="submit"] {
  background: transparent;
  padding: 0;
}

.contact-page .php-email-form button[type="submit"]:hover {
  background: transparent;
}

.contact-page .php-email-form .loading,
.contact-page .php-email-form .sent-message,
.contact-page .php-email-form .error-message {
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .contact-page .contact-section {
    padding-top: 110px;
  }
}

@media (max-width: 767px) {
  .contact-page .contact-map iframe {
    height: 240px;
  }

  .contact-page .contact-form-card {
    padding: 22px;
  }
}

.contact-page .contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #c89a1d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-page .contact-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #f0b626;
}

.contact-page .contact-top-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.contact-page .contact-top-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 16px 40px rgba(18, 24, 22, 0.05);
  color: #173025;
}

.contact-page .contact-top-card div {
  min-width: 0;
}

.contact-page .contact-top-card i {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff4da;
  color: #c88a00;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-page .contact-top-card strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #11241c;
}

.contact-page .contact-top-card span {
  color: #5b6761;
  line-height: 1.7;
}

.contact-page .contact-top-whatsapp {
  background: #1f9d55;
  color: #ffffff;
}

.contact-page .contact-top-whatsapp i {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.contact-page .contact-top-whatsapp strong,
.contact-page .contact-top-whatsapp span {
  color: #ffffff;
}

.contact-page .contact-trust-panel {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 16px 40px rgba(18, 24, 22, 0.05);
}

.contact-page .contact-trust-panel h3 {
  margin-bottom: 18px;
  font-size: 26px;
  font-weight: 800;
  color: #10261d;
}

.contact-page .contact-trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(8, 71, 44, 0.08);
}

.contact-page .contact-trust-item:last-child {
  border-bottom: 0;
}

.contact-page .contact-trust-item i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff4da;
  color: #c88a00;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-page .contact-trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: #11241c;
}

.contact-page .contact-trust-item span {
  color: #5b6761;
  line-height: 1.7;
}

.contact-page .contact-form-intro {
  margin-bottom: 24px;
  color: #5a6660;
  line-height: 1.8;
}

.contact-page .contact-form-card .form-control,
.contact-page .contact-form-card .form-select,
.contact-page .contact-form-card textarea {
  min-height: 54px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.contact-page .contact-form-card .form-control:focus,
.contact-page .contact-form-card .form-select:focus,
.contact-page .contact-form-card textarea:focus {
  transform: translateY(-1px);
}

.contact-page .contact-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  margin-top: 12px;
  background: #fff3d8;
  color: #173025;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(8, 71, 44, 0.08);
}

.contact-page .contact-map-modern {
  margin-top: 36px;
}

.contact-page .contact-map-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.contact-page .contact-directions-btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #08472c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.contact-page .contact-final-cta {
  background: #ffffff;
}

.contact-page .contact-final-cta-panel {
  padding: 38px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(8, 71, 44, 0.96), rgba(16, 38, 29, 0.96)),
    #0f3124;
  box-shadow: 0 26px 60px rgba(10, 26, 20, 0.2);
  text-align: center;
}

.contact-page .contact-final-cta-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  font-weight: 800;
  color: #ffffff;
}

.contact-page .contact-final-cta-panel p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.contact-page .contact-final-btn {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0b626;
  color: #13231c;
  font-size: 14px;
  font-weight: 700;
}

.contact-page .contact-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 108px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f9d55;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(12, 21, 18, 0.2);
  z-index: 997;
  font-size: 28px;
}

@media (max-width: 991px) {
  .contact-page .contact-top-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .contact-page .contact-hero {
    text-align: center;
  }

  .contact-page .contact-kicker {
    justify-content: center;
  }

  .contact-page .contact-submit,
  .contact-page .contact-secondary-cta,
  .contact-page .contact-directions-btn,
  .contact-page .contact-final-btn {
    width: 100%;
  }

  .contact-page .contact-top-card {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 16px;
    text-align: center;
  }

  .contact-page .contact-top-card span {
    line-height: 1.5;
    word-break: break-word;
  }

  .contact-page .contact-map-actions {
    justify-content: stretch;
  }

  .contact-page .contact-whatsapp-float {
    bottom: 150px;
    right: 16px;
  }

  .contact-page .contact-final-cta-panel {
    padding: 28px 20px;
  }
}

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq .faq-intro {
  background: linear-gradient(
      135deg,
      rgba(8, 71, 44, 0.06),
      rgba(240, 182, 38, 0.08)
    ),
    #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 22px 48px rgba(12, 12, 12, 0.1);
  border: 1px solid rgba(8, 71, 44, 0.08);
  position: sticky;
  top: 110px;
  overflow: hidden;
}

.faq .faq-intro::before {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(240, 182, 38, 0.18) 0%,
    rgba(240, 182, 38, 0) 70%
  );
  pointer-events: none;
}

.faq .faq-intro h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #11241c;
  line-height: 1.15;
}

.faq .faq-intro p {
  color: #5f6b63;
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 420px;
}

.faq .faq-cta {
  background: #08472c;
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(8, 71, 44, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.faq .faq-cta:hover {
  background: #0b5a38;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(8, 71, 44, 0.22);
}

.faq .accordion-item {
  border: none;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 12, 12, 0.08);
  border: 1px solid rgba(8, 71, 44, 0.08);
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.faq .accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(12, 12, 12, 0.1);
  border-color: rgba(8, 71, 44, 0.14);
}

.faq .accordion-item + .accordion-item {
  margin-top: 16px;
}

.faq .accordion-button {
  font-weight: 700;
  color: #1f281e;
  background: transparent;
  padding: 22px 24px;
  gap: 14px;
  font-size: 17px;
  line-height: 1.45;
}

.faq .accordion-button:not(.collapsed) {
  background: linear-gradient(
      135deg,
      rgba(240, 182, 38, 0.14),
      rgba(8, 71, 44, 0.05)
    ),
    #fffaf0;
  color: #1f281e;
  box-shadow: none;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button::after {
  background-size: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(8, 71, 44, 0.08);
  padding: 12px;
  background-position: center;
  flex-shrink: 0;
}

.faq .faq-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(240, 182, 38, 0.24),
    rgba(240, 182, 38, 0.08)
  );
  color: #d3910d;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(240, 182, 38, 0.12);
}

.faq .accordion-body {
  color: #5f6b63;
  line-height: 1.8;
  padding: 0 24px 24px 80px;
  font-size: 15px;
}

.faq {
  background: radial-gradient(
      circle at 20% 0%,
      rgba(8, 71, 44, 0.08),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 100%,
      rgba(240, 182, 38, 0.12),
      transparent 55%
    );
}

.faq .section-title h2 {
  position: relative;
  display: inline-block;
}

.faq .section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 52px;
  height: 3px;
  background: #f0b626;
  transform: translateX(-50%);
  border-radius: 999px;
}

@media (max-width: 991px) {
  .faq .faq-intro {
    position: relative;
    top: 0;
  }
}

@media (max-width: 767px) {
  .faq .faq-intro {
    padding: 22px;
  }

  .faq .accordion-button {
    padding: 18px 18px;
    font-size: 15px;
  }

  .faq .accordion-body {
    padding: 0 18px 18px 18px;
    font-size: 14px;
  }

  .faq .faq-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Real Estate Section
--------------------------------------------------------------*/
.real-estate .card {
  background-color: var(--background-color);
  color: var(--default-color);
  border: none;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  min-height: 500px;
}

.real-estate .card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 25%,
    rgba(0, 0, 0, 0.9) 75%
  );
  z-index: 2;
}

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

.real-estate .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 30px;
}

.real-estate .card .card-body .sale-rent {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--contrast-color);
  padding: 4px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  margin-bottom: 10px;
}

.real-estate .card .card-body h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px;
  padding-left: 10px;
  border-left: 3px solid var(--accent-color);
}

.real-estate .card .card-body h3 a {
  color: var(--contrast-color);
}

.real-estate .card .card-body .card-content {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  height: 80px;
  visibility: hidden;
  opacity: 0;
  margin-top: 10px;
  margin-bottom: -80px;
  margin-left: -30px;
  margin-right: -30px;
  transition: 0.3s;
  padding: 0 10px;
}

.real-estate .card .card-body .card-content .propery-info {
  font-weight: 500;
}

.real-estate .card:hover .card-content {
  margin-bottom: -30px;
  visibility: visible;
  opacity: 1;
}

.real-estate .properties-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background-color: #08472c;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 35px rgba(8, 71, 44, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.real-estate .properties-cta-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.real-estate .properties-cta-btn:hover {
  color: #ffffff;
  background-color: #0b5a38;
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(8, 71, 44, 0.28);
}

.real-estate .properties-cta-btn:hover i {
  transform: translateX(4px);
}

.real-estate .listing-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.real-estate .filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff8eb;
  color: #234133;
  border: 1px solid rgba(8, 71, 44, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.real-estate .filter-chip.active {
  background: #08472c;
  color: #ffffff;
}

/* Featured Properties Cards */
:where(.real-estate, .properties-page) .featured-card {
  background: var(--surface-color);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(11, 90, 56, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

:where(.real-estate, .properties-page) .featured-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

:where(.real-estate, .properties-page) .featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

:where(.real-estate, .properties-page) .featured-overlay {
  position: absolute;
  inset: auto 16px 16px 16px;
  background: rgba(19, 24, 22, 0.78);
  border-radius: 16px;
  padding: 14px;
  color: #ffffff;
  backdrop-filter: blur(6px);
}

:where(.real-estate, .properties-page) .featured-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

:where(.real-estate, .properties-page) .featured-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #ffffff;
  color: #1f281e;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

:where(.real-estate, .properties-page) .featured-brand h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

:where(.real-estate, .properties-page) .featured-brand h3 a {
  color: #ffffff;
}

:where(.real-estate, .properties-page) .featured-brand p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

:where(.real-estate, .properties-page) .featured-verified {
  margin-left: auto;
  color: #4dd37a;
  font-size: 16px;
}

:where(.real-estate, .properties-page) .featured-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
  font-size: 11px;
}

:where(.real-estate, .properties-page) .featured-meta span {
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

:where(.real-estate, .properties-page) .featured-meta strong {
  font-weight: 700;
  font-size: 12px;
}

:where(.real-estate, .properties-page) .featured-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(8, 71, 44, 0.08);
}

:where(.real-estate, .properties-page) .featured-tabs button {
  border: 0;
  background: transparent;
  padding: 12px;
  font-weight: 600;
  font-size: 13px;
  color: #2f3c37;
  border-bottom: 2px solid transparent;
}

:where(.real-estate, .properties-page) .featured-tabs button.active {
  border-color: var(--brand-800);
  color: var(--brand-900);
}

:where(.real-estate, .properties-page) .featured-price-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 16px;
  font-size: 12px;
  color: #4a5650;
  border-bottom: 1px solid rgba(8, 71, 44, 0.08);
}

:where(.real-estate, .properties-page) .featured-price {
  font-weight: 800;
  color: #1f281e;
}

:where(.real-estate, .properties-page) .featured-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

:where(.real-estate, .properties-page) .featured-actions a {
  padding: 12px 16px;
  font-weight: 700;
  font-size: 13px;
  color: var(--gold-500);
  border-top: 1px solid rgba(8, 71, 44, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

:where(.real-estate, .properties-page) .featured-actions a + a {
  border-left: 1px solid rgba(8, 71, 44, 0.08);
}

:where(.real-estate, .properties-page) .featured-actions a:hover {
  background: #fff6e8;
}

@media (max-width: 575px) {
  :where(.real-estate, .properties-page) .featured-price-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.trust-signals {
  background: linear-gradient(180deg, #f8faf8 0%, #eef5f1 100%);
}

.trust-signals .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-signals .trust-card {
  height: 100%;
  padding: 26px 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 16px 40px rgba(18, 24, 22, 0.06);
}

.trust-signals .trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff4da;
  color: #c78d04;
  font-size: 24px;
  margin-bottom: 18px;
}

.trust-signals .trust-card h3 {
  margin-bottom: 10px;
  color: #10261d;
  font-size: 20px;
  font-weight: 700;
}

.trust-signals .trust-card p {
  margin: 0;
  color: #56605b;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .trust-signals .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .trust-signals .trust-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Properties Page
--------------------------------------------------------------*/
.properties-page {
  background-color: var(--background-color);
}

.properties-page .section {
  background-color: var(--background-color);
}

.properties-page .properties-hero {
  background: #f8f5ef;
  padding: 130px 0 70px;
}

.properties-page .properties-hero-frame {
  background:
    linear-gradient(
      90deg,
      rgba(7, 27, 20, 0.75) 0%,
      rgba(7, 27, 20, 0.55) 40%,
      rgba(7, 27, 20, 0.2) 70%,
      rgba(7, 27, 20, 0.08) 100%
    ),
    url("../img/properties/property-hero.jpg") center/cover no-repeat;
  border-radius: 28px;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.16);
}

.properties-page .properties-hero-content {
  max-width: 560px;
  color: #ffffff;
}

.properties-page .properties-hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.properties-page .properties-hero h1 {
  color: #ffffff;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 14px;
}

.properties-page .properties-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

.properties-page .properties-search {
  margin-top: -34px;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 45px rgba(18, 18, 18, 0.12);
  border: 1px solid rgba(8, 71, 44, 0.08);
}

.properties-page .properties-search .input-group-text {
  background: transparent;
  border: none;
  color: #c1890f;
  font-size: 15px;
}

.properties-page .properties-search .form-control,
.properties-page .properties-search .form-select {
  border: none;
  background: transparent;
  font-weight: 600;
  color: #33413b;
  box-shadow: none;
}

.properties-page .properties-search .form-control::placeholder {
  color: #86918b;
  font-weight: 500;
}

.properties-page .properties-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.properties-page .properties-section-head h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 6px;
}

.properties-page .properties-section-head p {
  margin-bottom: 0;
  color: #5f6b63;
}

.properties-page .properties-viewall {
  color: #b57f14;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.properties-page .properties-viewall i {
  transition: transform 0.3s ease;
}

.properties-page .properties-viewall:hover i {
  transform: translateX(4px);
}

.properties-page .properties-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 12, 12, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.properties-page .properties-card-media {
  position: relative;
  overflow: hidden;
}

.properties-page .properties-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.properties-page .properties-card:hover img {
  transform: scale(1.04);
}

.properties-page .properties-card.featured .properties-card-media img {
  height: 240px;
}

.properties-page .properties-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: #a76e0d;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.properties-page .properties-fav {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7b1b2a;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.properties-page .properties-fav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.properties-page .properties-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.properties-page .properties-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.properties-page .properties-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}

.properties-page .properties-card h3 a {
  color: #1d2621;
}

.properties-page .properties-price {
  color: #c08812;
  font-weight: 800;
  font-size: 15px;
}

.properties-page .properties-location {
  color: #6b766f;
  font-size: 14px;
  margin-bottom: 0;
}

.properties-page .properties-location i {
  color: #c08812;
  margin-right: 6px;
}

.properties-page .properties-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #627068;
}

.properties-page .properties-meta i {
  color: #c08812;
  margin-right: 6px;
}

.properties-page .properties-card.compact .properties-card-media img {
  height: 180px;
}

.properties-page .properties-card.compact .properties-card-body {
  padding: 16px 18px 18px;
}

.properties-page .properties-cta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.properties-page .properties-load {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(8, 71, 44, 0.2);
  background: transparent;
  color: #8a6414;
  font-weight: 700;
  transition: all 0.3s ease;
}

.properties-page .properties-load:hover {
  background: #fff4dc;
  color: #7b540b;
  border-color: rgba(8, 71, 44, 0.32);
}

@media (max-width: 991px) {
  .properties-page .properties-hero-frame {
    padding: 36px;
  }

  .properties-page .properties-search {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .properties-page .properties-hero {
    padding-top: 110px;
  }

  .properties-page .properties-hero-frame {
    min-height: 300px;
    padding: 28px;
    justify-content: center;
    text-align: center;
  }

  .properties-page .properties-hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .properties-page .properties-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*--------------------------------------------------------------
# Real Estate 2 Section
--------------------------------------------------------------*/
.real-estate-2 .portfolio-details-slider img {
  width: 100%;
}

.real-estate-2 .swiper-wrapper {
  height: auto;
}

.real-estate-2 .swiper-button-prev,
.real-estate-2 .swiper-button-next {
  width: 48px;
  height: 48px;
}

.real-estate-2 .swiper-button-prev:after,
.real-estate-2 .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.real-estate-2 .swiper-button-prev:hover:after,
.real-estate-2 .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
  .real-estate-2 .swiper-button-prev,
  .real-estate-2 .swiper-button-next {
    display: none;
  }
}

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

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

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

.real-estate-2 .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.real-estate-2 .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.real-estate-2 .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.real-estate-2 .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.real-estate-2 .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.real-estate-2 .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.real-estate-2 .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.real-estate-2 .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.real-estate-2 .portfolio-description p {
  padding: 0;
}

.real-estate-2 .portfolio-description h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--heading-color);
}

.real-estate-2 .portfolio-description .property-detail-block {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 16px;
  padding: 16px 18px;
  margin: 18px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.real-estate-2 .portfolio-description .property-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  font-size: 15px;
}

.real-estate-2 .portfolio-description .property-detail-list li {
  position: relative;
  padding-left: 18px;
}

.real-estate-2 .portfolio-description .property-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
}

.real-estate-2 .portfolio-description .property-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 12px;
  font-weight: 500;
}

.real-estate-2 .skf-slider .swiper-slide img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  border-radius: 14px;
  padding: 10px;
}

@media (max-width: 767px) {
  .real-estate-2 .skf-slider .swiper-slide img {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .real-estate-2 .portfolio-description .property-detail-list {
    grid-template-columns: 1fr;
  }
}

.real-estate-2 .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.real-estate-2 .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.real-estate-2 .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.real-estate-2 .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-left,
.real-estate-2 .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.real-estate-2 .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Property Details Page - Premium Styling
--------------------------------------------------------------*/

/* Property Hero Section */
.property-hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-top: 80px;
  background: #f0f0f0;
}

.property-details-slider {
  height: 100%;
  width: 100%;
}

.property-details-slider .swiper-slide {
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.property-details-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.property-details-slider .swiper-button-prev,
.property-details-slider .swiper-button-next {
  background: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.property-details-slider .swiper-button-prev:hover,
.property-details-slider .swiper-button-next:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.property-details-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.property-details-slider .swiper-pagination-bullet-active {
  background: white;
}

/* Property Details Section */
.property-details-section {
  padding: 60px 0;
  background: var(--background-color);
}

/* Property Header */
.property-header {
  border-bottom: 2px solid var(--brand-100);
  padding-bottom: 30px;
}

.property-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.property-tagline {
  font-size: 1.1rem;
  color: var(--default-color);
  font-weight: 500;
}

.property-meta-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-status,
.badge-type {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--pill-radius);
  font-size: 0.9rem;
  font-weight: 600;
}

.badge-status {
  background: var(--brand-100);
  color: var(--accent-color);
}

.badge-type {
  background: rgba(209, 139, 44, 0.1);
  color: var(--gold-500);
}

/* Property Tabs */
.property-tabs-wrapper {
  border-bottom: 2px solid #e0e0e0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.property-tabs {
  border: none;
  gap: 0;
  display: flex;
  flex-wrap: nowrap;
  min-width: min-content;
}

.property-tabs .nav-link {
  border: none;
  color: var(--default-color);
  font-weight: 600;
  padding: 16px 20px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.property-tabs .nav-link.active {
  color: var(--accent-color);
  background: transparent;
  border-bottom: 3px solid var(--accent-color);
}

.property-tab-content {
  padding: 40px 0;
}

/* Property Content */
.property-content {
  display: grid;
  gap: 30px;
}

.property-section {
  background: var(--surface-color);
  padding: 30px;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.property-section:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.property-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.property-section h3::before {
  content: "";
  width: 4px;
  height: 24px;
  background: var(--accent-color);
  border-radius: 2px;
}

.property-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-section li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.property-section li:last-child {
  border-bottom: none;
}

.property-section li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.amenity-item {
  background: var(--surface-color);
  padding: 24px;
  border-radius: var(--card-radius);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.amenity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.amenity-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.amenity-item p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

/* Specs Grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.spec-item {
  background: var(--surface-color);
  padding: 24px;
  border-radius: var(--card-radius);
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.spec-item .label {
  font-size: 0.9rem;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

.spec-item .value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
}

/* Location Wrapper */
.location-wrapper {
  background: var(--surface-color);
  padding: 20px;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Property Summary Card */
.property-summary-card {
  background: var(--surface-color);
  border-radius: var(--card-radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent-color);
}

.summary-header {
  border-bottom: 2px solid var(--brand-100);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.summary-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--heading-color);
}

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

.summary-list li {
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-list li:last-child {
  border-bottom: none;
}

.summary-list .label {
  font-weight: 600;
  color: var(--default-color);
  font-size: 0.95rem;
}

.summary-list .value {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 1rem;
}

/* Summary Actions */
.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-actions .btn {
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.summary-actions .btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.summary-actions .btn-primary:hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(11, 90, 56, 0.3);
}

.summary-actions .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.summary-actions .btn-outline-primary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

/* Summary Contact */
.summary-contact h5 {
  font-size: 1.1rem;
  color: var(--heading-color);
  font-weight: 700;
}

.contact-item {
  display: flex;
  gap: 12px;
}

.contact-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item .label {
  font-size: 0.85rem;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.contact-item a {
  font-weight: 600;
  color: var(--heading-color);
  display: block;
  margin-top: 4px;
}

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

/* Responsive */
@media (max-width: 768px) {
  .property-hero-section {
    height: 350px;
    margin-top: 70px;
  }

  .property-details-slider .swiper-slide {
    height: 350px;
  }

  .property-details-slider .swiper-button-prev,
  .property-details-slider .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

  .property-title {
    font-size: 1.8rem;
  }

  .property-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .property-tabs .nav-link {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .property-summary-card {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Enhanced Property Sections Styling
--------------------------------------------------------------*/

/* Property Section Container */
.property-section {
  background: linear-gradient(
    135deg,
    var(--surface-color) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  padding: 32px;
  border-radius: var(--card-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(11, 90, 56, 0.05);
  margin-bottom: 24px;
}

.property-section:hover {
  box-shadow: 0 12px 32px rgba(11, 90, 56, 0.15);
  transform: translateY(-4px);
  border-color: rgba(11, 90, 56, 0.1);
}

.property-section h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.property-section h3::before {
  content: "";
  width: 5px;
  height: 28px;
  background: linear-gradient(
    180deg,
    var(--accent-color) 0%,
    var(--brand-700) 100%
  );
  border-radius: 3px;
  flex-shrink: 0;
}

.property-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.property-section li {
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  border-left: 3px solid var(--accent-color);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
  border-bottom: none;
}

.property-section li:hover {
  background: rgba(11, 90, 56, 0.05);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(11, 90, 56, 0.1);
}

.property-section li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
}

.property-section li::after {
  content: "";
}

/* Specific Section Styling */
.property-section:nth-child(1) h3::before {
  background: linear-gradient(180deg, #0b5a38 0%, #0e6b43 100%);
}

.property-section:nth-child(2) h3::before {
  background: linear-gradient(180deg, #1a8a5a 0%, #0b5a38 100%);
}

.property-section:nth-child(3) h3::before {
  background: linear-gradient(180deg, #d18b2c 0%, #b8741f 100%);
}

.property-section:nth-child(4) h3::before {
  background: linear-gradient(180deg, #0b5a38 0%, #1a8a5a 100%);
}

/* Icon Styling for Different Sections */
.property-section:nth-child(1) {
  border-top: 4px solid #0b5a38;
}

.property-section:nth-child(2) {
  border-top: 4px solid #1a8a5a;
}

.property-section:nth-child(3) {
  border-top: 4px solid #d18b2c;
}

.property-section:nth-child(4) {
  border-top: 4px solid #0b5a38;
}

/* Highlight Important Info */
.property-section li strong {
  color: var(--accent-color);
  font-weight: 700;
}

/* Two Column Layout for Desktop */
@media (min-width: 1200px) {
  .property-section ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .property-section {
    padding: 24px;
    margin-bottom: 20px;
  }

  .property-section h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }

  .property-section ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .property-section li {
    padding: 14px;
    font-size: 0.95rem;
  }
}

/* Amenities Grid Enhancement */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.amenity-item {
  background: linear-gradient(
    135deg,
    var(--surface-color) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(11, 90, 56, 0.05);
  position: relative;
  overflow: hidden;
}

.amenity-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color) 0%,
    var(--brand-700) 100%
  );
}

.amenity-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(11, 90, 56, 0.15);
  border-color: rgba(11, 90, 56, 0.1);
}

.amenity-item i {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: block;
  transition: all 0.3s ease;
}

.amenity-item:hover i {
  transform: scale(1.15) rotate(5deg);
}

.amenity-item p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Specs Grid Enhancement */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.spec-item {
  background: linear-gradient(
    135deg,
    var(--surface-color) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.spec-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(11, 90, 56, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.spec-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(11, 90, 56, 0.15);
}

.spec-item .label {
  font-size: 0.85rem;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
  font-weight: 700;
}

.spec-item .value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Highlight specific specs */
.spec-item:nth-child(odd) {
  border-left-color: var(--accent-color);
}

.spec-item:nth-child(even) {
  border-left-color: var(--gold-500);
}

/* Tab Content Padding */
.property-tab-content {
  padding: 40px 0;
  animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive for Tablets */
@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive for Mobile */
@media (max-width: 576px) {
  .property-section {
    padding: 20px;
  }

  .property-section h3 {
    font-size: 1.1rem;
  }

  .property-section ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .amenity-item {
    padding: 16px;
  }

  .amenity-item i {
    font-size: 1.8rem;
  }

  .amenity-item p {
    font-size: 0.85rem;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .spec-item {
    padding: 18px;
  }

  .spec-item .label {
    font-size: 0.8rem;
  }

  .spec-item .value {
    font-size: 1rem;
  }
}

.property-meta-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.property-hot-badge,
.property-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.property-hot-badge {
  background: #f0b626;
  color: #13231c;
}

.property-verified-badge {
  background: #eef7f1;
  color: #0b5a38;
}

.property-hero-location {
  margin: 12px 0 0;
  font-size: 16px;
  color: #5a6660;
}

.property-price-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
}

.property-info-price-row {
  margin: 0 0 20px;
}

.property-info-price-row .property-price-label {
  color: #72807a;
}

.property-info-price-row .property-price-big {
  color: #11241c;
}

.property-price-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.property-price-big {
  display: block;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.property-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.property-hero-call,
.property-hero-whatsapp {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.property-hero-call {
  background: #f0b626;
  color: #13231c;
}

.property-hero-whatsapp {
  background: #1f9d55;
  color: #ffffff;
}

.property-hero-call:hover,
.property-hero-whatsapp:hover {
  transform: translateY(-2px);
}

.property-key-grid,
.property-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.property-info-block {
  background: #ffffff;
}

.section-intro {
  margin-bottom: 18px;
}

.section-intro h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #11241c;
}

.section-intro p {
  margin: 0;
  color: #5a6660;
  line-height: 1.8;
}

.property-info-card {
  min-height: 118px;
  padding: 20px 18px;
  border-radius: 22px;
  background: #fffdf8;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 12px 30px rgba(18, 24, 22, 0.05);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.property-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff4da;
  color: #c88a00;
  font-size: 20px;
  flex-shrink: 0;
}

.property-info-card small {
  display: block;
  color: #72807a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.property-info-card strong {
  color: #11241c;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.property-slide-trigger {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.property-slide-trigger img {
  transition: transform 0.5s ease;
}

.property-slide-trigger:hover img {
  transform: scale(1.06);
}

.summary-trust-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.summary-trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff8eb;
  border: 1px solid rgba(8, 71, 44, 0.08);
  color: #173025;
  font-size: 14px;
  font-weight: 600;
}

.summary-trust-item i {
  color: #c88a00;
}

.property-form-card .form-control,
.property-form-card textarea {
  border-radius: 12px;
  min-height: 50px;
  border: 1px solid rgba(8, 71, 44, 0.12);
  box-shadow: none;
}

.property-form-card textarea {
  min-height: 120px;
}

.property-form-card .btn-primary {
  background: #08472c;
  border-color: #08472c;
  min-height: 50px;
  border-radius: 12px;
  font-weight: 700;
}

.property-related-section {
  padding-top: 12px;
}

.related-property-card {
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(8, 71, 44, 0.08);
  box-shadow: 0 16px 36px rgba(18, 24, 22, 0.06);
}

.related-property-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.related-property-copy {
  padding: 18px;
}

.related-property-copy h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 700;
}

.related-property-copy p {
  margin-bottom: 12px;
  color: #5f6a64;
}

.related-property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-property-meta span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff8eb;
  color: #173025;
  font-size: 13px;
  font-weight: 700;
}

.property-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 108px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f9d55;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(12, 21, 18, 0.2);
  z-index: 997;
  font-size: 28px;
}

.property-gallery-modal-content {
  background: #0c1612;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.property-gallery-modal-content img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  background: #0c1612;
}

.property-gallery-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

@media (max-width: 1199px) {
  .property-hero-meta-grid,
  .property-key-grid,
  .property-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .property-price-row,
  .property-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .property-header,
  .property-info-price-row,
  .property-info-block .section-intro {
    text-align: center;
  }

  .property-meta-badges,
  .property-hero-ctas {
    justify-content: center;
  }

  .property-info-price-row {
    gap: 16px;
  }

  .property-hero-call,
  .property-hero-whatsapp {
    width: 100%;
  }

  .property-hero-meta-grid,
  .property-key-grid,
  .property-detail-grid {
    grid-template-columns: 1fr;
  }

  .property-whatsapp-float {
    bottom: 150px;
    right: 16px;
  }

  #property-map {
    height: 320px !important;
  }
}

/*--------------------------------------------------------------
# Mobile Responsive Fixes for Property Details
--------------------------------------------------------------*/

@media (max-width: 768px) {
  /* Mobile Tab Styling */
  .property-tabs-wrapper {
    margin: 0 -15px;
    padding: 0 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .property-tabs {
    gap: 0;
    flex-wrap: nowrap;
    min-width: min-content;
  }

  .property-tabs .nav-link {
    padding: 14px 12px;
    font-size: 0.85rem;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .property-tabs .nav-link i {
    font-size: 1rem;
  }

  /* Mobile Property Header */
  .property-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .property-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .property-tagline {
    font-size: 0.95rem;
  }

  .property-meta-badges {
    gap: 8px;
    margin-top: 12px;
  }

  .badge-status,
  .badge-type {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  /* Mobile Hero Section */
  .property-hero-section {
    height: 280px;
    margin-top: 70px;
  }

  .property-details-slider .swiper-slide {
    height: 280px;
  }

  .property-details-slider .swiper-button-prev,
  .property-details-slider .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Mobile Tab Content */
  .property-tab-content {
    padding: 20px 0;
  }

  /* Mobile Summary Card */
  .property-summary-card {
    margin-top: 20px;
    padding: 20px;
  }

  .summary-header {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .summary-header h3 {
    font-size: 1.1rem;
  }

  .summary-list li {
    padding: 12px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .summary-list .label {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }

  .summary-list .value {
    font-size: 0.95rem;
  }

  .summary-actions {
    gap: 10px;
  }

  .summary-actions .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .summary-contact {
    padding-top: 15px;
    margin-top: 15px;
  }

  .summary-contact h5 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .contact-item {
    gap: 10px;
    margin-bottom: 12px;
  }

  .contact-item i {
    font-size: 1.1rem;
  }

  .contact-item .label {
    font-size: 0.75rem;
  }

  .contact-item a {
    font-size: 0.9rem;
  }

  /* Mobile Property Sections */
  .property-section {
    padding: 20px;
    margin-bottom: 16px;
  }

  .property-section h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .property-section ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .property-section li {
    padding: 12px;
    font-size: 0.9rem;
  }

  /* Mobile Amenities Grid */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .amenity-item {
    padding: 16px;
  }

  .amenity-item i {
    font-size: 1.8rem;
  }

  .amenity-item p {
    font-size: 0.85rem;
  }

  /* Mobile Specs Grid */
  .specs-grid {
    grid-template-columns: 1fr;
  }

  .spec-item {
    padding: 18px;
  }

  .spec-item .label {
    font-size: 0.8rem;
  }

  .spec-item .value {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .property-title {
    font-size: 1.4rem;
  }

  .property-tabs .nav-link {
    padding: 12px 10px;
    font-size: 0.75rem;
  }

  .property-hero-section {
    height: 240px;
  }

  .property-details-slider .swiper-slide {
    height: 240px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .property-section ul {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Mobile Footer Fixes
--------------------------------------------------------------*/

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer .footer-grid {
    row-gap: 20px;
  }

  .footer .footer-card {
    padding: 20px;
  }

  .footer .footer-brand img {
    height: 60px;
  }

  .footer .footer-brand-text span:first-child {
    font-size: 14px;
  }

  .footer .footer-tagline {
    font-size: 11px;
  }

  .footer .footer-item {
    gap: 10px;
  }

  .footer .footer-item i {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .footer .footer-item p {
    font-size: 13px;
  }

  .footer h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .footer .footer-links li a {
    font-size: 12px;
  }

  .footer .footer-bottom {
    margin-top: 24px;
    padding-top: 20px;
  }

  .footer .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer .footer-bottom-inner p {
    font-size: 12px;
    margin-bottom: 0;
  }

  .footer .footer-bottom-links {
    flex-direction: column;
    gap: 8px;
    justify-content: center;
  }

  .footer .footer-bottom-links a {
    font-size: 12px;
    display: inline-block;
  }

  .footer .credits {
    font-size: 11px;
    margin-top: 12px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer .footer-grid {
    row-gap: 16px;
  }

  .footer .footer-card {
    padding: 16px;
  }

  .footer .footer-brand {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer .footer-brand img {
    height: 50px;
  }

  .footer .footer-brand-text {
    align-items: center;
  }

  .footer .footer-brand-text span:first-child {
    font-size: 13px;
  }

  .footer .footer-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer .footer-item i {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .footer .footer-item p {
    font-size: 12px;
  }

  .footer h4 {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer .footer-links li a {
    font-size: 11px;
  }

  .footer .footer-bottom {
    margin-top: 20px;
    padding-top: 16px;
  }

  .footer .footer-bottom-inner p {
    font-size: 11px;
  }

  .footer .footer-bottom-links a {
    font-size: 11px;
  }

  .footer .credits {
    font-size: 10px;
  }

  /* Stack footer content vertically on very small screens */
  .footer .footer-bottom-inner {
    gap: 10px;
  }

  .footer .footer-bottom-links {
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 24px 0 12px;
  }

  .footer .footer-card {
    padding: 14px;
  }

  .footer .footer-brand img {
    height: 45px;
  }

  .footer .footer-brand-text span:first-child {
    font-size: 12px;
  }

  .footer .footer-tagline {
    font-size: 10px;
  }

  .footer h4 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .footer .footer-item p {
    font-size: 11px;
  }

  .footer .footer-links li a {
    font-size: 10px;
  }

  .footer .footer-bottom-inner p {
    font-size: 10px;
  }

  .footer .footer-bottom-links a {
    font-size: 10px;
  }

  .footer .credits {
    font-size: 9px;
  }
}


/*--------------------------------------------------------------
# Enhanced Slider Image Display
--------------------------------------------------------------*/

.property-details-slider {
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  width: 100%;
  height: 100%;
}

.property-details-slider .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.property-details-slider .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.property-details-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f0f0f0;
  -webkit-user-select: none;
  user-select: none;
}

/* Ensure images load properly */
.property-details-slider img {
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

/* Swiper button styling */
.property-details-slider .swiper-button-prev,
.property-details-slider .swiper-button-next {
  z-index: 10;
}

.property-details-slider .swiper-button-prev::after,
.property-details-slider .swiper-button-next::after {
  font-size: 20px;
}

.property-details-slider .swiper-pagination {
  bottom: 20px;
  z-index: 10;
}

.property-details-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 6px;
}

/* Tablet view */
@media (max-width: 992px) {
  .property-details-slider .swiper-button-prev,
  .property-details-slider .swiper-button-next {
    width: 45px;
    height: 45px;
  }

  .property-details-slider .swiper-button-prev::after,
  .property-details-slider .swiper-button-next::after {
    font-size: 18px;
  }
}

/* Mobile view optimization */
@media (max-width: 768px) {
  .property-details-slider .swiper-button-prev,
  .property-details-slider .swiper-button-next {
    width: 38px;
    height: 38px;
  }

  .property-details-slider .swiper-button-prev::after,
  .property-details-slider .swiper-button-next::after {
    font-size: 16px;
  }

  .property-details-slider .swiper-pagination {
    bottom: 15px;
  }

  .property-details-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}

/* Small mobile view */
@media (max-width: 480px) {
  .property-details-slider .swiper-button-prev,
  .property-details-slider .swiper-button-next {
    width: 34px;
    height: 34px;
  }

  .property-details-slider .swiper-button-prev::after,
  .property-details-slider .swiper-button-next::after {
    font-size: 14px;
  }

  .property-details-slider .swiper-pagination {
    bottom: 12px;
  }

  .property-details-slider .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 3px;
  }
}
