
/* ========== HEADER - Redesigned ========== */
/* Override Bootstrap navbar – ensure our header design always shows */
.site-header.top-bar,
.site-header {
    background: #0a0a0a !important;
    box-shadow: none !important;
}
.site-header .navbar,
.site-header .navbar-light {
    background: transparent !important;
    padding: 0 !important;
    width: 100%;
}
/* Site header – below banner, sticks on scroll */
#header.site-header,
#header-sticky.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    width: 100%;
    background: #0a0a0a !important;
    border-bottom: 1px solid rgba(13, 148, 136, 0.2);
    box-shadow: 0 1px 0 0 rgba(13, 148, 136, 0.08);
    transition: box-shadow 0.35s ease, background 0.35s ease;
}
#header.site-header.header-is-stuck {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
#header.site-header::before,
#header-sticky.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0d9488, #14b8a6, #0d9488, transparent);
    opacity: 0.8;
}
.body-content {
    padding-top: 0;
    overflow: visible;
}
@media (max-width: 991px) {
    .body-content {
        display: flex;
        flex-direction: column;
    }
    .body-content .site-header-main {
        order: -1;
    }
}
/* Header inner layout – centered logo, nav split left/right */
.site-header .header-inner {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 16px 40px !important;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}
@media (min-width: 992px) {
    .site-header .header-inner {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 24px;
    }
    .site-header .header-nav-left {
        justify-content: flex-end;
    }
    .site-header .header-nav-right {
        justify-content: flex-start;
    }
    .site-header .header-logo {
        justify-self: center;
    }
    .site-header .header-toggle,
    .site-header .header-nav-mobile {
        display: none !important;
    }
}
.site-header .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}
.site-header .header-logo-img {
    max-height: 72px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header .header-logo:hover .header-logo-img {
    transform: scale(1.02);
    opacity: 0.95;
}
/* Nav list */
.site-header .navbar-nav,
.site-header .header-nav-list {
    display: flex !important;
    align-items: center;
    gap: 4px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    flex-wrap: nowrap;
}
.site-header .header-nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 18px !important;
    border-radius: 10px;
    text-decoration: none !important;
    transition: color 0.25s ease, background 0.25s ease;
}
.site-header .header-nav-link:hover {
    color: #14b8a6 !important;
    background: rgba(13, 148, 136, 0.12);
}
/* Mobile menu – applies when navbar is collapsed (below 992px) */
@media (max-width: 991px) {
    .site-header .header-inner {
        position: relative;
        justify-content: flex-end;
        padding: 12px 16px !important;
        min-height: 56px;
    }
    .site-header .header-logo {
        display: none !important;
    }
    .site-header .header-nav-left,
    .site-header .header-nav-right {
        display: none !important;
    }
    .site-header .header-toggle {
        position: static;
        transform: none;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        z-index: 2;
    }
    .site-header .header-nav-mobile {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        margin: 8px 0 0;
        padding: 20px 0 24px;
        background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
        border-radius: 16px;
        border: 1px solid rgba(13, 148, 136, 0.25);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
        overflow: hidden;
        z-index: 100;
    }
    .site-header .header-nav-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #0d9488, #14b8a6);
    }
    .site-header .header-nav-mobile .header-nav-list {
        flex-direction: column !important;
        gap: 0;
        padding: 0 16px;
    }
    .site-header .header-nav-mobile .header-nav-list .nav-item {
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .site-header .header-nav-link {
        display: flex !important;
        align-items: center;
        gap: 14px;
        padding: 16px 12px !important;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.95) !important;
        border-radius: 10px;
        transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
    }
    .site-header .header-nav-link::before {
        content: '';
        width: 6px;
        height: 6px;
        background: #0d9488;
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.25s ease;
        flex-shrink: 0;
    }
    .site-header .header-nav-link:hover {
        background: rgba(13, 148, 136, 0.12);
        color: #14b8a6 !important;
        padding-left: 20px !important;
    }
    .site-header .header-nav-link:hover::before {
        opacity: 1;
    }
}

/* Mobile toggle */
.site-header .header-toggle {
    padding: 10px 14px;
    border: 1px solid rgba(13, 148, 136, 0.4);
    border-radius: 10px;
    background: transparent;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.site-header .header-toggle:hover,
.site-header .header-toggle:focus {
    border-color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.2);
}

/* ========== MODAL — Modern Spaaces Theme ========== */
.modal.form.modal-enquiry .modal-dialog {
    max-width: min(580px, 92vw);
    margin: 1rem auto;
}
.modal.form.modal-enquiry .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background: var(--ms-cream, #f7f4ef);
    border: 1px solid rgba(200, 121, 65, 0.18);
    border-radius: 20px;
    box-shadow: 0 32px 64px rgba(12, 18, 34, 0.28);
    overflow: hidden;
    outline: 0;
}
.modal.form.modal-enquiry .modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ms-copper, #c87941), var(--ms-copper-light, #e8a86a), var(--ms-copper, #c87941));
    z-index: 3;
}
.modal.form.modal-enquiry .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: flex-start;
    justify-content: space-between;
    padding: 28px 28px 0;
    border: none;
    background: transparent;
    position: relative;
    z-index: 2;
}
.modal-header-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.modal-enquiry__logo {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
    opacity: 0.88;
    margin-bottom: 4px;
}
.modal.form.modal-enquiry .modal-badge {
    display: inline-block;
    font-family: var(--ms-font-body, 'DM Sans', sans-serif);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--ms-copper, #c87941);
    text-transform: uppercase;
}
.modal.form.modal-enquiry .modal-title {
    font-family: var(--ms-font-display, 'Cormorant Garamond', 'Playfair Display', serif);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--ms-navy, #0c1222);
    margin: 0;
    line-height: 1.25;
}
.modal.form.modal-enquiry .btn-close {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: -8px -8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 18, 34, 0.06);
    color: var(--ms-navy, #0c1222);
    opacity: 1;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: background 0.25s ease, color 0.25s ease;
    border: 1px solid rgba(12, 18, 34, 0.08);
    background-image: none !important;
}
.modal.form.modal-enquiry .btn-close:hover {
    background: var(--ms-copper, #c87941) !important;
    color: #fff !important;
    border-color: var(--ms-copper, #c87941);
}
.modal.form.modal-enquiry .btn-close i {
    font-size: 1rem;
}
.modal.form.modal-enquiry .modal-body {
    position: relative;
    padding: 24px 28px 32px;
}
.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.modal-form .form-field,
.modal-form .form-field-row {
    margin: 0;
}
.modal-form .form-field-row.contry-code-mb-number {
    display: flex;
    gap: 12px;
    align-items: stretch;
}
.modal-form .form-field-row .country-code {
    flex: 0 0 100px;
}
.modal-form .form-field-row .m-number-cont {
    flex: 1 1 auto;
    min-width: 0;
}
.modal-form .form-control {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    font-family: var(--ms-font-body, 'DM Sans', sans-serif);
    font-size: 0.95rem;
    color: var(--ms-text, #1a2234);
    background: var(--ms-white, #fff);
    border: 1px solid rgba(12, 18, 34, 0.12);
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.modal-form .form-control::placeholder {
    color: var(--ms-muted, #6b7280);
}
.modal-form .form-control:focus {
    outline: none;
    border-color: var(--ms-copper, #c87941);
    box-shadow: 0 0 0 3px rgba(200, 121, 65, 0.15);
    background: var(--ms-white, #fff);
}
.modal-form .form-field-row .country-code select {
    height: 50px;
    padding: 0 14px;
    cursor: pointer;
    appearance: auto;
}
.modal-form .form-field-row .m-number-cont input {
    border-radius: 12px;
}
.modal-form .modal-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    margin-top: 8px;
    padding: 0 28px;
    font-family: var(--ms-font-body, 'DM Sans', sans-serif);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff !important;
    background: linear-gradient(135deg, var(--ms-navy, #0c1222), var(--ms-navy-soft, #151d30)) !important;
    border: none !important;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(12, 18, 34, 0.28);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.modal-form .modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(12, 18, 34, 0.32);
    background: linear-gradient(135deg, var(--ms-navy-soft, #151d30), var(--ms-slate, #2a3347)) !important;
    color: #fff !important;
}
.modal-form .modal-submit-btn i {
    font-size: 0.9rem;
    transition: transform 0.25s ease;
}
.modal-form .modal-submit-btn:hover i {
    transform: translateX(4px);
}
.modal-form .disc {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 0px;
    padding-top: 6px;
    border-top: 1px solid rgba(12, 18, 34, 0.08);
}
.modal-form .disc input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--ms-copper, #c87941);
    cursor: pointer;
}
.modal-form .disc label {
    font-family: var(--ms-font-body, 'DM Sans', sans-serif);
    font-size: 11px;
    line-height: 1.65;
    color: var(--ms-muted, #6b7280);
}
body.site-ms.modal-open .modal-backdrop {
    background-color: rgba(12, 18, 34, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 575px) {
    .modal.form.modal-enquiry .modal-dialog {
        max-width: calc(100% - 24px);
        margin: 12px auto;
    }
    .modal.form.modal-enquiry .modal-header,
    .modal.form.modal-enquiry .modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }
    .modal.form.modal-enquiry .form-field-row .country-code {
        flex: 0 0 85px;
    }
    .modal-enquiry__logo {
        height: 34px;
    }
}
/* ==================== PROJECTS SECTION ==================== */
.projects-section.home {  padding: 60px 0 80px; position: relative; overflow: hidden; }
.projects-head { text-align: center; margin-bottom: 56px !important; }
.projects-head .projects-subtitle { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: #0d9488; margin-bottom: 14px; }
.projects-head .sub-title { justify-content: center; }
.projects-head .sub-title h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 600; color: #1a1a1a; margin-bottom: 0; line-height: 1.12; letter-spacing: -0.02em; }
.projects-head .sub-title span { color: #0d9488; font-weight: 600; }
.projects-head .title-underline { width: 88px; height: 4px; background: linear-gradient(90deg, transparent, #0d9488, #14b8a6, transparent); margin: 20px auto 0; border-radius: 999px; position: relative; }
.projects-head h3 { display: none !important; }
.projects-section .grid-items { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 1.75rem 1.5rem !important; align-items: stretch; }
.projects-section .grid-item:nth-child(3n+2) { transform: none; }
.projects-section .grid-item:nth-child(3n+2):hover { transform: translateY(-4px); }
.projects-section .grid-item.project-card-horizontal {
  background: #fff !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 14px !important;
  padding: 0 !important;
  margin-bottom: 0;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.projects-section .grid-item.project-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #d5d5d5 !important;
}
.projects-section .project-card-inner {
  display: grid;
  grid-template-columns: 48% 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: 0;
}
.projects-section .project-card-media {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: auto;
  max-width: none;
  padding: 16px 0 16px 16px;
  background: #fff;
  min-height: 0;
  height: 100%;
}
.projects-section .project-card-body {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: 20px 22px 18px 18px;
  min-width: 0;
  min-height: 0;
  height: 100%;
  color: #1a1a1a;
}
.projects-section .project-card-horizontal .card-action-bar,
.projects-section .project-card-horizontal .card-image-actions {
  grid-column: 1 / -1;
  grid-row: 2;
}
.projects-section .grid-item.project-card-horizontal:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1); border-color: #d5d5d5 !important; }
.projects-section .project-card-horizontal .property-picture {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  display: flex;
  align-self: stretch;
}
.projects-section .project-card-horizontal .property-picture .banner {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.5s ease;
  flex: 1 1 auto;
  display: block;
}
.projects-section .project-card-horizontal:hover .property-picture .banner { transform: scale(1.04); }
.projects-section .card-status-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  background: #b45309;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.projects-section .card-status-badge.card-status-ready {
  background: #2d8a4e;
}
.projects-section .card-status-badge.card-status-new {
  background: #c87941;
}
.projects-section .card-project-type {
  font-size: 13px;
  font-weight: 600;
  color: #0d9488 !important;
  margin: 0 0 4px;
  line-height: 1.3;
}
.projects-section .project-card-horizontal .card-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(12, 18, 34, 0.82) 0%, rgba(12, 18, 34, 0.45) 70%, transparent 100%);
  pointer-events: none;
}
.projects-section .project-card-horizontal .card-possession {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff !important;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(200, 121, 65, 0.92);
  white-space: nowrap;
  line-height: 1.2;
}
.projects-section .projects-tagline { font-size: 15px; color: #999; margin-top: 8px; margin-bottom: 24px; font-weight: 400; }
.projects-section .card-location { font-size: 14px !important; color: #333 !important; margin-bottom: 0; font-family: 'DM Sans', sans-serif; font-weight: 400; display: flex; align-items: center; gap: 8px; }
.projects-section .card-location i { color: #0d9488; font-size: 15px; flex-shrink: 0; }
/* Full-width action bar at bottom of card */
.projects-section .project-card-horizontal .card-action-bar,
.projects-section .project-card-horizontal .card-image-actions {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(12, 18, 34, 0.08);
  overflow: hidden;
}
/* Horizontal card body */
.projects-section .project-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.projects-section .project-card-head-text {
  flex: 1;
  min-width: 0;
}
.projects-section .project-card-head-text h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #111 !important;
  margin: 0 0 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.3;
}
.projects-section .project-card-head .card-location {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #555 !important;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.projects-section .project-card-head .card-location i {
  display: inline-block;
  color: #0d9488 !important;
  font-size: 14px;
  flex-shrink: 0;
}
.projects-section .project-card-head {
  flex-shrink: 0;
}
.projects-section .project-card-meta {
  display: block;
  flex-shrink: 0;
  margin-bottom: 14px;
  padding-bottom: 0;
  border-bottom: none;
}
.projects-section .project-card-footer {
  display: flex;
  align-items: stretch;
  flex: 1 1 auto;
  margin-top: auto;
  min-height: 0;
  align-self: stretch;
}
.projects-section .project-card-pricing {
  width: 100%;
  flex: 1 1 auto;
  min-height: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  background: #f8f8f8;
  border: 1px solid #ececec;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.projects-section .project-card-meta .project-card-stats {
  width: 100%;
}
.projects-section .project-card-horizontal .property-picture::after { display: none; }
.projects-section .property-picture { overflow: hidden; position: relative; border-radius: 8px; }
.projects-section .project-card-price-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #666 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.projects-section .project-card-price-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #111 !important;
  line-height: 1.15;
}
.projects-section .project-card-stats {
  flex: 1;
  padding-left: 0;
  min-width: 0;
  width: 100%;
}
.projects-section .project-card-stats-table {
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
}
.projects-section .project-card-stats-head,
.projects-section .project-card-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  align-items: center;
}
.projects-section .project-card-stats-head {
  background: #ececec;
  font-size: 12px;
  font-weight: 700;
  color: #444 !important;
  padding: 10px 8px;
  border-bottom: 1px solid #d8d8d8;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.projects-section .project-card-stats-head span,
.projects-section .project-card-stats-row span {
  color: inherit !important;
  word-break: break-word;
}
.projects-section .project-card-stats-row {
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  color: #111 !important;
  padding: 12px 8px;
}
.projects-section .project-card-horizontal:hover .project-card-head-text h2 { color: #111 !important; }
@media (max-width:749px) {
  .projects-section.home { padding: 40px 0 50px; }
  .projects-head .projects-subtitle { font-size: 11px; letter-spacing: 3px; }
  .projects-head .sub-title h2 { font-size: clamp(1.85rem, 7vw, 2.35rem); }
  .projects-section .grid-items { grid-template-columns: 1fr !important; gap: 1.25rem !important; }
  .projects-section .grid-item:nth-child(3n+2) { margin-top: 0; transform: none; }
  .projects-section .grid-item:nth-child(3n+2):hover { transform: translateY(-4px); }
  .projects-section .project-card-inner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    min-height: 0;
    grid-template-columns: none;
    grid-template-rows: none;
  }
  .projects-section .project-card-media,
  .projects-section .project-card-body,
  .projects-section .project-card-horizontal .card-action-bar {
    grid-column: auto;
    grid-row: auto;
  }
  .projects-section .project-card-media { flex: none; max-width: 100%; width: 100%; padding: 12px 12px 0; min-height: 0; }
  .projects-section .project-card-body { padding: 16px 16px 18px; min-height: 0; height: auto; }
  .projects-section .project-card-footer { flex: none; margin-top: 14px; }
  .projects-section .project-card-pricing { min-height: 0; }
  .projects-section .project-card-horizontal .property-picture { min-height: 260px; height: auto; display: block; }
  .projects-section .project-card-horizontal .property-picture .banner { min-height: 260px; height: auto; }
  .projects-section .project-card-head-text h2 { font-size: 21px !important; }
  .projects-section .project-card-meta { flex-direction: column; align-items: stretch; gap: 12px; }
  .projects-section .project-card-stats-head { font-size: 11px; padding: 9px 6px; }
  .projects-section .project-card-stats-row { font-size: 13px; padding: 11px 6px; }
  .projects-section .project-card-price-value { font-size: 22px; }
  .projects-section .grid-item { border-radius: 12px !important; }
  .projects-section .property-picture .banner { height: 300px !important; }
}
@media (max-width:991px) and (min-width:750px) {
  .projects-section .project-card-inner { grid-template-columns: 46% 1fr; }
  .projects-section .project-card-head-text h2 { font-size: 20px !important; }
  .projects-section .project-card-price-value { font-size: 21px; }
  .projects-section .project-card-stats-row { font-size: 13px; }
}
@media (min-width:1400px) { .projects-section .grid-items { gap: 3rem 2.5rem !important; } }
.hero-banner .carousel-item img { height: auto !important; }
.hero-banner .hero-slide__img {
  height: 100% !important;
  min-height: 82vh !important;
}
/* ========== FLOATING CALL & WHATSAPP ========== */
/* Side floating round icons */
.fixed-social-icon.fixed-contact-dock {
    position: fixed !important;
    bottom: auto !important;
    left: auto !important;
    right: 20px !important;
    top: auto !important;
    width: auto !important;
    max-width: none !important;
    z-index: 99999 !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: none !important;
    overflow: visible !important;
    box-sizing: border-box;
    margin: 0;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.fixed-social-icon.fixed-contact-dock .fixed-social-list {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
}
.fixed-social-icon.fixed-contact-dock .fixed-social-item {
    flex: none;
    margin: 0;
    display: block;
}
.fixed-social-icon.fixed-contact-dock .fixed-social-item + .fixed-social-item {
    border-left: none;
}
.fixed-social-icon.fixed-contact-dock .fixed-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(12, 18, 34, 0.28);
    box-sizing: border-box;
}
.fixed-social-icon.fixed-contact-dock .fixed-social-link:hover {
    transform: scale(1.08);
    opacity: 1;
}
.fixed-social-icon.fixed-contact-dock .fixed-social-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fixed-social-icon.fixed-contact-dock .fixed-social-icon-inner i {
    font-size: 22px;
    line-height: 1;
    color: #fff;
}
.fixed-social-icon.fixed-contact-dock .fixed-social-call .fixed-social-link {
    background: linear-gradient(135deg, #0c1222, #151d30);
}
.fixed-social-icon.fixed-contact-dock .fixed-social-whatsapp .fixed-social-link {
    background: linear-gradient(135deg, #128C7E, #25D366);
}
.fixed-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.fixed-social-item {
    margin: 0;
    flex: none;
}
.fixed-social-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px 12px 14px;
    border-radius: 50px;
    text-decoration: none !important;
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.fixed-social-link:hover {
    transform: translateX(-4px);
    color: #fff !important;
}
.fixed-social-icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}
.fixed-social-link:hover .fixed-social-icon-inner {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.3);
}
.fixed-social-icon-inner img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}
.fixed-social-label {
    white-space: nowrap;
}
.fixed-social-call .fixed-social-link {
    background: linear-gradient(135deg, #0d9488, #0f766e);
}
.fixed-social-call .fixed-social-link:hover {
    box-shadow: 0 12px 32px rgba(13, 148, 136, 0.45);
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}
.fixed-social-whatsapp .fixed-social-link {
    background: linear-gradient(135deg, #25d366, #1da851);
}
.fixed-social-whatsapp .fixed-social-link:hover {
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
    background: linear-gradient(135deg, #2ee06d, #22b858);
}

/* Mobile adjustments for fixed contact dock */
@media (max-width: 991px) {
.fixed-social-icon.fixed-contact-dock {
    bottom: 88px !important;
    right: 16px !important;
    left: auto !important;
    width: auto !important;
}
}

@media (max-width: 575px) {
    .fixed-social-link {
        padding: 10px 8px;
        gap: 8px;
        min-height: 52px;
    }
    .fixed-social-icon-inner {
        width: 34px;
        height: 34px;
    }
    .fixed-social-icon-inner img {
        width: 18px;
        height: 18px;
    }
    .fixed-social-label {
        font-size: 0.75rem;
    }
}

/* ========== Thank You Page ========== */
.thankyou-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f7f4ef;
}
.thankyou-page #header {
    position: sticky;
    top: 0;
    z-index: 1040;
}
.thankyou-main {
    flex: 1;
    position: relative;
    padding: 72px 24px 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thankyou-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.thankyou-card {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
    padding: 52px 44px 56px;
    text-align: center;
}
.thankyou-icon-wrap {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.thankyou-icon-wrap i {
    font-size: 32px;
    color: #fff;
}
.thankyou-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: 0.01em;
}
.thankyou-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px;
}
.thankyou-message {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 28px;
}
.thankyou-divider {
    height: 1px;
    width: 64px;
    margin: 0 auto 24px;
}
.thankyou-help {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    margin: 0 0 16px;
}
.thankyou-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(12, 18, 34, 0.12);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.thankyou-btn.arrow-btn,
.thankyou-btn {
    display: inline-block;
}
@media (max-width: 575px) {
    .thankyou-main { padding: 56px 16px 72px; }
    .thankyou-card {
        padding: 40px 24px 44px;
    }
    .thankyou-icon-wrap { width: 64px; height: 64px; margin-bottom: 16px; }
    .thankyou-icon-wrap i { font-size: 26px; }
    .thankyou-title { font-size: 2rem; }
    .thankyou-tagline { font-size: 1rem; }
    .thankyou-message { font-size: 0.9rem; margin-bottom: 24px; }
    .thankyou-phone { font-size: 1.05rem; padding: 10px 20px; }
}

/* ========== Back to top button – redesigned ========== */

.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d9488, #0f766e);
    color: #fff !important;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    z-index: 1025;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none !important;
}
.back-to-top i {
    font-size: 24px;
    line-height: 1;
}
.back-to-top.back-to-top-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.back-to-top:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    box-shadow: 0 8px 28px rgba(13, 148, 136, 0.5);
    transform: translateY(-4px);
}
.back-to-top:active {
    transform: translateY(-1px);
}

/* Mobile: above Call/WhatsApp bar */
@media (max-width: 991px) {
    .back-to-top {
        bottom: calc(88px + env(safe-area-inset-bottom, 0));
        right: 20px;
        width: 46px;
        height: 46px;
    }
    .back-to-top i {
        font-size: 22px;
    }
}
@media (max-width: 575px) {
    .back-to-top {
        right: 16px;
        width: 44px;
        height: 44px;
    }
    .back-to-top i {
        font-size: 20px;
    }
}

/* ========== THEME ========== */

/* Modern Spaaces — New Theme */
:root {
  --ms-navy: #0c1222;
  --ms-navy-soft: #151d30;
  --ms-slate: #2a3347;
  --ms-copper: #c87941;
  --ms-copper-light: #e8a86a;
  --ms-cream: #f7f4ef;
  --ms-cream-dark: #ebe6de;
  --ms-white: #ffffff;
  --ms-text: #1a2234;
  --ms-muted: #6b7280;
  --ms-border: rgba(12, 18, 34, 0.1);
  --ms-radius: 16px;
  --ms-radius-lg: 24px;
  --ms-shadow: 0 24px 60px rgba(12, 18, 34, 0.12);
  --ms-font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  --ms-font-body: 'DM Sans', sans-serif;
}

/* ========== SITE BASE ========== */
.site-ms {
  font-family: var(--ms-font-body);
  color: var(--ms-text);
  background: var(--ms-cream);
  -webkit-font-smoothing: antialiased;
}
.site-ms .body-content { background: var(--ms-cream); }

/* ========== HERO BANNER ========== */
.hero-banner {
  position: relative;
  background: var(--ms-navy);
}
.hero-banner .carousel,
.hero-banner .carousel-inner,
.hero-banner .carousel-item,
.hero-banner .hero-slide {
  min-height: 82vh;
}
.hero-banner .hero-slide {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-banner .hero-slide__media {
  position: absolute;
  inset: 0;
}
.hero-banner .hero-slide__img {
  width: 100%;
  height: 100%;
  min-height: 82vh;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero-banner .carousel-item.active .hero-slide__img {
  transform: scale(1.08);
}
.hero-banner .hero-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 18, 34, 0.92) 0%, rgba(12, 18, 34, 0.72) 42%, rgba(12, 18, 34, 0.25) 100%),
    linear-gradient(to top, rgba(12, 18, 34, 0.55), transparent 45%);
}
.hero-banner .hero-slide__status {
  position: absolute;
  top: 24px;
  left: 84px;
  z-index: 3;
  background: #b45309;
  color: #fff !important;
  font-family: var(--ms-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  line-height: 1.2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.hero-banner .hero-slide__status--ready { background: #2d8a4e; }
.hero-banner .hero-slide__status--new { background: var(--ms-copper); }
.hero-banner .hero-slide__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 82vh;
  padding: 120px 0 100px;
  /* max-width: 720px; */
}
.hero-banner .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ms-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ms-copper-light);
  margin-bottom: 18px;
}
.hero-banner .hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--ms-copper);
}
.hero-banner .hero-title {
  font-family: var(--ms-font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ms-white);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.hero-banner .hero-tagline {
  font-family: var(--ms-font-body);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 28px;
  max-width: 540px;
}
.hero-banner .hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-banner .hero-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  min-width: 130px;
}
.hero-banner .hero-chip-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-banner .hero-chip-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--ms-white);
}
.hero-banner .hero-chip-value.price {
  color: var(--ms-copper-light);
  font-size: 18px;
}
.hero-banner .hero-chip--highlight {
  background: rgba(193, 154, 107, 0.25);
  border: 1px solid var(--ms-copper-light);
}
.card-units-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #d9534f;
  background: rgba(217, 83, 79, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  animation: badgePulse 2s ease-in-out infinite;
}
.card-badge--plan {
  color: #fff;
  background: var(--ms-navy, #1a1a2e);
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .75; transform: scale(1.04); }
}
.hero-banner .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-banner .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--ms-font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hero-banner .hero-btn-primary {
  background: linear-gradient(135deg, var(--ms-copper), #a86530);
  color: var(--ms-white) !important;
  box-shadow: 0 12px 30px rgba(200, 121, 65, 0.35);
}
.hero-banner .hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(200, 121, 65, 0.45);
}
.hero-banner .hero-btn-outline {
  background: transparent;
  color: var(--ms-white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.hero-banner .hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.hero-banner-indicators {
  bottom: 32px;
  left: auto;
  right: 48px;
  margin: 0;
  gap: 8px;
  justify-content: flex-end;
}
.hero-banner-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: width 0.25s ease, background 0.25s ease;
}
.hero-banner-indicators .active {
  width: 28px;
  background: var(--ms-copper);
}
.hero-banner .hero-banner-control {
  width: 52px;
  height: 52px;
  top: auto;
  bottom: 28px;
  transform: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  box-shadow: none;
  opacity: 1;
}
.hero-banner .carousel-control-prev.hero-banner-control { left: auto; right: 180px; }
.hero-banner .carousel-control-next.hero-banner-control { right: 48px; }
.hero-banner .hero-banner-control:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}
.hero-banner .hero-banner-control .carousel-control-prev-icon,
.hero-banner .hero-banner-control .carousel-control-next-icon {
  width: auto;
  height: auto;
  background: none;
}
.hero-banner .hero-banner-control i {
  font-size: 16px;
  color: var(--ms-white);
}

/* ========== ABOUT V2 ========== */
.about-v2 {
  padding: 100px 0;
  background: var(--ms-cream);
  position: relative;
  overflow: hidden;
}
.about-v2::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 121, 65, 0.12), transparent 70%);
  pointer-events: none;
}
.about-v2__header {
  max-width: 640px;
  margin-bottom: 56px;
}
.about-v2__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ms-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ms-copper);
  margin-bottom: 16px;
}
.about-v2__label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--ms-copper), var(--ms-copper-light));
  border-radius: 999px;
}
.about-v2__title {
  font-family: var(--ms-font-display);
  font-size: clamp(2.35rem, 4.5vw, 3.75rem);
  font-weight: 600;
  color: var(--ms-text);
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.about-v2__title span { color: var(--ms-copper); }
.about-v2__title::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--ms-copper), var(--ms-copper-light));
  border-radius: 999px;
}
.about-v2__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ms-muted);
  margin: 0;
}
.about-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.about-v2__panel {
  position: relative;
  border-radius: var(--ms-radius-lg);
  overflow: hidden;
  background: var(--ms-navy);
  min-height: 420px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--ms-shadow);
}
.about-v2__panel-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(200, 121, 65, 0.25), transparent 50%),
    url('../img/Soulace.jpg') center/cover no-repeat;
  opacity: 0.45;
}
.about-v2__panel-content {
  position: relative;
  z-index: 1;
}
.about-v2__panel-quote {
  font-family: var(--ms-font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ms-white);
  line-height: 1.35;
  margin: 0 0 20px;
}
.about-v2__panel-meta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ms-copper-light);
}
.about-v2__text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ms-muted);
  margin-bottom: 18px;
}
.about-v2__text p:last-child { margin-bottom: 0; }
.about-v2__text strong { color: var(--ms-text); }
.about-v2__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-v2__stat {
  background: var(--ms-white);
  border: 1px solid var(--ms-border);
  border-radius: var(--ms-radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-v2__stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--ms-shadow);
}
.about-v2__stat-value {
  display: block;
  font-family: var(--ms-font-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--ms-copper);
  line-height: 1;
  margin-bottom: 6px;
}
.about-v2__stat-unit {
  display: block;
  font-family: var(--ms-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ms-navy);
  margin-bottom: 8px;
}
.about-v2__stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ms-muted);
  line-height: 1.4;
}

/* ========== CONTACT V2 ========== */
.contact-v2 {
  padding: 100px 0 0;
  background: var(--ms-navy);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.contact-v2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 121, 65, 0.5), transparent);
}
.contact-v2__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 80px;
}
.contact-v2__info {
  padding-top: 12px;
}
.contact-v2__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ms-copper-light);
  margin-bottom: 16px;
}
.contact-v2__label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--ms-copper-light), var(--ms-copper));
  border-radius: 999px;
}
.contact-v2__title {
  font-family: var(--ms-font-display);
  font-size: clamp(2.35rem, 4.5vw, 3.75rem);
  font-weight: 600;
  color: var(--ms-white);
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.contact-v2__title::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--ms-copper-light), var(--ms-copper));
  border-radius: 999px;
}
.contact-v2__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 36px;
  max-width: 420px;
}
.contact-v2__channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-v2__channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.contact-v2__channel:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(200, 121, 65, 0.4);
  transform: translateX(4px);
}
.contact-v2__channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-v2__channel-icon.call {
  background: linear-gradient(135deg, var(--ms-copper), #a86530);
  color: var(--ms-white);
}
.contact-v2__channel-icon.whatsapp {
  background: linear-gradient(135deg, #25D366, #1da851);
  color: var(--ms-white);
}
.contact-v2__channel-text span {
  display: block;
}
.contact-v2__channel-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.contact-v2__channel-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--ms-white) !important;
}
.contact-v2__form-card {
  background: var(--ms-white);
  border-radius: var(--ms-radius-lg);
  padding: 36px 32px;
  box-shadow: var(--ms-shadow);
}
.contact-v2__form-head {
  margin-bottom: 28px;
}
.contact-v2__form-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ms-copper);
  background: rgba(200, 121, 65, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.contact-v2__form-title {
  font-family: var(--ms-font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ms-text);
  margin: 0;
}
.contact-v2 .contact-form-row-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-v2 .contact-form-group { margin: 0; }
.contact-v2 .contact-form-group.full { grid-column: 1 / -1; }
.contact-v2 .contact-input,
.contact-v2 .contact-country {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--ms-border);
  border-radius: 12px;
  font-family: var(--ms-font-body);
  font-size: 14px;
  color: var(--ms-text);
  background: var(--ms-cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-v2 .contact-input:focus,
.contact-v2 .contact-country:focus {
  outline: none;
  border-color: var(--ms-copper);
  box-shadow: 0 0 0 3px rgba(200, 121, 65, 0.15);
}
.contact-v2 .contact-form-phone {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
}
.contact-v2 .contact-submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ms-navy), var(--ms-slate));
  color: var(--ms-white);
  font-family: var(--ms-font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-v2 .contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 18, 34, 0.25);
}
.contact-v2 .contact-disc {
  margin-top: 18px;
  font-size: 11px;
  line-height: 1.55;
  color: var(--ms-muted);
}
.contact-v2 .contact-disc a { color: var(--ms-copper); }

/* ========== FOOTER — MINIMAL ========== */
.site-footer {
  position: relative;
  background: var(--ms-navy);
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 60%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ms-copper), transparent);
}
.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 20px 28px;
  text-align: center;
}
.site-footer__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.site-footer__line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 121, 65, 0.45), transparent);
}
.site-footer__logo {
  display: inline-flex;
  flex-shrink: 0;
  padding: 4px 0;
}
.site-footer__logo img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.2s ease;
}
.site-footer__logo:hover img { opacity: 1; }
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 4px;
  margin-bottom: 28px;
}
.site-footer__nav a {
  font-family: var(--ms-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  padding: 4px 8px;
  transition: color 0.2s ease;
}
.site-footer__nav a:hover {
  color: var(--ms-copper-light) !important;
}
.site-footer__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(200, 121, 65, 0.5);
  flex-shrink: 0;
}
.site-footer__disclaimer {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.38);
  margin: 0 auto 22px;
  max-width: 680px;
}
.site-footer__disclaimer b {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer__legal-link {
  color: var(--ms-copper-light) !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: color 0.2s ease;
}
.site-footer__legal-link:hover {
  color: var(--ms-white) !important;
}
.site-footer__sep {
  color: rgba(255, 255, 255, 0.2);
}
.site-footer__copy {
  color: rgba(255, 255, 255, 0.4);
}

/* ========== HEADER THEME ========== */
.site-ms .site-header,
.site-ms .site-header.top-bar {
  background: rgba(12, 18, 34, 0.97) !important;
  box-shadow: 0 8px 32px rgba(12, 18, 34, 0.18) !important;
}
.site-ms #header.site-header,
.site-ms #header-sticky.site-header {
  background: var(--ms-navy) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none !important;
}
.site-ms #header.site-header.header-is-stuck {
  background: rgba(12, 18, 34, 0.96) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(12, 18, 34, 0.22) !important;
}
.site-ms #header.site-header::before,
.site-ms #header-sticky.site-header::before {
  background: linear-gradient(90deg, transparent, var(--ms-copper), var(--ms-copper-light), var(--ms-copper), transparent) !important;
  opacity: 1;
}
.site-ms .body-content {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .site-ms .body-content {
    display: flex;
    flex-direction: column;
  }
  .site-ms .body-content .site-header-main {
    order: -1;
  }
}
.site-ms .site-header .header-nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-family: var(--ms-font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}
.site-ms .site-header .header-nav-link:hover,
.site-ms .site-header .header-nav-link:focus { color: var(--ms-copper-light) !important; }
.site-ms .site-header .header-toggle {
  border-color: rgba(255, 255, 255, 0.25) !important;
}
@media (min-width: 992px) {
  .site-ms .site-header .header-toggle,
  .site-ms .site-header .header-nav-mobile {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .site-ms .site-header .header-toggle {
    display: inline-flex !important;
  }
}
.site-ms .site-header .header-toggle .navbar-toggler-icon {
  filter: invert(1);
}
.site-ms .site-header .header-logo-img {
  max-height: 76px;
}
@media (max-width: 991px) {
  .site-ms .site-header .header-logo-img {
    max-height: 58px;
  }
}

/* ========== PROJECTS SECTION ========== */
.site-ms .projects-section.home {
  padding: 90px 0 100px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(200, 121, 65, 0.06), transparent 55%),
    var(--ms-cream);
}
.site-ms .projects-head .projects-subtitle {
  color: var(--ms-copper) !important;
  letter-spacing: 0.22em;
  font-family: var(--ms-font-body);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.site-ms .projects-head .projects-subtitle::before,
.site-ms .projects-head .projects-subtitle::after {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ms-copper));
  border-radius: 999px;
}
.site-ms .projects-head .projects-subtitle::after {
  background: linear-gradient(90deg, var(--ms-copper), transparent);
}
.site-ms .projects-head .sub-title h2 {
  font-family: var(--ms-font-display);
  font-size: clamp(2.35rem, 4.5vw, 3.75rem);
  font-weight: 600;
  color: var(--ms-text);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.site-ms .projects-head .sub-title span { color: var(--ms-copper) !important; }
.site-ms .projects-head .title-underline {
  width: 88px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--ms-copper), var(--ms-copper-light), var(--ms-copper), transparent) !important;
  border-radius: 999px;
  position: relative;
}
.site-ms .projects-head .title-underline::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 7px;
  height: 7px;
  background: var(--ms-copper-light);
  border: 2px solid var(--ms-cream);
  box-shadow: 0 0 0 1px rgba(200, 121, 65, 0.45);
}
.site-ms .projects-head .projects-tagline {
  color: var(--ms-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.site-ms .projects-section .card-project-type { color: var(--ms-copper) !important; }
.site-ms .projects-section .project-card-head .card-location i { color: var(--ms-copper) !important; }
.site-ms .projects-section .card-status-badge.card-status-ready { background: #3d7a52; }
.site-ms .projects-section .card-status-badge.card-status-new { background: var(--ms-copper); }

/* ========== BEAUTIFIED PROJECT CARDS ========== */
.site-ms .projects-section .grid-items {
  gap: 2rem 1.75rem !important;
}
.site-ms .projects-section .grid-item.project-card-horizontal {
  background: var(--ms-white) !important;
  border: 1px solid rgba(12, 18, 34, 0.08) !important;
  border-radius: var(--ms-radius-lg) !important;
  box-shadow:
    0 4px 20px rgba(12, 18, 34, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.8) inset !important;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease !important;
}
.site-ms .projects-section .grid-item.project-card-horizontal:hover,
.site-ms .projects-section .grid-item.project-card-horizontal:focus-within {
  transform: translateY(-6px) !important;
  border-color: rgba(200, 121, 65, 0.28) !important;
  box-shadow:
    0 24px 48px rgba(12, 18, 34, 0.12),
    0 0 0 1px rgba(200, 121, 65, 0.12) !important;
}
.site-ms .projects-section .project-card-inner {
  display: grid !important;
  grid-template-columns: 48% 1fr !important;
  grid-template-rows: minmax(0, 1fr) auto !important;
  flex-wrap: nowrap !important;
  flex-direction: unset !important;
  align-items: stretch;
  min-height: 0;
}
.site-ms .projects-section .project-card-media {
  grid-column: 1;
  grid-row: 1;
  display: flex !important;
  flex-direction: column !important;
  align-self: stretch;
  width: auto !important;
  max-width: none !important;
  padding: 16px 0 8px 16px !important;
  background: transparent;
  min-height: 0;
  height: 100%;
}
.site-ms .projects-section .project-card-body {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.site-ms .projects-section .project-card-horizontal .card-action-bar {
  grid-column: 1 / -1;
  grid-row: 2;
}
.site-ms .projects-section .project-card-horizontal .property-picture {
  border-radius: 10px;
  min-height: 0;
  height: 100%;
  flex: 1 1 auto;
  display: flex;
  align-self: stretch;
  box-shadow: none;
  isolation: isolate;
}
.site-ms .projects-section .project-card-horizontal .property-picture .banner {
  min-height: 0;
  height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-ms .projects-section .project-card-horizontal:hover .property-picture .banner {
  transform: scale(1.04);
}
.site-ms .projects-section .project-card-horizontal .property-picture::after {
  display: none !important;
}
.site-ms .projects-section .card-status-badge {
  top: 12px;
  left: 12px;
  font-family: var(--ms-font-body);
  font-size: 10px !important;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}
.site-ms .projects-section .project-card-horizontal .card-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(12, 18, 34, 0.82) 0%, rgba(12, 18, 34, 0.45) 70%, transparent 100%);
  pointer-events: none;
}
.site-ms .projects-section .project-card-horizontal .card-possession {
  font-family: var(--ms-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff !important;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(200, 121, 65, 0.92);
  white-space: nowrap;
  line-height: 1.2;
}
.site-ms .projects-section .project-card-horizontal .card-action-bar {
  flex: 0 0 100% !important;
  width: 100% !important;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(12, 18, 34, 0.08);
  box-shadow: none;
  overflow: hidden;
}
.site-ms .projects-section .project-card-body {
  padding: 20px 22px 22px;
}
.site-ms .projects-section .project-card-stats-head,
.site-ms .projects-section .project-card-stats-row {
  grid-template-columns: repeat(2, 1fr) !important;
}
.site-ms .projects-section .card-action-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 10px 8px;
  border: none;
  border-right: 1px solid rgba(12, 18, 34, 0.08);
  border-radius: 0;
  font-family: var(--ms-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.site-ms .projects-section .card-action-btn:last-child {
  border-right: none;
}
.site-ms .projects-section .card-action-btn i {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}
.site-ms .projects-section .card-action-btn span {
  line-height: 1;
}
.site-ms .projects-section .card-action-call {
  background: var(--ms-navy);
  color: #fff !important;
}
.site-ms .projects-section .card-action-call:hover {
  background: #151d30;
  color: #fff !important;
  transform: translateY(-1px);
}
.site-ms .projects-section .card-action-whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #fff !important;
}
.site-ms .projects-section .card-action-whatsapp:hover {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff !important;
  transform: translateY(-1px);
}
.site-ms .projects-section .card-action-view {
  background: linear-gradient(135deg, var(--ms-copper), #a86530);
  color: #fff !important;
}
.site-ms .projects-section .card-action-view:hover {
  background: linear-gradient(135deg, #d4894a, var(--ms-copper));
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.site-ms .projects-section .card-action-view i {
  font-size: 13px;
  transition: transform 0.22s ease;
}
.site-ms .projects-section .card-action-view:hover i {
  transform: translateX(3px);
}

.site-ms .projects-section .project-card-body {
  padding: 22px 24px 20px 20px;
}
.site-ms .projects-section .project-card-head {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(12, 18, 34, 0.08);
  display: block;
}
.site-ms .projects-section .project-card-head-text h2 {
  font-family: var(--ms-font-display) !important;
  font-size: 1.85rem !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: -0.01em !important;
  color: var(--ms-text) !important;
  margin-bottom: 4px;
  transition: color 0.25s ease;
}
.site-ms .projects-section .project-card-horizontal:hover .project-card-head-text h2 {
  color: var(--ms-navy) !important;
}
.site-ms .projects-section .card-project-type {
  display: inline-block;
  font-size: 11px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.site-ms .projects-section .project-card-head .card-location {
  font-size: 13px !important;
  color: var(--ms-muted) !important;
}

.site-ms .projects-section .project-card-meta {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 14px;
}
.site-ms .projects-section .project-card-meta .project-card-stats {
  width: 100%;
}
.site-ms .projects-section .project-card-footer {
  flex: 1 1 auto;
  margin-top: auto;
  display: flex;
  align-self: stretch;
  min-height: 0;
}
.site-ms .projects-section .project-card-pricing {
  width: 100%;
  flex: 1 1 auto;
  min-height: 100%;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200, 121, 65, 0.14), rgba(200, 121, 65, 0.05));
  border: 1px solid rgba(200, 121, 65, 0.22);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.site-ms .projects-section .project-card-price-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ms-muted) !important;
  line-height: 1.2;
}
.site-ms .projects-section .project-card-price-value {
  /* font-family: var(--ms-font-display); */
  font-size: 1.85rem !important;
  font-weight: 600 !important;
  color: var(--ms-copper) !important;
  line-height: 1.1;
}

.site-ms .projects-section .project-card-stats-table {
  border: 1px solid rgba(12, 18, 34, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: var(--ms-white);
}
.site-ms .projects-section .project-card-stats-head {
  background: var(--ms-navy);
  color: rgba(255, 255, 255, 0.72) !important;
  border-bottom: none;
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 11px 8px;
}
.site-ms .projects-section .project-card-stats-row {
  background: var(--ms-white);
  font-size: 13px;
  font-weight: 600;
  color: var(--ms-text) !important;
  padding: 13px 8px;
}
.site-ms .projects-section .project-card-stats-row span {
  color: var(--ms-text) !important;
}

.site-ms .back-to-top {
  background: var(--ms-navy) !important;
  border-color: var(--ms-copper) !important;
}
.site-ms .back-to-top:hover { background: var(--ms-copper) !important; }

/* ========== STICKY CALL & WHATSAPP — SIDE ROUND ICONS ========== */
.site-ms .fixed-contact-dock.fixed-social-icon {
  position: fixed !important;
  right: 20px !important;
  left: auto !important;
  bottom: 100px !important;
  top: auto !important;
  width: auto !important;
  max-width: none !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: transform 0.3s ease, opacity 0.3s ease !important;
  z-index: 99999 !important;
  overflow: visible !important;
  box-sizing: border-box;
  font-family: var(--ms-font-body);
  margin: 0;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.site-ms .fixed-contact-dock .fixed-social-list {
  flex-direction: column !important;
  align-items: center !important;
  gap: 14px !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-ms .fixed-contact-dock .fixed-social-item {
  flex: none;
  margin: 0;
  display: block;
}
.site-ms .fixed-contact-dock .fixed-social-item + .fixed-social-item {
  border-left: none;
}
.site-ms .fixed-contact-dock .fixed-social-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 56px !important;
  height: 56px !important;
  min-height: 56px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(12, 18, 34, 0.3) !important;
  box-sizing: border-box;
  color: #fff !important;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.site-ms .fixed-contact-dock .fixed-social-link:hover {
  transform: scale(1.1) !important;
  color: #fff !important;
}
.site-ms .fixed-contact-dock .fixed-social-icon-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-ms .fixed-contact-dock .fixed-social-icon-inner i {
  font-size: 23px;
  line-height: 1;
  color: #fff;
}
.site-ms .fixed-contact-dock .fixed-social-icon-inner img {
  display: none;
}
.site-ms .fixed-contact-dock .fixed-social-copy,
.site-ms .fixed-contact-dock .fixed-social-label,
.site-ms .fixed-contact-dock .fixed-social-sublabel {
  display: none !important;
}
.site-ms .fixed-contact-dock .fixed-social-call .fixed-social-link {
  background: linear-gradient(145deg, var(--ms-navy), var(--ms-slate)) !important;
}
.site-ms .fixed-contact-dock .fixed-social-call .fixed-social-link:hover {
  background: linear-gradient(145deg, var(--ms-copper), #a86530) !important;
  box-shadow: 0 10px 28px rgba(200, 121, 65, 0.45) !important;
}
.site-ms .fixed-contact-dock .fixed-social-whatsapp .fixed-social-link {
  background: linear-gradient(145deg, #128C7E, #25D366) !important;
}
.site-ms .fixed-contact-dock .fixed-social-whatsapp .fixed-social-link:hover {
  background: linear-gradient(145deg, #25D366, #1ebe5d) !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45) !important;
}
.site-ms .body-content {
  padding-bottom: 0;
}
.site-ms .back-to-top {
  bottom: 28px !important;
  left: auto !important;
  right: 20px !important;
  z-index: 99998 !important;
}

@media (max-width: 767px) {
  .site-ms .fixed-contact-dock.fixed-social-icon {
    right: 16px !important;
    bottom: 88px !important;
  }
  .site-ms .fixed-contact-dock .fixed-social-link {
    width: 52px !important;
    height: 52px !important;
    min-height: 52px !important;
  }
  .site-ms .fixed-contact-dock .fixed-social-icon-inner i {
    font-size: 21px;
  }
  .site-ms .back-to-top {
    bottom: 22px !important;
    right: 16px !important;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .hero-banner .carousel,
  .hero-banner .carousel-inner,
  .hero-banner .carousel-item,
  .hero-banner .hero-slide,
  .hero-banner .hero-slide__img,
  .hero-banner .hero-slide__content {
    min-height: 75vh;
  }
  .hero-banner .hero-slide__content { padding: 100px 24px 120px; }
  .about-v2__grid,
  .contact-v2__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-v2__panel { min-height: 320px; }
}
@media (max-width: 767px) {
  .about-v2,
  .contact-v2 { padding: 70px 0 0; }
  .contact-v2__grid { padding-bottom: 60px; }
  .about-v2__stats { grid-template-columns: 1fr; }
  .contact-v2 .contact-form-row-main { grid-template-columns: 1fr; }
  .hero-banner .container.hero-slide__content {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100%;
  }
  .hero-banner .hero-chips { gap: 8px; }
  .hero-banner .hero-chip { min-width: calc(50% - 4px); flex: 1; }
  .hero-banner-indicators { right: 20px; bottom: 20px; }
  .hero-banner .carousel-control-prev.hero-banner-control,
  .hero-banner .carousel-control-next.hero-banner-control { display: none; }
  .hero-banner .hero-slide__status { top: 16px; left: 16px; font-size: 10px; }
  .site-footer__inner { padding: 36px 16px 24px; }
  .site-footer__mark { gap: 16px; margin-bottom: 20px; }
  .site-footer__line { max-width: 60px; }
  .site-footer__logo img {
    width: 260px;
    max-width: min(180px, 70vw);
    height: auto;
  }
  .site-footer__nav { gap: 4px 2px; margin-bottom: 22px; }
  .site-footer__nav a { font-size: 11px; padding: 4px 6px; }
  .site-ms .projects-section.home { padding: 70px 0 80px; }
  .site-ms .projects-section .grid-items { grid-template-columns: 1fr !important; }
  .site-ms .projects-section .project-card-inner {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    min-height: 0;
  }
  .site-ms .projects-section .project-card-media,
  .site-ms .projects-section .project-card-body,
  .site-ms .projects-section .project-card-horizontal .card-action-bar {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .site-ms .projects-section .project-card-media {
    flex: none !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 16px 16px 0 !important;
    min-height: 0 !important;
  }
  .site-ms .projects-section .project-card-body {
    padding: 18px 18px 20px;
    min-height: 0 !important;
    height: auto !important;
  }
  .site-ms .projects-section .project-card-horizontal .property-picture {
    min-height: 260px;
    height: auto !important;
    flex: none;
    display: block !important;
  }
  .site-ms .projects-section .project-card-horizontal .property-picture .banner {
    min-height: 260px;
    height: auto;
    flex: none;
  }
  .site-ms .projects-section .project-card-footer {
    flex: none !important;
    margin-top: 14px;
  }
  .site-ms .projects-section .project-card-pricing {
    min-height: 0 !important;
    flex: none;
  }
  .site-ms .projects-section .project-card-meta {
    flex-direction: column;
    gap: 12px;
  }
  .site-ms .projects-section .project-card-meta-side {
    text-align: left;
    min-width: 0;
  }
  .site-ms .projects-section .card-action-btn {
    font-size: 10px;
    gap: 5px;
    min-height: 42px;
    padding: 8px 6px;
  }
  .site-ms .projects-section .card-action-btn i {
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .site-ms .projects-section .grid-items { grid-template-columns: 1fr !important; }
}

/* ========== SUBPAGES (Legal, Thank You) ========== */
.subpage-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--ms-cream);
}
.subpage-layout .site-header-main {
  position: sticky;
  top: 0;
  z-index: 1040;
}
.subpage-layout .site-footer {
  margin-top: auto;
}

/* ========== LEGAL PAGE ========== */
.legal-page .legal-main {
  flex: 1;
  padding-bottom: 64px;
}
.legal-hero {
  position: relative;
  background: var(--ms-navy);
  padding: 32px 0 72px;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 100%, rgba(200, 121, 65, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(200, 121, 65, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.legal-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ms-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: none !important;
  margin-bottom: 28px;
  transition: color 0.2s ease;
}
.legal-back:hover {
  color: var(--ms-copper-light) !important;
}
.legal-eyebrow {
  display: block;
  font-family: var(--ms-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ms-copper-light);
  margin-bottom: 12px;
}
.legal-title {
  font-family: var(--ms-font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--ms-white);
  margin: 0 0 12px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.legal-intro {
  font-family: var(--ms-font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.6;
}
.legal-container {
  max-width: 820px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  padding-left: 20px;
  padding-right: 20px;
}
.legal-content {
  background: var(--ms-white);
  border: 1px solid var(--ms-border);
  border-radius: var(--ms-radius-lg);
  box-shadow: var(--ms-shadow);
  padding: 48px 52px 56px;
}
.legal-section + .legal-section {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(12, 18, 34, 0.08);
}
.legal-section--contact {
  background: linear-gradient(135deg, rgba(200, 121, 65, 0.08) 0%, rgba(200, 121, 65, 0.03) 100%);
  border: 1px solid rgba(200, 121, 65, 0.18);
  border-radius: var(--ms-radius);
  padding: 28px 32px !important;
  margin-top: 40px !important;
}
.legal-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ms-text);
  margin: 0;
}
.legal-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--ms-font-display);
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
  font-weight: 600;
  color: var(--ms-navy);
  margin: 0 0 18px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.legal-heading::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  min-height: 1.05em;
  align-self: stretch;
  margin-top: 0.12em;
  background: linear-gradient(180deg, var(--ms-copper) 0%, var(--ms-copper-light) 100%);
  border-radius: 4px;
}
.legal-subheading {
  font-family: var(--ms-font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ms-copper);
  margin: 28px 0 12px;
  padding-left: 20px;
  position: relative;
}
.legal-subheading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--ms-copper-light);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(200, 121, 65, 0.15);
}
.legal-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ms-muted);
  margin: 0 0 14px;
}
.legal-content p:last-child {
  margin-bottom: 0;
}
.legal-content a {
  color: var(--ms-copper);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.legal-content a:hover {
  color: var(--ms-navy);
}
.legal-list {
  margin: 0 0 16px;
  padding-left: 1.25rem;
  color: var(--ms-muted);
}
.legal-list li {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-list li:last-child {
  margin-bottom: 0;
}
.legal-definitions {
  margin: 0;
}
.legal-definitions dt {
  font-family: var(--ms-font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ms-copper);
  margin-top: 18px;
}
.legal-definitions dt:first-child {
  margin-top: 0;
}
.legal-definitions dd {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ms-muted);
  margin: 6px 0 0;
}

/* ========== THANK YOU PAGE — THEME ========== */
.site-ms.thankyou-page {
  background: var(--ms-cream);
}
.site-ms .thankyou-main {
  flex: 1;
}
.site-ms .thankyou-bg {
  background:
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(200, 121, 65, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 20%, rgba(12, 18, 34, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--ms-cream) 0%, var(--ms-cream-dark) 100%);
}
.site-ms .thankyou-card {
  background: var(--ms-white);
  border: 1px solid var(--ms-border);
  border-radius: var(--ms-radius-lg);
  box-shadow: var(--ms-shadow);
  max-width: 540px;
}
.site-ms .thankyou-icon-wrap {
  background: linear-gradient(135deg, var(--ms-copper), var(--ms-copper-light));
  box-shadow: 0 12px 32px rgba(200, 121, 65, 0.35);
}
.site-ms .thankyou-eyebrow {
  display: block;
  font-family: var(--ms-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ms-copper);
  margin-bottom: 8px;
}
.site-ms .thankyou-title {
  font-family: var(--ms-font-display);
  color: var(--ms-navy);
}
.site-ms .thankyou-tagline {
  color: var(--ms-text);
}
.site-ms .thankyou-message {
  color: var(--ms-muted);
}
.site-ms .thankyou-divider {
  background: linear-gradient(90deg, transparent, rgba(200, 121, 65, 0.45), transparent);
}
.site-ms .thankyou-help {
  color: var(--ms-muted);
}
.site-ms .thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.site-ms .thankyou-phone {
  background: rgba(12, 18, 34, 0.06);
  border-color: rgba(12, 18, 34, 0.12);
  color: var(--ms-navy);
  margin-bottom: 0;
}
.site-ms .thankyou-phone i {
  color: var(--ms-copper);
}
.site-ms .thankyou-phone:hover {
  background: rgba(200, 121, 65, 0.1);
  border-color: rgba(200, 121, 65, 0.35);
  color: var(--ms-navy);
}
.site-ms .thankyou-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ms-font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none !important;
  padding: 12px 24px;
  background: linear-gradient(145deg, #128C7E, #25D366);
  border-radius: 50px;
  border: 1px solid rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.site-ms .thankyou-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  color: #fff !important;
}
.site-ms .thankyou-btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--ms-font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--ms-white) !important;
  background: linear-gradient(135deg, var(--ms-navy), var(--ms-navy-soft));
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(12, 18, 34, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-ms .thankyou-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(12, 18, 34, 0.28);
  color: var(--ms-white) !important;
  background: linear-gradient(135deg, var(--ms-navy-soft), var(--ms-slate));
}

@media (max-width: 767px) {
  .legal-hero { padding: 24px 0 64px; }
  .legal-content { padding: 32px 24px 40px; }
  .legal-section + .legal-section { margin-top: 28px; padding-top: 28px; }
  .legal-section--contact { padding: 22px 20px !important; }
  .site-ms .thankyou-actions {
    flex-direction: column;
    width: 100%;
  }
  .site-ms .thankyou-phone,
  .site-ms .thankyou-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

html, body { margin: 0; padding: 0; }
