/* ═══════════════════════════════════════
   MS REAL ESTATE — FULL CUSTOM CSS (CLEANED)
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════
   FONT AWESOME - LOAD FROM CDN FIRST
   ═══════════════════════════════════════ */

@font-face {
    font-family: 'FontAwesome';
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2'),
         url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2') format('woff2'),
         url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}


/* ═══════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════ */

.msab-wrap {
    background: #f8fafc !important;
    padding: 70px 24px 60px;
    font-family: 'Lora', Georgia, serif !important;
}

.msab-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.msab-eyebrow {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f07010 !important;
    margin-bottom: 10px;
    font-family: 'Lora', Georgia, serif !important;
}

.msab-heading {
    text-align: center;
    font-size: 38px !important;
    font-weight: 600 !important;
    color: #0e3d47 !important;
    margin: 0 0 16px;
    line-height: 1.25 !important;
    letter-spacing: -0.3px;
    font-family: 'Lora', Georgia, serif !important;
}

.msab-heading span {
    color: #0e3d47 !important;
    font-family: 'Lora', Georgia, serif !important;
    font-weight: 600 !important;
}

.msab-desc {
    text-align: center;
    font-size: 16px;
    color: #4b5563;
    max-width: 720px;
    margin: 0 auto 50px;
    line-height: 1.8;
    font-family: 'Lora', Georgia, serif !important;
}


/* ═══════════════════════════════════════
   MISSION / VISION
   ═══════════════════════════════════════ */

.msab-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 50px;
}

.msab-mv-card {
    background: #ffffff !important;
    border: 2px solid #ffffff !important;
    border-radius: 20px;
    padding: 44px 36px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition:
        transform .25s,
        box-shadow .25s,
        background .25s;
    cursor: default;
    box-shadow: 0 4px 24px rgba(240,112,10,.08) !important;
}

.msab-mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(240,112,10,.18) !important;
    background: #fff8f2 !important;
}

.msab-mv-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        #fff5ec,
        #ffe8d0
    ) !important;
    border-radius: 50%;
    border: 2px solid #ffffff !important;
    box-shadow: 0 4px 16px rgba(240,112,10,.12);
}

.msab-mv-icon svg {
    width: 56px;
    height: 56px;
    stroke: #f07010 !important;
    fill: none !important;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block !important;
}

.msab-mv-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #f07010;
    margin-bottom: 12px;
    display: block;
}

.msab-mv-card h3 {
    font-size: 22px;
    font-weight: 600 !important;
    color: #0e3d47;
    margin: 0 0 14px;
    font-family: 'Lora', Georgia, serif !important;
}

.msab-mv-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
    font-family: 'Lora', Georgia, serif !important;
}


/* ═══════════════════════════════════════
   HOW WE OPERATE
   ═══════════════════════════════════════ */

.msab-ops-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600 !important;
    color: #0e3d47;
    margin: 0 0 8px;
    font-family: 'Lora', Georgia, serif !important;
}

.msab-ops-sub {
    text-align: center;
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 36px;
    font-family: 'Lora', Georgia, serif !important;
}

.msab-ops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.msab-ops-card {
    background: #ffffff !important;
    border: 2px solid #ffffff !important;
    border-radius: 18px;
    padding: 36px 26px 30px;
    text-align: center;
    transition:
        transform .25s,
        box-shadow .25s,
        background .25s;
    cursor: default;
    box-shadow: 0 4px 24px rgba(240,112,10,.08) !important;
}

.msab-ops-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(240,112,10,.18) !important;
    background: #fff8f2 !important;
}

.msab-ops-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        #fff5ec,
        #ffe8d0
    ) !important;
    border-radius: 50%;
    border: 2px solid #ffffff !important;
}

.msab-ops-icon svg {
    width: 44px;
    height: 44px;
    stroke: #f07010 !important;
    fill: none !important;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block !important;
}

.msab-ops-card h4 {
    font-size: 17px;
    font-weight: 600 !important;
    color: #0e3d47;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-family: 'Lora', Georgia, serif !important;
}

.msab-ops-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    font-family: 'Lora', Georgia, serif !important;
}


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media(max-width:900px) {
    .msab-mv-grid,
    .msab-ops-grid {
        grid-template-columns: 1fr;
    }
    .msab-heading {
        font-size: 30px !important;
    }
}

@media(max-width:600px) {
    .msab-wrap {
        padding: 44px 16px 36px;
    }
    .msab-mv-card,
    .msab-ops-card {
        padding: 28px 18px 22px;
    }
    .msab-heading {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
}


/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */

.ms-cta-banner {
    position: relative !important;
    width: 100% !important;
    min-height: 420px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    overflow: hidden !important;

    background-image: url(
        'https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=80'
    ) !important;

    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;

    margin-bottom: 50px !important;
}

.ms-cta-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
        135deg,
        rgba(14,61,71,.82) 0%,
        rgba(240,112,10,.55) 100%
    ) !important;
}

.ms-cta-content {
    position: relative !important;
    z-index: 2 !important;
    padding: 60px 24px !important;
    max-width: 760px !important;
    margin: 0 auto !important;
}

.ms-cta-sub {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,.8) !important;
    margin-bottom: 14px !important;
}

.ms-cta-title {
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #fff !important;
    line-height: 1.2 !important;
    margin: 0 0 16px !important;
}

.ms-cta-desc {
    font-size: 16px !important;
    color: rgba(255,255,255,.85) !important;
    margin-bottom: 32px !important;
    font-style: italic !important;
}

.ms-cta-btn {
    display: inline-block !important;
    background: linear-gradient(
        135deg,
        #f07010,
        #e05500
    ) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 30px rgba(240,112,10,.45) !important;
    transition:
        transform .3s ease,
        box-shadow .3s ease !important;
}

.ms-cta-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 40px rgba(240,112,10,.6) !important;
}

@media(max-width:600px) {
    .ms-cta-banner {
        min-height: 320px !important;
        background-attachment: scroll !important;
    }
    .ms-cta-title {
        font-size: 26px !important;
    }
}

@media(max-width: 767px){
    .ms-cta-banner {
        margin-bottom: 30px !important;
    }
}


/* ═══════════════════════════════════
   ENQUIRE MODAL — DESKTOP + MOBILE
   ═══════════════════════════════════ */

.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13,33,55,.75);
    backdrop-filter: blur(6px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.custom-modal-overlay.show {
    display: flex !important;
}

.custom-modal-box {
    background: #fff !important;
    border-radius: 20px !important;
    width: 100% !important;
    max-width: 440px !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0,0,0,.25) !important;
    margin: 20px !important;
}

.modal-top-bar {
    background: linear-gradient(
        135deg,
        #0e3d47,
        #1a5f6e
    ) !important;
    padding: 20px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.modal-top-bar h5 {
    color: #fff !important;
    font-weight: 700 !important;
    margin: 0 !important;
    font-size: 1rem !important;
}

.modal-close-btn {
    background: rgba(255,255,255,.2) !important;
    border: none !important;
    color: #fff !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.modal-body-inner {
    padding: 24px !important;
}

.modal-body-inner .form-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.modal-body-inner .form-control {
    border: 1.5px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: .9rem !important;
    padding: 11px 14px !important;
    width: 100% !important;
    margin-bottom: 14px !important;
    outline: none !important;
    box-sizing: border-box !important;
    display: block !important;
}

.modal-body-inner .form-control:focus {
    border-color: #0e3d47 !important;
    box-shadow:
        0 0 0 3px rgba(14,61,71,.12) !important;
}

.modal-body-inner .btn-submit {
    background: linear-gradient(
        135deg,
        #0e3d47,
        #1a5f6e
    ) !important;
    color: #fff !important;
    border: none !important;
    padding: 14px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    width: 100% !important;
    font-size: .93rem !important;
    cursor: pointer !important;
    display: block !important;
}


/* ═══════════════════════════════════════
   LOCATION CARDS HOVER
   ═══════════════════════════════════════ */

.hb-location-card {
    overflow: hidden !important;
    border-radius: 14px !important;
    position: relative !important;
    transition:
        transform .4s ease,
        box-shadow .4s ease !important;
}

.hb-location-card:hover {
    transform: translateY(-8px) scale(1.03) !important;
    box-shadow:
        0 20px 50px rgba(0,0,0,.3) !important;
}

.hb-location-card img {
    transition: transform .6s ease !important;
}

.hb-location-card:hover img {
    transform: scale(1.1) !important;
}

.hb-gradient-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,.8) 0%,
        rgba(0,0,0,.1) 60%
    ) !important;
    transition: background .4s ease !important;
}

.hb-location-card:hover .hb-gradient-overlay {
    background: linear-gradient(
        to top,
        rgba(240,112,10,.85) 0%,
        rgba(0,0,0,.2) 70%
    ) !important;
}


/* ═══════════════════════════════════════
   RECENTLY VIEWED / CITY PROPERTIES
   ═══════════════════════════════════════ */

.recently-viewed-properties-wrapper,
[class*="recently-viewed"] {
    margin-bottom: 10px !important;
    padding-bottom: 0px !important;
}

.city-section-heading {
    margin-top: 40px !important;
    padding-top: 0px !important;
    margin-bottom: 40px !important;
    text-align: center !important;
}

.city-section-heading h2,
.city-section-heading p {
    text-align: center !important;
}

.city-properties-slider {
    margin-top: 20px !important;
    margin-bottom: 60px !important;
}



   

   


/* ═══════════════════════════════════════
   FINAL FONT OVERRIDE
   ═══════════════════════════════════════ */

.msab-wrap,
.msab-wrap *,
.msab-heading,
.msab-heading span,
.msab-desc,
.msab-mv-card h3,
.msab-mv-card p,
.msab-ops-title,
.msab-ops-sub,
.msab-ops-card h4,
.msab-ops-card p {
    font-family: 'Lora', Georgia, serif !important;
}

.msab-eyebrow,
.msab-mv-tag {
    color: #f07010 !important;
}

.msab-heading,
.msab-heading span {
    color: #0e3d47 !important;
    font-family: 'Lora', Georgia, serif !important;
}


/* ═══════════════════════════════════════
   FINAL GLOBAL FONT — ONE FONT FOR ENTIRE WEBSITE
   ═══════════════════════════════════════ */

html,
body {
    font-family: 'Lora', Georgia, serif !important;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body p,
body a,
body button,
body label,
body input,
body textarea,
body select,
body option,
body li,
body span {
    font-family: 'Lora', Georgia, serif !important;
}

header,
header *,
nav,
nav *,
.navbar,
.navbar *,
.nav-link,
.navbar-brand {
    font-family: 'Lora', Georgia, serif !important;
}

.ms-hero,
.ms-hero *,
.hero,
.hero *,
.banner,
.banner *,
[class*="hero"],
[class*="hero"] * {
    font-family: 'Lora', Georgia, serif !important;
}

.msab-wrap,
.msab-wrap *,
.msab-heading,
.msab-heading span,
.msab-eyebrow,
.msab-desc,
.msab-mv-card,
.msab-mv-card *,
.msab-ops-card,
.msab-ops-card * {
    font-family: 'Lora', Georgia, serif !important;
}

.ms-cta-banner,
.ms-cta-banner *,
.ms-cta-content,
.ms-cta-title,
.ms-cta-sub,
.ms-cta-desc,
.ms-cta-btn {
    font-family: 'Lora', Georgia, serif !important;
}

.custom-modal-overlay,
.custom-modal-overlay *,
.custom-modal-box,
.custom-modal-box *,
.modal-top-bar,
.modal-top-bar *,
.modal-body-inner,
.modal-body-inner * {
    font-family: 'Lora', Georgia, serif !important;
}

.hb-location-card,
.hb-location-card *,
.recently-viewed-properties-wrapper,
.recently-viewed-properties-wrapper *,
.city-section-heading,
.city-section-heading * {
    font-family: 'Lora', Georgia, serif !important;
}

button,
.btn,
a.btn,
input[type="button"],
input[type="submit"] {
    font-family: 'Lora', Georgia, serif !important;
}

input,
textarea,
select,
.form-control,
.form-label {
    font-family: 'Lora', Georgia, serif !important;
}


/* ═══════════════════════════════════════
   PHONE INPUT (intl-tel-input) FIX
   ═══════════════════════════════════════ */

.iti {
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

.iti__flag-container {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    border: none !important;
    border-right: 1px solid #ddd !important;
    background: #f8fafc !important;
}

.iti {
    border: 1.5px solid #ccc !important;
    border-radius: 6px !important;
    overflow: hidden !important;
}

.iti input.form-control,
.iti input[type="text"] {
    border: none !important;
    border-radius: 0 !important;
    height: 44px !important;
    padding-left: 110px !important;
    line-height: normal !important;
    font-family: 'Lora', Georgia, serif !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.iti input.form-control:focus,
.iti input[type="text"]:focus {
    box-shadow: none !important;
    outline: none !important;
}

.bhk-table th:nth-child(4),
.bhk-table td:nth-child(4),
.bhk-table th:nth-child(5),
.bhk-table td:nth-child(5) {
    display: none !important;
}
  @media (max-width: 767px) {
    div.city-section-heading,
    div.city-section-heading h2,
    div.city-section-heading p {
        margin: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        position: static !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    div.city-section-heading {
        padding: 0 20px !important;
    }

    div.city-section-heading h2 {
        font-size: 21px !important;
        line-height: 1.3 !important;
    }
}

/* HAMBURGER ICON FIX */
.navbar-toggler {
    border: none !important;
    background: transparent !important;
    padding: 6px 10px !important;
}

.custom-modal-box {
    max-height: 90vh !important;
    overflow-y: auto !important;
}

/* ═══════════════════════════════════════════════════════════════
   ICON FONT FIX — MOST IMPORTANT (LAST SECTION)
   ═══════════════════════════════════════════════════════════════ */

i.fas, 
i.far, 
i.fal, 
i.fab, 
i.fa,
.fas, 
.far, 
.fal, 
.fab, 
.fa,
[class*=" fa-"], 
[class^="fa-"] {
    font-family: 'FontAwesome', "Font Awesome 5 Free", "Font Awesome 5 Brands", "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.hb-btn i, 
.ms-prop-btn i, 
.hb-foot i,
.navbar-toggler i,
button i,
.btn i {
    font-family: 'FontAwesome', "Font Awesome 5 Free", "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
}

i.fas::before, 
i.far::before, 
i.fal::before, 
i.fab::before,
[class*=" fa-"]::before, 
[class^="fa-"]::before,
.hb-btn i::before, 
.ms-prop-btn i::before, 
.hb-foot i::before {
    font-family: 'FontAwesome', "Font Awesome 5 Free", "Font Awesome 5 Brands", "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
    font-style: normal !important;
}