:root {
    /* ===========================
       BRAND COLORS
    ============================ */

    /* Main Brand Colors */
/* ==========================================================================
     1. GLOBAL PRIMITIVE TOKENS (The Raw Palette)
     ========================================================================== */
  --color-green-base:       #1F4D43; /* Premium Green */
  --color-green-alt:        #244E46; /* Alternative Premium Green */
  
  --color-gold-base:        #C8A063; /* Sand Gold */
  --color-gold-alt:         #D4B07B; /* Alternative Sand Gold */
  
  --color-cream-base:       #F7F4EE; /* Main Cream / Beige Background */
  --color-cream-alt:        #F5F1EA; /* Alternative Background */
  --color-cream-light:      #FCFBF8; /* Off-white Card Background */
  
  --color-neutral-dark:     #2C2C2C; /* Premium Dark Text */
  --color-neutral-muted:    #6B6B6B; /* Secondary Text */

  --color-red-base: #A8453C; /* Premium muted Red */
  --color-red-alt:  #B85A4E; /* Alternative muted Red */

  /* ==========================================================================
     2. SEMANTIC TOKENS (Functional Mapping)
     ========================================================================== */
  
  /* --- Brand & Accents --- */
  --color-primary:          var(--color-green-base);
  --color-primary-hover:    var(--color-green-alt);
  --color-accent:           var(--color-gold-base);
  --color-accent-hover:     var(--color-gold-alt);

  /* --- Backgrounds --- */
  --bg-main:                var(--color-cream-base);
  --bg-surface:             var(--color-cream-alt);
  --bg-card:                var(--color-cream-light);

  /* --- Typography --- */
  --text-main:              var(--color-neutral-dark);
  --text-muted:             var(--color-neutral-muted);
  --text-on-primary:        var(--color-cream-light);
  --text-on-accent:         var(--color-neutral-dark);

  /* --- Interactive Components (CTAs & Buttons) --- */
  --cta-bg:                 var(--color-primary);
  --cta-bg-hover:           var(--color-primary-hover);
  --cta-text:               var(--text-on-primary);
  
  --cta-alt-bg:             var(--color-accent);
  --cta-alt-bg-hover:       var(--color-accent-hover);
  --cta-alt-text:           var(--text-on-accent);

  /* --- Borders & Dividers --- */
  --border-color-subtle:    var(--color-cream-alt);
  --border-color-focus:     var(--color-gold-base);

  /* Fonts used */
  --font-inter: "Inter", sans-serif;
  --font-playfair: "Playfair Display";

    /* Base Scale Ratio: 1.25 (Major Third) */
    /* Min Width: 400px | Max Width: 1440px */

    --fs-p:  clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    --fs-h6: clamp(1.05rem, 1.02rem + 0.15vw, 1.125rem);
    --fs-h5: clamp(1.15rem, 1.1rem + 0.25vw, 1.25rem);
    --fs-h4: clamp(1.3rem, 1.2rem + 0.5vw, 1.5rem);
    --fs-h3: clamp(1.5rem, 1.35rem + 0.75vw, 1.875rem);
    --fs-h2: clamp(1.85rem, 1.6rem + 1.25vw, 2.375rem);
    --fs-h1: clamp(2.25rem, 1.8rem + 2vw, 3rem);

    --lh-tight:1.1;
    --lh-snug:1.25;
    --lh-base: 1.45;
    --lh-loose: 1.6;

    /* Fluid Section Padding */
    /* Mobile: 60px | Desktop: 120px */
    --section-spacing-y: clamp(3.75rem, 2.5rem + 5vw, 7.5rem);
    
    /* Extra Large Spacing (for Hero or visual breaks) */
    /* Mobile: 80px | Desktop: 160px */
    --section-spacing-xl: clamp(5rem, 3rem + 8vw, 10rem);

    /* Container Horizontal Padding */
    --container-gap: clamp(1.25rem, 5vw, 2.5rem);

    /* Base Indent / Small Spacing */
    --space-xs: 1.5rem;   /* 24px - Your horizontal indent base */
    
    /* Medium Spacing (Element gaps) */
    --space-s:  2rem;     /* 32px - Between headline and text */
    --space-m:  3rem;     /* 48px - Between text and buttons */
    
    /* Large Spacing (Inner section components) */
    --space-l:  4rem;     /* 64px - Padding inside large cards */
    
    /* Extra Large (Section padding / Hero gaps) */
    --space-xl: 5rem;     /* 80px - Minimal section vertical padding */

    /* Bonus: Fluid Section Gap (Mobile: 3rem -> Desktop: 5rem) */
    --space-section: clamp(3rem, 5vw, 5rem);
}

html { scroll-behavior: smooth; }

.w-nav-item.level_1.current-menu-ancestor > a.w-nav-anchor .w-nav-title,
.w-nav-item.level_1.current-menu-parent > a.w-nav-anchor .w-nav-title {
    color: #C8A063;
}

.my-logo a {
  display: flex;
}

.my-logo svg {
  color: var(--color-primary);
  height: 50px;
  width: auto;
  transition: color 0.3s ease;
}

.my-logo:hover svg {
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .my-logo svg {
    height: 40px;
  }
}

@media (max-width: 1024px) {
    .cta-button-wrapper {
        flex-direction: column!important;
    }
}

@media (max-width: 1024px) {
    .cta-outer-btn-wrapper {
        align-items: flex-start!important;
    }
}

/* benefits-section */
.benefits-section {
    padding-block: calc(var(--space-l) - 1.25rem);
}

/* property section */

.featured-properties-section {
    padding-block: var(--space-l);
}

.property-main-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

/* Benefit Icon CSS */
.benefit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-cards--count-4 {
    grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
}

.benefit-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--color-gold-alt,#D4B07B);
    color: var(--color-gold-base, #C8A063);
}

.benefit-card__icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.benefit-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-card__title {
    font-size: var(--fs-h4);
    font-weight: 600;
    color: var(--color-neutral-dark, #2C2C2C);
    margin: 0;
}

.benefit-card__text {
    font-size: var(--fs-p);
    color: var(--color-neutral-dark, #2C2C2C);
    margin: 0;
}

.benefit-card__link,
a.benefit-card__link {
    color: var(--color-gold-base, #C8A063);
    text-decoration: none;
    font-size: calculate(var(--fs-p) * 0.85);
    margin-top: 0;
}

.benefit-card__link:hover,
a.benefit-card__link:hover {
    color: var(--color-neutral-dark, #2C2C2C);
}

@media (max-width: 1023px) {
    .benefit-cards,
    .benefit-cards--count-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefit-cards,
    .benefit-cards--count-4 {
        grid-template-columns: 1fr;
    }
}

/* lifestyle-section css */
/* ==========================================================================
   Lifestyle Section - Clean Responsive Layout (Stacked at 1280px & Below)
   ========================================================================== */

/* 1. Mobile, Tablet & Small Laptop Setup (Stacked View - Up to 1280px) */
.lifestyle-section .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

/* Image on TOP */
/*.lifestyle-media-inner-wrapper {
    background-image: url('/wp-content/uploads/2026/05/Escape-invest-enjoy-in-Thailand-01.jpg');
    background-size: cover;
    background-position: 65% center;
    background-repeat: no-repeat;
    width: 100%;
    height: 380px;
    order: 1;
}*/

.lifestyle-media-inner-wrapper {
    background-image: var(--lifestyle-img);
    background-size: cover;
    background-position: 65% center;
    background-repeat: no-repeat;
    width: 100%;
    height: 380px;
    order: 1;
}

/* Content on BOTTOM with Fluid Responsive Padding */
.lifestyle-content-inner-wrapper {
    background-color: var(--color-green-base, #1F4D43);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem);
    box-sizing: border-box;
    order: 2;
}

/* Typography Base Styles */
.lifestyle-section-title,
.lifestyle-section-tagline {
    color: var(--color-cream-base, #F7F4EE);
    line-height: 1.45;
    width: 100%;
}

.lifestyle-section-tagline {
    font-size: var(--fs-p);
}


/* 2. Desktop & Standard Laptop Split View (1281px and up) */
@media (min-width: 1281px) {
    
    .lifestyle-section .vc_column-inner > .wpb_wrapper {
        grid-template-columns: 40% 60%;
        min-height: 650px;
        align-items: stretch;
    }

    .lifestyle-media-inner-wrapper {
        height: 100%;
        background-position: center center;
        order: unset;
    }

    .lifestyle-content-inner-wrapper {
        order: unset;
    }
}

/* partner-section css */
.partner-section {
    padding-block: var(--space-l);
}

/* footer css */


.main-footer-section {
    background: var(--color-gold-alt, #D4B07B);
    padding-block: var(--space-m);
    color: var(--color-green-base, #1F4D43);
}

.main-footer-inner-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 1025px) {
    .main-footer-inner-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 2.5rem;
    }
}

.bottom-footer-section {
    background: var(--color-green-base, #1F4D43);
    padding-block: 0.5rem;
}

.bottom-footer-section .vc_column-inner > .wpb_wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-content: center;
        align-items: center;
}

.footer-copyright {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: calc(var(--fs-p) * 0.85);
    font-optical-sizing: auto;
    color: var(--color-gold-base);
}

.trusted-by-section {
    padding-block: var(--space-m);
}

.trusted-by-section-title {
    text-align: center;
}

.trusted-by-section-tagline {
    text-align: center;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: calc(var(--fs-p) * 0.85);
    font-optical-sizing: auto;
    color: var(--color-gold-base);
}

/* general hero section css */
/* ============================================================
   HERO SECTION — Reusable Component
   
   Usage: Add class "hero-section" to any WPBakery row.
   Background images are auto-injected per page via PHP snippet
   using the page's featured image (2560×1707px master).
   ============================================================ */

.hero-section {
    --hero-img-mobile:  none;
    --hero-img-laptop:  none;
    --hero-img-desktop: none;

    width: 100%;
    background-image: var(--hero-img-mobile);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    aspect-ratio: 3 / 4;
    min-height: 500px;
}

@media (min-width: 1025px) {
    .hero-section {
        background-image: 
            linear-gradient(to right, rgba(26, 54, 54, 0.5) 0%, rgba(26, 54, 54, 0.1) 50%, transparent 100%), 
            var(--hero-img-laptop);
        background-position: center center;
        aspect-ratio: 16 / 9;
        min-height: auto;
    }
}

@media (min-width: 1381px) {
    .hero-section {
        background-image: 
            linear-gradient(to right, rgba(26, 54, 54, 0.5) 0%, rgba(26, 54, 54, 0.1) 50%, transparent 100%), 
            var(--hero-img-desktop);
        background-position: center center;
        aspect-ratio: 21 / 9;
    }
}

/* ==========================================================================
   Full Height Inherit & Vertical Alignment Fix
   ========================================================================== */

.hero-section,
.hero-section > .l-section-h,
.hero-section .g-cols,
.hero-section .vc_column-container,
.hero-section .vc_column-inner {
    height: 100%;
    min-height: inherit;
}

.hero-section .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
    box-sizing: border-box;
    height: 100%;
    align-content: end;
    padding-top: 0rem;
    padding-left: 0rem;
    padding-right: 0rem;
    padding-bottom: 4rem;
}

@media (max-width: 1024px) {
    .hero-section .hero-cta-inner-wrapper {
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
        gap: 0.8rem;
    }

    .hero-section .hero-cta-inner-wrapper .w-btn-wrapper,
    .hero-section .hero-cta-inner-wrapper .w-btn {
        width: auto !important;
        display: inline-block;
        text-align: left;
        margin-bottom: 0 !important;
    }
}

@media (min-width: 1025px) {
    .hero-section .vc_column-inner > .wpb_wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 4rem;
        align-content: center;
        align-items: center;
    }

    .hero-section .w-vwrapper:first-child {
        grid-column: 1 / 2;
    }

    .hero-section .hero-cta-inner-wrapper {
        display: inline-flex !important;
        flex-direction: row !important;
        width: auto;
    }

    .hero-section .hero-cta-inner-wrapper .w-btn-wrapper,
    .hero-section .hero-cta-inner-wrapper .w-btn {
        width: auto;
    }
}

.main-hero-title {
    color: var(--color-cream-base, #F7F4EE);
}

.main-hero-tagline {
    font-size: var(--fs-h6);
    font-weight: 400;
}

.main-hero-title,
.main-hero-tagline {
    color: var(--color-cream-base, #F7F4EE);
    text-shadow: 0 4px 14px rgba(26, 54, 54, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* About us page */
.our-vision-section {
    padding-block: var(--space-l);
    background: var(--color-cream-alt, #F5F1EA);
}

.our-vision-inner-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1025px) {
    .our-vision-inner-wrapper {
        display: grid;
        grid-template-columns: 3fr 7fr;
        gap: 1.25rem;
    }
}

/* Grid Item Border */
/* Grid Item */
.our-pillars-item {
    background: var(--color-cream-light, #FCFBF8);
    border-radius: 10px;
    overflow: hidden;
    width: 76%;
}

@media (min-width: 1024px) {
    .our-pillars-item {
        width: auto;
    }
}

/* Image */
.our-pillars-media img {
    transition: transform 0.5s ease;
}

/* Image Hover Zoom */
.our-pillars-item:hover .our-pillars-media img {
    transform: scale(1.05);
}

/* Title */
.our-pillars-title {
    margin-inline: 0.5rem;
    font-size: var(--fs-h5);
    line-height: var(--lh-tight);
}

/* Content */
.our-pillars-content {
    margin-inline: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: var(--fs-p);
    line-height: var(--lh-snug);
}

.small-tagline {
    color: var(--color-gold-alt, #D4B07B);
    font-size: calc(var(--fs-p) * 0.8);
    font-weight: 700;
}

.our-vision-content {
    font-size: var(--fs-p);
    line-height: var(--lh-snug);
}

.our-vision-content ul {
    margin-left: 1.3rem !important;
}

.our-commitments {
    padding-block: var(--space-l);
    background: var(--color-cream-light,#FCFBF8);
}

.title-commitments {
    text-align: center;
}

.small-tagline-commitments {
    color: var(--color-gold-alt, #D4B07B);
    font-size: calc(var(--fs-p) * 0.8);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.6rem;
}

.our-commitments-inner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (min-width: 600px) {
    .our-commitments-inner-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .our-commitments-inner-wrapper {
        grid-template-columns: repeat(5, 1fr);
    }
}

.our-commitments-iconbox .w-iconbox-icon {
    padding-bottom: 1.125rem;
}

.our-commitments-iconbox .w-iconbox-title {
    margin-inline: 0.5rem;
    font-size: var(--fs-h5);
    line-height: var(--lh-tight);
}

.our-commitments-iconbox .w-iconbox-text {
    font-size: var(--fs-p);
    line-height: var(--lh-snug);
}

.in-numbers-section {
    position: relative;
    padding-block: var(--space-l);
    background-image: url('/wp-content/uploads/2026/05/In-Numbers-Background-02.jpg');
    background-size: cover;
    background-position: center;
}

.in-numbers-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(36, 78, 70, 0.90); /* --color-green-alt at 86% */
    z-index: 0;
}

.in-numbers-section > * {
    position: relative;
    z-index: 1;
}

.in-numbers-section .vc_column-inner .wpb_wrapper {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1025px) {
    .in-numbers-section .vc_column-inner .wpb_wrapper {
        grid-template-columns: 1fr 4fr;
    }
}

.in-numbers-section .vc_column-inner .wpb_wrapper > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: unset !important;
}

/* Wrapper */
.in-numbers-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2.5rem 3rem;
    border-radius: 10px;
}

/* Item */
.in-numbers-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* Icon */
.in-numbers-icon {
    flex-shrink: 0;
    height: clamp(2rem, 3vw, 3.6rem);
    width: auto;
    color: var(--color-gold-base, #C8A063);
}
.in-numbers-icon svg {
    height: 100%;
    width: auto;
    fill: currentColor;
}

/* Text block */
.in-numbers-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Number */
.in-numbers-value {
    font-size: clamp(2rem, 3vw, 3.6rem);
    font-weight: 700;
    font-family: var(--h4-font-family, inherit);
    color: var(--color-cream-base, #F7F4EE);
    line-height: 1;
}

/* Label */
.in-numbers-label {
    font-size: calc(var(--fs-p) * 0.95);
    color: var(--color-cream-base, #F7F4EE);
    line-height: var(--lh-normal, 1.5);
}

/* Tablet */
@media (max-width: 1024px) {
    .in-numbers-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .in-numbers-wrapper {
        grid-template-columns: 1fr 1fr;
        padding: 2rem 1.25rem;
    }
}

.in-numbers-section-title {
    font-size: var(--fs-h2);
    color: var(--color-cream-base, #F7F4EE);
    font-family: var(--h4-font-family, inherit);
    line-height: var(--lh-snug);
}

.our-mission-media {
    border-radius: 10px;
}

.general-cta-section {
    padding-block: var(--space-l);
    position: relative;
    background-image: url('/wp-content/uploads/2026/05/CTA-Background-02.jpg');
    background-size: cover;
    background-position: center;
}

.general-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(20, 30, 25, 0.86);
    z-index: 0;
}

.general-cta-section .l-section-h {
    position: relative;
    z-index: 1;
}

.general-cta-section .vc_column-inner .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1025px) {
    .general-cta-section .vc_column-inner .wpb_wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.general-cta-title {
    color: var(--color-cream-base, #F7F4EE);
    font-family: var(--h4-font-family, inherit);
    line-height: var(--lh-snug);
    width: 90%;
    text-align: center;
}

@media (min-width: 1025px) {
    .general-cta-title {
        color: var(--color-cream-base, #F7F4EE);
        font-family: var(--h4-font-family);
        font-size: var(--fs-h3);
        line-height: var(--lh-snug);
        width: 60%;
        text-align: left;
    }
}

.general-cta-tagline {
    color: var(--color-cream-base, #F7F4EE);
    line-height: var(--lh-snug);
    font-size: var(--fs-h6);
    width: 100%;
    text-align: center;
}

@media (min-width: 1025px) {
    .general-cta-tagline {
        color: var(--color-cream-base, #F7F4EE);
        line-height: var(--lh-snug);
        font-size: var(--fs-h6);
        width: 100%;
        text-align: left;
    }
}

.general-cta-2-section {
    padding-block: var(--space-l);
    position: relative;
    background-image: url('/wp-content/uploads/2026/06/CTA-Background-03.jpg');
    background-size: cover;
    background-position: center;
}

.general-cta-2-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(20, 30, 25, 0.86);
    z-index: 0;
}

.general-cta-2-section .l-section-h {
    position: relative;
    z-index: 1;
}

.general-cta-2-section .vc_column-inner .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1025px) {
    .general-cta-2-section .vc_column-inner .wpb_wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.general-cta-2-title {
    color: var(--color-cream-base, #F7F4EE);
    font-family: var(--h4-font-family, inherit);
    line-height: var(--lh-snug);
    width: 90%;
    text-align: center;
}

@media (min-width: 1025px) {
    .general-cta-2-title {
        color: var(--color-cream-base, #F7F4EE);
        font-family: var(--h4-font-family);
        font-size: var(--fs-h3);
        line-height: var(--lh-snug);
        width: 60%;
        text-align: left;
    }
}

.general-cta-2-tagline {
    color: var(--color-cream-base, #F7F4EE);
    line-height: var(--lh-snug);
    font-size: var(--fs-h6);
    width: 100%;
    text-align: center;
}

@media (min-width: 1025px) {
    .general-cta-2-tagline {
        color: var(--color-cream-base, #F7F4EE);
        line-height: var(--lh-snug);
        font-size: var(--fs-h6);
        width: 100%;
        text-align: left;
    }
}

.contact-icon-box-section {
    padding-block: var(--space-m);
    background: var(--color-cream-base, #F7F4EE);
}

.contact-icon-box-section .vc_column-inner .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
.contact-icon-box-section .vc_column-inner .wpb_wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
}

@media (min-width: 1025px) {
.contact-icon-box-section .vc_column-inner .wpb_wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
}
}

/* =============================================
   Icon Box — Card Style
   ============================================= */
.w-iconbox {
  border: 1.5px solid #e8e0d8;
  border-radius: 10px;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* =============================================
   Icon Box — CTA Link
   ============================================= */
a.ibox-cta {
  color: var(--color-gold-base, #C8A063);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 0.75rem;
}

a.ibox-cta:hover {
  color: var(--color-green-alt, #244E46);
}

.ibox-cta .fal {
  font-size: 0.9em;
  transition: transform 0.2s ease;
}

.ibox-cta:hover .fal {
  transform: translateX(3px);
}

.contact-form-section {
    padding-block: var(--space-m);
    background: var(--color-cream-light, #FCFBF8);
}

.contact-form-section .vc_column-inner .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1015px) {
.contact-form-section .vc_column-inner .wpb_wrapper {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 1.5rem;
}
}

.maps-section {
    padding-block: var(--space-m);
    background: var(--color-cream-light, #FCFBF8);
}

.maps-section .vc_column-inner .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1015px) {
.maps-section .vc_column-inner .wpb_wrapper {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 1.5rem;
}
}

.office-location-maps {
    width: 100%!important;
}
#multi-location-map img {
    max-width: none !important;
    width: auto !important;
}

/* Career page css */
.why-work-with-inner-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (min-width: 600px) {
    .why-work-with-inner-wrapper {
        grid-template-columns: repeat(3, 1fr);
        display: grid !important;
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .why-work-with-inner-wrapper {
        grid-template-columns: repeat(6, 1fr);
        display: grid !important;
        gap: 1.25rem;
    }
}

.why-work-with-inner-wrapper .w-iconbox {
    border: 1.5px solid #e8e0d8;
    border-radius: 10px;
    padding: 1.2rem;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    width: auto !important;
    min-width: 0 !important;
}

.why-work-with-inner-wrapper,
.our-commitments-inner-wrapper {
    align-items: stretch;
}

.why-work-with-inner-wrapper .our-commitments-iconbox,
.our-commitments-inner-wrapper .our-commitments-iconbox {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-work-with-inner-wrapper .our-commitments-iconbox .w-iconbox-meta,
.our-commitments-inner-wrapper .our-commitments-iconbox .w-iconbox-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.why-work-with-inner-wrapper .our-commitments-iconbox .w-iconbox-text,
.our-commitments-inner-wrapper .our-commitments-iconbox .w-iconbox-text {
    /*margin-top: auto;*/
}

.open-job-position-section {
    background: var(--color-cream-base, #F7F4EE);
    padding-block: var(--space-l);
}

.life-at-fred-and-co-section {
    background: var(--color-cream-light, #FCFBF8);
    padding-block: var(--space-l);
}

.open-job-position-title,
.life-at-fred-and-co-title {
    text-align: center;
}

.open-job-position-tagline {
    font-size: var(--fs-p);
    line-height: var(--lh-snug);
    text-align: center;
    margin-top: 0.6rem;
}

.job-application-section {
    padding-block: var(--space-m);
}

.job-application-section .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1015px) {
.job-application-section .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
}
}

/* Reset standard list styling */
ul.feature-icon-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

/* Space out the items vertically */
ul.feature-icon-list li {
    display: flex;
    align-items: center;
    gap: 16px; /* Spaces the icon away from the text */
    margin-bottom: 20px; /* Space between each row */
    font-size: var(--fs-h6);
    color: var(--color-neutral-dark, #2C2C2C);
}

/* Ensure all rows stay uniform last-child fix */
ul.feature-icon-list li:last-child {
    margin-bottom: 0;
}

/* Style the icons specifically */
ul.feature-icon-list li i {
    width: 24px;
    text-align: center;
    font-size: 18px;
    color: var(--color-gold-alt, #D4B07B);
}

/* Franchise page css */
.prime-location-section {
    padding-block: var(--space-m);
}

.prime-location-grid .our-pillars-content p {
    font-size: calc(var(--fs-p) * 0.8);
}

.prime-location-grid .our-pillars-title {
    margin-inline: 0.5rem;
    font-size: var(--fs-h5);
    line-height: var(--lh-tight);
    margin-bottom: 0!important;
}

.prime-location-grid ul.features-list {
    margin-left: 1.8rem;
    font-size: var(--fs-p);
}

.prime-location-grid ul.features-list li {
    margin-bottom: 0.3rem;
    font-size: var(--fs-p);
}

.prime-location-grid .office-location-meta-content {
    margin-inline: 0.5rem;
    margin-bottom: 0.3rem!important;
    font-size: var(--fs-p);
}

.prime-location-grid .office-location-meta-content .w-post-elm-value {
    font-weight: 700;
    font-size: var(--fs-p);
}

.business-model-section {
    padding-block: var(--space-l);
    background: var(--color-cream-light, #FCFBF8);
}

.business-model-title {
    text-align: center;
}

.business-model-tagline {
    font-size: var(--fs-p);
    line-height: var(--lh-snug);
    text-align: center;
    margin-top: 0.6rem;
}

.business-model-grid {
    width: 100%;
}

@media (min-width: 1025px) {
    .business-model-grid {
       width: 80%;
       margin-left: auto;
       margin-right: auto;
}
}

.business-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-gold-base);
}

.testimonial-section {
    padding-block: var(--space-l);
}

/* ── Card ────────────────────────────────────────── */
.testimonial-grid .w-grid-item-h {
    background: #f9f9f9;
    border-radius: 0.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
}

/* ── Image ───────────────────────────────────────── */
.testimonial-media {
    flex: 0 0 140px;
    width: 140px;
}

.testimonial-media img {
    width: 140px;
    height: auto;
    aspect-ratio: 140 / 272;
    object-fit: cover;
    border-radius: 0.375rem;
    display: block;
}

/* ── Quote mark ──────────────────────────────────── */
.testimonial-content-wrapper::before {
    content: '\275D';
    display: block;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--color-gold-base);
}

/* ── Author name ─────────────────────────────────── */
.testimonial-author {
    font-weight: 700;
}

/* ── Function & location ─────────────────────────── */
.testimonial-function {
    font-size: 0.875rem;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .testimonial-grid .w-grid-item-h {
        align-items: center;
    }
}

.brochure-image {
    width: 60%;
    height: auto;
}

/* sell your property page */

.valuation-title {
    text-align: left;
    font-size: var(--h3-font-size);
}

.valuation-section .wpb_wrapper {
    background: var(--color-cream-light, #FCFBF8);
    border-radius: 0.6rem;
    padding: 2.3rem 2.3rem;
    position: relative;
    z-index: 2;
    margin-top: clamp(-3.75rem, -5vw, -1.875rem);
}

.property-selling-benefits-section {
    padding-block: var(--space-l);
}

.why-selling-with-fred-co-section {
    padding-block: var(--space-l);
    background: var(--color-cream-light, #FCFBF8);
}

.why-selling-with-fred-co-section .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1025px) {
    .why-selling-with-fred-co-section .vc_column-inner > .wpb_wrapper {
        display: grid;
        grid-template-columns: 2fr 3fr;
        gap: 2rem;
    }
}

.selling-points .fa-check-circle {
    color: var(--color-green-base);
}

.selling-process-section {
    padding-block: var(--space-l);
    background: var(--color-cream-light, #FCFBF8);
}

.selling-process-tagline {
    color: var(--color-gold-alt, #D4B07B);
    font-size: calc(var(--fs-p) * 0.8);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.8rem;
}

.selling-process-title {
    text-align: center;
}

/* ── Selling Process ───────────────────────────── */
.selling-process {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    width: 100%;
}

.selling-process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 0;
    min-width: 140px;
    max-width: 240px;
    position: relative;
}

/* Icon circle */
.selling-process__icon-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.selling-process__icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    border: 1px solid #D4B07B;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    color: var(--color-green-base, #1F4D43);
}

.selling-process__icon svg {
    width: 28px;
    height: 28px;
}

/* Dashed connector line */
.selling-process__connector {
    border-top: 2px dashed #D4B07B;
    position: absolute;
    left: calc(50% + 32px);
    right: calc(-50% + 32px);
    top: 32px;
    z-index: 0;
}

/* Content below icon */
.selling-process__content {
    margin-top: 16px;
    padding: 0 8px;
}

.selling-process__title {
    font-size: var(--fs-h6);
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--color-neutral-dark, #2C2C2C);
}

.selling-process__number {
    display: inline;
}

.selling-process__text {
    font-size: calc(var(--fs-p) * 0.8);
    line-height: 1.4;
    width: 80%;
    margin: 0 auto;
    color: var(--color-neutral-dark, #2C2C2C);
}

/* ── Mobile: vertical stack ────────────────────── */
@media (max-width: 767px) {
    .selling-process {
        flex-direction: column;
        align-items: center;
    }

    .selling-process__step {
        max-width: 300px;
        width: 100%;
    }

    .selling-process__connector {
        display: none;
    }

    /* Vertical dashed line for mobile */
    .selling-process__step:not(.selling-process__step--last)::after {
        content: '';
        display: block;
        width: 2px;
        height: 32px;
        border-left: 2px dashed #D4B07B;
        margin: 8px auto 0;
    }

    .selling-process__text {
        width: 100%;
    }
}

.sell-your-property-facts-section {
    padding-block: var(--space-l);
}

.sell-your-property-facts-section .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1015px) {
.sell-your-property-facts-section .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
}

/* ============================================
   Sell Your Property – Testimonial Card
   Image RIGHT (bigger), content LEFT
   ============================================ */

/* Card wrapper */
.testimonial-sell-property-item {
    background-color: var(--color-green-base, #1F4D43);
    border-radius: 0.5rem;
    overflow: hidden;
    align-items: stretch;
}

/* Grid item inner – make it full height flex */
.testimonial-sell-your-property-grid .w-grid-item-h {
    display: flex;
    align-items: stretch;
    height: 100%;
}

/* Hwrapper – the outer row container */
.testimonial-sell-your-property-grid .usg_hwrapper_1 {
    display: flex !important;
    align-items: stretch !important;
    width: 100%;
    gap: 0 !important;
}

/* Content vwrapper – left side */
.testimonial-sell-your-property-grid .usg_vwrapper_1 {
    flex: 1 1 auto;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 2.5rem 2.5rem 2.5rem 3rem !important;
    gap: 0.7rem !important;
}

/* Quote mark */
.testimonial-sell-your-property-grid .usg_vwrapper_1::before {
    content: '\275D';
    font-size: 4rem;
    line-height: 0.5;
    color: var(--color-gold-base, #C8A063);
    display: block;
    margin-bottom: 0;
}

/* Quote text */
.testimonial-sell-property-content p {
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
    color: var(--color-cream-light, #FCFBF8);
}

/* Author name */
.testimonial-sell-property-author {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-cream-light, #FCFBF8);
}

/* Function / location */
.testimonial-sell-property-function {
    font-size: 0.875rem;
    color: var(--color-gold-base, #C8A063);
}

/* Image side – right, 3/4 aspect ratio drives the card height */
.testimonial-sell-property-media {
    flex: 0 0 45%;
    max-width: 45%;
    aspect-ratio: 3 / 4;
}

.testimonial-sell-property-media a,
.testimonial-sell-property-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
    .testimonial-sell-your-property-grid .usg_hwrapper_1 {
        flex-direction: column !important;
    }

    .testimonial-sell-property-media {
        flex: 0 0 auto;
        max-width: 100%;
        aspect-ratio: 3 / 4;
        order: -1;
    }

    .testimonial-sell-your-property-grid .usg_vwrapper_1 {
        padding: 1.5rem !important;
    }
}

/* ============================================
   In Numbers – Sell Your Property
   ============================================ */

.in-number-sell-your-property-wrapper .in-numbers-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.in-number-sell-your-property-wrapper .in-numbers-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 180px;
    max-width: 220px;
    gap: 0.75rem;
}

/* Icon circle */
.in-number-sell-your-property-wrapper .in-numbers-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--color-gold-base, #C8A063);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 1.25rem;
}

.in-number-sell-your-property-wrapper .in-numbers-icon svg {
    height: 100%;
    width: auto;
    color: var(--color-green-base, #1F4D43);
}

/* Content block */
.in-number-sell-your-property-wrapper .in-numbers-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

/* Big number */
.in-number-sell-your-property-wrapper .in-numbers-value {
    font-size: clamp(2rem, 3vw, 3.6rem);
    font-weight: 700;
    line-height: 1;
    color: var(--color-green-base, #1F4D43);
}

/* Label */
.in-number-sell-your-property-wrapper .in-numbers-label {
    font-size: calc(var(--fs-p) * 0.95);
    line-height: 1.4;
    color: var(--color-content, inherit);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 600px) {
    .in-number-sell-your-property-wrapper .in-numbers-wrapper {
        gap: 1.5rem;
    }

    .in-number-sell-your-property-wrapper .in-numbers-item {
        flex: 1 1 140px;
    }
}

/* ============================================
   Icon – Gold Circle
   ============================================ */

.icon-circle-gold {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--color-cream-base, #F7F4EE);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 1.25rem;
}

.icon-circle-gold svg {
    height: 100%;
    width: auto;
    fill: var(--color-cream-base, #F7F4EE);
}

.sell-your-property-cta-title {
        color: var(--color-cream-base, #F7F4EE);
        font-family: var(--h4-font-family);
        font-size: var(--fs-h3);
        line-height: var(--lh-snug);
        text-align: left;
    }

.featured-villa-rentals-section {
    padding-block: var(--space-l);
    background: var(--color-cream-light, #FCFBF8);
}

.complete-experience-icon-media {

}

/* ============================================================
   COMPLETE EXPERIENCE SECTION — Reusable Component

   Usage: Add class "complete-experience-section" to any WPBakery row.
   Background images are auto-injected per page via PHP snippet
   using the ACF field "section_bg_image".
   ============================================================ */

.complete-experience-section {
    --complete-experience-img-mobile:  none;
    --complete-experience-img-laptop:  none;
    --complete-experience-img-desktop: none;

    width: 100%;
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 100%),
        var(--complete-experience-img-mobile);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    aspect-ratio: 3 / 4;
    min-height: 500px;
}

@media (min-width: 1025px) {
    .complete-experience-section {
        background-image: 
            linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 50%, transparent 100%),
            var(--complete-experience-img-laptop);
        background-position: center center;
        aspect-ratio: 21 / 9;
        min-height: auto;
    }
}

@media (min-width: 1381px) {
    .complete-experience-section {
        background-image: 
            linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 50%, transparent 100%),
            var(--complete-experience-img-desktop);
        background-position: center center;
        aspect-ratio: 32 / 9;
    }
}

/* ==========================================================================
   Full Height Inherit & Vertical Alignment Fix
   ========================================================================== */

.complete-experience-section,
.complete-experience-section > .l-section-h,
.complete-experience-section .g-cols,
.complete-experience-section .vc_column-container,
.complete-experience-section .vc_column-inner {
    height: 100%;
    min-height: inherit;
}

.complete-experience-section .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
    box-sizing: border-box;
    height: 100%;
    align-content: end;
    padding-top: 0rem;
    padding-left: 0rem;
    padding-right: 0rem;
    padding-bottom: 4rem;
}

@media (max-width: 1024px) {
    .complete-experience-section .hero-cta-inner-wrapper {
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
        gap: 0.8rem;
    }

    .complete-experience-section .hero-cta-inner-wrapper .w-btn-wrapper,
    .complete-experience-section .hero-cta-inner-wrapper .w-btn {
        width: auto !important;
        display: inline-block;
        text-align: left;
        margin-bottom: 0 !important;
    }
}

@media (min-width: 1025px) {
    .complete-experience-section .vc_column-inner > .wpb_wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 4rem;
        align-content: center;
        align-items: center;
    }

    .complete-experience-section .w-vwrapper:first-child {
        grid-column: 1 / 2;
    }

    .complete-experience-section .hero-cta-inner-wrapper {
        display: inline-flex !important;
        flex-direction: row !important;
        width: auto;
    }

    .complete-experience-section .hero-cta-inner-wrapper .w-btn-wrapper,
    .complete-experience-section .hero-cta-inner-wrapper .w-btn {
        width: auto;
    }
}

.complete-experience-title {
    color: var(--color-cream-base, #F7F4EE);
    width: 100%;
}

.complete-experience-tagline {
    font-size: var(--fs-h6);
    font-weight: 400;
    width: 100%;
}

.complete-experience-title,
.complete-experience-tagline {
    color: var(--color-cream-base, #F7F4EE);
    text-shadow: 0 4px 14px rgba(26, 54, 54, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1025px) {
    .complete-experience-title,
    .complete-experience-tagline {
        width: 70%;
    }
}

.complete-experience-icon-media svg,
.complete-experience-icon-title {
    color: var(--color-cream-base, #F7F4EE);
}

.complete-experience-icon-media svg {
    width: 3rem;
    height: 3rem;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.complete-experience-icon-title {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.own-a-villa-in-thailand-section {
    background: var(--color-cream-alt, #F5F1EA);
}

.own-a-villa-in-thailand-section .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
}

.own-a-villa-in-thailand-media-wrapper {
    aspect-ratio: 1280 / 854;
}

@media (min-width: 1025px) {
    .own-a-villa-in-thailand-section .vc_column-inner > .wpb_wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 0rem;
    }
}

.own-a-villa-in-thailand-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem);
    box-sizing: border-box;
}

.own-a-villa-in-thailand-grid {
    width: 100%;
    align-self: flex-start;
}

.own-a-villa-in-thailand-grid .w-grid-list {
    grid-template-columns: repeat(3, auto) !important;
    justify-content: start;
    gap: 1.5rem !important;
}

@media (min-width: 1025px) {
    .own-a-villa-in-thailand-grid .w-grid-list {
        grid-template-columns: repeat(5, auto) !important;
    }
}

.own-a-villa-in-thailand-grid .complete-experience-icon-media svg {
    width: 3rem;
    height: 3rem;
    display: block;
    margin: 0 auto;
    color: var(--color-green-base, #1F4D43);
}

.own-a-villa-in-thailand-grid .complete-experience-icon-title p {
    font-size: 0.8rem;
    text-align: center;
    margin: 0;
    padding: 0;
    color: var(--color-neutral-dark, #2C2C2C);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Property Detail Pages CSS */
.property-hero-detail-section {
    padding-block: var(--space-m);
}
.property-hero-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
}

@media (min-width: 1025px) {
    .property-hero-detail-wrapper {
        grid-template-columns: 68% 32%;
        gap: 0rem;
        align-items: stretch; /* rows equalize height, columns stretch */
    }
}

/* Image side: fill whatever height the row ends up being */
.property-hero-detail-wrapper > .w-vwrapper:first-child {
    align-self: stretch;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.property-hero-detail-wrapper > .w-vwrapper:first-child .w-image,
.property-hero-detail-wrapper > .w-vwrapper:first-child .w-image-h {
    height: 100%;
}

.property-hero-detail-wrapper > .w-vwrapper:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-hero-detail-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem clamp(1.5rem, 4.5vw, 4.5rem);
    /*padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem);*/
    box-sizing: border-box;
    gap: 1.5rem !important; /* overrides inline --vwrapper-gap:0rem from the builder */
}

.main-property-detail-title {
    margin: 0;
}

.main-property-detail-meta-information {
    margin-top: 0;
    font-family: var(--font-playfair);
}

.property-actions-wrapper {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.location-link {
    font-size: var(--fs-h5);
    font-weight: 600;
    color: var(--color-neutral-dark, #2C2C2C);
    margin: 0;
}

.price {
    font-size: var(--fs-h3);
    font-weight: 600;
    color: var(--color-neutral-dark, #2C2C2C);
    margin-top: var(--space-m);
    margin-bottom: 0;
}

.ownership-transfer {
    font-size: var(--fs-h5);
    font-weight: 600;
    color: var(--color-neutral-dark, #2C2C2C);
    margin: 0;
}

.property-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    text-align: left;
    margin-bottom: var(--space-s);
}

.property-spec-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.property-spec-item i {
    font-size: 1.75rem;
    color: #D4B07B;
}

.property-spec-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.property-spec-value {
    font-weight: 600;
    font-size: 1rem;
}

.property-spec-label {
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 600px) {
    .property-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.description-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xs);
}

@media (min-width: 1025px) {
    .description-detail-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }
}

.property-detail-description-section {
    padding-block: var(--space-m);
    background: var(--color-cream-light, #FCFBF8);
}

.property-detail-description {
    background: var(--color-content-bg-grad, #F7F4EE);
    padding: var(--space-s);
    border-radius: 10px;
}

.qobrix-single-description {
    font-size: var(--fs-p);
    color: var(--color-neutral-dark, #2C2C2C);
    margin: 0;
}

@media (min-width: 1024px) {
    .qobrix-single-description {
        column-count: 2;
        column-gap: 2rem;
    }
}

hr.property-details-hr {
    border-style: solid;
    border-width: 0 0 0.09rem;
    border-color: #2C2C2C;
    opacity: 0.3;
    margin-block: var(--space-s);
}

/* --- Save Property button: matched to us-btn-style_7 --- */
.save-property-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;

    font-family: var(--font-family);
    font-style: normal;
    text-transform: none;
    font-size: 1rem;
    line-height: 1.15 !important;
    font-weight: 700;
    letter-spacing: 0em;
    padding: 0.8em 1.6em;
    transition-duration: 0.3s;
    border-radius: 8px;
    transition-timing-function: ease;
    --btn-height: calc(1.15em + 2 * 0.8em);
    --btn-border-width: 1px;
    --btn-background: transparent;
    --btn-hover-background: var(--color-gold-base);
    --btn-border-color: #C8A063;
    --btn-hover-border-color: #C8A063;
    background: var(--btn-background, transparent);
    border: var(--btn-border-width, 1px) solid var(--btn-border-color, transparent);
    border-image: none;
    color: var(--color-neutral-dark) !important;

    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;
    transition-property: background, border-color, color;
}

.no-touch .save-property-btn:hover,
.save-property-btn[aria-pressed="true"] {
    background: var(--btn-hover-background, transparent);
    border-color: var(--btn-hover-border-color, transparent);
    border-image: none;
    color: var(--color-cream-light) !important;
}

.save-property-icon {
    width: 1.1em;
    height: 1.1em;
    color: var(--color-red-base);
    flex-shrink: 0;
    transition: fill 0.2s ease, transform 0.15s ease, color 0.2s ease;
}

.no-touch .save-property-btn:hover .save-property-icon {
    color: var(--color-cream-light);
}

.save-property-btn[aria-pressed="true"] .save-property-icon {
    fill: var(--color-red-base);
    color: var(--color-red-base);
}

.save-property-btn.is-animating .save-property-icon {
    transform: scale(1.2);
}

/* --- Laptop breakpoint (≤1380px): tighten right column --- */
@media (max-width: 1380px) {
    .property-hero-detail-content-wrapper {
        padding: 1rem clamp(1.25rem, 3vw, 2.5rem);
        gap: 1.25rem !important;
    }

    .main-property-detail-title {
        font-size: clamp(1.35rem, 2.2vw, 1.75rem);
        line-height: 1.2;
    }

    .property-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem 1rem;
    }

    .price {
        margin-top: 0;
    }
}

/* --- Tablet breakpoint (≤1024px): stack columns, reset image height --- */
@media (max-width: 1024px) {
    .property-hero-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .property-hero-detail-wrapper > .w-vwrapper:first-child {
        min-height: 0;
    }

    .property-hero-detail-wrapper > .w-vwrapper:first-child .w-image,
    .property-hero-detail-wrapper > .w-vwrapper:first-child .w-image-h,
    .property-hero-detail-wrapper > .w-vwrapper:first-child img {
        height: auto;
    }
}

/* --- Big screens: distribute the 3 blocks evenly instead of one big gap at the bottom --- */
@media (min-width: 1600px) {
    .property-hero-detail-content-wrapper {
        justify-content: space-evenly;
    }
}

/* Saved Properties page */
.saved-properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.qobrix-card {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qobrix-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.qobrix-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.qobrix-card h3 {
    font-size: 1.05rem;
    line-height: 1.3;
    margin: 0.85rem 1rem 0.5rem;
}

.qobrix-card h3 a {
    color: #2C2C2C;
    text-decoration: none;
}

.qobrix-card h3 a:hover {
    text-decoration: underline;
}

.qobrix-card .price {
    font-weight: 600;
    font-size: 1rem;
    margin: 0 1rem 0.4rem;
    color: #2C2C2C;
}

.qobrix-card .meta {
    font-size: 0.85rem;
    color: #767676;
    margin: 0 1rem 1rem;
}

.no-saved-properties {
    text-align: center;
    padding: 3rem 1rem;
    opacity: 0.7;
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
    .saved-properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
    .saved-properties-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.property-gallery-section {
    padding-block: var(--space-xs);
}

.property-doc-benefit-section {
    padding-block: var(--space-m);
    background: var(--color-cream-light, #FCFBF8);
}

.property-doc-benefit-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
}
@media (min-width: 1025px) {
    .property-doc-benefit-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.property-doc-benefit-wrapper .doc-benefit-inner-wrapper {
    background: var(--color-content-bg-grad, #F7F4EE);
    padding: var(--space-s);
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* make the .w-html content fill the remaining space so short content doesn't leave a gap */
.property-doc-benefit-wrapper .doc-benefit-inner-wrapper .w-html {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-map-location-section {
    padding-block: var(--space-m);
    background: var(--color-content-bg-grad, #F7F4EE);
}

/* property search css */
.properties--search-section {
    padding-block: var(--space-l);
}

/* misc css */
/* Positioning context: the wrapper that holds both the image and the overlay */
.property-hero-detail-wrapper .w-vwrapper:has(.w-image) {
    position: relative;
}

/* The w-html overlay block sits on top of the whole image */
.property-hero-detail-wrapper .w-vwrapper:has(.w-image) > .w-html {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

/* Badges - top-left, styled as static tags/marks (not buttons) */
.property-hero-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    pointer-events: none;
}

.property-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.8em 1.6em;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-playfair);
}

.badge-sale-rent {
    background: #2C2C2C;
    color: #FCFBF8;
}

.badge-featured {
    background: #C8A063;
    color: #FCFBF8;
}

/* Share button - top-right, real interactive button */
.hero-icon-btn.share-property-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8em 1.6em;
    border-radius: 8px;
    background: transparent;
    color: #FCFBF8;
    border: 1px solid #FCFBF8;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    backdrop-filter: blur(4px);
    font-family: var(--font-playfair);
}

.hero-icon-btn .hero-icon-svg {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .hero-icon-btn-label { display: none; }
    .hero-icon-btn.share-property-btn { padding: 10px; }
}

.my-saved-properties {
    text-align: center;
}

.my-saved-properties a {
    display: block;
}

.my-saved-properties {
    width: 100%;
    text-align: center;
}

.related-properties-section {
    padding-block: var(--space-m);
}