.recrm-container{
    max-width:1300px;
    margin:auto;
    padding:40px 20px;
}

.recrm-title{
    text-align:center;
    margin-bottom:40px;
    font-size:36px;
}

.recrm-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:start;
}



.recrm-card:hover{

    transform:translateY(-6px);

}

.recrm-image img{

    width:100%;

    height:560px;

    object-fit:cover;

}

.recrm-content{

    padding:20px;

}

.recrm-btn{

    display:inline-block;

    margin-top:20px;

    padding:12px 24px;

    background:#0d6efd;

    color:#fff;

    text-decoration:none;

    border-radius:6px;

}

.recrm-property-info{

    margin:40px 0;

}

/* Table Base Container */
.recrm-info-table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin-top: 24px !important;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif !important;
  font-size: 0.88rem !important;
  background: #FAF8F5 !important; /* Soft warm alabaster */
  border-radius: 6px !important;
  overflow: hidden !important;
  border: 1px solid rgba(197, 160, 89, 0.22) !important;
  box-shadow: 0 10px 30px -10px rgba(18, 18, 18, 0.05) !important;
  box-sizing: border-box !important;
}

/* Header Column (Key/Label Column) */
.recrm-info-table th {
  background: rgba(197, 160, 89, 0.07) !important; /* Subtle champagne gold tint */
  color: #121212 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 0.72rem !important;
  text-align: left !important;
  padding: 16px 20px !important;
  width: 220px !important;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15) !important;
  border-right: 1px solid rgba(197, 160, 89, 0.12) !important;
  vertical-align: middle !important;
}

/* Data Column (Value Column) */
.recrm-info-table td {
  padding: 16px 20px !important;
  color: #52504d !important;
  font-weight: 400 !important;
  border-bottom: 1px solid rgba(120, 117, 113, 0.12) !important;
  vertical-align: middle !important;
}

/* Remove bottom border on final row */
.recrm-info-table tr:last-child th,
.recrm-info-table tr:last-child td {
  border-bottom: none !important;
}

/* Hover Effect for Table Rows */
.recrm-info-table tr {
  transition: background-color 0.25s ease !important;
}

.recrm-info-table tr:hover {
  background-color: rgba(197, 160, 89, 0.04) !important;
}

.recrm-info-table tr:hover td {
  color: #121212 !important;
}

.recrm-gallery{

    margin-top:50px;

}

.recrm-gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));

    gap:20px;

}

.recrm-gallery-image{

    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:10px;

}


.recrm-amenities{

    margin-top:60px;

}

.recrm-amenity-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));

    gap:20px;

}

.recrm-amenity{

    padding:18px;

    background:#fff;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

}

.recrm-description{

    margin-top:60px;

    line-height:1.8;

}


/* Main Card Wrapper */
.recrm-card {
  --bg-card: #FAF8F5;
  --text-main: #121212;
  --text-muted: #787571;
  --gold-accent: #C5A059;
  --gold-light: #E6D5B8;
  --border-subtle: rgba(197, 160, 89, 0.25);
  
  width: 100%;
  background: var(--bg-card);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 32px -10px rgba(18, 18, 18, 0.06);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.recrm-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-accent);
  box-shadow: 0 24px 48px -12px rgba(197, 160, 89, 0.22);
}

/* 1. FORCE FIXED SVG SIZES GLOBALLY INSIDE CARD */
.recrm-card svg {
  max-width: 18px !important;
  max-height: 18px !important;
  width: 18px !important;
  height: 18px !important;
  display: inline-block;
  flex-shrink: 0;
}

/* Image Wrapper Fix */
.recrm-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.recrm-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0.92;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.recrm-card:hover .recrm-card-image img {
  transform: scale(1.05);
  opacity: 1;
}

/* Badge */
.recrm-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(230, 213, 184, 0.3);
  border-radius: 2px;
}

/* Wishlist Button */
.recrm-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.recrm-wishlist svg {
  width: 16px !important;
  height: 16px !important;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* Card Content Area */
.recrm-card-body {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.recrm-card-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.recrm-card-subtitle svg {
  width: 14px !important;
  height: 14px !important;
  stroke: var(--gold-accent);
  fill: none;
  stroke-width: 2;
}

.recrm-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 14px 0;
  line-height: 1.25;
}

/* Icon Grid Layout */
.recrm-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(120, 117, 113, 0.12);
  border-bottom: 1px solid rgba(120, 117, 113, 0.12);
  margin-bottom: 16px;
}

.recrm-feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.recrm-feature-item svg {
  stroke: var(--gold-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Footer Section */
.recrm-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.recrm-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main);
}

.recrm-btn-details {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.recrm-btn-details:hover {
  background: var(--text-main);
  color: #fff;
}

.recrm-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #25d366;
  text-decoration: none;
}

.recrm-btn-whatsapp svg {
  width: 15px !important;
  height: 15px !important;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.recrm-badge-featured{

position:absolute;

top:20px;

left:20px;

background:#0F4C81;

color:#fff;

padding:8px 16px;

border-radius:30px;

font-size:13px;

font-weight:600;

}

.recrm-wishlist{

position:absolute;

top:20px;

right:20px;

width:42px;

height:42px;

border:none;

border-radius:50%;

background:#fff;

cursor:pointer;

}

.recrm-card-body{

padding:25px;

}

.recrm-price{

font-size:28px;

font-weight:700;

color:#0F4C81;

margin-bottom:12px;

}

.recrm-features{

display:flex;

justify-content:space-between;

margin:25px 0;

}

/* =========================================================
   PROPERTY CARD BUTTONS
   ========================================================= */

.recrm-card-buttons {

    display: flex !important;

    flex-direction: row !important;

    align-items: stretch !important;

    justify-content: stretch !important;

    gap: 10px !important;

    width: 100% !important;

    margin-top: 16px !important;

    box-sizing: border-box !important;
}


/* BOTH BUTTONS */

.recrm-card-buttons > a {

    flex: 1 1 0 !important;

    width: 0 !important;

    min-width: 0 !important;

    height: 42px !important;

    min-height: 42px !important;

    margin: 0 !important;

    padding: 0 10px !important;

    box-sizing: border-box !important;

    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 6px !important;

    border-radius: 4px !important;

    text-decoration: none !important;

    font-family:
        'Plus Jakarta Sans',
        -apple-system,
        BlinkMacSystemFont,
        sans-serif !important;

    font-size: 0.62rem !important;

    font-weight: 600 !important;

    letter-spacing: 0.04em !important;

    line-height: 1 !important;

    white-space: nowrap !important;

    overflow: hidden !important;

    box-sizing: border-box !important;

    transition:
        all 0.25s ease !important;
}


/* TEXT INSIDE BUTTON */

.recrm-card-buttons
.recrm-btn-text {

    display: inline-block !important;

    flex: 0 1 auto !important;

    min-width: 0 !important;

    white-space: nowrap !important;

    overflow: hidden !important;

    text-overflow: ellipsis !important;

    line-height: 1 !important;

    margin: 0 !important;

    padding: 0 !important;
}


/* ICONS */

.recrm-card-buttons
.recrm-btn-icon {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    flex: 0 0 auto !important;

    width: auto !important;

    height: auto !important;

    margin: 0 !important;

    padding: 0 !important;

    font-size: 11px !important;

    line-height: 1 !important;
}


/* =========================================================
   VIEW DETAILS
   ========================================================= */

.recrm-card-buttons
.recrm-btn-details {

    background: #121212 !important;

    color: #FAF8F5 !important;

    border: 1px solid #121212 !important;

    box-shadow:
        0 4px 12px
        rgba(18, 18, 18, 0.1) !important;
}


.recrm-card-buttons
.recrm-btn-details:hover {

    background: #C5A059 !important;

    color: #121212 !important;

    border-color: #C5A059 !important;

    transform: translateY(-2px) !important;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.recrm-card-buttons
.recrm-btn-whatsapp {

    background:
        rgba(37, 211, 102, 0.1) !important;

    color: #0b622b !important;

    border:
        1px solid
        rgba(37, 211, 102, 0.35) !important;
}


.recrm-card-buttons
.recrm-btn-whatsapp:hover {

    background: #25D366 !important;

    color: #ffffff !important;

    border-color: #25D366 !important;

    transform: translateY(-2px) !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .recrm-card-buttons {

        gap: 7px !important;

        margin-top: 12px !important;
    }


    .recrm-card-buttons > a {

        height: 40px !important;

        min-height: 40px !important;

        padding: 0 7px !important;

        gap: 5px !important;

        font-size: 9px !important;

        letter-spacing: 0.025em !important;

        white-space: nowrap !important;
    }


    .recrm-card-buttons
    .recrm-btn-text {

        white-space: nowrap !important;

        overflow: hidden !important;

        text-overflow: ellipsis !important;
    }


    .recrm-card-buttons
    .recrm-btn-icon {

        font-size: 12px !important;

        flex: 0 0 auto !important;
    }

}


.recrm-page{
    max-width:1400px;
    margin:40px auto;
    padding:0 20px;
}

.recrm-properties{

width:100%;

}


.recrm-filters{

background:#fff;

padding:25px;

border-radius:18px;

box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.recrm-filter-group{

margin-bottom:20px;

}

.recrm-filter-group label{

display:block;

font-weight:600;

margin-bottom:8px;

}

.recrm-filter-group select,

.recrm-filter-group input{

width:100%;

padding:12px;

border:1px solid #ddd;

border-radius:10px;

}

.recrm-search-btn{

width:100%;

padding:14px;

background:#0F4C81;

color:#fff;

border:none;

border-radius:12px;

font-weight:600;

cursor:pointer;

}

.recrm-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:40px 0 30px;
}

.recrm-results h2{
    margin:0;
    font-size:34px;
    font-weight:700;
}

.recrm-sort{
    display:flex;
    align-items:center;
}

/* ---------- Tablet ---------- */

@media(max-width:1024px){

.recrm-grid{

grid-template-columns:repeat(2,1fr);

}

.recrm-hero-content h1{

font-size:42px;

}

.recrm-search-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px; /* Adds clean spacing between stacked elements */
}

@media (min-width: 768px) {
  .recrm-search-form {
    grid-template-columns: 1fr 1fr;
  }
}

}

/* ---------- Mobile ---------- */

@media(max-width:1024px){

    .recrm-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .recrm-toolbar{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .recrm-grid{
        grid-template-columns:1fr;
    }

}

/* =========================================================
   RECRM SINGLE PROPERTY PAGE
   ========================================================= */

.recrm-single-property {
    max-width: 1400px;
    margin: 0 auto;
    padding: 35px 24px 80px;
    color: #121212;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


/* Breadcrumb */

.recrm-single-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 13px;
    color: #787571;
}

.recrm-single-breadcrumb a {
    color: #0F4C81;
    text-decoration: none;
}

.recrm-single-breadcrumb a:hover {
    text-decoration: underline;
}

.recrm-single-breadcrumb strong {
    color: #121212;
    font-weight: 600;
}


/* =========================================================
   PROPERTY GALLERY
   ========================================================= */

.recrm-property-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    height: 560px;
    margin-bottom: 35px;
}

.recrm-gallery-main {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #eee;
    min-height: 0;
}

.recrm-main-property-image {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.recrm-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f0ed;
    color: #777;
    font-size: 16px;
}

.recrm-gallery-thumbnails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-height: 0;
}

.recrm-gallery-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    min-height: 0;
}

.recrm-gallery-highlights .recrm-highlight {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 22px 20px;
    border: 1px solid #ece7de;
    border-right: 1px solid #ece7de;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(18, 18, 18, .05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.recrm-gallery-highlights .recrm-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(18, 18, 18, .09);
}

.recrm-gallery-highlights .recrm-highlight-icon {
    width: 46px;
    height: 46px;
    background: rgba(15, 76, 129, .08);
    color: #0F4C81;
    font-size: 19px;
}

.recrm-gallery-highlights .recrm-highlight strong {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #121212;
}

.recrm-gallery-highlights .recrm-highlight small {
    color: #0F4C81;
    font-size: 11px;
    font-weight: 600;
}

.recrm-property-thumb {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 0;
    object-fit: cover !important;
    border-radius: 14px;
}


/* =========================================================
   PROPERTY HEADER
   ========================================================= */

.recrm-property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 28px;
}

.recrm-property-header-main {
    min-width: 0;
}

.recrm-single-price {
    margin-bottom: 8px;
    color: #0F4C81;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
}

.recrm-property-header h1 {
    margin: 0 0 12px;
    color: #121212;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 46px;
    line-height: 1.1;
    font-weight: 600;
}

.recrm-single-location {
    color: #787571;
    font-size: 15px;
}

.recrm-single-location span {
    margin-right: 4px;
}

.recrm-property-status {
    flex-shrink: 0;
    padding: 9px 16px;
    border-radius: 30px;
    background: #0F4C81;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}


/* =========================================================
   PROPERTY HIGHLIGHTS
   ========================================================= */

.recrm-property-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e6e1da;
    border-bottom: 1px solid #e6e1da;
    margin-bottom: 45px;
}

.recrm-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    border-right: 1px solid #e6e1da;
}

.recrm-highlight:last-child {
    border-right: none;
}

.recrm-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f5f1eb;
    font-size: 18px;
}

.recrm-highlight strong {
    display: block;
    margin-bottom: 3px;
    color: #121212;
    font-size: 17px;
    font-weight: 700;
}

.recrm-highlight small {
    display: block;
    color: #787571;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}


/* =========================================================
   MAIN CONTENT / SIDEBAR
   ========================================================= */

.recrm-property-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 55px;
    align-items: start;
}

.recrm-property-main-content {
    min-width: 0;
}

.recrm-property-sidebar {
    position: sticky;
    top: 30px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.recrm-single-section {
    margin-bottom: 55px;
}

.recrm-section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.recrm-section-heading > span {
    display: block;
    width: 4px;
    height: 27px;
    border-radius: 5px;
    background: #C5A059;
}

.recrm-section-heading h2 {
    margin: 0;
    color: #121212;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 600;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.recrm-description-text {
    color: #5f5c58;
    font-size: 15px;
    line-height: 1.9;
}

.recrm-description-text p {
    margin: 0 0 15px;
}

.recrm-description-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   AMENITIES
   ========================================================= */

.recrm-single-amenities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.recrm-single-amenity {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 65px;
    padding: 14px 16px;
    background: #FAF8F5;
    border: 1px solid #e8e1d7;
    border-radius: 10px;
    color: #3d3a37;
    font-size: 14px;
    font-weight: 500;
}

.recrm-amenity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 8px;
    background: #f0e7d7;
    color: #C5A059;
    font-size: 16px;
}


/* =========================================================
   PROPERTY DETAILS
   ========================================================= */

.recrm-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #e6e1da;
    border-radius: 12px;
    overflow: hidden;
}

.recrm-detail-item {
    padding: 18px 20px;
    background: #fff;
    border-right: 1px solid #e6e1da;
    border-bottom: 1px solid #e6e1da;
}

.recrm-detail-item:nth-child(2n) {
    border-right: none;
}

.recrm-detail-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.recrm-detail-item span {
    display: block;
    margin-bottom: 6px;
    color: #8a8680;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.recrm-detail-item strong {
    color: #222;
    font-size: 15px;
    font-weight: 600;
}


/* =========================================================
   ENQUIRY CARD
   ========================================================= */

.recrm-enquiry-card {
    padding: 28px;
    background: #FAF8F5;
    border: 1px solid #e5ddd2;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(18, 18, 18, .07);
}

.recrm-enquiry-card h3 {
    margin: 0 0 10px;
    color: #121212;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    line-height: 1.2;
}

.recrm-enquiry-card p {
    margin: 0 0 22px;
    color: #787571;
    font-size: 14px;
    line-height: 1.6;
}

.recrm-contact-whatsapp,
.recrm-contact-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: all .25s ease;
    box-sizing: border-box;
}

.recrm-contact-whatsapp {
    background: #25D366;
    color: #fff;
}

.recrm-contact-whatsapp:hover {
    background: #1ebc59;
    color: #fff;
    transform: translateY(-2px);
}

.recrm-contact-call {
    background: #121212;
    color: #fff;
}

.recrm-contact-call:hover {
    background: #C5A059;
    color: #121212;
    transform: translateY(-2px);
}

.recrm-enquiry-note {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #ded6ca;
    color: #787571;
    font-size: 12px;
    line-height: 1.5;
}

.recrm-enquiry-note strong {
    color: #333;
}


/* =========================================================
   FULL GALLERY
   ========================================================= */

.recrm-full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.recrm-full-gallery-image {
    display: block;
    width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    border-radius: 12px;
    transition: transform .3s ease;
}

.recrm-full-gallery-image:hover {
    transform: scale(1.02);
}


/* =========================================================
   NOT FOUND
   ========================================================= */

.recrm-property-not-found {
    max-width: 900px;
    margin: 80px auto;
    padding: 50px 20px;
    text-align: center;
}

.recrm-property-not-found h2 {
    margin: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .recrm-single-property {
        padding-left: 20px;
        padding-right: 20px;
    }

    .recrm-property-gallery {
        height: 450px;
    }

    .recrm-property-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 30px;
    }

    .recrm-property-header h1 {
        font-size: 38px;
    }

    .recrm-single-price {
        font-size: 34px;
    }

    .recrm-single-amenities {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .recrm-single-property {
        padding: 20px 15px 60px;
    }

    .recrm-single-breadcrumb {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .recrm-property-gallery {
        display: block;
        height: auto;
        margin-bottom: 25px;
    }

    .recrm-gallery-main {
        height: 280px;
        border-radius: 14px;
    }

    .recrm-gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        height: 80px;
        margin-top: 8px;
        gap: 7px;
    }

    .recrm-property-thumb {
        border-radius: 8px;
    }

    .recrm-gallery-highlights {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        height: auto;
        margin-top: 10px;
        gap: 10px;
    }

    .recrm-gallery-highlights .recrm-highlight {
        padding: 14px;
        gap: 8px;
    }

    .recrm-gallery-highlights .recrm-highlight-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .recrm-gallery-highlights .recrm-highlight strong {
        font-size: 19px;
    }

    .recrm-property-header {
        display: block;
        margin-bottom: 22px;
    }

    .recrm-single-price {
        font-size: 32px;
    }

    .recrm-property-header h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .recrm-property-status {
        display: inline-block;
        margin-top: 15px;
    }

    .recrm-property-highlights {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 35px;
    }

    .recrm-highlight {
        padding: 15px 12px;
        border-bottom: 1px solid #e6e1da;
    }

    .recrm-highlight:nth-child(2) {
        border-right: none;
    }

    .recrm-highlight:nth-child(3) {
        border-bottom: none;
    }

    .recrm-highlight:nth-child(4) {
        border-right: none;
        border-bottom: none;
    }

    .recrm-property-layout {
        display: block;
    }

    .recrm-property-sidebar {
        position: static;
        margin-top: 20px;
    }

    .recrm-single-section {
        margin-bottom: 40px;
    }

    .recrm-section-heading h2 {
        font-size: 26px;
    }

    .recrm-single-amenities {
        grid-template-columns: 1fr;
    }

    .recrm-details-grid {
        grid-template-columns: 1fr;
    }

    .recrm-detail-item,
    .recrm-detail-item:nth-child(2n) {
        border-right: none;
        border-bottom: 1px solid #e6e1da;
    }

    .recrm-detail-item:last-child {
        border-bottom: none;
    }

    .recrm-full-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .recrm-full-gallery-image {
        height: 160px !important;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .recrm-gallery-main {
        height: 230px;
    }

    .recrm-gallery-thumbnails {
        height: 65px;
    }

    .recrm-single-price {
        font-size: 29px;
    }

    .recrm-property-header h1 {
        font-size: 28px;
    }

    .recrm-highlight {
        gap: 8px;
    }

    .recrm-highlight-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .recrm-highlight strong {
        font-size: 15px;
    }

    .recrm-highlight small {
        font-size: 9px;
    }

}


.recrm-brochure-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 46px;

    padding: 11px 20px;

    background: #0F4C81;

    color: #fff !important;

    border-radius: 8px;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 600;

    transition: all .25s ease;

}

.recrm-brochure-button:hover {

    background: #C5A059;

    color: #121212 !important;

    transform: translateY(-2px);

}

/* =========================================================
   BROCHURE LEAD FORM
   ========================================================= */

.recrm-enquiry-divider {
    position: relative;
    margin: 25px 0;
    text-align: center;
}

.recrm-enquiry-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ded6ca;
}

.recrm-enquiry-divider span {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 12px;
    background: #FAF8F5;
    color: #99938b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
}


.recrm-brochure-lead-box {
    margin-top: 5px;
}

.recrm-brochure-lead-box h4 {
    margin: 0 0 7px;
    color: #121212;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    line-height: 1.2;
}

.recrm-brochure-lead-box > p {
    margin: 0 0 18px;
    color: #787571;
    font-size: 13px;
    line-height: 1.5;
}


.recrm-brochure-form {
    display: block;
}

.recrm-form-field {
    margin-bottom: 14px;
}

.recrm-form-field label {
    display: block;
    margin-bottom: 6px;
    color: #403d39;
    font-size: 11px;
    font-weight: 600;
}

.recrm-form-field input {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    box-sizing: border-box;
    border: 1px solid #ddd6cc;
    border-radius: 7px;
    background: #fff;
    color: #222;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: border-color .2s ease,
                box-shadow .2s ease;
}

.recrm-form-field input:focus {
    border-color: #C5A059;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, .12);
}


.recrm-brochure-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 47px;
    margin-top: 6px;
    padding: 12px 18px;
    border: 0;
    border-radius: 8px;
    background: #0F4C81;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
}

.recrm-brochure-submit:hover {
    background: #C5A059;
    color: #121212;
    transform: translateY(-1px);
}

.recrm-brochure-submit:disabled {
    opacity: .65;
    cursor: wait;
    transform: none;
}


.recrm-brochure-message {
    display: none;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 7px;
    font-size: 12px;
    line-height: 1.5;
}

.recrm-brochure-message.error {
    display: block;
    background: #fff1f1;
    border: 1px solid #f0caca;
    color: #a32929;
}


.recrm-brochure-success {
    margin-top: 10px;
    padding: 20px 5px 5px;
    text-align: center;
}

.recrm-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #e8f6ed;
    color: #25834a;
    font-size: 21px;
    font-weight: 700;
}

.recrm-brochure-success h4 {
    margin: 0 0 5px;
    color: #121212;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 23px;
}

.recrm-brochure-success p {
    margin: 0 0 18px;
    color: #787571;
    font-size: 12px;
}


.recrm-brochure-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.recrm-view-brochure,
.recrm-download-brochure {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 10px 14px;
    border-radius: 7px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
    transition: all .2s ease;
    box-sizing: border-box;
}

.recrm-view-brochure {
    background: #0F4C81;
    color: #fff !important;
}

.recrm-view-brochure:hover {
    background: #C5A059;
    color: #121212 !important;
}

.recrm-download-brochure {
    background: #fff;
    border: 1px solid #d9d1c6;
    color: #333 !important;
}

.recrm-download-brochure:hover {
    border-color: #C5A059;
    color: #0F4C81 !important;
}


/* Mobile */

@media (max-width: 768px) {

    .recrm-enquiry-card {
        padding: 22px 18px;
    }

    .recrm-brochure-lead-box h4 {
        font-size: 22px;
    }

}

/* =========================================================
   GATED PROPERTY GALLERY
   ========================================================= */

.recrm-gallery-locked {
    position: relative;
    overflow: hidden;
}

.recrm-gallery-thumb-wrapper {
    position: relative;
    overflow: hidden;
}

.recrm-gallery-locked
.recrm-property-thumb {
    filter: blur(8px);
    transform: scale(1.08);
    transition: filter .4s ease,
                transform .4s ease;
}


/* Thumbnail lock overlay */

.recrm-gallery-lock-overlay {
    position: absolute;
    inset: 0;

    z-index: 5;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 15px;

    text-align: center;

    background: rgba(255, 255, 255, .72);

    backdrop-filter: blur(2px);
}

.recrm-gallery-lock-icon {
    font-size: 24px;
    margin-bottom: 6px;
}

.recrm-gallery-lock-overlay strong {
    display: block;

    color: #121212;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 4px;
}

.recrm-gallery-lock-overlay span {
    display: block;

    max-width: 220px;

    color: #666;

    font-size: 10px;
    line-height: 1.4;

    margin-bottom: 10px;
}


/* Main gated gallery */

.recrm-gallery-gated {
    position: relative;
    overflow: hidden;

    border-radius: 10px;
}


/* Blur images */

.recrm-gallery-blurred {
    filter: blur(12px);
    transform: scale(1.04);

    transition:
        filter .5s ease,
        transform .5s ease;
}


/* Lock card */

.recrm-gallery-lock-card {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 10;

    width: min(380px, calc(100% - 40px));

    transform: translate(-50%, -50%);

    padding: 28px 24px;

    text-align: center;

    background: rgba(255, 255, 255, .96);

    border: 1px solid rgba(197, 160, 89, .35);

    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .15);
}

.recrm-gallery-lock-card .recrm-gallery-lock-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin: 0 auto 12px;

    border-radius: 50%;

    background: #f4eee5;

    font-size: 21px;
}

.recrm-gallery-lock-card h3 {
    margin: 0 0 8px;

    color: #121212;

    font-size: 20px;
    line-height: 1.25;
}

.recrm-gallery-lock-card p {
    margin: 0 auto 18px;

    max-width: 310px;

    color: #777;

    font-size: 12px;
    line-height: 1.6;
}


/* Unlock button */

.recrm-unlock-gallery-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 10px 22px;

    border: 0;

    border-radius: 7px;

    background: #0F4C81;

    color: #fff;

    font-family: inherit;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;
}

.recrm-unlock-gallery-btn:hover {
    background: #C5A059;

    color: #121212;

    transform: translateY(-1px);
}


/* =========================================================
   UNLOCKED STATE
   ========================================================= */

.recrm-gallery-gated.recrm-gallery-unlocked
.recrm-gallery-blurred {

    filter: none;

    transform: none;
}


.recrm-gallery-locked.recrm-gallery-unlocked
.recrm-property-thumb {

    filter: none;

    transform: none;
}


.recrm-gallery-unlocked
.recrm-gallery-lock-card {

    display: none;
}


.recrm-gallery-locked.recrm-gallery-unlocked
.recrm-gallery-lock-overlay {

    display: none;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .recrm-gallery-lock-card {

        width: calc(100% - 28px);

        padding: 22px 18px;
    }

    .recrm-gallery-lock-card h3 {
        font-size: 18px;
    }

    .recrm-gallery-lock-card p {
        font-size: 11px;
    }

    .recrm-unlock-gallery-btn {
        min-height: 40px;

        padding: 9px 18px;
    }

}

/* =========================================================
   PROPERTY GALLERY - LEAD GATED
   ========================================================= */

.recrm-gallery-gated {
    position: relative !important;
    width: 100%;
    overflow: hidden !important;
    border-radius: 12px;
}


/* Gallery image grid */

.recrm-gallery-gated .recrm-full-gallery-grid {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100%;
}


/* Blur the actual gallery images */

.recrm-gallery-gated
.recrm-full-gallery-image {

    filter: blur(14px) !important;

    transform: scale(1.06) !important;

    opacity: .75;

    transition:
        filter .5s ease,
        transform .5s ease,
        opacity .5s ease;

}


/* Dark/soft layer over blurred gallery */

.recrm-gallery-gated::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 5;

    pointer-events: none;

    background: rgba(255, 255, 255, .12);

}


/* LOCK CARD */

.recrm-gallery-gated
.recrm-gallery-lock-card {

    position: absolute !important;

    top: 50% !important;

    left: 50% !important;

    transform: translate(-50%, -50%) !important;

    z-index: 20 !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;

    justify-content: center !important;

    width: min(390px, calc(100% - 40px)) !important;

    box-sizing: border-box !important;

    padding: 28px 25px !important;

    margin: 0 !important;

    text-align: center !important;

    background: rgba(255, 255, 255, .96) !important;

    border: 1px solid rgba(197, 160, 89, .35) !important;

    border-radius: 12px !important;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .18) !important;

}


/* Lock icon */

.recrm-gallery-lock-card
.recrm-gallery-lock-icon {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 48px !important;

    height: 48px !important;

    margin: 0 auto 12px !important;

    border-radius: 50% !important;

    background: #f4eee5 !important;

    font-size: 21px !important;

}


/* Heading */

.recrm-gallery-lock-card h3 {

    display: block !important;

    margin: 0 0 8px !important;

    color: #121212 !important;

    font-size: 20px !important;

    line-height: 1.25 !important;

}


/* Description */

.recrm-gallery-lock-card p {

    display: block !important;

    margin: 0 auto 18px !important;

    max-width: 310px !important;

    color: #777 !important;

    font-size: 12px !important;

    line-height: 1.6 !important;

}


/* Unlock button */

.recrm-gallery-lock-card
.recrm-unlock-gallery-btn {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: auto !important;

    min-width: 150px !important;

    min-height: 42px !important;

    padding: 10px 22px !important;

    margin: 0 !important;

    border: 0 !important;

    border-radius: 7px !important;

    background: #0F4C81 !important;

    color: #fff !important;

    font-family: inherit !important;

    font-size: 12px !important;

    font-weight: 700 !important;

    cursor: pointer !important;

}


/* Hover */

.recrm-gallery-lock-card
.recrm-unlock-gallery-btn:hover {

    background: #C5A059 !important;

    color: #121212 !important;

}


/* =========================================================
   UNLOCKED STATE
   ========================================================= */

.recrm-gallery-gated.recrm-gallery-unlocked
.recrm-full-gallery-image {

    filter: none !important;

    transform: none !important;

    opacity: 1 !important;

}


.recrm-gallery-gated.recrm-gallery-unlocked::after {

    display: none !important;

}


.recrm-gallery-gated.recrm-gallery-unlocked
.recrm-gallery-lock-card {

    display: none !important;

}


/* =========================================================
   TOP THUMBNAIL GALLERY
   ========================================================= */

.recrm-gallery-locked {

    position: relative !important;

    overflow: hidden !important;

}


.recrm-gallery-locked
.recrm-property-thumb {

    filter: blur(9px) !important;

    transform: scale(1.08) !important;

    opacity: .75 !important;

}


/* Thumbnail overlay */

.recrm-gallery-lock-overlay {

    position: absolute !important;

    inset: 0 !important;

    z-index: 20 !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;

    justify-content: center !important;

    padding: 12px !important;

    box-sizing: border-box !important;

    text-align: center !important;

    background: rgba(255, 255, 255, .65) !important;

    backdrop-filter: blur(2px);

}


/* Thumbnail unlocked */

.recrm-gallery-locked.recrm-gallery-unlocked
.recrm-property-thumb {

    filter: none !important;

    transform: none !important;

    opacity: 1 !important;

}


.recrm-gallery-locked.recrm-gallery-unlocked
.recrm-gallery-lock-overlay {

    display: none !important;

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .recrm-gallery-gated
    .recrm-full-gallery-grid {

        grid-template-columns: 1fr 1fr !important;

        gap: 6px !important;

    }


    .recrm-gallery-gated
    .recrm-gallery-lock-card {

        width: calc(100% - 28px) !important;

        padding: 20px 16px !important;

    }


    .recrm-gallery-lock-card h3 {

        font-size: 17px !important;

    }


    .recrm-gallery-lock-card p {

        font-size: 11px !important;

    }


    .recrm-gallery-lock-card
    .recrm-unlock-gallery-btn {

        min-height: 40px !important;

        padding: 9px 18px !important;

    }

}


/* =========================================================
   GALLERY LEAD FORM
   ========================================================= */

.recrm-gallery-lock-card {
    max-height: 90%;
    overflow-y: auto;
}


/* Form */

.recrm-gallery-lead-form {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}


.recrm-gallery-form-field {
    width: 100%;
    margin-bottom: 9px;
}


.recrm-gallery-form-field input {
    width: 100%;
    height: 40px;
    padding: 8px 11px;
    box-sizing: border-box;

    border: 1px solid #ddd6cc;
    border-radius: 6px;

    background: #fff;
    color: #222;

    font-family: inherit;
    font-size: 12px;

    outline: none;
}


.recrm-gallery-form-field input:focus {
    border-color: #C5A059;

    box-shadow:
        0 0 0 3px rgba(197, 160, 89, .12);
}


/* Submit */

.recrm-gallery-submit {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 42px;

    margin-top: 5px;

    padding: 10px 15px;

    border: 0;
    border-radius: 7px;

    background: #0F4C81;
    color: #fff;

    font-family: inherit;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition: all .25s ease;
}


.recrm-gallery-submit:hover {
    background: #C5A059;
    color: #121212;
}


.recrm-gallery-submit:disabled {
    opacity: .65;
    cursor: wait;
}


/* Error message */

.recrm-gallery-form-message {
    display: none;

    margin-top: 8px;

    padding: 7px 9px;

    border-radius: 5px;

    background: #fff1f1;
    border: 1px solid #f0caca;

    color: #a32929;

    font-size: 10px;
    line-height: 1.4;
}


/* Success */

.recrm-gallery-success {
    text-align: center;
}


.recrm-gallery-success-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin: 0 auto 10px;

    border-radius: 50%;

    background: #e8f6ed;

    color: #25834a;

    font-size: 20px;
    font-weight: 700;
}


.recrm-gallery-success h3 {
    margin: 0 0 5px !important;

    font-size: 18px !important;
}


.recrm-gallery-success p {
    margin: 0 !important;

    font-size: 11px !important;
}


/* Mobile */

@media (max-width: 768px) {

    .recrm-gallery-lock-card {
        width: calc(100% - 24px) !important;

        padding: 20px 16px !important;
    }

    .recrm-gallery-form-field input {
        height: 38px;
    }

}
/* =========================================================
   TOP GALLERY MINI LEAD FORM
   ========================================================= */

.recrm-gallery-mini-form {
    width: 100%;
    max-width: 190px;
    margin-top: 8px;
}


.recrm-gallery-mini-form input {
    display: block;

    width: 100%;
    height: 28px;

    margin-bottom: 5px;

    padding: 5px 8px;

    box-sizing: border-box;

    border: 1px solid #ddd6cc;
    border-radius: 5px;

    background: #fff;

    color: #222;

    font-family: inherit;

    font-size: 9px;

    outline: none;
}


.recrm-gallery-mini-form input:focus {
    border-color: #C5A059;
}


.recrm-gallery-mini-form
.recrm-gallery-submit {

    width: 100%;

    min-height: 30px;

    padding: 6px 8px;

    margin-top: 2px;

    border: 0;

    border-radius: 5px;

    background: #0F4C81;

    color: #fff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .05em;

    cursor: pointer;
}


.recrm-gallery-mini-form
.recrm-gallery-submit:hover {

    background: #C5A059;

    color: #121212;
}


.recrm-gallery-mini-form
.recrm-gallery-form-message {

    margin-top: 4px;

    font-size: 8px;

    line-height: 1.3;
}


/* Slightly smaller heading */

.recrm-gallery-lock-overlay strong {
    font-size: 11px;
}


.recrm-gallery-lock-overlay span {
    font-size: 8px;

    margin-bottom: 4px;
}

/* =========================================================
   MOBILE FIX - TOP GALLERY
   ========================================================= */

@media (max-width: 768px) {

    /* -----------------------------------------
       TOP GALLERY CONTAINER
       ----------------------------------------- */

    .recrm-gallery-locked {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: hidden !important;
        border-radius: 12px !important;
        background: #ffffff !important;
    }


    /* -----------------------------------------
       SHOW ONLY FIRST IMAGE ON MOBILE
       ----------------------------------------- */

    .recrm-gallery-locked
    .recrm-gallery-thumb-wrapper {
        display: none !important;
    }


    .recrm-gallery-locked
    .recrm-gallery-thumb-wrapper:first-child {
        display: block !important;

        width: 100% !important;
        height: 270px !important;

        overflow: hidden !important;
    }


    /* -----------------------------------------
       MAIN TOP IMAGE
       ----------------------------------------- */

    .recrm-gallery-locked
    .recrm-gallery-thumb-wrapper:first-child
    .recrm-property-thumb {

        display: block !important;

        width: 100% !important;
        height: 270px !important;

        object-fit: cover !important;

        filter: blur(9px) !important;

        transform: scale(1.06) !important;

        opacity: .75 !important;
    }


    /* -----------------------------------------
       MOVE LOCK FORM BELOW IMAGE
       ----------------------------------------- */

    .recrm-gallery-locked
    .recrm-gallery-lock-overlay {

        position: relative !important;

        inset: auto !important;

        z-index: 20 !important;

        width: 100% !important;

        min-height: 235px !important;

        box-sizing: border-box !important;

        margin: 0 !important;

        padding: 20px 18px !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;

        justify-content: center !important;

        background: #ffffff !important;

        text-align: center !important;

        border-radius: 0 0 12px 12px !important;

        backdrop-filter: none !important;
    }


    /* -----------------------------------------
       LOCK ICON
       ----------------------------------------- */

    .recrm-gallery-lock-overlay
    .recrm-gallery-lock-icon {

        margin-bottom: 7px !important;

        font-size: 22px !important;
    }


    /* -----------------------------------------
       HEADING
       ----------------------------------------- */

    .recrm-gallery-lock-overlay strong {

        display: block !important;

        margin-bottom: 5px !important;

        color: #121212 !important;

        font-size: 15px !important;

        line-height: 1.3 !important;
    }


    /* -----------------------------------------
       DESCRIPTION
       ----------------------------------------- */

    .recrm-gallery-lock-overlay span {

        display: block !important;

        max-width: 280px !important;

        margin-bottom: 11px !important;

        color: #666666 !important;

        font-size: 10px !important;

        line-height: 1.4 !important;
    }


    /* -----------------------------------------
       MINI FORM
       ----------------------------------------- */

    .recrm-gallery-lock-overlay
    .recrm-gallery-mini-form {

        display: block !important;

        width: 100% !important;

        max-width: 300px !important;

        margin: 0 auto !important;
    }


    /* -----------------------------------------
       FORM INPUTS
       ----------------------------------------- */

    .recrm-gallery-lock-overlay
    .recrm-gallery-mini-form input {

        display: block !important;

        width: 100% !important;

        height: 40px !important;

        margin: 0 0 7px 0 !important;

        padding: 8px 11px !important;

        box-sizing: border-box !important;

        border: 1px solid #ddd6cc !important;

        border-radius: 6px !important;

        background: #ffffff !important;

        color: #222222 !important;

        font-family: inherit !important;

        font-size: 12px !important;

        line-height: normal !important;

        outline: none !important;
    }


    .recrm-gallery-lock-overlay
    .recrm-gallery-mini-form input:focus {

        border-color: #C5A059 !important;

        box-shadow:
            0 0 0 2px
            rgba(197, 160, 89, .12) !important;
    }


    /* -----------------------------------------
       UNLOCK BUTTON
       ----------------------------------------- */

    .recrm-gallery-lock-overlay
    .recrm-gallery-mini-form
    .recrm-gallery-submit {

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        width: 100% !important;

        height: 42px !important;

        min-height: 42px !important;

        margin: 3px 0 0 0 !important;

        padding: 9px 15px !important;

        border: 0 !important;

        border-radius: 6px !important;

        background: #0F4C81 !important;

        color: #ffffff !important;

        font-family: inherit !important;

        font-size: 11px !important;

        font-weight: 700 !important;

        letter-spacing: .05em !important;

        cursor: pointer !important;
    }


    .recrm-gallery-lock-overlay
    .recrm-gallery-mini-form
    .recrm-gallery-submit:hover {

        background: #C5A059 !important;

        color: #121212 !important;
    }


    /* -----------------------------------------
       FORM ERROR
       ----------------------------------------- */

    .recrm-gallery-lock-overlay
    .recrm-gallery-form-message {

        width: 100% !important;

        max-width: 300px !important;

        margin-top: 6px !important;

        font-size: 10px !important;

        line-height: 1.4 !important;
    }


    /* -----------------------------------------
       UNLOCKED STATE
       ----------------------------------------- */

    .recrm-gallery-locked.recrm-gallery-unlocked
    .recrm-gallery-thumb-wrapper {

        display: none !important;
    }


    .recrm-gallery-locked.recrm-gallery-unlocked
    .recrm-gallery-thumb-wrapper:first-child {

        display: block !important;

        width: 100% !important;

        height: 270px !important;
    }


    .recrm-gallery-locked.recrm-gallery-unlocked
    .recrm-property-thumb {

        filter: none !important;

        transform: none !important;

        opacity: 1 !important;
    }


    .recrm-gallery-locked.recrm-gallery-unlocked
    .recrm-gallery-lock-overlay {

        display: none !important;
    }


    /* -----------------------------------------
       FULL GALLERY ON MOBILE
       ----------------------------------------- */

    .recrm-gallery-gated
    .recrm-full-gallery-grid {

        grid-template-columns: 1fr 1fr !important;

        gap: 6px !important;
    }


    .recrm-gallery-gated
    .recrm-gallery-lock-card {

        width: calc(100% - 24px) !important;

        max-height: calc(100% - 24px) !important;

        padding: 18px 15px !important;

        box-sizing: border-box !important;
    }


    .recrm-gallery-lock-card h3 {

        font-size: 17px !important;
    }


    .recrm-gallery-lock-card p {

        font-size: 11px !important;

        line-height: 1.4 !important;
    }

}

/* =========================================================
   MOBILE HERO SEARCH
   ========================================================= */

@media (max-width: 768px) {

    /* Hero container */

    .recrm-hero,
    .recrm-property-hero,
    .property-hero {

        width: 100% !important;

        max-width: 100% !important;

        min-height: 330px !important;

        height: auto !important;

        box-sizing: border-box !important;

        overflow: hidden !important;
    }


    /* Hero background */

    .recrm-hero img,
    .recrm-property-hero img,
    .property-hero img {

        width: 100% !important;

        max-width: 100% !important;

        height: 330px !important;

        object-fit: cover !important;
    }


    /* Hero content */

    .recrm-hero-content,
    .recrm-property-hero-content,
    .property-hero-content {

        width: 100% !important;

        max-width: 100% !important;

        box-sizing: border-box !important;

        padding: 45px 15px 25px !important;

        margin: 0 !important;

        text-align: center !important;
    }


    /* Hero heading */

    .recrm-hero h1,
    .recrm-property-hero h1,
    .property-hero h1 {

        width: 100% !important;

        max-width: 100% !important;

        margin: 0 auto 8px !important;

        padding: 0 !important;

        box-sizing: border-box !important;

        font-size: 27px !important;

        line-height: 1.15 !important;

        white-space: normal !important;

        overflow-wrap: break-word !important;

        word-break: normal !important;
    }


    /* Hero subtitle */

    .recrm-hero p,
    .recrm-property-hero p,
    .property-hero p {

        width: 100% !important;

        max-width: 100% !important;

        margin: 0 auto 15px !important;

        font-size: 11px !important;

        line-height: 1.4 !important;
    }


    /* =====================================================
       SEARCH FORM
       ===================================================== */

    .recrm-hero-search,
    .recrm-property-search,
    .property-search,
    .recrm-search-form {

        display: flex !important;

        flex-direction: column !important;

        align-items: stretch !important;

        justify-content: flex-start !important;

        width: 100% !important;

        max-width: 360px !important;

        margin: 0 auto !important;

        padding: 0 !important;

        gap: 8px !important;

        box-sizing: border-box !important;
    }


    /* Every search field */

    .recrm-hero-search input,
    .recrm-hero-search select,

    .recrm-property-search input,
    .recrm-property-search select,

    .property-search input,
    .property-search select,

    .recrm-search-form input,
    .recrm-search-form select {

        display: block !important;

        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;

        height: 42px !important;

        box-sizing: border-box !important;

        margin: 0 !important;

        padding: 8px 12px !important;

        border-radius: 6px !important;

        font-size: 12px !important;
    }


    /* Search button */

    .recrm-hero-search button,
    .recrm-property-search button,
    .property-search button,
    .recrm-search-form button {

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;

        height: 42px !important;

        margin: 0 !important;

        padding: 8px 15px !important;

        border-radius: 6px !important;

        font-size: 11px !important;

        box-sizing: border-box !important;

        white-space: nowrap !important;
    }


    /* Remove horizontal overflow */

    .recrm-hero *,
    .recrm-property-hero *,
    .property-hero * {

        max-width: 100% !important;

    }

}

/* =========================================================
   PROPERTY CARD ACTION BUTTONS - MOBILE FIX
   ========================================================= */

@media (max-width: 768px) {

    .recrm-property-card-actions,
    .recrm-card-actions,
    .property-card-actions {

        display: flex !important;

        flex-direction: row !important;

        align-items: stretch !important;

        justify-content: space-between !important;

        gap: 8px !important;

        width: 100% !important;

        box-sizing: border-box !important;
    }


    .recrm-property-card-actions a,
    .recrm-card-actions a,
    .property-card-actions a,
    .recrm-property-card-actions button,
    .recrm-card-actions button,
    .property-card-actions button {

        flex: 1 1 0 !important;

        width: 50% !important;

        min-width: 0 !important;

        height: 42px !important;

        min-height: 42px !important;

        margin: 0 !important;

        padding: 0 8px !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        box-sizing: border-box !important;

        white-space: nowrap !important;

        overflow: hidden !important;

        text-overflow: ellipsis !important;

        line-height: 1 !important;

        font-size: 9px !important;
    }

}
/* =========================================================
   MOBILE PROPERTY CARD BUTTON FIX
   ========================================================= */

@media (max-width: 768px) {

    .recrm-card-buttons {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        justify-content: space-between !important;

        width: 100% !important;

        gap: 8px !important;

        margin-top: 12px !important;
    }


    .recrm-card-buttons a {
        flex: 1 1 0 !important;

        width: 0 !important;
        min-width: 0 !important;

        height: 40px !important;
        min-height: 40px !important;

        padding: 0 8px !important;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        box-sizing: border-box !important;

        white-space: nowrap !important;

        overflow: hidden !important;

        text-overflow: ellipsis !important;

        line-height: 1 !important;

        font-size: 10px !important;

        letter-spacing: .04em !important;

        gap: 5px !important;
    }


    /* View Details */

    .recrm-card-buttons
    a.recrm-btn-details {

        flex: 1 1 0 !important;

        width: 0 !important;
    }


    /* WhatsApp */

    .recrm-card-buttons
    a.recrm-btn-whatsapp {

        flex: 1 1 0 !important;

        width: 0 !important;
    }


    /* Icons */

    .recrm-card-buttons a i,
    .recrm-card-buttons a svg {

        flex: 0 0 auto !important;

        width: auto !important;

        font-size: 11px !important;

        line-height: 1 !important;
    }

}

/* =========================================================
   CONTACT US POPUP
========================================================= */

.recrm-contact-popup {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;
}

.recrm-contact-popup.is-visible {
    display: flex !important;
}


/* Overlay */

.recrm-contact-popup-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.62);

    backdrop-filter: blur(4px);
}


/* Popup */

.recrm-contact-popup-box {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 460px;

    max-height: calc(100vh - 40px);
    overflow-y: auto;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);

    box-sizing: border-box;

    animation: recrmPopupIn 0.35s ease;
}


@keyframes recrmPopupIn {

    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* Content */

.recrm-contact-popup-content {
    padding: 34px 32px 30px;
}


/* =========================================================
   POPUP CLOSE BUTTON
========================================================= */

.recrm-contact-popup-close {
    position: absolute !important;

    top: 12px !important;
    right: 14px !important;

    width: 38px !important;
    height: 38px !important;

    padding: 0 !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: none !important;
    border-radius: 50% !important;

    background: #0b8588 !important;
    color: #111 !important;

    font-family: Arial, sans-serif !important;
    font-size: 25px !important;
    font-weight: 400 !important;

    line-height: 38px !important;
    text-align: center !important;

    cursor: pointer !important;

    z-index: 20 !important;

    box-sizing: border-box !important;

    transition:
        background 0.2s ease,
        transform 0.2s ease !important;
}


/* Hover */

.recrm-contact-popup-close:hover {
    background: #087477 !important;

    transform: scale(1.05) !important;

    color: #111 !important;
}


/* Make sure the popup itself is the
   positioning reference */

.recrm-contact-popup-box {
    position: relative !important;
}

    .recrm-contact-popup-close span {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    line-height: 1 !important;

    transform: translateY(-1px) !important;
}

@media (max-width: 600px) {

    .recrm-contact-popup-close {
        top: 10px !important;
        right: 10px !important;

        width: 36px !important;
        height: 36px !important;

        font-size: 23px !important;

        line-height: 36px !important;
    }

}

/* Icon */

.recrm-contact-popup-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    border-radius: 50%;

    background: #f5f0e8;

    color: #c5a059;

    font-size: 18px;
}


/* Heading */

.recrm-contact-popup-content h3 {
    margin: 0 0 8px;

    font-size: 24px;

    line-height: 1.25;

    color: #121212;
}


.recrm-contact-popup-subtitle {
    margin: 0 0 22px;

    font-size: 14px;

    line-height: 1.6;

    color: #666;
}


/* Fields */

.recrm-popup-form-field {
    margin-bottom: 14px;
}


.recrm-popup-form-field label {
    display: block;

    margin-bottom: 6px;

    font-size: 12px;

    font-weight: 600;

    color: #333;
}


.recrm-popup-form-field input {
    width: 100%;

    height: 46px;

    padding: 0 13px;

    border: 1px solid #ddd;

    border-radius: 6px;

    background: #fff;

    color: #222;

    font-size: 14px;

    box-sizing: border-box;

    outline: none;
}


.recrm-popup-form-field input:focus {
    border-color: #c5a059;

    box-shadow:
        0 0 0 2px rgba(197, 160, 89, 0.12);
}


/* Submit */

.recrm-popup-submit {
    width: 100%;

    height: 48px;

    margin-top: 4px;

    border: 1px solid #121212;

    border-radius: 5px;

    background: #121212;

    color: #fff;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    cursor: pointer;

    transition: all 0.25s ease;
}


.recrm-popup-submit:hover {
    background: #c5a059;

    border-color: #c5a059;

    color: #121212;
}


.recrm-popup-submit:disabled {
    opacity: 0.65;

    cursor: not-allowed;
}


/* Message */

.recrm-contact-popup-message {
    display: none;

    margin-top: 12px;

    padding: 10px;

    border-radius: 5px;

    font-size: 13px;

    line-height: 1.4;
}


.recrm-contact-popup-message.error {
    display: block;

    background: #fff0f0;

    color: #b42318;
}


/* Success */

.recrm-contact-popup-success {
    text-align: center;

    padding: 15px 0 5px;
}


.recrm-popup-success-icon {
    width: 52px;
    height: 52px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf8ef;

    color: #198754;

    font-size: 24px;

    font-weight: 700;
}


.recrm-contact-popup-success h3 {
    margin-bottom: 8px;
}


.recrm-contact-popup-success p {
    margin: 0;

    color: #666;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .recrm-contact-popup {
        padding: 12px;
    }


    .recrm-contact-popup-box {
        max-width: 100%;

        max-height: calc(100vh - 24px);

        border-radius: 10px;
    }


    .recrm-contact-popup-content {
        padding: 30px 20px 22px;
    }


    .recrm-contact-popup-content h3 {
        font-size: 21px;
    }


    .recrm-contact-popup-subtitle {
        font-size: 13px;

        margin-bottom: 18px;
    }


    .recrm-popup-form-field {
        margin-bottom: 11px;
    }


    .recrm-popup-form-field input {
        height: 44px;
    }


    .recrm-popup-submit {
        height: 46px;
    }

}

body.recrm-popup-open {
    overflow: hidden !important;
}

/* =========================================================
   PREMIUM PROPERTY CARD — FINAL OVERRIDE
   Add this at the VERY END of recrm-public.css
========================================================= */

.recrm-card {
    width: 100% !important;
    background: #FAF8F5 !important;
    border: 1px solid rgba(197, 160, 89, 0.35) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(18, 18, 18, 0.05) !important;
}


/* =========================================================
   IMAGE
========================================================= */

.recrm-card-image {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    overflow: hidden !important;
    background: #eee !important;
}

.recrm-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}


/* =========================================================
   CARD BODY
========================================================= */

.recrm-card-body {
    padding: 20px !important;

    display: flex !important;
    flex-direction: column !important;

    box-sizing: border-box !important;
}


/* =========================================================
   PRICE
========================================================= */

.recrm-card-body .recrm-price {
    margin: 0 0 5px 0 !important;

    color: #0F4C81 !important;

    font-family:
        'Plus Jakarta Sans',
        -apple-system,
        BlinkMacSystemFont,
        sans-serif !important;

    font-size: 25px !important;

    font-weight: 700 !important;

    line-height: 1.15 !important;
}


/* =========================================================
   PROPERTY TITLE
========================================================= */

.recrm-card-body .recrm-card-title {
    margin: 0 0 10px 0 !important;

    color: #121212 !important;

    font-family:
        'Plus Jakarta Sans',
        -apple-system,
        BlinkMacSystemFont,
        sans-serif !important;

    font-size: 21px !important;

    font-weight: 500 !important;

    line-height: 1.3 !important;

    letter-spacing: -0.02em !important;
}


/* =========================================================
   LOCATION / SUBTITLE
========================================================= */

.recrm-card-body .recrm-card-subtitle {
    margin: 0 0 0 0 !important;

    color: #6f6c68 !important;

    font-family:
        'Plus Jakarta Sans',
        -apple-system,
        BlinkMacSystemFont,
        sans-serif !important;

    font-size: 14px !important;

    font-weight: 500 !important;

    letter-spacing: 0 !important;

    line-height: 1.4 !important;

    text-transform: none !important;
}


/* Location icon */

.recrm-card-body .recrm-card-subtitle svg {
    width: 16px !important;
    height: 16px !important;

    stroke: #6f6c68 !important;
}


/* =========================================================
   FEATURES ROW
========================================================= */

.recrm-card-body .recrm-features,
.recrm-card-body .recrm-card-features {

    display: flex !important;

    align-items: center !important;

    justify-content: flex-start !important;

    flex-wrap: nowrap !important;

    gap: 18px !important;

    width: 100% !important;

    margin: 28px 0 0 0 !important;

    padding: 16px 0 !important;

    border-top: 1px solid #e5dfd7 !important;

    border-bottom: 1px solid #e5dfd7 !important;

    box-sizing: border-box !important;
}


/* Individual feature */

.recrm-card-body .recrm-feature-item {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: flex-start !important;

    gap: 6px !important;

    flex: 0 1 auto !important;

    min-width: 0 !important;

    color: #68645f !important;

    font-size: 13px !important;

    font-weight: 500 !important;

    white-space: nowrap !important;
}


/* Feature icons */

.recrm-card-body .recrm-feature-item svg {

    width: 17px !important;

    height: 17px !important;

    flex: 0 0 auto !important;

    stroke: #696661 !important;
}


/* =========================================================
   BUTTONS
========================================================= */

.recrm-card-buttons {

    display: flex !important;

    flex-direction: row !important;

    align-items: stretch !important;

    gap: 10px !important;

    width: 100% !important;

    margin-top: 20px !important;

    box-sizing: border-box !important;
}


.recrm-card-buttons > a {

    flex: 1 1 0 !important;

    width: 0 !important;

    min-width: 0 !important;

    height: 42px !important;

    min-height: 42px !important;

    padding: 0 10px !important;

    margin: 0 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 6px !important;

    box-sizing: border-box !important;

    border-radius: 4px !important;

    font-family:
        'Plus Jakarta Sans',
        -apple-system,
        BlinkMacSystemFont,
        sans-serif !important;

    font-size: 10px !important;

    font-weight: 700 !important;

    letter-spacing: .05em !important;

    line-height: 1 !important;

    text-transform: uppercase !important;

    white-space: nowrap !important;
}


/* View Details */

.recrm-card-buttons .recrm-btn-details {

    background: #121212 !important;

    color: #FAF8F5 !important;

    border: 1px solid #121212 !important;

    box-shadow: 0 4px 10px rgba(18,18,18,.08) !important;
}


.recrm-card-buttons .recrm-btn-details:hover {

    background: #C5A059 !important;

    color: #121212 !important;

    border-color: #C5A059 !important;
}


/* Arrow */

.recrm-card-buttons .recrm-btn-details .recrm-btn-icon {

    font-size: 11px !important;

    margin-left: 3px !important;
}


/* WhatsApp */

.recrm-card-buttons .recrm-btn-whatsapp {

    background: rgba(37,211,102,.08) !important;

    color: #16823c !important;

    border: 1px solid rgba(37,211,102,.30) !important;
}


.recrm-card-buttons .recrm-btn-whatsapp:hover {

    background: #25D366 !important;

    color: #fff !important;

    border-color: #25D366 !important;
}


.recrm-card-buttons .recrm-btn-whatsapp i {

    font-size: 13px !important;

    margin-right: 4px !important;
}


/* =========================================================
   MOBILE CARD
========================================================= */

@media (max-width: 768px) {

    .recrm-card-body {

        padding: 16px !important;

    }


    .recrm-card-body .recrm-price {

        font-size: 22px !important;

    }


    .recrm-card-body .recrm-card-title {

        font-size: 19px !important;

        line-height: 1.25 !important;

    }


    .recrm-card-body .recrm-card-subtitle {

        font-size: 13px !important;

    }


    .recrm-card-body .recrm-features,
    .recrm-card-body .recrm-card-features {

        gap: 10px !important;

        margin-top: 22px !important;

        padding: 13px 0 !important;

        justify-content: space-between !important;

    }


    .recrm-card-body .recrm-feature-item {

        gap: 4px !important;

        font-size: 11px !important;

    }


    .recrm-card-body .recrm-feature-item svg {

        width: 15px !important;

        height: 15px !important;

    }


    .recrm-card-buttons {

        gap: 8px !important;

        margin-top: 16px !important;

    }


    .recrm-card-buttons > a {

        height: 40px !important;

        min-height: 40px !important;

        padding: 0 7px !important;

        font-size: 9px !important;

        letter-spacing: .035em !important;

    }

}

/* =========================================================
   RECRM REUSABLE CONTACT FORM
========================================================= */

.recrm-contact-form-wrapper {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 28px;
    background: #FAF8F5;
    border: 1px solid #E3DDD4;
    border-radius: 8px;
    box-sizing: border-box;
}


/* =========================================================
   FORM
========================================================= */

.recrm-contact-form {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* =========================================================
   FIELD
========================================================= */

.recrm-contact-field {
    width: 100%;
    margin-bottom: 18px;
}


.recrm-contact-field label {
    display: block;

    margin: 0 0 7px;

    color: #121212;

    font-family:
        'Plus Jakarta Sans',
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.4;
}


.recrm-contact-field input {
    width: 100%;

    height: 48px;

    padding: 0 14px;

    margin: 0;

    box-sizing: border-box;

    border: 1px solid #D8D2C9;

    border-radius: 5px;

    background: #FFFFFF;

    color: #121212;

    font-family:
        'Plus Jakarta Sans',
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;

    font-size: 14px;

    line-height: 48px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.recrm-contact-field input::placeholder {
    color: #999;
}


.recrm-contact-field input:focus {
    border-color: #C5A059;

    box-shadow:
        0 0 0 3px rgba(197, 160, 89, .10);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.recrm-contact-submit {
    width: 100%;

    height: 48px;

    padding: 0 20px;

    margin: 5px 0 0;

    display: flex;

    align-items: center;

    justify-content: center;

    box-sizing: border-box;

    border: 1px solid #121212;

    border-radius: 5px;

    background: #121212;

    color: #FFFFFF;

    font-family:
        'Plus Jakarta Sans',
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .08em;

    line-height: 1;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.recrm-contact-submit:hover {
    background: #C5A059;

    border-color: #C5A059;

    color: #121212;

    transform: translateY(-1px);
}


.recrm-contact-submit:disabled {
    opacity: .65;

    cursor: not-allowed;

    transform: none;
}


/* =========================================================
   SUCCESS / ERROR MESSAGE
========================================================= */

.recrm-contact-message {
    width: 100%;

    margin-top: 14px;

    padding: 11px 13px;

    box-sizing: border-box;

    border-radius: 5px;

    background: #F5F5F5;

    font-size: 13px;

    line-height: 1.5;

    text-align: center;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .recrm-contact-form-wrapper {
        max-width: 100%;

        padding: 20px 16px;

        border-radius: 6px;
    }


    .recrm-contact-field {
        margin-bottom: 14px;
    }


    .recrm-contact-field label {
        font-size: 11px;

        margin-bottom: 6px;
    }


    .recrm-contact-field input {
        height: 46px;

        font-size: 14px;

        line-height: 46px;
    }


    .recrm-contact-submit {
        height: 46px;

        font-size: 10px;
    }

}